Skip to content

Commit

Permalink
fix: feed menu sporadically not opening (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
relikd committed Jun 18, 2023
1 parent 51e1f07 commit fb8f5be
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Expand Up @@ -8,6 +8,11 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
## [Unreleased]


## [1.2.2] – 2023-06-18
### Fixed
- Feed menu sporadically not opening


## [1.2.1] – 2023-06-17
### Added
- Universal binary (Intel+AppleSilicon)
Expand Down Expand Up @@ -168,7 +173,8 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
Initial release


[Unreleased]: https://github.com/relikd/baRSS/compare/v1.2.1...HEAD
[Unreleased]: https://github.com/relikd/baRSS/compare/v1.2.2...HEAD
[1.2.2]: https://github.com/relikd/baRSS/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/relikd/baRSS/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/relikd/baRSS/compare/v1.1.3...v1.2.0
[1.1.3]: https://github.com/relikd/baRSS/compare/v1.1.2...v1.1.3
Expand Down
8 changes: 7 additions & 1 deletion baRSS/Core Data/Feed+Ext.m
Expand Up @@ -28,7 +28,13 @@ - (void)calculateAndSetIndexPathString {
- (NSMenuItem*)newMenuItem {
NSMenuItem *item = [NSMenuItem new];
item.title = self.group.anyName;
item.toolTip = self.subtitle;
// Tooltip disabled (feed-group only) because it causes issues on macOS Ventura.
// Menu opens invisibly (OrderNSWindow: unsupported window ordering op -1)
// steps to reproduce:
// 1. hover over a feed-group menu item until tooltip pops up
// 2. hover over another feed with tooltip
// 3. go back to previous feed.
// item.toolTip = self.subtitle;
item.enabled = (self.articles.count > 0);
item.image = self.iconImage16;
item.representedObject = self.indexPath;
Expand Down
4 changes: 2 additions & 2 deletions baRSS/Info.plist
Expand Up @@ -45,7 +45,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -70,7 +70,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>14835</string>
<string>14866</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.news</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit fb8f5be

Please sign in to comment.