img_to_script 1.0.0 → 1.0.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: 98fc645a04ddc50a2633b04a8d82d5ba61514d478215908e64b19a66499120fc
4
- data.tar.gz: 7a40da06bfb2c9b7fba74bfc2cc6b201b92ea672c27203da20096f0ecb05d347
3
+ metadata.gz: 868a7487d0f8745e1507f2296e1edde72ea010a8ff7bbd4ceb7db1dfce16342d
4
+ data.tar.gz: 6a93d15efebbb4d8b2f227cda00c8ccb8a3bd4c71a517ffa694483874de6378c
5
5
  SHA512:
6
- metadata.gz: aba04a011f62d58441ccd402077de347788629c9eb41975de644674bb389726f367f3f92e167d9680b176561442089088d100f6e9c2c97724926329492f455fa
7
- data.tar.gz: 87f2c883e748c07836d2f0b4d24961a34784b7a8932b2682855e929c3c4f8df05e466171a69058937dac744d634e8a40ea834efdda172bac88fe6493373ff4cb
6
+ metadata.gz: a2c8edf4a89d077932aa567529977720a3b51b514a131ec22bb285e0a61bf1b37a29a5de4573ce8b20d9ddc61e35451690cda615d2dd1baa098ed7d1acbb7dec
7
+ data.tar.gz: 76a4d6dca726fe777652cfbb426e6860e61a62e7163f9062ecece2714b309d3d2a05b9fc2d01415e7bcfd2265acd4e29c9f9113f00c0842e56ff99256051acbe
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [1.0.1] - 2023-12-29
2
+
3
+ - Bug fix.
4
+
1
5
  ## [1.0.0] - 2023-12-11
2
6
 
3
7
  - API change.
@@ -70,7 +70,7 @@ module ImgToScript
70
70
  #
71
71
  # The IF statement is used to check cases where the line would extend
72
72
  # beyond the bounds of the image/screen. In this case the program jumps
73
- # to the 5-th line (3 lines down from the current line) of the decoder,
73
+ # to the 5-th line (4 lines down from the current line) of the decoder,
74
74
  # that handles this edge case.
75
75
  #
76
76
  def _dec_line02
@@ -82,7 +82,7 @@ module ImgToScript
82
82
  @tokens.append(
83
83
  AbstractToken::IfCondition.new(
84
84
  expression: expression,
85
- consequent: CurrentLinePlaceholder.new(3),
85
+ consequent: CurrentLinePlaceholder.new(4),
86
86
  require_nl: true
87
87
  )
88
88
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ImgToScript
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: img_to_script
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - 8bit-mate
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-11 00:00:00.000000000 Z
11
+ date: 2023-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-system