Skip to content

Commit dfa40ff

Browse files
committed
chore: version bump v1.7.2
1 parent 380fb1c commit dfa40ff

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.erb/scripts/notarize.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ const { notarize } = require("@electron/notarize");
22
const { build } = require("../../package.json");
33

44
exports.default = async function notarizeMacos(context) {
5+
6+
console.log("aftersign triggered")
7+
58
const { electronPlatformName, appOutDir } = context;
69
if (electronPlatformName !== "darwin") {
710
return;
@@ -13,9 +16,9 @@ exports.default = async function notarizeMacos(context) {
1316
// return;
1417
// }
1518

16-
if (!("APPLE_ID" in process.env && "APPLE_ID_PASS" in process.env)) {
19+
if (!("APPLE_ID" in process.env && "APPLE_APP_SPECIFIC_PASSWORD" in process.env)) {
1720
console.warn(
18-
"Skipping notarizing step. APPLE_ID and APPLE_ID_PASS env variables must be set"
21+
"Skipping notarizing step. APPLE_ID and APPLE_APP_SPECIFIC_PASSWORD env variables must be set"
1922
);
2023
return;
2124
}
@@ -26,6 +29,6 @@ exports.default = async function notarizeMacos(context) {
2629
appBundleId: build.appId,
2730
appPath: `${appOutDir}/${appName}.app`,
2831
appleId: process.env.APPLE_ID,
29-
appleIdPassword: process.env.APPLE_ID_PASS,
32+
appleIdPassword: process.env.APPLE_APP_SPECIFIC_PASSWORD,
3033
});
3134
};

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "requestly",
33
"productName": "Requestly",
4-
"version": "1.7.1",
4+
"version": "1.7.2",
55
"private": true,
66
"description": "Intercept & Modify HTTP Requests",
77
"scripts": {
@@ -46,7 +46,6 @@
4646
"package.json",
4747
"static"
4848
],
49-
"afterSign": ".erb/scripts/notarize.js",
5049
"protocols": {
5150
"name": "requestly-internal-protocol",
5251
"schemes": [

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": "1.7.1",
4+
"version": "1.7.2",
55
"private": true,
66
"description": "Intercept & Modify HTTP Requests",
77
"main": "./dist/main/main.js",

0 commit comments

Comments
 (0)