Skip to content

Commit 75d6a28

Browse files
committed
base
1 parent b3ed08b commit 75d6a28

File tree

6 files changed

+51
-13
lines changed

6 files changed

+51
-13
lines changed

.erb/scripts/sign.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// only meant for windows. notaryTool for apple picks everything up from environment and package.json
2+
3+
function signWindows(context) {
4+
const TOKEN_PASSWORD = process.env.WINDOWS_SIGN_TOKEN_PASSWORD;
5+
require("child_process").execSync(
6+
// `java -jar jsign-2.1.jar --keystore hardwareToken.cfg --storepass "${TOKEN_PASSWORD}" --storetype PKCS11 --tsaurl http://sha256timestamp.ws.symantec.com/sha256/timestamp --alias "${CERTIFICATE_NAME}" "${configuration.path}"`,
7+
`java -jar jsign-2.1.jar --keystore hardwareToken.cfg --storepass "${TOKEN_PASSWORD}" --storetype PKCS11 --tsaurl http://sha256timestamp.ws.symantec.com/sha256/timestamp
8+
{
9+
stdio: "inherit"
10+
}
11+
);
12+
}

.github/workflows/release_desktop_app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
required: true
99
type: choice
1010
options:
11-
- ubuntu-latest
12-
- windows-2019
13-
- macos-11
11+
# - ubuntu-latest
12+
- windows-latest
13+
# - macos-11
1414
default: ubuntu-latest
1515

1616
jobs:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "requestly",
33
"productName": "Requestly",
4-
"version": "25.6.13",
4+
"version": "1.9.0",
55
"main": "src/main/main.ts",
66
"private": true,
77
"description": "Intercept & Modify HTTP Requests",
@@ -111,8 +111,6 @@
111111
]
112112
},
113113
"win": {
114-
"certificateSubjectName": "RQ Labs, Inc.",
115-
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
116114
"target": [
117115
"nsis"
118116
]
@@ -139,12 +137,12 @@
139137
"provider": "github",
140138
"releaseType": "release",
141139
"owner": "requestly",
142-
"repo": "requestly-desktop-app"
140+
"repo": "requestly-desktop-dev"
143141
}
144142
},
145143
"repository": {
146144
"type": "git",
147-
"url": "git+https://github.com/requestly/requestly-desktop-app.git"
145+
"url": "git+https://github.com/requestly/requestly-desktop-dev.git"
148146
},
149147
"author": {
150148
"name": "RQ Labs, Inc.",

release/app/package-lock.json

Lines changed: 30 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "requestly",
33
"productName": "Requestly",
4-
"version": "25.6.13",
4+
"version": "1.9.0",
55
"private": true,
66
"description": "Intercept & Modify HTTP Requests",
77
"main": "./dist/main/main.js",

0 commit comments

Comments
 (0)