img_to_script 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 868a7487d0f8745e1507f2296e1edde72ea010a8ff7bbd4ceb7db1dfce16342d
|
|
4
|
+
data.tar.gz: 6a93d15efebbb4d8b2f227cda00c8ccb8a3bd4c71a517ffa694483874de6378c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2c8edf4a89d077932aa567529977720a3b51b514a131ec22bb285e0a61bf1b37a29a5de4573ce8b20d9ddc61e35451690cda615d2dd1baa098ed7d1acbb7dec
|
|
7
|
+
data.tar.gz: 76a4d6dca726fe777652cfbb426e6860e61a62e7163f9062ecece2714b309d3d2a05b9fc2d01415e7bcfd2265acd4e29c9f9113f00c0842e56ff99256051acbe
|
data/CHANGELOG.md
CHANGED
|
@@ -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 (
|
|
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(
|
|
85
|
+
consequent: CurrentLinePlaceholder.new(4),
|
|
86
86
|
require_nl: true
|
|
87
87
|
)
|
|
88
88
|
)
|
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.
|
|
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
|
+
date: 2023-12-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-system
|