appiconset 2.7.0 → 2.8.0
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.base.md +2 -0
- data/README.ja.md +1 -0
- data/README.md +1 -0
- data/lib/appiconset/generator.rb +7 -0
- data/lib/appiconset/version.rb +1 -1
- data/sample/tv-appstore/Icon@1x.png +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28423220ebc350413e2b46587e70333a39b5bed37dc3e45ba6980ba9a5486726
|
4
|
+
data.tar.gz: 6b0a4badc573fa5bf74f5d3fc3080bdcda8812685ca4b43ed82037016a2381ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73dc8fdffac661a7c8a46e2106959385f7a163e110c785f02c79e5d22d8f93a2e05ef632a7aa41220562402ccf50a69afe10aca97967032f79d47575b27f2cc7
|
7
|
+
data.tar.gz: 2d2cf96130f81644fd5a6c1cac38c12d1d1b9da3bcc9a43aa788ab582388cc76f5250c4bc4972bf2e9720b9b76eac61b325123a6d5da0ffce6a90273eba691f9
|
data/README.base.md
CHANGED
@@ -52,6 +52,7 @@ tvOSアプリ向けのアイコンを作成するには。4640px x 1440px の画
|
|
52
52
|
| ディレクトリの名前 | サイズ | 画像 |
|
53
53
|
|--|--|--|
|
54
54
|
| tv | 400x1440 |  |
|
55
|
+
| tv-appstore | 1280x768 |  |
|
55
56
|
| tv-top-shelf | 3840x1440 | |
|
56
57
|
| tv-top-shelf-wide | 4640x1440 | |
|
57
58
|
|
@@ -106,6 +107,7 @@ The input image is the same as tv-top-shelf-wide, tv-top-shelf is the image from
|
|
106
107
|
| Directory name | Size | Image |
|
107
108
|
|--|--|--|
|
108
109
|
| tv | 400x1440 |  |
|
110
|
+
| tv-appstore | 1280x768 |  |
|
109
111
|
| tv-top-shelf | 3840x1440 | |
|
110
112
|
| tv-top-shelf-wide | 4640x1440 | |
|
111
113
|
|
data/README.ja.md
CHANGED
@@ -46,6 +46,7 @@ tvOSアプリ向けのアイコンを作成するには。4640px x 1440px の画
|
|
46
46
|
| ディレクトリの名前 | サイズ | 画像 |
|
47
47
|
|--|--|--|
|
48
48
|
| tv | 400x1440 |  |
|
49
|
+
| tv-appstore | 1280x768 |  |
|
49
50
|
| tv-top-shelf | 3840x1440 | |
|
50
51
|
| tv-top-shelf-wide | 4640x1440 | |
|
51
52
|
|
data/README.md
CHANGED
@@ -46,6 +46,7 @@ The input image is the same as tv-top-shelf-wide, tv-top-shelf is the image from
|
|
46
46
|
| Directory name | Size | Image |
|
47
47
|
|--|--|--|
|
48
48
|
| tv | 400x1440 |  |
|
49
|
+
| tv-appstore | 1280x768 |  |
|
49
50
|
| tv-top-shelf | 3840x1440 | |
|
50
51
|
| tv-top-shelf-wide | 4640x1440 | |
|
51
52
|
|
data/lib/appiconset/generator.rb
CHANGED
@@ -112,6 +112,13 @@ module Appiconset
|
|
112
112
|
{ width: 4640, height: 1440, name: 'Icon@2x.png' },
|
113
113
|
{ width: 2320, height: 720, name: 'Icon@1x.png' }
|
114
114
|
]
|
115
|
+
},
|
116
|
+
{
|
117
|
+
name: 'tv-appstore',
|
118
|
+
size: [4640, 1440],
|
119
|
+
contents: [
|
120
|
+
{ width: 1280, height: 768, name: 'Icon@1x.png' }
|
121
|
+
]
|
115
122
|
}
|
116
123
|
]
|
117
124
|
|
data/lib/appiconset/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appiconset
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- arthur87
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- lib/appiconset/settings/universal-xcode9.1-Contents.json
|
102
102
|
- lib/appiconset/settings/watch-xcode10.0-Contents.json
|
103
103
|
- lib/appiconset/version.rb
|
104
|
+
- sample/tv-appstore/Icon@1x.png
|
104
105
|
- sample/tv-top-shelf-wide/Icon@1x.png
|
105
106
|
- sample/tv-top-shelf-wide/Icon@2x.png
|
106
107
|
- sample/tv-top-shelf/Icon@1x.png
|