File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
8
8
## [ Unreleased]
9
9
10
10
11
+ ## [ 1.2.2] – 2023-06-18
12
+ ### Fixed
13
+ - Feed menu sporadically not opening
14
+
15
+
11
16
## [ 1.2.1] – 2023-06-17
12
17
### Added
13
18
- Universal binary (Intel+AppleSilicon)
@@ -168,7 +173,8 @@ and this project does adhere to [Semantic Versioning](https://semver.org/spec/v2
168
173
Initial release
169
174
170
175
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
172
178
[ 1.2.1 ] : https://github.com/relikd/baRSS/compare/v1.2.0...v1.2.1
173
179
[ 1.2.0 ] : https://github.com/relikd/baRSS/compare/v1.1.3...v1.2.0
174
180
[ 1.1.3 ] : https://github.com/relikd/baRSS/compare/v1.1.2...v1.1.3
Original file line number Diff line number Diff line change @@ -28,7 +28,13 @@ - (void)calculateAndSetIndexPathString {
28
28
- (NSMenuItem *)newMenuItem {
29
29
NSMenuItem *item = [NSMenuItem new ];
30
30
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;
32
38
item.enabled = (self.articles .count > 0 );
33
39
item.image = self.iconImage16 ;
34
40
item.representedObject = self.indexPath ;
Original file line number Diff line number Diff line change 45
45
<key >CFBundlePackageType </key >
46
46
<string >APPL </string >
47
47
<key >CFBundleShortVersionString </key >
48
- <string >1.2.1 </string >
48
+ <string >1.2.2 </string >
49
49
<key >CFBundleURLTypes </key >
50
50
<array >
51
51
<dict >
70
70
</dict >
71
71
</array >
72
72
<key >CFBundleVersion </key >
73
- <string >14835 </string >
73
+ <string >14866 </string >
74
74
<key >LSApplicationCategoryType </key >
75
75
<string >public.app-category.news </string >
76
76
<key >LSMinimumSystemVersion </key >
You can’t perform that action at this time.
0 commit comments