3 Commits

Author SHA1 Message Date
Micha
8820244589 chore: release 26.0.45 2025-12-30 15:51:46 +01:00
Micha
48d2f0ea42 Sparkle test 2025-12-30 15:49:57 +01:00
Micha
1947d05d78 fix: specify exact Sparkle XPC service identifiers
Change XPC entitlements from boolean true to arrays with specific
service identifiers for InstallerConnection and InstallerStatus.
2025-12-30 15:45:10 +01:00
4 changed files with 27 additions and 23 deletions

32
Sparkle/appcast.xml vendored
View File

@@ -2,6 +2,22 @@
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0"> <rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
<channel> <channel>
<title>iKeyMon</title> <title>iKeyMon</title>
<item>
<title>26.0.45</title>
<pubDate>Tue, 30 Dec 2025 15:51:45 +0100</pubDate>
<sparkle:version>98</sparkle:version>
<sparkle:shortVersionString>26.0.45</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion>
<enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.45/iKeyMon-26.0.45.zip" length="4849893" type="application/octet-stream" sparkle:edSignature="sHY651/cP1trYCeTN+z7czP4qVsbZkeVtzsh47RBYwfY6xYeXRnZ+CBOSE2kukNPH9Knj8x1MLe4M+YGxQ4AAw=="/>
</item>
<item>
<title>26.0.44</title>
<pubDate>Tue, 30 Dec 2025 15:47:07 +0100</pubDate>
<sparkle:version>97</sparkle:version>
<sparkle:shortVersionString>26.0.44</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion>
<enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.44/iKeyMon-26.0.44.zip" length="4849925" type="application/octet-stream" sparkle:edSignature="t0Lp1ZifHkMCdfhaysIQfmWL3TnKXfl7GP+xVtysI/Yq62IyVEFYBcUUIARHjfEko+ewgcIupSF0EE0kgRTCCQ=="/>
</item>
<item> <item>
<title>26.0.44</title> <title>26.0.44</title>
<pubDate>Tue, 30 Dec 2025 15:35:39 +0100</pubDate> <pubDate>Tue, 30 Dec 2025 15:35:39 +0100</pubDate>
@@ -10,21 +26,5 @@
<sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion> <sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion>
<enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.44/iKeyMon-26.0.44.zip" length="4848992" type="application/octet-stream" sparkle:edSignature="mAfFi9/ZKmWzArXyqAAwOYTB3d8ZHQUUNHM7Ozl7Lq2PoL4hueFgWnkY9asWVhbknYNaYxwW5DVerlM6YgV5Aw=="/> <enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.44/iKeyMon-26.0.44.zip" length="4848992" type="application/octet-stream" sparkle:edSignature="mAfFi9/ZKmWzArXyqAAwOYTB3d8ZHQUUNHM7Ozl7Lq2PoL4hueFgWnkY9asWVhbknYNaYxwW5DVerlM6YgV5Aw=="/>
</item> </item>
<item>
<title>26.0.43</title>
<pubDate>Tue, 30 Dec 2025 15:29:04 +0100</pubDate>
<sparkle:version>93</sparkle:version>
<sparkle:shortVersionString>26.0.43</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion>
<enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.43/iKeyMon-26.0.43.zip" length="4849148" type="application/octet-stream" sparkle:edSignature="QhDKRcr3HsDOc1c+le9pxvVUEiF31ttQc4VcgBunWzi/CBGHAj0Wr0TedMhv+Os+Vza363831Jbc7nnaxjzDCg=="/>
</item>
<item>
<title>26.0.42</title>
<pubDate>Tue, 30 Dec 2025 14:23:39 +0100</pubDate>
<sparkle:version>89</sparkle:version>
<sparkle:shortVersionString>26.0.42</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>15.2</sparkle:minimumSystemVersion>
<enclosure url="https://git.24unix.net/tracer/iKeyMon/releases/download/v26.0.42/iKeyMon-26.0.42.zip" length="4848475" type="application/octet-stream" sparkle:edSignature="oh2lJZhiLSiuWjFNlHbIqdAXVf5rp4uh7PRJQfWRRYxEDvZ6ZGeBUQg+yxYT0YvPb4Vh4jpEmoqGrXYXa3+hAQ=="/>
</item>
</channel> </channel>
</rss> </rss>

View File

@@ -15,8 +15,12 @@
<key>com.apple.security.cs.disable-library-validation</key> <key>com.apple.security.cs.disable-library-validation</key>
<true/> <true/>
<key>com.apple.security.xpc.aConnectionServices</key> <key>com.apple.security.xpc.aConnectionServices</key>
<true/> <array>
<string>com.sparkle-project.InstallerConnection</string>
</array>
<key>com.apple.security.xpc.aStatusServices</key> <key>com.apple.security.xpc.aStatusServices</key>
<true/> <array>
<string>com.sparkle-project.InstallerStatus</string>
</array>
</dict> </dict>
</plist> </plist>

View File

@@ -322,7 +322,7 @@
CODE_SIGN_ENTITLEMENTS = iKeyMon.entitlements; CODE_SIGN_ENTITLEMENTS = iKeyMon.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES; COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 95; CURRENT_PROJECT_VERSION = 98;
DEVELOPMENT_ASSET_PATHS = "\"Preview Content\""; DEVELOPMENT_ASSET_PATHS = "\"Preview Content\"";
DEVELOPMENT_TEAM = Q5486ZVAFT; DEVELOPMENT_TEAM = Q5486ZVAFT;
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
@@ -337,7 +337,7 @@
"$(inherited)", "$(inherited)",
"@executable_path/../Frameworks", "@executable_path/../Frameworks",
); );
MARKETING_VERSION = 26.0.44; MARKETING_VERSION = 26.0.45;
PRODUCT_BUNDLE_IDENTIFIER = net.24unix.iKeyMon; PRODUCT_BUNDLE_IDENTIFIER = net.24unix.iKeyMon;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_EMIT_LOC_STRINGS = YES;
@@ -353,7 +353,7 @@
CODE_SIGN_ENTITLEMENTS = iKeyMon.entitlements; CODE_SIGN_ENTITLEMENTS = iKeyMon.entitlements;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES; COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 95; CURRENT_PROJECT_VERSION = 98;
DEVELOPMENT_ASSET_PATHS = "\"Preview Content\""; DEVELOPMENT_ASSET_PATHS = "\"Preview Content\"";
DEVELOPMENT_TEAM = Q5486ZVAFT; DEVELOPMENT_TEAM = Q5486ZVAFT;
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
@@ -368,7 +368,7 @@
"$(inherited)", "$(inherited)",
"@executable_path/../Frameworks", "@executable_path/../Frameworks",
); );
MARKETING_VERSION = 26.0.44; MARKETING_VERSION = 26.0.45;
PRODUCT_BUNDLE_IDENTIFIER = net.24unix.iKeyMon; PRODUCT_BUNDLE_IDENTIFIER = net.24unix.iKeyMon;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_EMIT_LOC_STRINGS = YES;

View File

@@ -1,3 +1,3 @@
{ {
"marketing_version": "26.0.44" "marketing_version": "26.0.45"
} }