Skip to content

Commit

Permalink
release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whomwah committed Dec 10, 2021
1 parent e49be5f commit 3364ba6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 15 deletions.
8 changes: 4 additions & 4 deletions KyanBar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_ASSET_PATHS = "\"KyanBar/Preview Content\"";
DEVELOPMENT_TEAM = 9QTT9CVFB6;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -549,7 +549,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.kyan.KyanBar;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand All @@ -567,7 +567,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_ASSET_PATHS = "\"KyanBar/Preview Content\"";
DEVELOPMENT_TEAM = 9QTT9CVFB6;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -580,7 +580,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.kyan.KyanBar;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,23 @@ It's also acts as a bit of a template for building apps that run in the status b
* How to read information from your Info.plist file

The app is written using [Swift](https://developer.apple.com/swift/) and [SwiftUI](https://developer.apple.com/xcode/swiftui/) and is currently targeting macOS 12 (Monterey) and greater.

## Build

* Choose Product -> Archive
* Go to Window -> Organizer
* Choose your app and click Distribute App
* Choose Developer ID from list and then Next
* Choose Upload (to send to Notary service) and then Next
* Once you get a Ready to distribute status
* Choose your app and click Export Notorized App
* Export to `builds` folder in the repo
* You can now zip up the app for distribution

### To update the `appcast.xml` file

```
./Pods/Sparkle/bin/generate_appcast builds/
```

This will create an updated `appcast.xml` which you can use in the root of the project. You may need to change the `enclosure:url` to point to where the application zip has been uploaded to.
30 changes: 19 additions & 11 deletions appcast.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
<?xml version="1.0" standalone="yes"?>
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
<channel>
<title>KyanBar 2.0.0</title>
<item>
<title>2.0.0</title>
<pubDate>Wed, 24 Nov 2021 16:25:49 +0000</pubDate>
<sparkle:version>6</sparkle:version>
<sparkle:shortVersionString>2.0.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
<enclosure url="https://github.com/kyan/kyan_bar/releases/download/2.0.0/KyanBar.2.0.0.zip" length="1533817" type="application/octet-stream" sparkle:edSignature="kgIb+sXxczr3Ugr6rYnH+ww1aIL98l0l0wksdS3HtnFzLUUjcD/gPTeV2GAzWJpyzocQ45r1TN6x3AqrPoTkBg=="/>
</item>
</channel>
<channel>
<title>KyanBar</title>
<item>
<title>2.1.0</title>
<pubDate>Fri, 10 Dec 2021 11:36:43 +0000</pubDate>
<sparkle:version>7</sparkle:version>
<sparkle:shortVersionString>2.1.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
<enclosure url="https://github.com/kyan/kyan_bar/releases/download/2.1.0/KyanBar.2.1.0.zip" length="1539806" type="application/octet-stream" sparkle:edSignature="WPSpNanhOiOwq0BmqoKqmJh3RVjTEAejFVusqSnXYXjD/+eDxVCWgcjFriERYhcZFqZgXTeerYwHFITtAOh+CA=="/>
</item>
<item>
<title>2.0.0</title>
<pubDate>Wed, 24 Nov 2021 16:25:49 +0000</pubDate>
<sparkle:version>6</sparkle:version>
<sparkle:shortVersionString>2.0.0</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>12.0</sparkle:minimumSystemVersion>
<enclosure url="https://github.com/kyan/kyan_bar/releases/download/2.0.0/KyanBar.2.0.0.zip" length="1533817" type="application/octet-stream" sparkle:edSignature="kgIb+sXxczr3Ugr6rYnH+ww1aIL98l0l0wksdS3HtnFzLUUjcD/gPTeV2GAzWJpyzocQ45r1TN6x3AqrPoTkBg=="/>
</item>
</channel>
</rss>

0 comments on commit 3364ba6

Please sign in to comment.