@trygocode/notify 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/assets/GoCodeNotifier.app/Contents/MacOS/GoCodeNotifier +0 -0
- package/assets/GoCodeNotifier.app/Contents/Resources/gocodechime.caf +0 -0
- package/assets/GoCodeNotifier.app/Contents/_CodeSignature/CodeResources +11 -0
- package/assets/gocodechime.caf +0 -0
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -529,6 +529,17 @@ npm publish, real-device E2E), see
|
|
|
529
529
|
|
|
530
530
|
## Changelog
|
|
531
531
|
|
|
532
|
+
### 0.6.1
|
|
533
|
+
|
|
534
|
+
- **Banner now reliably POPS top-right (not just history).** The signed helper
|
|
535
|
+
posts the notification then exits ~150ms later so macOS does BACKGROUND
|
|
536
|
+
delivery (the system shows the banner per the user's settings). The previous
|
|
537
|
+
attempt to force foreground delivery via `willPresent` suppressed the banner to
|
|
538
|
+
Notification Center history — verified fixed live on macOS 26.4.
|
|
539
|
+
- Surface the underlying `requestAuthorization` error in the helper's JSON result
|
|
540
|
+
(`detail`/`authError`) instead of collapsing to a bare "not authorized".
|
|
541
|
+
- Extract the post-`add()` exit delay to a documented named constant.
|
|
542
|
+
|
|
532
543
|
### 0.6.0
|
|
533
544
|
|
|
534
545
|
- **Real native macOS "Allow Notifications" dialog (signed helper).** GoCode now
|
|
Binary file
|
|
Binary file
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
<data>
|
|
9
9
|
GbhU1RfeSzs8A7x841vrx8S9NpM=
|
|
10
10
|
</data>
|
|
11
|
+
<key>Resources/gocodechime.caf</key>
|
|
12
|
+
<data>
|
|
13
|
+
SDZ8imBpH6RxFu4bY6v7z/lR3AE=
|
|
14
|
+
</data>
|
|
11
15
|
</dict>
|
|
12
16
|
<key>files2</key>
|
|
13
17
|
<dict>
|
|
@@ -18,6 +22,13 @@
|
|
|
18
22
|
80/V6KfdsY5g+nVZNtqimRwukW+CXDnk+bV0NlYa75w=
|
|
19
23
|
</data>
|
|
20
24
|
</dict>
|
|
25
|
+
<key>Resources/gocodechime.caf</key>
|
|
26
|
+
<dict>
|
|
27
|
+
<key>hash2</key>
|
|
28
|
+
<data>
|
|
29
|
+
l6vi4c8XtFvpGbej45ku/0CP9/B2vPF7hNoUSCQ1kPQ=
|
|
30
|
+
</data>
|
|
31
|
+
</dict>
|
|
21
32
|
</dict>
|
|
22
33
|
<key>rules</key>
|
|
23
34
|
<dict>
|
|
Binary file
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Single source of truth for the CLI version. Keep in sync with package.json.
|
|
2
|
-
export const VERSION = "0.6.
|
|
2
|
+
export const VERSION = "0.6.2";
|
package/package.json
CHANGED