gamerom 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 964cf92bf92c6fc0be0fb61f0fd6f9f216debb7231ccbfdc31da38b49b93463c
4
- data.tar.gz: 2601482af6610a7b639a19f3b16fddf988fccb74a65732fa3b64c97e97cb2d4d
3
+ metadata.gz: 5efa70eb25c0a2484b87f8bda3971c253b01cb28e7d0930d72d9135ff46a167d
4
+ data.tar.gz: d94a52bf8dd58dbdf827de98939e6bad42cbff725fb6ab564bc85f03564d6704
5
5
  SHA512:
6
- metadata.gz: ce291c55b28cef9805292a5bd53f60a86bd51d5de665707f80cbfb1e38cb363843e9f3355303a625de3a706d07b5d52ea7cb6f565fa81ba96ea684fe067d35e3
7
- data.tar.gz: 9b7d17f0ab5f1115f38d0364a05b6a2e9e3d0b57b4ad0965d882ea16f05b46138dfea43d46bbb1e61c3aca02b7e77a634dfbb1de9aafe9e9c8db24ed63c4ce7f
6
+ metadata.gz: 3bc7d5df9b022fe8190a654a8388ab351c9b03664db3e9303c5849e0548c2aba52b79559e98b3cb20045face5d16b6c68c210bc5858c003e9a58feeaa019c7a9
7
+ data.tar.gz: 9a3fb69c7094601882319a1ddd6299a912474c82f80958a987669468fcb8099da30b23c91995b3b0fb352539617bf1493eda8431558eb057d178df2b0bcd793f
data/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.1] - 2021-05-09
10
+ - Fix downloading of multiple disk ROMs
11
+
9
12
  ## [0.2.0] - 2021-05-08
10
13
  - Add support for downloading multiple disc ROMs on vimm repo
11
14
  - Add progress bar to the install process
@@ -13,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
16
  ## [0.1.0] - 2021-05-07
14
17
  - Initial release
15
18
 
16
- [Unreleased]: https://github.com/lucasmundim/gamerom/compare/v0.2.0...HEAD
19
+ [Unreleased]: https://github.com/lucasmundim/gamerom/compare/v0.2.1...HEAD
20
+ [0.2.1]: https://github.com/lucasmundim/gamerom/compare/v0.2.0...v0.2.1
17
21
  [0.2.0]: https://github.com/lucasmundim/gamerom/compare/v0.1.0...v0.2.0
18
22
  [0.1.0]: https://github.com/lucasmundim/gamerom/releases/tag/v0.1.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gamerom (0.2.0)
4
+ gamerom (0.2.1)
5
5
  mechanize (~> 2.8.0)
6
6
  mechanize-progressbar (~> 0.2.0)
7
7
  nokogiri (~> 1.11.3)
@@ -22,7 +22,7 @@ GEM
22
22
  http-accept (1.7.0)
23
23
  http-cookie (1.0.3)
24
24
  domain_name (~> 0.5)
25
- mechanize (2.8.0)
25
+ mechanize (2.8.1)
26
26
  addressable (~> 2.7)
27
27
  domain_name (~> 0.5, >= 0.5.20190701)
28
28
  http-cookie (~> 1.0, >= 1.0.3)
data/README.md CHANGED
@@ -14,7 +14,7 @@ It currently supports the following repositories:
14
14
  Add this to your .bashrc, .bash_aliases, etc:
15
15
 
16
16
  ```
17
- alias gamerom='docker run --rm -it -v ~/.gamerom:/root/.gamerom docker.io/lucasmundim/gamerom:0.2.0'
17
+ alias gamerom='docker run --rm -it -v ~/.gamerom:/root/.gamerom docker.io/lucasmundim/gamerom:0.2.1'
18
18
  ```
19
19
 
20
20
  Use it as:
@@ -539,7 +539,7 @@ Print program version
539
539
 
540
540
  ```
541
541
  $ gamerom version
542
- 0.2.0
542
+ 0.2.1
543
543
  ```
544
544
 
545
545
  ## Development
@@ -76,6 +76,7 @@ module Gamerom
76
76
  form.method = 'GET'
77
77
  button = form.button_with(:type => "submit")
78
78
  response = nil
79
+ form['mediaId'] = game_file[:id]
79
80
  agent.progressbar{
80
81
  response = form.click_button(button)
81
82
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gamerom
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamerom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Mundim