frameit 2.2.0 → 2.2.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 +4 -4
- data/README.md +11 -2
- data/bin/frameit +0 -2
- data/lib/frameit/runner.rb +1 -1
- data/lib/frameit/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33697842a9684e1245b3cf21196579eab29f9df9
|
|
4
|
+
data.tar.gz: 3a71b690abfea0de0de196ddcab330f581f461fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 435f45f0176da56d12aa4258b3e91c57e5869789c3a60b4fa46acab276be667f76b49c9c40b1f930ae4b29ed62f7cb86b3896cb768009547639c409e08f46981
|
|
7
|
+
data.tar.gz: 76b974d29562dd17976266b6721b5b066a45cb9e06d0b9f03146f3bd79b08045a9e8cabfb3abe144dc3fc885d09140a227a4372b789b0f604a92436c6974104e
|
data/README.md
CHANGED
|
@@ -186,11 +186,11 @@ The `keyword.strings` and `title.strings` are standard `.strings` file you alrea
|
|
|
186
186
|
|
|
187
187
|
#### Uploading screenshots to iTC
|
|
188
188
|
|
|
189
|
-
Use [deliver](https://github.com/KrauseFx/deliver) to upload all screenshots to iTunes Connect completely
|
|
189
|
+
Use [deliver](https://github.com/KrauseFx/deliver) to upload all screenshots to iTunes Connect completely automatically :rocket:
|
|
190
190
|
|
|
191
191
|
### Mac
|
|
192
192
|
|
|
193
|
-
With `frameit` 2.0
|
|
193
|
+
With `frameit` 2.0 it's possible to also frame Mac OS X Application screenshots. You have to provide the following:
|
|
194
194
|
|
|
195
195
|
- The `offset` information so `frameit` knows where to put your screenshots
|
|
196
196
|
- A path to a `background`, which should contain both the background and the Mac
|
|
@@ -251,6 +251,15 @@ Some stock images provided by Apple still have a white background instead of a t
|
|
|
251
251
|
## Use a clean status bar
|
|
252
252
|
You can use [SimulatorStatusMagic](https://github.com/shinydevelopment/SimulatorStatusMagic) to clean up the status bar.
|
|
253
253
|
|
|
254
|
+
## Gray artifacts around text
|
|
255
|
+
|
|
256
|
+
If you run into any quality issues, like having a border around the font, it usually helps to just re-install `imagemagick`. You can do so by running
|
|
257
|
+
|
|
258
|
+
```sh
|
|
259
|
+
brew uninstall imagemagick
|
|
260
|
+
brew install imagemagick
|
|
261
|
+
```
|
|
262
|
+
|
|
254
263
|
## Uninstall
|
|
255
264
|
- ```sudo gem uninstall frameit```
|
|
256
265
|
- ```rm -rf ~/.frameit```
|
data/bin/frameit
CHANGED
data/lib/frameit/runner.rb
CHANGED
data/lib/frameit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: frameit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08
|
|
11
|
+
date: 2015-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -16,14 +16,20 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.16.0
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.0.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
27
|
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
29
|
+
version: 0.16.0
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.0.0
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: fastimage
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
201
|
version: '0'
|
|
196
202
|
requirements: []
|
|
197
203
|
rubyforge_project:
|
|
198
|
-
rubygems_version: 2.4.
|
|
204
|
+
rubygems_version: 2.4.5
|
|
199
205
|
signing_key:
|
|
200
206
|
specification_version: 4
|
|
201
207
|
summary: Quickly put your screenshots into the right device frames
|