glimmer_wordle 1.1.1 → 1.1.2
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 +4 -4
- data/README.md +3 -3
- data/VERSION +1 -1
- data/app/wordle/view/app_view.rb +8 -19
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5315f737af82dff39d911a59688cefcbf9f4b1d2aaca7c5efcc3c44df01d1ca
|
|
4
|
+
data.tar.gz: 65499b9acdfb6e21b9aafe4df8825e2d082c2ef2cbc20d48c526eb3216a74eb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b589f94aac13a96e7b9cdef7865b13c472f5976ee28ea754d44fff61056f35fe91c27a30c0b1e7a49cd81aed03cebd506655ace00c4067ceb163d30f800dc52f
|
|
7
|
+
data.tar.gz: 2c08a7f262aa07d5c3053546f8da56ed75a2631d6d6811ffcba1a76322ec17f492c6691da2b1427843bcd679162b4b0e9ed7e4384eaaf134b8a4bf88d4dc5659
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=85 /> Glimmer Wordle 1.1.
|
|
1
|
+
# <img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=85 /> Glimmer Wordle 1.1.2
|
|
2
2
|
## Play Wordle Endlessly with No Limit!
|
|
3
3
|
[](http://badge.fury.io/rb/glimmer_wordle)
|
|
4
4
|
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
|
|
15
15
|
### Download
|
|
16
16
|
|
|
17
|
-
[<img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=40 /> Download Glimmer Wordle 1.1.
|
|
17
|
+
[<img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=40 /> Download Glimmer Wordle 1.1.2 DMG for Mac ARM64 Monterey and Older](https://www.dropbox.com/s/rmanrz81qfrpqq5/Glimmer%20Wordle-arm64-1.1.2.dmg?dl=1)
|
|
18
18
|
|
|
19
|
-
[<img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=40 /> Download Glimmer Wordle 1.1.
|
|
19
|
+
[<img src='https://raw.githubusercontent.com/AndyObtiva/glimmer_wordle/master/icons/linux/Glimmer Wordle.png' height=40 /> Download Glimmer Wordle 1.1.2 DMG for Mac x86_64 Catalina and Older](https://www.dropbox.com/s/ysureb9o1dky7w0/Glimmer%20Wordle-1.1.2.dmg?dl=1)
|
|
20
20
|
|
|
21
21
|
### Install Ruby Gem
|
|
22
22
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.2
|
data/app/wordle/view/app_view.rb
CHANGED
|
@@ -21,7 +21,7 @@ class Wordle
|
|
|
21
21
|
%w[K L M N O P Q R S],
|
|
22
22
|
%w[T U V W X Y Z],
|
|
23
23
|
],
|
|
24
|
-
|
|
24
|
+
qwerty: [
|
|
25
25
|
%w[Q W E R T Y U I O P],
|
|
26
26
|
%w[A S D F G H J K L],
|
|
27
27
|
%w[Z X C V B N M],
|
|
@@ -133,11 +133,11 @@ class Wordle
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
menu_item(:radio) {
|
|
136
|
-
text '&
|
|
137
|
-
selection @alphabet_layout == :
|
|
136
|
+
text '&Qwerty'
|
|
137
|
+
selection @alphabet_layout == :qwerty
|
|
138
138
|
|
|
139
139
|
on_widget_selected {
|
|
140
|
-
self.alphabet_layout = :
|
|
140
|
+
self.alphabet_layout = :qwerty
|
|
141
141
|
rebuild_alphabet_container
|
|
142
142
|
}
|
|
143
143
|
}
|
|
@@ -170,25 +170,13 @@ class Wordle
|
|
|
170
170
|
message_box(body_root) {
|
|
171
171
|
text 'Instructions'
|
|
172
172
|
message <<~MULTI_LINE_STRING
|
|
173
|
-
Glimmer Wordle Instructions
|
|
174
|
-
|
|
175
173
|
Make 6 guesses for a 5-letter word.
|
|
176
174
|
|
|
177
|
-
If you enter a letter that is part of the word,
|
|
178
|
-
and at the right location in the word,
|
|
179
|
-
the letter will become green.
|
|
180
|
-
|
|
181
|
-
If you enter a letter that is part of the word,
|
|
182
|
-
but at the wrong location in the word,
|
|
183
|
-
the letter will become yellow.
|
|
175
|
+
If you enter a letter that is part of the word, and at the right location, it becomes green,
|
|
184
176
|
|
|
185
|
-
If you enter a letter that is
|
|
186
|
-
the letter will become red.
|
|
177
|
+
If you enter a letter that is part of the word, but at the wrong location, it becomes yellow.
|
|
187
178
|
|
|
188
|
-
If you
|
|
189
|
-
and share the result emojis.
|
|
190
|
-
|
|
191
|
-
Happy Glimmer Wordle!
|
|
179
|
+
If you enter a letter that is not part of the word, it become red.
|
|
192
180
|
MULTI_LINE_STRING
|
|
193
181
|
}.open
|
|
194
182
|
end
|
|
@@ -479,6 +467,7 @@ class Wordle
|
|
|
479
467
|
}
|
|
480
468
|
@alphabet_container.layout(true, true)
|
|
481
469
|
@alphabet_container.pack(true)
|
|
470
|
+
update_alphabet_background_colors
|
|
482
471
|
end
|
|
483
472
|
|
|
484
473
|
def alphabet_layout=(value)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: glimmer_wordle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Maleh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|