diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8eba20f..49dd993 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
## [Unreleased]
### Added
+- App Signing
+- Sandboxing & hardened runtime environment
+- Associate OPML files (double click and right click actions in Finder)
+- Quick Look preview for OPML files
- *Adding feed:* 5xx server errors have a reload button which will initiate a new download with the same URL
- *Adding feed:* `⌘R` will reload the same URL
- *Settings, Feeds:* `⌘R` will reload the data source
@@ -18,9 +22,6 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
- *UI:* Accessibility hints for most UI elements
- *UI*: Show welcome message upon first usage (empty db)
- Welcome message also adds Github releases feed
-- Associate OPML files (double click and right click actions in Finder)
-- Quick Look preview for OPML files
-- Sandboxing & hardened runtime environment
- Config URL scheme `barss:` with `open/preferences` and `config/fixcache`
### Fixed
diff --git a/README.md b/README.md
index 36a99e5..2a1fc90 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,8 @@
+[](https://github.com/relikd/baRSS/releases)
+[](https://github.com/relikd/baRSS/releases)
+[](https://github.com/relikd/baRSS/blob/master/LICENSE)
+
+
# baRSS – *Menu Bar RSS Reader*

@@ -11,7 +16,7 @@ If you want a feature to be added, drop me an email or create an issue.
Look at the other issues, in case somebody else already filed one similar.
If you like this project and want to say thank you drop me a line (or other stuff like money).
Regardless, I'll continue development as long as I'm using it on my own.
-Admittedly, I've invested way too much time in this project already (1595h+) …
+Admittedly, I've invested way too much time in this project already (1774h+) …
### Why is this project not written in Swift?
@@ -85,7 +90,7 @@ ToDo
- [ ] Localizations
- [x] Sandbox
- - [ ] Default RSS application checkbox (disable or other workaround)
+ - [x] Default RSS application checkbox (disable or other workaround)
- [ ] Nice to have (... on increased demand)
diff --git a/baRSS/Info.plist b/baRSS/Info.plist
index fa6d3cd..4a513b7 100644
--- a/baRSS/Info.plist
+++ b/baRSS/Info.plist
@@ -70,7 +70,7 @@
CFBundleVersion
- 11155
+ 11159
LSApplicationCategoryType
public.app-category.news
LSMinimumSystemVersion
diff --git a/baRSS/Preferences/General Tab/SettingsGeneral.m b/baRSS/Preferences/General Tab/SettingsGeneral.m
index 6feb53b..97f5a70 100644
--- a/baRSS/Preferences/General Tab/SettingsGeneral.m
+++ b/baRSS/Preferences/General Tab/SettingsGeneral.m
@@ -93,7 +93,7 @@
NSArray *urls = CFBridgingRelease(LSCopyApplicationURLsForBundleIdentifier((__bridge CFStringRef)bundleID, NULL));
if (urls.count > 0) {
NSDictionary *info = CFBridgingRelease(CFBundleCopyInfoDictionaryForURL((CFURLRef)urls.firstObject));
- return info[(NSString*)kCFBundleNameKey];
+ return info[(NSString*)kCFBundleExecutableKey];
}
return nil;
}