desoto-photoapp 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +8 -0
- data/assets/Reprint.app/Contents/Info.plist +2 -2
- data/assets/Reprint.app/Contents/document.wflow +2 -3
- data/assets/Update.app/Contents/Info.plist +86 -0
- data/assets/Update.app/Contents/MacOS/Application Stub +0 -0
- data/assets/Update.app/Contents/Resources/AutomatorApplet.icns +0 -0
- data/assets/Update.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/English.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/French.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/German.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/Italian.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ar.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ca.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/cs.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/da.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/el.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/fi.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/he.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/hr.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/hu.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/id.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ko.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ms.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/no.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/pl.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/pt.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ro.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/ru.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/sk.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/sv.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/th.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/tr.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/uk.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/vi.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib +0 -0
- data/assets/Update.app/Contents/document.wflow +194 -0
- data/assets/photoapp-process.workflow/Contents/QuickLook/Thumbnail.png +0 -0
- data/assets/photoapp-process.workflow/Contents/document.wflow +3 -2
- data/exe/photoapp +27 -7
- data/icons/Reprint.icns +0 -0
- data/icons/Update.afdesign +0 -0
- data/icons/Update.icns +0 -0
- data/icons/Update.png +0 -0
- data/icons/reprint.png +0 -0
- data/lib/photoapp/version.rb +1 -1
- metadata +46 -3
- data/assets/photoapp-process.workflow/Contents/QuickLook/Preview.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28684ac847e4de73895e525c543179ebcd390f54
|
4
|
+
data.tar.gz: 33d27ff0a73bce6a40866e9afb67c4426278b9e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1c93893480914e89f1eee22ec5596d40ff2143b6670336230db3668e14ef4ba6b51ef6404d2933c545c9be10a671ebb87fda8de14f88b9220ecfa325882ef42
|
7
|
+
data.tar.gz: b6eaebd5a5afe2de5fe4f87a50b6fff617bca3e0ea7bbcf3ae01b3cae200687672cd56c6be0bf7eb7962a2adc0a63cd9c97551efcd9f942e2b8d91c2bd1ea95f
|
data/Rakefile
CHANGED
@@ -1 +1,9 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
|
+
|
3
|
+
task :icons do
|
4
|
+
icon_path = "Contents/Resources/AutomatorApplet.icns"
|
5
|
+
%w(Reprint Update).each do |app|
|
6
|
+
FileUtils.rm "assets/#{app}.app/#{icon_path}"
|
7
|
+
FileUtils.cp "icons/#{app}.icns", "assets/#{app}.app/#{icon_path}"
|
8
|
+
end
|
9
|
+
end
|
@@ -32,11 +32,11 @@
|
|
32
32
|
<key>CFBundleIconFile</key>
|
33
33
|
<string>AutomatorApplet</string>
|
34
34
|
<key>CFBundleIdentifier</key>
|
35
|
-
<string>com.apple.automator.
|
35
|
+
<string>com.apple.automator.Reprint</string>
|
36
36
|
<key>CFBundleInfoDictionaryVersion</key>
|
37
37
|
<string>6.0</string>
|
38
38
|
<key>CFBundleName</key>
|
39
|
-
<string>
|
39
|
+
<string>Reprint</string>
|
40
40
|
<key>CFBundlePackageType</key>
|
41
41
|
<string>APPL</string>
|
42
42
|
<key>CFBundleShortVersionString</key>
|
@@ -59,7 +59,8 @@
|
|
59
59
|
<key>ActionParameters</key>
|
60
60
|
<dict>
|
61
61
|
<key>COMMAND_STRING</key>
|
62
|
-
<string>
|
62
|
+
<string>say "reprinting photos"
|
63
|
+
for f in "$@"
|
63
64
|
do
|
64
65
|
lpr $f
|
65
66
|
done</string>
|
@@ -172,8 +173,6 @@ done</string>
|
|
172
173
|
<string>4</string>
|
173
174
|
</dict>
|
174
175
|
</dict>
|
175
|
-
<key>conversionLabel</key>
|
176
|
-
<integer>0</integer>
|
177
176
|
<key>isViewVisible</key>
|
178
177
|
<true/>
|
179
178
|
<key>location</key>
|
@@ -0,0 +1,86 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>AMIsApplet</key>
|
6
|
+
<true/>
|
7
|
+
<key>AMStayOpen</key>
|
8
|
+
<false/>
|
9
|
+
<key>BuildMachineOSBuild</key>
|
10
|
+
<string>14D49</string>
|
11
|
+
<key>CFBundleDevelopmentRegion</key>
|
12
|
+
<string>English</string>
|
13
|
+
<key>CFBundleDocumentTypes</key>
|
14
|
+
<array>
|
15
|
+
<dict>
|
16
|
+
<key>CFBundleTypeExtensions</key>
|
17
|
+
<array>
|
18
|
+
<string>*</string>
|
19
|
+
</array>
|
20
|
+
<key>CFBundleTypeName</key>
|
21
|
+
<string>Automator workflow file</string>
|
22
|
+
<key>CFBundleTypeOSTypes</key>
|
23
|
+
<array>
|
24
|
+
<string>****</string>
|
25
|
+
</array>
|
26
|
+
<key>CFBundleTypeRole</key>
|
27
|
+
<string>Viewer</string>
|
28
|
+
</dict>
|
29
|
+
</array>
|
30
|
+
<key>CFBundleExecutable</key>
|
31
|
+
<string>Application Stub</string>
|
32
|
+
<key>CFBundleIconFile</key>
|
33
|
+
<string>AutomatorApplet</string>
|
34
|
+
<key>CFBundleIdentifier</key>
|
35
|
+
<string>com.apple.automator.Update</string>
|
36
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
37
|
+
<string>6.0</string>
|
38
|
+
<key>CFBundleName</key>
|
39
|
+
<string>Update</string>
|
40
|
+
<key>CFBundlePackageType</key>
|
41
|
+
<string>APPL</string>
|
42
|
+
<key>CFBundleShortVersionString</key>
|
43
|
+
<string>1.2</string>
|
44
|
+
<key>CFBundleSignature</key>
|
45
|
+
<string>????</string>
|
46
|
+
<key>CFBundleURLTypes</key>
|
47
|
+
<array/>
|
48
|
+
<key>CFBundleVersion</key>
|
49
|
+
<string>409.2</string>
|
50
|
+
<key>DTCompiler</key>
|
51
|
+
<string>com.apple.compilers.llvm.clang.1_0</string>
|
52
|
+
<key>DTPlatformBuild</key>
|
53
|
+
<string>6D97u</string>
|
54
|
+
<key>DTPlatformVersion</key>
|
55
|
+
<string>GM</string>
|
56
|
+
<key>DTSDKBuild</key>
|
57
|
+
<string>14D42</string>
|
58
|
+
<key>DTSDKName</key>
|
59
|
+
<string>macosx10.10internal</string>
|
60
|
+
<key>DTXcode</key>
|
61
|
+
<string>0630</string>
|
62
|
+
<key>DTXcodeBuild</key>
|
63
|
+
<string>6D97u</string>
|
64
|
+
<key>LSMinimumSystemVersion</key>
|
65
|
+
<string>10.5</string>
|
66
|
+
<key>LSMinimumSystemVersionByArchitecture</key>
|
67
|
+
<dict>
|
68
|
+
<key>x86_64</key>
|
69
|
+
<string>10.6</string>
|
70
|
+
</dict>
|
71
|
+
<key>LSUIElement</key>
|
72
|
+
<true/>
|
73
|
+
<key>NSAppleScriptEnabled</key>
|
74
|
+
<string>YES</string>
|
75
|
+
<key>NSMainNibFile</key>
|
76
|
+
<string>ApplicationStub</string>
|
77
|
+
<key>NSPrincipalClass</key>
|
78
|
+
<string>NSApplication</string>
|
79
|
+
<key>NSServices</key>
|
80
|
+
<array/>
|
81
|
+
<key>UTExportedTypeDeclarations</key>
|
82
|
+
<array/>
|
83
|
+
<key>UTImportedTypeDeclarations</key>
|
84
|
+
<array/>
|
85
|
+
</dict>
|
86
|
+
</plist>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,194 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>AMApplicationBuild</key>
|
6
|
+
<string>409.2</string>
|
7
|
+
<key>AMApplicationVersion</key>
|
8
|
+
<string>2.5</string>
|
9
|
+
<key>AMDocumentVersion</key>
|
10
|
+
<string>2</string>
|
11
|
+
<key>actions</key>
|
12
|
+
<array>
|
13
|
+
<dict>
|
14
|
+
<key>action</key>
|
15
|
+
<dict>
|
16
|
+
<key>AMAccepts</key>
|
17
|
+
<dict>
|
18
|
+
<key>Container</key>
|
19
|
+
<string>List</string>
|
20
|
+
<key>Optional</key>
|
21
|
+
<true/>
|
22
|
+
<key>Types</key>
|
23
|
+
<array>
|
24
|
+
<string>com.apple.cocoa.string</string>
|
25
|
+
</array>
|
26
|
+
</dict>
|
27
|
+
<key>AMActionVersion</key>
|
28
|
+
<string>2.0.3</string>
|
29
|
+
<key>AMApplication</key>
|
30
|
+
<array>
|
31
|
+
<string>Automator</string>
|
32
|
+
</array>
|
33
|
+
<key>AMParameterProperties</key>
|
34
|
+
<dict>
|
35
|
+
<key>COMMAND_STRING</key>
|
36
|
+
<dict/>
|
37
|
+
<key>CheckedForUserDefaultShell</key>
|
38
|
+
<dict/>
|
39
|
+
<key>inputMethod</key>
|
40
|
+
<dict/>
|
41
|
+
<key>shell</key>
|
42
|
+
<dict/>
|
43
|
+
<key>source</key>
|
44
|
+
<dict/>
|
45
|
+
</dict>
|
46
|
+
<key>AMProvides</key>
|
47
|
+
<dict>
|
48
|
+
<key>Container</key>
|
49
|
+
<string>List</string>
|
50
|
+
<key>Types</key>
|
51
|
+
<array>
|
52
|
+
<string>com.apple.cocoa.string</string>
|
53
|
+
</array>
|
54
|
+
</dict>
|
55
|
+
<key>ActionBundlePath</key>
|
56
|
+
<string>/System/Library/Automator/Run Shell Script.action</string>
|
57
|
+
<key>ActionName</key>
|
58
|
+
<string>Run Shell Script</string>
|
59
|
+
<key>ActionParameters</key>
|
60
|
+
<dict>
|
61
|
+
<key>COMMAND_STRING</key>
|
62
|
+
<string>source ~/.bash_profile
|
63
|
+
gem update desoto-photoapp
|
64
|
+
photoapp setup
|
65
|
+
say "Photo app updated"</string>
|
66
|
+
<key>CheckedForUserDefaultShell</key>
|
67
|
+
<true/>
|
68
|
+
<key>inputMethod</key>
|
69
|
+
<integer>0</integer>
|
70
|
+
<key>shell</key>
|
71
|
+
<string>/bin/bash</string>
|
72
|
+
<key>source</key>
|
73
|
+
<string></string>
|
74
|
+
</dict>
|
75
|
+
<key>BundleIdentifier</key>
|
76
|
+
<string>com.apple.RunShellScript</string>
|
77
|
+
<key>CFBundleVersion</key>
|
78
|
+
<string>2.0.3</string>
|
79
|
+
<key>CanShowSelectedItemsWhenRun</key>
|
80
|
+
<false/>
|
81
|
+
<key>CanShowWhenRun</key>
|
82
|
+
<true/>
|
83
|
+
<key>Category</key>
|
84
|
+
<array>
|
85
|
+
<string>AMCategoryUtilities</string>
|
86
|
+
</array>
|
87
|
+
<key>Class Name</key>
|
88
|
+
<string>RunShellScriptAction</string>
|
89
|
+
<key>InputUUID</key>
|
90
|
+
<string>779A74B5-DAD3-4231-9018-06560E903822</string>
|
91
|
+
<key>Keywords</key>
|
92
|
+
<array>
|
93
|
+
<string>Shell</string>
|
94
|
+
<string>Script</string>
|
95
|
+
<string>Command</string>
|
96
|
+
<string>Run</string>
|
97
|
+
<string>Unix</string>
|
98
|
+
</array>
|
99
|
+
<key>OutputUUID</key>
|
100
|
+
<string>7FB77A99-8295-4395-AC00-6B106BDB61C7</string>
|
101
|
+
<key>UUID</key>
|
102
|
+
<string>A2174CF7-1CEC-4585-9615-32D9D53A0CD7</string>
|
103
|
+
<key>UnlocalizedApplications</key>
|
104
|
+
<array>
|
105
|
+
<string>Automator</string>
|
106
|
+
</array>
|
107
|
+
<key>arguments</key>
|
108
|
+
<dict>
|
109
|
+
<key>0</key>
|
110
|
+
<dict>
|
111
|
+
<key>default value</key>
|
112
|
+
<integer>0</integer>
|
113
|
+
<key>name</key>
|
114
|
+
<string>inputMethod</string>
|
115
|
+
<key>required</key>
|
116
|
+
<string>0</string>
|
117
|
+
<key>type</key>
|
118
|
+
<string>0</string>
|
119
|
+
<key>uuid</key>
|
120
|
+
<string>0</string>
|
121
|
+
</dict>
|
122
|
+
<key>1</key>
|
123
|
+
<dict>
|
124
|
+
<key>default value</key>
|
125
|
+
<string></string>
|
126
|
+
<key>name</key>
|
127
|
+
<string>source</string>
|
128
|
+
<key>required</key>
|
129
|
+
<string>0</string>
|
130
|
+
<key>type</key>
|
131
|
+
<string>0</string>
|
132
|
+
<key>uuid</key>
|
133
|
+
<string>1</string>
|
134
|
+
</dict>
|
135
|
+
<key>2</key>
|
136
|
+
<dict>
|
137
|
+
<key>default value</key>
|
138
|
+
<false/>
|
139
|
+
<key>name</key>
|
140
|
+
<string>CheckedForUserDefaultShell</string>
|
141
|
+
<key>required</key>
|
142
|
+
<string>0</string>
|
143
|
+
<key>type</key>
|
144
|
+
<string>0</string>
|
145
|
+
<key>uuid</key>
|
146
|
+
<string>2</string>
|
147
|
+
</dict>
|
148
|
+
<key>3</key>
|
149
|
+
<dict>
|
150
|
+
<key>default value</key>
|
151
|
+
<string></string>
|
152
|
+
<key>name</key>
|
153
|
+
<string>COMMAND_STRING</string>
|
154
|
+
<key>required</key>
|
155
|
+
<string>0</string>
|
156
|
+
<key>type</key>
|
157
|
+
<string>0</string>
|
158
|
+
<key>uuid</key>
|
159
|
+
<string>3</string>
|
160
|
+
</dict>
|
161
|
+
<key>4</key>
|
162
|
+
<dict>
|
163
|
+
<key>default value</key>
|
164
|
+
<string>/bin/sh</string>
|
165
|
+
<key>name</key>
|
166
|
+
<string>shell</string>
|
167
|
+
<key>required</key>
|
168
|
+
<string>0</string>
|
169
|
+
<key>type</key>
|
170
|
+
<string>0</string>
|
171
|
+
<key>uuid</key>
|
172
|
+
<string>4</string>
|
173
|
+
</dict>
|
174
|
+
</dict>
|
175
|
+
<key>isViewVisible</key>
|
176
|
+
<true/>
|
177
|
+
<key>location</key>
|
178
|
+
<string>369.000000:253.000000</string>
|
179
|
+
<key>nibPath</key>
|
180
|
+
<string>/System/Library/Automator/Run Shell Script.action/Contents/Resources/English.lproj/main.nib</string>
|
181
|
+
</dict>
|
182
|
+
<key>isViewVisible</key>
|
183
|
+
<true/>
|
184
|
+
</dict>
|
185
|
+
</array>
|
186
|
+
<key>connectors</key>
|
187
|
+
<dict/>
|
188
|
+
<key>workflowMetaData</key>
|
189
|
+
<dict>
|
190
|
+
<key>workflowTypeIdentifier</key>
|
191
|
+
<string>com.apple.Automator.application</string>
|
192
|
+
</dict>
|
193
|
+
</dict>
|
194
|
+
</plist>
|
Binary file
|
@@ -61,7 +61,8 @@
|
|
61
61
|
<key>COMMAND_STRING</key>
|
62
62
|
<string>say "processing photos"
|
63
63
|
source ~/.bash_profile
|
64
|
-
photoapp process "$(dirname $1)"
|
64
|
+
photoapp process "$(dirname $1)"
|
65
|
+
say "processing complete"</string>
|
65
66
|
<key>CheckedForUserDefaultShell</key>
|
66
67
|
<true/>
|
67
68
|
<key>inputMethod</key>
|
@@ -176,7 +177,7 @@ photoapp process "$(dirname $1)"</string>
|
|
176
177
|
<key>isViewVisible</key>
|
177
178
|
<true/>
|
178
179
|
<key>location</key>
|
179
|
-
<string>369.000000:
|
180
|
+
<string>369.000000:253.000000</string>
|
180
181
|
<key>nibPath</key>
|
181
182
|
<string>/System/Library/Automator/Run Shell Script.action/Contents/Resources/English.lproj/main.nib</string>
|
182
183
|
</dict>
|
data/exe/photoapp
CHANGED
@@ -13,8 +13,19 @@ OptionParser.new do |opts|
|
|
13
13
|
end
|
14
14
|
end.parse!
|
15
15
|
|
16
|
-
|
17
|
-
|
16
|
+
def update
|
17
|
+
system "ln -s #{Photoapp.gem_dir('assets/Reprint.app')} /Applications/"
|
18
|
+
system "ln -s #{Photoapp.gem_dir('assets/Update.app')} /Applications/"
|
19
|
+
system "mkdir -p ~/Library/Workflows/Applications/Folder\\ Actions/"
|
20
|
+
system "ln -s #{Photoapp.gem_dir('assets/photoapp-process.workflow')} #{File.expand_path("~/Library/Workflows/Applications/Folder\\ Actions/")}"
|
21
|
+
end
|
22
|
+
|
23
|
+
def actions
|
24
|
+
system "open /System/Library/Image\\ Capture/Support/Application/AutoImporter.app"
|
25
|
+
system "open /System/Library/CoreServices/Folder\\ Actions\\ Setup.app"
|
26
|
+
end
|
27
|
+
|
28
|
+
def setup
|
18
29
|
if `brew list imagemagick` =~ /Error:/
|
19
30
|
system "brew update && brew install imagemagick"
|
20
31
|
end
|
@@ -24,11 +35,19 @@ if ARGV.first == 'setup'
|
|
24
35
|
system "open #{Photoapp.gem_dir('assets/photos-action-installer.pkg')}"
|
25
36
|
end
|
26
37
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
38
|
+
update
|
39
|
+
actions
|
40
|
+
end
|
41
|
+
|
42
|
+
if ARGV.first == 'setup'
|
43
|
+
ARGV.shift
|
44
|
+
setup
|
45
|
+
elsif ARGV.first == 'update'
|
46
|
+
ARGV.shift
|
47
|
+
update
|
48
|
+
elsif ARGV.first == 'set-actions'
|
49
|
+
ARGV.shift
|
50
|
+
actions
|
32
51
|
else
|
33
52
|
|
34
53
|
if ARGV.first == 'process'
|
@@ -39,3 +58,4 @@ else
|
|
39
58
|
Photoapp::Session.new(options).upload
|
40
59
|
end
|
41
60
|
end
|
61
|
+
|
data/icons/Reprint.icns
ADDED
Binary file
|
Binary file
|
data/icons/Update.icns
ADDED
Binary file
|
data/icons/Update.png
ADDED
Binary file
|
data/icons/reprint.png
ADDED
Binary file
|
data/lib/photoapp/version.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
module Photoapp
|
2
|
-
VERSION = "0.
|
2
|
+
VERSION = "0.3.0" end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: desoto-photoapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rmagick
|
@@ -148,14 +148,57 @@ files:
|
|
148
148
|
- assets/Reprint.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib
|
149
149
|
- assets/Reprint.app/Contents/document.wflow
|
150
150
|
- assets/SourceSansPro-Semibold.ttf
|
151
|
+
- assets/Update.app/Contents/Info.plist
|
152
|
+
- assets/Update.app/Contents/MacOS/Application Stub
|
153
|
+
- assets/Update.app/Contents/Resources/AutomatorApplet.icns
|
154
|
+
- assets/Update.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib
|
155
|
+
- assets/Update.app/Contents/Resources/English.lproj/ApplicationStub.nib
|
156
|
+
- assets/Update.app/Contents/Resources/French.lproj/ApplicationStub.nib
|
157
|
+
- assets/Update.app/Contents/Resources/German.lproj/ApplicationStub.nib
|
158
|
+
- assets/Update.app/Contents/Resources/Italian.lproj/ApplicationStub.nib
|
159
|
+
- assets/Update.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib
|
160
|
+
- assets/Update.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib
|
161
|
+
- assets/Update.app/Contents/Resources/ar.lproj/ApplicationStub.nib
|
162
|
+
- assets/Update.app/Contents/Resources/ca.lproj/ApplicationStub.nib
|
163
|
+
- assets/Update.app/Contents/Resources/cs.lproj/ApplicationStub.nib
|
164
|
+
- assets/Update.app/Contents/Resources/da.lproj/ApplicationStub.nib
|
165
|
+
- assets/Update.app/Contents/Resources/el.lproj/ApplicationStub.nib
|
166
|
+
- assets/Update.app/Contents/Resources/es_MX.lproj/ApplicationStub.nib
|
167
|
+
- assets/Update.app/Contents/Resources/fi.lproj/ApplicationStub.nib
|
168
|
+
- assets/Update.app/Contents/Resources/he.lproj/ApplicationStub.nib
|
169
|
+
- assets/Update.app/Contents/Resources/hr.lproj/ApplicationStub.nib
|
170
|
+
- assets/Update.app/Contents/Resources/hu.lproj/ApplicationStub.nib
|
171
|
+
- assets/Update.app/Contents/Resources/id.lproj/ApplicationStub.nib
|
172
|
+
- assets/Update.app/Contents/Resources/ko.lproj/ApplicationStub.nib
|
173
|
+
- assets/Update.app/Contents/Resources/ms.lproj/ApplicationStub.nib
|
174
|
+
- assets/Update.app/Contents/Resources/no.lproj/ApplicationStub.nib
|
175
|
+
- assets/Update.app/Contents/Resources/pl.lproj/ApplicationStub.nib
|
176
|
+
- assets/Update.app/Contents/Resources/pt.lproj/ApplicationStub.nib
|
177
|
+
- assets/Update.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib
|
178
|
+
- assets/Update.app/Contents/Resources/ro.lproj/ApplicationStub.nib
|
179
|
+
- assets/Update.app/Contents/Resources/ru.lproj/ApplicationStub.nib
|
180
|
+
- assets/Update.app/Contents/Resources/sk.lproj/ApplicationStub.nib
|
181
|
+
- assets/Update.app/Contents/Resources/sv.lproj/ApplicationStub.nib
|
182
|
+
- assets/Update.app/Contents/Resources/th.lproj/ApplicationStub.nib
|
183
|
+
- assets/Update.app/Contents/Resources/tr.lproj/ApplicationStub.nib
|
184
|
+
- assets/Update.app/Contents/Resources/uk.lproj/ApplicationStub.nib
|
185
|
+
- assets/Update.app/Contents/Resources/vi.lproj/ApplicationStub.nib
|
186
|
+
- assets/Update.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib
|
187
|
+
- assets/Update.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib
|
188
|
+
- assets/Update.app/Contents/document.wflow
|
151
189
|
- assets/photoapp-process.workflow/Contents/Info.plist
|
152
|
-
- assets/photoapp-process.workflow/Contents/QuickLook/
|
190
|
+
- assets/photoapp-process.workflow/Contents/QuickLook/Thumbnail.png
|
153
191
|
- assets/photoapp-process.workflow/Contents/document.wflow
|
154
192
|
- assets/photos-action-installer.pkg
|
155
193
|
- assets/watermark.png
|
156
194
|
- bin/console
|
157
195
|
- bin/setup
|
158
196
|
- exe/photoapp
|
197
|
+
- icons/Reprint.icns
|
198
|
+
- icons/Update.afdesign
|
199
|
+
- icons/Update.icns
|
200
|
+
- icons/Update.png
|
201
|
+
- icons/reprint.png
|
159
202
|
- lib/adjust-image.workflow/Contents/Info.plist
|
160
203
|
- lib/adjust-image.workflow/Contents/QuickLook/Preview.png
|
161
204
|
- lib/adjust-image.workflow/Contents/document.wflow
|
Binary file
|