Skip to content

Commit 037d073

Browse files
author
Anthony Somerset
committed
Adding initial Sparkle code and public Key (private key to be shared via a secure method to @michaelvillar)
1 parent 8ed7d89 commit 037d073

File tree

103 files changed

+2642
-28
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+2642
-28
lines changed

FileShuttle.xcodeproj/project.pbxproj

+11
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
4CCFAA7B14AA142400D4A0BD /* status_item_mask.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CCFAA7914AA142400D4A0BD /* status_item_mask.png */; };
4949
4CFBC71D13F9AADA0043F56A /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4CFBC71C13F9AADA0043F56A /* MainMenu.xib */; };
5050
4CFBC72513F9AFE30043F56A /* MVPreferencesController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFBC72413F9AFE30043F56A /* MVPreferencesController.m */; };
51+
F8BE958616C64422001368E1 /* Sparkle.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8BE958516C64422001368E1 /* Sparkle.framework */; };
52+
F8BE958916C64473001368E1 /* Sparkle.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F8BE958516C64422001368E1 /* Sparkle.framework */; };
53+
F8BE958C16C649DC001368E1 /* dsa_pub.pem in Resources */ = {isa = PBXBuildFile; fileRef = F8BE958B16C649DC001368E1 /* dsa_pub.pem */; };
5154
/* End PBXBuildFile section */
5255

5356
/* Begin PBXCopyFilesBuildPhase section */
@@ -58,6 +61,7 @@
5861
dstSubfolderSpec = 10;
5962
files = (
6063
4C4F4BDD16C5BA42005E32A3 /* CURLHandle.framework in Copy Frameworks */,
64+
F8BE958916C64473001368E1 /* Sparkle.framework in Copy Frameworks */,
6165
4C6B0C4114A920D600E35C50 /* ShortcutRecorder.framework in Copy Frameworks */,
6266
4C9F98AA1493D2BB007B80DD /* Growl.framework in Copy Frameworks */,
6367
4C9F98D6149521C7007B80DD /* RegexKit.framework in Copy Frameworks */,
@@ -130,6 +134,8 @@
130134
4CFBC71C13F9AADA0043F56A /* MainMenu.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MainMenu.xib; sourceTree = "<group>"; };
131135
4CFBC72313F9AFE30043F56A /* MVPreferencesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MVPreferencesController.h; sourceTree = "<group>"; };
132136
4CFBC72413F9AFE30043F56A /* MVPreferencesController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MVPreferencesController.m; sourceTree = "<group>"; };
137+
F8BE958516C64422001368E1 /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = "<group>"; };
138+
F8BE958B16C649DC001368E1 /* dsa_pub.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dsa_pub.pem; sourceTree = "<group>"; };
133139
/* End PBXFileReference section */
134140

135141
/* Begin PBXFrameworksBuildPhase section */
@@ -145,6 +151,7 @@
145151
4C9F98D514952069007B80DD /* RegexKit.framework in Frameworks */,
146152
4C6B0C3F14A91FE900E35C50 /* ShortcutRecorder.framework in Frameworks */,
147153
4C4F4BDC16C5BA18005E32A3 /* CURLHandle.framework in Frameworks */,
154+
F8BE958616C64422001368E1 /* Sparkle.framework in Frameworks */,
148155
);
149156
runOnlyForDeploymentPostprocessing = 0;
150157
};
@@ -187,6 +194,7 @@
187194
4CCC76C4136755DE001D5C9E /* Frameworks */ = {
188195
isa = PBXGroup;
189196
children = (
197+
F8BE958516C64422001368E1 /* Sparkle.framework */,
190198
4C4F4BDB16C5BA18005E32A3 /* CURLHandle.framework */,
191199
4C6B0C4214A925D600E35C50 /* Carbon.framework */,
192200
4C6B0C3E14A91FE900E35C50 /* ShortcutRecorder.framework */,
@@ -230,6 +238,7 @@
230238
4CCC76CC136755DE001D5C9E /* Supporting Files */ = {
231239
isa = PBXGroup;
232240
children = (
241+
F8BE958B16C649DC001368E1 /* dsa_pub.pem */,
233242
4CCC76CD136755DE001D5C9E /* FileShuttle-Info.plist */,
234243
4CCC76CE136755DE001D5C9E /* InfoPlist.strings */,
235244
4CCC76D1136755DE001D5C9E /* FileShuttle-Prefix.pch */,
@@ -344,6 +353,7 @@
344353
4C6CF8351497F32D002C1E14 /* status_item_error.png in Resources */,
345354
4CCFAA7A14AA142400D4A0BD /* status_item_empty.png in Resources */,
346355
4CCFAA7B14AA142400D4A0BD /* status_item_mask.png in Resources */,
356+
F8BE958C16C649DC001368E1 /* dsa_pub.pem in Resources */,
347357
);
348358
runOnlyForDeploymentPostprocessing = 0;
349359
};
@@ -427,6 +437,7 @@
427437
IBC_NOTICES = YES;
428438
IBC_WARNINGS = YES;
429439
MACOSX_DEPLOYMENT_TARGET = 10.6;
440+
ONLY_ACTIVE_ARCH = NO;
430441
OTHER_CFLAGS = "";
431442
SDKROOT = macosx10.6;
432443
};

FileShuttle/FileShuttle-Info.plist

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
<key>CFBundlePackageType</key>
3939
<string>APPL</string>
4040
<key>CFBundleShortVersionString</key>
41-
<string>2.0</string>
41+
<string>2.1</string>
4242
<key>CFBundleSignature</key>
4343
<string>????</string>
4444
<key>CFBundleVersion</key>
45-
<string>3</string>
45+
<string>4</string>
4646
<key>LSApplicationCategoryType</key>
4747
<string>public.app-category.productivity</string>
4848
<key>LSMinimumSystemVersion</key>
@@ -69,5 +69,7 @@
6969
</array>
7070
</dict>
7171
</array>
72+
<key>SUPublicDSAKeyFile</key>
73+
<string>dsa_pub.pem</string>
7274
</dict>
7375
</plist>

0 commit comments

Comments
 (0)