autumn-amber-updates 0.0.1-beta.16
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/Amber-Setup-0.1.1-beta.16.exe +0 -0
- package/README.md +23 -0
- package/manifest.json +11 -0
- package/package.json +26 -0
|
Binary file
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Amber Windows Updates
|
|
2
|
+
|
|
3
|
+
This package contains the verified Windows installer for Amber.
|
|
4
|
+
|
|
5
|
+
## Publish
|
|
6
|
+
|
|
7
|
+
```powershell
|
|
8
|
+
cd D:\my_project\espanso-gui2\release\npm\amber-updates
|
|
9
|
+
npm login
|
|
10
|
+
npm publish --access public --tag beta
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The publishing account must own the `@autumn-one` npm scope. If it does not,
|
|
14
|
+
change only the `name` field in `package.json` to a scope owned by that account.
|
|
15
|
+
|
|
16
|
+
## CDN URLs
|
|
17
|
+
|
|
18
|
+
```text
|
|
19
|
+
https://unpkg.com/@autumn-one/amber-updates@0.1.1-beta.16/Amber-Setup-0.1.1-beta.16.exe
|
|
20
|
+
https://cdn.jsdelivr.net/npm/@autumn-one/amber-updates@0.1.1-beta.16/Amber-Setup-0.1.1-beta.16.exe
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Always verify the downloaded size and SHA-256 against `manifest.json`.
|
package/manifest.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"app": "Amber",
|
|
4
|
+
"platform": "win-x64",
|
|
5
|
+
"version": "0.1.1-beta.16",
|
|
6
|
+
"build_id": "0.1.1-beta.16+gc22c6a88a395",
|
|
7
|
+
"file": "Amber-Setup-0.1.1-beta.16.exe",
|
|
8
|
+
"size": 27305802,
|
|
9
|
+
"sha256": "7c35b361e5af534cdd442bd029f44c0df38f61dec3e4256bd0bcfcfc2bde7971",
|
|
10
|
+
"source_release": "https://github.com/Autumn-one/amber/releases/tag/v0.1.1-beta.16"
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autumn-amber-updates",
|
|
3
|
+
"version": "0.0.1-beta.16",
|
|
4
|
+
"description": "Amber Windows installer distribution package",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Autumn-one/amber.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/Autumn-one/amber/releases/tag/v0.1.1-beta.16",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"amber",
|
|
13
|
+
"espanso",
|
|
14
|
+
"windows",
|
|
15
|
+
"installer"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"Amber-Setup-0.1.1-beta.16.exe",
|
|
19
|
+
"manifest.json"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public",
|
|
23
|
+
"registry": "https://registry.npmjs.org/",
|
|
24
|
+
"tag": "beta"
|
|
25
|
+
}
|
|
26
|
+
}
|