1 Commits

Author SHA1 Message Date
relikd
fb8f5be289 fix: feed menu sporadically not opening (#9) 2023-06-18 12:40:49 +02:00
3 changed files with 16 additions and 4 deletions

View File

@@ -8,6 +8,11 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
## [Unreleased] ## [Unreleased]
## [1.2.2] 2023-06-18
### Fixed
- Feed menu sporadically not opening
## [1.2.1] 2023-06-17 ## [1.2.1] 2023-06-17
### Added ### Added
- Universal binary (Intel+AppleSilicon) - Universal binary (Intel+AppleSilicon)
@@ -168,7 +173,8 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
Initial release 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.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.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 [1.1.3]: https://github.com/relikd/baRSS/compare/v1.1.2...v1.1.3

View File

@@ -28,7 +28,13 @@
- (NSMenuItem*)newMenuItem { - (NSMenuItem*)newMenuItem {
NSMenuItem *item = [NSMenuItem new]; NSMenuItem *item = [NSMenuItem new];
item.title = self.group.anyName; 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.enabled = (self.articles.count > 0);
item.image = self.iconImage16; item.image = self.iconImage16;
item.representedObject = self.indexPath; item.representedObject = self.indexPath;

View File

@@ -45,7 +45,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.2.1</string> <string>1.2.2</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
<array> <array>
<dict> <dict>
@@ -70,7 +70,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>14835</string> <string>14866</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
<string>public.app-category.news</string> <string>public.app-category.news</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>