Skip to content

Commit

Permalink
- Fix a mistake of update feed url.
Browse files Browse the repository at this point in the history
  • Loading branch information
daizhirui committed Oct 6, 2019
1 parent 06c30b8 commit a9b0d5a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Binary file not shown.
8 changes: 4 additions & 4 deletions macOS/CamelStudioX/CamelStudioX.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 63;
CURRENT_PROJECT_VERSION = 64;
DEVELOPMENT_TEAM = 79DD7SDR2J;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
Expand All @@ -571,7 +571,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 4.1.8;
MARKETING_VERSION = 4.1.9;
PRODUCT_BUNDLE_IDENTIFIER = com.daizhirui.CamelStudioX;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -589,7 +589,7 @@
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 63;
CURRENT_PROJECT_VERSION = 64;
DEVELOPMENT_TEAM = 79DD7SDR2J;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
Expand All @@ -598,7 +598,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 4.1.8;
MARKETING_VERSION = 4.1.9;
PRODUCT_BUNDLE_IDENTIFIER = com.daizhirui.CamelStudioX;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
1 change: 0 additions & 1 deletion macOS/CamelStudioX/CamelStudioX/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, SUUpdaterDelegate {
} else {
self.sparkleUpdater.updateFeedURL(URL(string: "https://raw.githubusercontent.com/daizhirui/CamelStudioX/master/macOS/appcast.xml"))
}
print(self.sparkleUpdater.feedURL)
}
/// Example Menu
static let exampleMenu = NSMenu(title: "Example")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class PreferenceViewController: NSViewController {
if self.updateServer.selectedItem?.title == "China" {
self.sparkleUpdater.updateFeedURL(URL(string: "https://camelmicro.oss-cn-beijing.aliyuncs.com/appcast.xml"))
} else {
self.sparkleUpdater.updateFeedURL(URL(string: "https://raw.githubusercontent.com/daizhirui/CamelStudioX_Mac/master/appcast.xml"))
self.sparkleUpdater.updateFeedURL(URL(string: "https://raw.githubusercontent.com/daizhirui/CamelStudioX/master/macOS/appcast.xml"))
}
}
/// cancel setup
Expand Down
4 changes: 4 additions & 0 deletions macOS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ main():

## History

### 4.1.9 Build 64

- Fix a mistake of update feed url.

### 4.1.8 Build 63

- Fix a problem of checking updates via GitHub.
Expand Down
6 changes: 3 additions & 3 deletions macOS/appcast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<channel>
<title>CamelStudioX</title>
<item>
<title>4.1.8</title>
<pubDate>Sat, 05 Oct 2019 20:36:27 -0700</pubDate>
<title>4.1.9</title>
<pubDate>Sat, 05 Oct 2019 20:44:18 -0700</pubDate>
<sparkle:minimumSystemVersion>10.12.2</sparkle:minimumSystemVersion>
<enclosure url="https://github.com/daizhirui/CamelStudioX/releases/download/v4.1.8/CamelStudioX_4.1.8_Build63.zip" sparkle:version="63" sparkle:shortVersionString="4.1.8" length="80105988" type="application/octet-stream" sparkle:dsaSignature="MCwCFAiyzzfy0WZUsYcVp88XtV/4qKofAhRzWV6cLCPCTyIOeSoqxLHAI3TiSQ=="/>
<enclosure url="https://github.com/daizhirui/CamelStudioX/releases/download/v4.1.9/CamelStudioX_4.1.9_Build64.zip" sparkle:version="64" sparkle:shortVersionString="4.1.9" length="80105464" type="application/octet-stream" sparkle:dsaSignature="MCwCFFAgrnLRbhqYLS0sDvBmj7TzFfRPAhQFxh0AU2qkK9s8weNngrKNz3X7sA=="/>
</item>
</channel></rss>

0 comments on commit a9b0d5a

Please sign in to comment.