added send on enter
This commit is contained in:
parent
d7065afee5
commit
9da5343d86
7 changed files with 18 additions and 25 deletions
|
@ -169,7 +169,7 @@
|
||||||
<object class="NSButtonCell" key="NSCell" id="978913593">
|
<object class="NSButtonCell" key="NSCell" id="978913593">
|
||||||
<int key="NSCellFlags">-2080374784</int>
|
<int key="NSCellFlags">-2080374784</int>
|
||||||
<int key="NSCellFlags2">134217728</int>
|
<int key="NSCellFlags2">134217728</int>
|
||||||
<string key="NSContents"/>
|
<string key="NSContents">⌘↩</string>
|
||||||
<object class="NSFont" key="NSSupport" id="27">
|
<object class="NSFont" key="NSSupport" id="27">
|
||||||
<string key="NSName">LucidaGrande-Bold</string>
|
<string key="NSName">LucidaGrande-Bold</string>
|
||||||
<double key="NSSize">11</double>
|
<double key="NSSize">11</double>
|
||||||
|
@ -179,10 +179,6 @@
|
||||||
<reference key="NSControlView" ref="647941004"/>
|
<reference key="NSControlView" ref="647941004"/>
|
||||||
<int key="NSButtonFlags">-2033434624</int>
|
<int key="NSButtonFlags">-2033434624</int>
|
||||||
<int key="NSButtonFlags2">268435623</int>
|
<int key="NSButtonFlags2">268435623</int>
|
||||||
<object class="NSCustomResource" key="NSNormalImage">
|
|
||||||
<string key="NSClassName">NSImage</string>
|
|
||||||
<string key="NSResourceName">send</string>
|
|
||||||
</object>
|
|
||||||
<string key="NSAlternateContents"/>
|
<string key="NSAlternateContents"/>
|
||||||
<string type="base64-UTF8" key="NSKeyEquivalent">DQ</string>
|
<string type="base64-UTF8" key="NSKeyEquivalent">DQ</string>
|
||||||
<int key="NSPeriodicDelay">400</int>
|
<int key="NSPeriodicDelay">400</int>
|
||||||
|
@ -608,7 +604,6 @@ A</bytes>
|
||||||
<string>addImage:</string>
|
<string>addImage:</string>
|
||||||
<string>openAddMenu:</string>
|
<string>openAddMenu:</string>
|
||||||
<string>sendPost:</string>
|
<string>sendPost:</string>
|
||||||
<string>sendPostButtonPressed:</string>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="NSArray" key="dict.values">
|
<object class="NSArray" key="dict.values">
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||||
|
@ -616,7 +611,6 @@ A</bytes>
|
||||||
<string>id</string>
|
<string>id</string>
|
||||||
<string>id</string>
|
<string>id</string>
|
||||||
<string>NSControl</string>
|
<string>NSControl</string>
|
||||||
<string>id</string>
|
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||||
|
@ -627,7 +621,6 @@ A</bytes>
|
||||||
<string>addImage:</string>
|
<string>addImage:</string>
|
||||||
<string>openAddMenu:</string>
|
<string>openAddMenu:</string>
|
||||||
<string>sendPost:</string>
|
<string>sendPost:</string>
|
||||||
<string>sendPostButtonPressed:</string>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="NSArray" key="dict.values">
|
<object class="NSArray" key="dict.values">
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||||
|
@ -647,10 +640,6 @@ A</bytes>
|
||||||
<string key="name">sendPost:</string>
|
<string key="name">sendPost:</string>
|
||||||
<string key="candidateClassName">NSControl</string>
|
<string key="candidateClassName">NSControl</string>
|
||||||
</object>
|
</object>
|
||||||
<object class="IBActionInfo">
|
|
||||||
<string key="name">sendPostButtonPressed:</string>
|
|
||||||
<string key="candidateClassName">id</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
<object class="NSMutableDictionary" key="outlets">
|
<object class="NSMutableDictionary" key="outlets">
|
||||||
|
@ -721,14 +710,12 @@ A</bytes>
|
||||||
<string>NSAddTemplate</string>
|
<string>NSAddTemplate</string>
|
||||||
<string>NSMenuCheckmark</string>
|
<string>NSMenuCheckmark</string>
|
||||||
<string>NSMenuMixedState</string>
|
<string>NSMenuMixedState</string>
|
||||||
<string>send</string>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="NSArray" key="dict.values">
|
<object class="NSArray" key="dict.values">
|
||||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||||
<string>{8, 8}</string>
|
<string>{8, 8}</string>
|
||||||
<string>{11, 11}</string>
|
<string>{11, 11}</string>
|
||||||
<string>{10, 3}</string>
|
<string>{10, 3}</string>
|
||||||
<string>{11, 11}</string>
|
|
||||||
</object>
|
</object>
|
||||||
</object>
|
</object>
|
||||||
</data>
|
</data>
|
||||||
|
|
|
@ -226,7 +226,9 @@
|
||||||
{
|
{
|
||||||
BOOL retval = NO;
|
BOOL retval = NO;
|
||||||
|
|
||||||
if (commandSelector == @selector(insertNewline:)) {
|
BOOL isEnter = [[NSApp currentEvent] keyCode] == 76;
|
||||||
|
|
||||||
|
if (commandSelector == @selector(insertNewline:) && !isEnter) {
|
||||||
|
|
||||||
NSText *text = [[textField window] fieldEditor:YES forObject:nil];
|
NSText *text = [[textField window] fieldEditor:YES forObject:nil];
|
||||||
|
|
||||||
|
@ -242,7 +244,7 @@
|
||||||
|
|
||||||
retval = YES; // causes Apple to NOT fire the default enter action
|
retval = YES; // causes Apple to NOT fire the default enter action
|
||||||
}
|
}
|
||||||
else if (commandSelector == @selector(noop:)) {
|
else if (commandSelector == @selector(noop:) || isEnter) {
|
||||||
retval = YES;
|
retval = YES;
|
||||||
[self sendPost:control];
|
[self sendPost:control];
|
||||||
}
|
}
|
||||||
|
|
BIN
Mac/TB_SendTemplate.png
Normal file
BIN
Mac/TB_SendTemplate.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
|
@ -10,6 +10,8 @@
|
||||||
1DDD582C0DA1D0D100B32029 /* NewMessageWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58280DA1D0D100B32029 /* NewMessageWindow.xib */; };
|
1DDD582C0DA1D0D100B32029 /* NewMessageWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58280DA1D0D100B32029 /* NewMessageWindow.xib */; };
|
||||||
1DDD582D0DA1D0D100B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD582A0DA1D0D100B32029 /* MainMenu.xib */; };
|
1DDD582D0DA1D0D100B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD582A0DA1D0D100B32029 /* MainMenu.xib */; };
|
||||||
1F122D49118E1DE100E83B77 /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 1F122D48118E1DE100E83B77 /* Icon.icns */; };
|
1F122D49118E1DE100E83B77 /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 1F122D48118E1DE100E83B77 /* Icon.icns */; };
|
||||||
|
1F132C791666CD9700E4E661 /* TB_SendTemplate.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F132C781666CD9700E4E661 /* TB_SendTemplate.png */; };
|
||||||
|
1F132C7B1666CF6E00E4E661 /* send2.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F132C7A1666CF6E00E4E661 /* send2.png */; };
|
||||||
1F1990C6117BCA960049BEA7 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F1990C5117BCA960049BEA7 /* ApplicationServices.framework */; };
|
1F1990C6117BCA960049BEA7 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F1990C5117BCA960049BEA7 /* ApplicationServices.framework */; };
|
||||||
1F1C80F916482A250010B409 /* WebKit in Resources */ = {isa = PBXBuildFile; fileRef = 1F1C80F816482A250010B409 /* WebKit */; };
|
1F1C80F916482A250010B409 /* WebKit in Resources */ = {isa = PBXBuildFile; fileRef = 1F1C80F816482A250010B409 /* WebKit */; };
|
||||||
1F2D79BD165E8C6B000E8428 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F2D79BC165E8C6B000E8428 /* CoreLocation.framework */; };
|
1F2D79BD165E8C6B000E8428 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F2D79BC165E8C6B000E8428 /* CoreLocation.framework */; };
|
||||||
|
@ -20,7 +22,6 @@
|
||||||
1F77DB47118C5F1C007C7F1E /* Constants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77DB46118C5F1C007C7F1E /* Constants.m */; };
|
1F77DB47118C5F1C007C7F1E /* Constants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77DB46118C5F1C007C7F1E /* Constants.m */; };
|
||||||
1F880B6B165EE0F60022A84D /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F880B6A165EE0F60022A84D /* NSData+Base64.m */; };
|
1F880B6B165EE0F60022A84D /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F880B6A165EE0F60022A84D /* NSData+Base64.m */; };
|
||||||
1F880B6E165FE8890022A84D /* MimeType.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F880B6D165FE8890022A84D /* MimeType.m */; };
|
1F880B6E165FE8890022A84D /* MimeType.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F880B6D165FE8890022A84D /* MimeType.m */; };
|
||||||
1F9C1B7B1666AE5700A185ED /* send.png in Resources */ = {isa = PBXBuildFile; fileRef = 1F9C1B7A1666AE5700A185ED /* send.png */; };
|
|
||||||
1FA09847144602530079E258 /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FA09846144602530079E258 /* libicucore.dylib */; };
|
1FA09847144602530079E258 /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FA09846144602530079E258 /* libicucore.dylib */; };
|
||||||
1FC254A01427DFAD0035D84B /* AccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2549B1427D9930035D84B /* AccessToken.m */; };
|
1FC254A01427DFAD0035D84B /* AccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC2549B1427D9930035D84B /* AccessToken.m */; };
|
||||||
1FDEF722164EFE9100F927F3 /* Growl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FDEF721164EFE9100F927F3 /* Growl.framework */; };
|
1FDEF722164EFE9100F927F3 /* Growl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FDEF721164EFE9100F927F3 /* Growl.framework */; };
|
||||||
|
@ -60,6 +61,8 @@
|
||||||
1DDD58290DA1D0D100B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NewMessageWindow.xib; sourceTree = "<group>"; };
|
1DDD58290DA1D0D100B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NewMessageWindow.xib; sourceTree = "<group>"; };
|
||||||
1DDD582B0DA1D0D100B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
1DDD582B0DA1D0D100B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
||||||
1F122D48118E1DE100E83B77 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = "<group>"; };
|
1F122D48118E1DE100E83B77 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = "<group>"; };
|
||||||
|
1F132C781666CD9700E4E661 /* TB_SendTemplate.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TB_SendTemplate.png; sourceTree = "<group>"; };
|
||||||
|
1F132C7A1666CF6E00E4E661 /* send2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = send2.png; sourceTree = "<group>"; };
|
||||||
1F1990C5117BCA960049BEA7 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
|
1F1990C5117BCA960049BEA7 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
|
||||||
1F1C80F816482A250010B409 /* WebKit */ = {isa = PBXFileReference; lastKnownFileType = folder; name = WebKit; path = ../WebKit; sourceTree = "<group>"; };
|
1F1C80F816482A250010B409 /* WebKit */ = {isa = PBXFileReference; lastKnownFileType = folder; name = WebKit; path = ../WebKit; sourceTree = "<group>"; };
|
||||||
1F2D79BC165E8C6B000E8428 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = /System/Library/Frameworks/CoreLocation.framework; sourceTree = "<absolute>"; };
|
1F2D79BC165E8C6B000E8428 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = /System/Library/Frameworks/CoreLocation.framework; sourceTree = "<absolute>"; };
|
||||||
|
@ -74,7 +77,6 @@
|
||||||
1F880B6A165EE0F60022A84D /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+Base64.m"; sourceTree = "<group>"; };
|
1F880B6A165EE0F60022A84D /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+Base64.m"; sourceTree = "<group>"; };
|
||||||
1F880B6C165FE8890022A84D /* MimeType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MimeType.h; sourceTree = "<group>"; };
|
1F880B6C165FE8890022A84D /* MimeType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MimeType.h; sourceTree = "<group>"; };
|
||||||
1F880B6D165FE8890022A84D /* MimeType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MimeType.m; sourceTree = "<group>"; };
|
1F880B6D165FE8890022A84D /* MimeType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MimeType.m; sourceTree = "<group>"; };
|
||||||
1F9C1B7A1666AE5700A185ED /* send.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = send.png; sourceTree = "<group>"; };
|
|
||||||
1FA09846144602530079E258 /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
|
1FA09846144602530079E258 /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
|
||||||
1FC2549A1427D9930035D84B /* AccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AccessToken.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
|
1FC2549A1427D9930035D84B /* AccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AccessToken.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
|
||||||
1FC2549B1427D9930035D84B /* AccessToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AccessToken.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
|
1FC2549B1427D9930035D84B /* AccessToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AccessToken.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
|
||||||
|
@ -156,7 +158,6 @@
|
||||||
2A37F4AAFDCFA73011CA2CEA /* Twittia 2 */ = {
|
2A37F4AAFDCFA73011CA2CEA /* Twittia 2 */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1F9C1B7A1666AE5700A185ED /* send.png */,
|
|
||||||
1FA09846144602530079E258 /* libicucore.dylib */,
|
1FA09846144602530079E258 /* libicucore.dylib */,
|
||||||
2A37F4ABFDCFA73011CA2CEA /* Classes */,
|
2A37F4ABFDCFA73011CA2CEA /* Classes */,
|
||||||
2A37F4AFFDCFA73011CA2CEA /* Other Sources */,
|
2A37F4AFFDCFA73011CA2CEA /* Other Sources */,
|
||||||
|
@ -204,7 +205,9 @@
|
||||||
children = (
|
children = (
|
||||||
1F1C80F816482A250010B409 /* WebKit */,
|
1F1C80F816482A250010B409 /* WebKit */,
|
||||||
1F122D48118E1DE100E83B77 /* Icon.icns */,
|
1F122D48118E1DE100E83B77 /* Icon.icns */,
|
||||||
|
1F132C7A1666CF6E00E4E661 /* send2.png */,
|
||||||
1F3F129D164F202000C7C983 /* dsa_pub.pem */,
|
1F3F129D164F202000C7C983 /* dsa_pub.pem */,
|
||||||
|
1F132C781666CD9700E4E661 /* TB_SendTemplate.png */,
|
||||||
2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */,
|
2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */,
|
||||||
8D15AC360486D014006FF6A4 /* Tentia-Info.plist */,
|
8D15AC360486D014006FF6A4 /* Tentia-Info.plist */,
|
||||||
089C165FFE840EACC02AAC07 /* InfoPlist.strings */,
|
089C165FFE840EACC02AAC07 /* InfoPlist.strings */,
|
||||||
|
@ -278,7 +281,7 @@
|
||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
1F9C1B7B1666AE5700A185ED /* send.png in Resources */,
|
1F132C7B1666CF6E00E4E661 /* send2.png in Resources */,
|
||||||
1F3F129E164F202000C7C983 /* dsa_pub.pem in Resources */,
|
1F3F129E164F202000C7C983 /* dsa_pub.pem in Resources */,
|
||||||
1FDEF726164F094600F927F3 /* Growl Registration Ticket.growlRegDict in Resources */,
|
1FDEF726164F094600F927F3 /* Growl Registration Ticket.growlRegDict in Resources */,
|
||||||
8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */,
|
8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */,
|
||||||
|
@ -287,6 +290,7 @@
|
||||||
1DDD582D0DA1D0D100B32029 /* MainMenu.xib in Resources */,
|
1DDD582D0DA1D0D100B32029 /* MainMenu.xib in Resources */,
|
||||||
1F122D49118E1DE100E83B77 /* Icon.icns in Resources */,
|
1F122D49118E1DE100E83B77 /* Icon.icns in Resources */,
|
||||||
1F1C80F916482A250010B409 /* WebKit in Resources */,
|
1F1C80F916482A250010B409 /* WebKit in Resources */,
|
||||||
|
1F132C791666CD9700E4E661 /* TB_SendTemplate.png in Resources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,15 +6,15 @@
|
||||||
<description>Most recent changes with links to updates.</description>
|
<description>Most recent changes with links to updates.</description>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<item>
|
<item>
|
||||||
<title>Version 0.4.2</title>
|
<title>Version 0.5.0</title>
|
||||||
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
|
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
|
||||||
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
|
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
|
||||||
<pubDate>Sun, 25 Nov 2012 22:20:22 +0100</pubDate>
|
<pubDate>Wed, 28 Nov 2012 22:52:59 +0100</pubDate>
|
||||||
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
|
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
|
||||||
sparkle:version="0.4.2"
|
sparkle:version="0.5.0"
|
||||||
length="1039533"
|
length="1082492"
|
||||||
type="application/octet-stream"
|
type="application/octet-stream"
|
||||||
sparkle:dsaSignature="MCwCFE0eeuZIz41lGZ8oBxlWONeymosRAhQ4q4guWi9DX9VfeduTaa57ZPh0HQ==" />
|
sparkle:dsaSignature="MC0CFH2zsZdtjwqOfniJWcskUJcQbBViAhUAiBw2Djx5E23qvsz0pUr72aMKxWk=" />
|
||||||
</item>
|
</item>
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
BIN
Mac/send.png
BIN
Mac/send.png
Binary file not shown.
Before Width: | Height: | Size: 226 B |
Binary file not shown.
Before Width: | Height: | Size: 226 B |
Reference in a new issue