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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 188b8ea20cad11a2393517fb8bba0ec2c829405d
4
- data.tar.gz: 473304b521bb4260e1a0cd5eb4e37ce8d0e4b708
3
+ metadata.gz: 33697842a9684e1245b3cf21196579eab29f9df9
4
+ data.tar.gz: 3a71b690abfea0de0de196ddcab330f581f461fe
5
5
  SHA512:
6
- metadata.gz: cafe220cb4a05c28778b37ec80cc1b3ec15eef12c338c6d428cf03a5678ab26b434b732799735ac3d90fd9b3ba04cf7c5c0e22f8b1be3c6714af2222b68cc6a7
7
- data.tar.gz: 7dd45bc48124868b0057c55c6719307c20a6dbfc46120c151fbf0dfa97916dd3716e7b913f748cd3b6f10e3d2e36efc6081d1896fd729d5bedcb7323fbb755fa
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 automatic :rocket:
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 is possible to also frame Mac OS X Applications. You have to provide the following:
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
@@ -18,8 +18,6 @@ class FrameItApplication
18
18
  program :help, 'GitHub', 'https://github.com/krausefx/frameit'
19
19
  program :help_formatter, :compact
20
20
 
21
- always_trace!
22
-
23
21
  global_option('--verbose') { $verbose = true }
24
22
 
25
23
  default_command :black
@@ -29,7 +29,7 @@ module Frameit
29
29
  screenshot.frame!
30
30
  rescue => ex
31
31
  Helper.log.error ex
32
- Helper.log.error "Backtrace:\n\t#{ex.backtrace.join("\n\t")}"
32
+ Helper.log.error "Backtrace:\n\t#{ex.backtrace.join("\n\t")}" if $verbose
33
33
  end
34
34
  end
35
35
  else
@@ -1,3 +1,3 @@
1
1
  module Frameit
2
- VERSION = "2.2.0"
2
+ VERSION = "2.2.1"
3
3
  end
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.0
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-18 00:00:00.000000000 Z
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.7.2
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.7.2
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.6
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