cryptopunks-gui 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +3 -3
- data/VERSION +1 -1
- data/app/model/image.rb +1 -1
- data/app/view/image_frame.rb +1 -1
- data/bin/cryptopunks-gui +0 -0
- data/cryptopunks-gui.gemspec +68 -68
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11b7dbad37423ad303ed7584a4859b820cf609157b07aebfc69845e155a8e85d
|
4
|
+
data.tar.gz: a09d1fe0fe847726c50c25d226d075d258e7cd26039d15e88decfedfc5e8fcb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 129fc97f012dd2c6a0593ee8a5769bcc23786d87ee35553565ada057c3faac1c61f2e5b910af3ed07413093c6a32019d68564391476e7300f7b54be826f03311
|
7
|
+
data.tar.gz: 558d47cfe642d0cc010ece09cb7b93bfa0299e47865fb293e48ff8c166ce2876daa8ea6f6ae45a28575e666c3f3916ff3331cf1f2ce91d6f782b63c480a4b2c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.0.14
|
4
|
+
|
5
|
+
- Fix PNG signature not found issue on Windows by writing images as binary files (`chunky_png-1.4.0/lib/chunky_png/datastream.rb:107:in verify_signature!': PNG signature not found, found "\\x89PNG\\r\\r\\n\\x1A" instead of "\\x89PNG\\r\\n\\x1A\\n"! (ChunkyPNG::SignatureMismatch)`)
|
6
|
+
- Fix regression issue with image index allowed out of bounds when changing to a collection with less images than current collection
|
7
|
+
|
3
8
|
## 0.0.13
|
4
9
|
|
5
10
|
- Support older Ruby versions down to 2.7.2 by fixing an issue with not having `#name` method on `Symbol`
|
@@ -16,7 +21,7 @@
|
|
16
21
|
|
17
22
|
## 0.0.11
|
18
23
|
|
19
|
-
- Support configuring default collections through a web hosted yaml file at: https://raw.githubusercontent.com/
|
24
|
+
- Support configuring default collections through a web hosted yaml file at: https://raw.githubusercontent.com/cryptopunksnotdead/cryptopunks-gui/master/cryptopunks-collections.yml
|
20
25
|
- New Green Punks, Clown Punks, and Bubble Gum Punks collections
|
21
26
|
|
22
27
|
## 0.0.10
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# <img src="https://raw.githubusercontent.com/
|
1
|
+
# <img src="https://raw.githubusercontent.com/cryptopunksnotdead/cryptopunks-gui/master/icons/cryptopunks-gui.png" height=85 /> CryptoPunks GUI 0.0.14
|
2
2
|
## Simplified Minting
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/cryptopunks-gui.svg)](http://badge.fury.io/rb/cryptopunks-gui)
|
4
4
|
|
@@ -25,7 +25,7 @@ You can use CryptoPunks GUI via gem or via cloning repository (if you encounter
|
|
25
25
|
Run:
|
26
26
|
|
27
27
|
```
|
28
|
-
gem install cryptopunks-gui -v0.0.
|
28
|
+
gem install cryptopunks-gui -v0.0.14
|
29
29
|
```
|
30
30
|
|
31
31
|
Afterwards, run app via:
|
@@ -39,7 +39,7 @@ cryptopunks-gui
|
|
39
39
|
Clone repository:
|
40
40
|
|
41
41
|
```
|
42
|
-
git clone https://github.com/
|
42
|
+
git clone https://github.com/cryptopunksnotdead/cryptopunks-gui.git
|
43
43
|
```
|
44
44
|
|
45
45
|
Enter directory:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.14
|
data/app/model/image.rb
CHANGED
@@ -93,7 +93,7 @@ class CryptopunksGui
|
|
93
93
|
width = @collections_map[@collection][:width]
|
94
94
|
height = @collections_map[@collection][:height]
|
95
95
|
@image_file = File.join(OUTPUT_LOCATION_DEFAULT, File.basename(url))
|
96
|
-
File.
|
96
|
+
File.binwrite(@image_file, Net::HTTP.get(URI(url))) unless File.exist?(@image_file)
|
97
97
|
@images ||= {}
|
98
98
|
@images[@collection] ||= Punks::Image::Composite.read(@image_file, width: width, height: height)
|
99
99
|
@last_collection = @collection
|
data/app/view/image_frame.rb
CHANGED
@@ -119,7 +119,7 @@ class CryptopunksGui
|
|
119
119
|
|
120
120
|
Glimmer::DataBinding::Observer.proc do
|
121
121
|
image_index_spinbox.to = image.images[image.collection].size - 1
|
122
|
-
end.observe(image, :
|
122
|
+
end.observe(image, :collection)
|
123
123
|
end
|
124
124
|
|
125
125
|
def add_style_options(style_options_container_frame: , image: )
|
data/bin/cryptopunks-gui
CHANGED
File without changes
|
data/cryptopunks-gui.gemspec
CHANGED
@@ -1,68 +1,68 @@
|
|
1
|
-
# Generated by juwelier
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: cryptopunks-gui 0.0.
|
6
|
-
|
7
|
-
Gem::Specification.new do |s|
|
8
|
-
s.name = "cryptopunks-gui".freeze
|
9
|
-
s.version = "0.0.
|
10
|
-
|
11
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
|
-
s.require_paths = ["app".freeze]
|
13
|
-
s.authors = ["
|
14
|
-
s.date = "2021-11-
|
15
|
-
s.description = "CryptoPunks GUI for Simplified Minting - Built with Glimmer DSL for Tk (requires ActiveTcl to run cryptopunks-gui command)".freeze
|
16
|
-
s.email = "andy.am@gmail.com".freeze
|
17
|
-
s.executables = ["cryptopunks-gui".freeze]
|
18
|
-
s.extra_rdoc_files = [
|
19
|
-
"CHANGELOG.md",
|
20
|
-
"LICENSE.txt",
|
21
|
-
"README.md"
|
22
|
-
]
|
23
|
-
s.files = [
|
24
|
-
"CHANGELOG.md",
|
25
|
-
"LICENSE.txt",
|
26
|
-
"README.md",
|
27
|
-
"VERSION",
|
28
|
-
"app/cryptopunks_gui.rb",
|
29
|
-
"app/model/image.rb",
|
30
|
-
"app/view/help_dialog.rb",
|
31
|
-
"app/view/image_frame.rb",
|
32
|
-
"app/view/menu_bar.rb",
|
33
|
-
"app/view/preferences_dialog.rb",
|
34
|
-
"app/view/style_options_frame.rb",
|
35
|
-
"bin/cryptopunks-gui",
|
36
|
-
"cryptopunks-gui.gemspec",
|
37
|
-
"icons/cryptopunks-gui.icns",
|
38
|
-
"icons/cryptopunks-gui.png"
|
39
|
-
]
|
40
|
-
s.homepage = "http://github.com/
|
41
|
-
s.licenses = ["MIT".freeze]
|
42
|
-
s.post_install_message = "To launch CryptoPunks GUI, run command: cryptopunks-gui".freeze
|
43
|
-
s.rubygems_version = "3.
|
44
|
-
s.summary = "CryptoPunks GUI for Simplified Minting".freeze
|
45
|
-
|
46
|
-
if s.respond_to? :specification_version then
|
47
|
-
s.specification_version = 4
|
48
|
-
end
|
49
|
-
|
50
|
-
if s.respond_to? :add_runtime_dependency then
|
51
|
-
s.add_runtime_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
52
|
-
s.add_runtime_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
53
|
-
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
54
|
-
s.add_development_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
55
|
-
s.add_development_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
56
|
-
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
|
57
|
-
s.add_development_dependency(%q<rake-tui>.freeze, [">= 0"])
|
58
|
-
else
|
59
|
-
s.add_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
60
|
-
s.add_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
61
|
-
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
62
|
-
s.add_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
63
|
-
s.add_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
64
|
-
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
65
|
-
s.add_dependency(%q<rake-tui>.freeze, [">= 0"])
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
1
|
+
# Generated by juwelier
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: cryptopunks-gui 0.0.14 ruby app
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "cryptopunks-gui".freeze
|
9
|
+
s.version = "0.0.14"
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
|
+
s.require_paths = ["app".freeze]
|
13
|
+
s.authors = ["andy_maleh".freeze, "geraldbauer".freeze]
|
14
|
+
s.date = "2021-11-25"
|
15
|
+
s.description = "CryptoPunks GUI for Simplified Minting - Built with Glimmer DSL for Tk (requires ActiveTcl to run cryptopunks-gui command)".freeze
|
16
|
+
s.email = "andy.am@gmail.com".freeze
|
17
|
+
s.executables = ["cryptopunks-gui".freeze]
|
18
|
+
s.extra_rdoc_files = [
|
19
|
+
"CHANGELOG.md",
|
20
|
+
"LICENSE.txt",
|
21
|
+
"README.md"
|
22
|
+
]
|
23
|
+
s.files = [
|
24
|
+
"CHANGELOG.md",
|
25
|
+
"LICENSE.txt",
|
26
|
+
"README.md",
|
27
|
+
"VERSION",
|
28
|
+
"app/cryptopunks_gui.rb",
|
29
|
+
"app/model/image.rb",
|
30
|
+
"app/view/help_dialog.rb",
|
31
|
+
"app/view/image_frame.rb",
|
32
|
+
"app/view/menu_bar.rb",
|
33
|
+
"app/view/preferences_dialog.rb",
|
34
|
+
"app/view/style_options_frame.rb",
|
35
|
+
"bin/cryptopunks-gui",
|
36
|
+
"cryptopunks-gui.gemspec",
|
37
|
+
"icons/cryptopunks-gui.icns",
|
38
|
+
"icons/cryptopunks-gui.png"
|
39
|
+
]
|
40
|
+
s.homepage = "http://github.com/cryptopunksnotdead/cryptopunks-gui".freeze
|
41
|
+
s.licenses = ["MIT".freeze]
|
42
|
+
s.post_install_message = "To launch CryptoPunks GUI, run command: cryptopunks-gui".freeze
|
43
|
+
s.rubygems_version = "3.2.22".freeze
|
44
|
+
s.summary = "CryptoPunks GUI for Simplified Minting".freeze
|
45
|
+
|
46
|
+
if s.respond_to? :specification_version then
|
47
|
+
s.specification_version = 4
|
48
|
+
end
|
49
|
+
|
50
|
+
if s.respond_to? :add_runtime_dependency then
|
51
|
+
s.add_runtime_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
52
|
+
s.add_runtime_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
53
|
+
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
54
|
+
s.add_development_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
55
|
+
s.add_development_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
56
|
+
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
|
57
|
+
s.add_development_dependency(%q<rake-tui>.freeze, [">= 0"])
|
58
|
+
else
|
59
|
+
s.add_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
60
|
+
s.add_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
61
|
+
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
62
|
+
s.add_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
63
|
+
s.add_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
64
|
+
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
65
|
+
s.add_dependency(%q<rake-tui>.freeze, [">= 0"])
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cryptopunks-gui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- andy_maleh
|
8
|
+
- geraldbauer
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
12
|
+
date: 2021-11-25 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: glimmer-dsl-tk
|
@@ -134,7 +135,7 @@ files:
|
|
134
135
|
- cryptopunks-gui.gemspec
|
135
136
|
- icons/cryptopunks-gui.icns
|
136
137
|
- icons/cryptopunks-gui.png
|
137
|
-
homepage: http://github.com/
|
138
|
+
homepage: http://github.com/cryptopunksnotdead/cryptopunks-gui
|
138
139
|
licenses:
|
139
140
|
- MIT
|
140
141
|
metadata: {}
|
@@ -153,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
154
|
- !ruby/object:Gem::Version
|
154
155
|
version: '0'
|
155
156
|
requirements: []
|
156
|
-
rubygems_version: 3.
|
157
|
+
rubygems_version: 3.2.22
|
157
158
|
signing_key:
|
158
159
|
specification_version: 4
|
159
160
|
summary: CryptoPunks GUI for Simplified Minting
|