frameit 2.4.0 → 2.4.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 +5 -3
- data/lib/frameit/editor.rb +1 -1
- data/lib/frameit/offsets.rb +2 -2
- data/lib/frameit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a0fbeeee7a265d5f757d6172db851a1db0974a8
|
|
4
|
+
data.tar.gz: 88ca5a4d0268d03ce589981c986bc1635704caf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 864d6698f6a6fea4c0a9ba5892b37391bec7440644112bdd36ec7e9d790a08a9d0fbc999c6e26bb783144168ce2225a0f65a5cd9f9d567032b68b3703a6270f6
|
|
7
|
+
data.tar.gz: cdc9caa978480de1cbb4062e74fd77efe29c156047edec90857f4326a0989073226400906b65958616ad96d00d941adf31042ca9f0f6f374fad3f70a67ca9786
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<a href="https://github.com/fastlane/deliver">deliver</a> •
|
|
10
10
|
<a href="https://github.com/fastlane/snapshot">snapshot</a> •
|
|
11
11
|
<b>frameit</b> •
|
|
12
|
-
<a href="https://github.com/fastlane/
|
|
12
|
+
<a href="https://github.com/fastlane/pem">pem</a> •
|
|
13
13
|
<a href="https://github.com/fastlane/sigh">sigh</a> •
|
|
14
14
|
<a href="https://github.com/fastlane/produce">produce</a> •
|
|
15
15
|
<a href="https://github.com/fastlane/cert">cert</a> •
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
|
18
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
|
19
19
|
<a href="https://github.com/fastlane/gym">gym</a> •
|
|
20
|
-
<a href="https://github.com/fastlane/scan">scan</a>
|
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a> •
|
|
21
|
+
<a href="https://github.com/fastlane/match">match</a>
|
|
21
22
|
</p>
|
|
22
23
|
-------
|
|
23
24
|
|
|
@@ -229,7 +230,7 @@ Check out the [MindNode example project](https://github.com/fastlane/examples/tr
|
|
|
229
230
|
- [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
|
|
230
231
|
- [`deliver`](https://github.com/fastlane/deliver): Upload screenshots, metadata and your app to the App Store
|
|
231
232
|
- [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
|
|
232
|
-
- [`
|
|
233
|
+
- [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
|
|
233
234
|
- [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
|
234
235
|
- [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
|
235
236
|
- [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
|
|
@@ -238,6 +239,7 @@ Check out the [MindNode example project](https://github.com/fastlane/examples/tr
|
|
|
238
239
|
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
|
|
239
240
|
- [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
|
|
240
241
|
- [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
|
|
242
|
+
- [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
|
|
241
243
|
|
|
242
244
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
243
245
|
|
data/lib/frameit/editor.rb
CHANGED
|
@@ -275,7 +275,7 @@ module Frameit
|
|
|
275
275
|
strings_path = File.join(File.expand_path("..", screenshot.path), "#{type}.strings")
|
|
276
276
|
if File.exist? strings_path
|
|
277
277
|
parsed = StringsParser.parse(strings_path)
|
|
278
|
-
result = parsed.find { |k, v| screenshot.path.include? k }
|
|
278
|
+
result = parsed.find { |k, v| screenshot.path.upcase.include? k.upcase }
|
|
279
279
|
return result.last if result
|
|
280
280
|
end
|
|
281
281
|
|
data/lib/frameit/offsets.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.4.
|
|
4
|
+
version: 2.4.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-
|
|
11
|
+
date: 2015-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|