@opentray/darwin-x64 0.15.0 → 0.17.0
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 -1
- package/app/Info.plist +30 -0
- package/bin/opentray +0 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -2,4 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
OpenTray runtime artifact package for macOS Intel.
|
|
4
4
|
|
|
5
|
-
This package is installed as an optional dependency by `opentray`. CI stages
|
|
5
|
+
This package is installed as an optional dependency by `opentray`. CI stages
|
|
6
|
+
one coherent Darwin runtime artifact set before npm publish:
|
|
7
|
+
|
|
8
|
+
- `bin/opentray`, the matching runtime executable
|
|
9
|
+
- `app/Info.plist`, the minimal AppKit bundle template for process identity,
|
|
10
|
+
activation policy, Dock participation, and privacy metadata. The runtime
|
|
11
|
+
copies the matching broker into a stable caller-specific `.app` bundle.
|
|
12
|
+
|
|
13
|
+
Source control does not commit either generated artifact. Applications obtain
|
|
14
|
+
the complete runtime through the normal package-manager install; they do not
|
|
15
|
+
need `@opentray/ext-badge` or a manually copied helper bundle.
|
package/app/Info.plist
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>en</string>
|
|
7
|
+
<key>CFBundleExecutable</key>
|
|
8
|
+
<string>OpenTray</string>
|
|
9
|
+
<key>CFBundleIdentifier</key>
|
|
10
|
+
<string>com.opentray.runtime</string>
|
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
+
<string>6.0</string>
|
|
13
|
+
<key>CFBundleName</key>
|
|
14
|
+
<string>OpenTray</string>
|
|
15
|
+
<key>CFBundleDisplayName</key>
|
|
16
|
+
<string>OpenTray</string>
|
|
17
|
+
<key>CFBundlePackageType</key>
|
|
18
|
+
<string>APPL</string>
|
|
19
|
+
<key>CFBundleShortVersionString</key>
|
|
20
|
+
<string>1.0</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>1</string>
|
|
23
|
+
<key>LSMinimumSystemVersion</key>
|
|
24
|
+
<string>13.0</string>
|
|
25
|
+
<key>NSHighResolutionCapable</key>
|
|
26
|
+
<true/>
|
|
27
|
+
<key>NSPrincipalClass</key>
|
|
28
|
+
<string>NSApplication</string>
|
|
29
|
+
</dict>
|
|
30
|
+
</plist>
|
package/bin/opentray
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentray/darwin-x64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "OpenTray runtime artifact package for macOS Intel.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"files": [
|
|
17
17
|
"bin/opentray",
|
|
18
|
+
"app/Info.plist",
|
|
18
19
|
"README.md"
|
|
19
20
|
],
|
|
20
21
|
"publishConfig": {
|