Skip to content

Commit fb8f5be

Browse files
committed
fix: feed menu sporadically not opening (#9)
1 parent 51e1f07 commit fb8f5be

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
88
## [Unreleased]
99

1010

11+
## [1.2.2] – 2023-06-18
12+
### Fixed
13+
- Feed menu sporadically not opening
14+
15+
1116
## [1.2.1] – 2023-06-17
1217
### Added
1318
- Universal binary (Intel+AppleSilicon)
@@ -168,7 +173,8 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
168173
Initial release
169174

170175

171-
[Unreleased]: https://github.com/relikd/baRSS/compare/v1.2.1...HEAD
176+
[Unreleased]: https://github.com/relikd/baRSS/compare/v1.2.2...HEAD
177+
[1.2.2]: https://github.com/relikd/baRSS/compare/v1.2.1...v1.2.2
172178
[1.2.1]: https://github.com/relikd/baRSS/compare/v1.2.0...v1.2.1
173179
[1.2.0]: https://github.com/relikd/baRSS/compare/v1.1.3...v1.2.0
174180
[1.1.3]: https://github.com/relikd/baRSS/compare/v1.1.2...v1.1.3

baRSS/Core Data/Feed+Ext.m

+7-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ - (void)calculateAndSetIndexPathString {
2828
- (NSMenuItem*)newMenuItem {
2929
NSMenuItem *item = [NSMenuItem new];
3030
item.title = self.group.anyName;
31-
item.toolTip = self.subtitle;
31+
// Tooltip disabled (feed-group only) because it causes issues on macOS Ventura.
32+
// Menu opens invisibly (OrderNSWindow: unsupported window ordering op -1)
33+
// steps to reproduce:
34+
// 1. hover over a feed-group menu item until tooltip pops up
35+
// 2. hover over another feed with tooltip
36+
// 3. go back to previous feed.
37+
// item.toolTip = self.subtitle;
3238
item.enabled = (self.articles.count > 0);
3339
item.image = self.iconImage16;
3440
item.representedObject = self.indexPath;

baRSS/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<key>CFBundlePackageType</key>
4646
<string>APPL</string>
4747
<key>CFBundleShortVersionString</key>
48-
<string>1.2.1</string>
48+
<string>1.2.2</string>
4949
<key>CFBundleURLTypes</key>
5050
<array>
5151
<dict>
@@ -70,7 +70,7 @@
7070
</dict>
7171
</array>
7272
<key>CFBundleVersion</key>
73-
<string>14835</string>
73+
<string>14866</string>
7474
<key>LSApplicationCategoryType</key>
7575
<string>public.app-category.news</string>
7676
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)