Skip to content

Commit 235eb05

Browse files
author
Anastacio Gianareas
committed
update version 0.26.0
1 parent 8c5556a commit 235eb05

File tree

6 files changed

+36
-39
lines changed

6 files changed

+36
-39
lines changed

electron_app/package.json

Lines changed: 23 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "criptext",
3-
"version": "0.25.0",
3+
"version": "0.26.0",
44
"author": {
55
"name": "Criptext Inc",
66
"email": "[email protected]",
@@ -18,6 +18,7 @@
1818
"scripts": {
1919
"build": "electron-builder",
2020
"electron": "electron .",
21+
"electron:debug": "electron . --inspect=5858",
2122
"start": "npm run electron .",
2223
"start:dev": "npm run electron . --allow-file-access-from-file",
2324
"postinstall": "electron-builder install-app-deps",
@@ -34,15 +35,13 @@
3435
"appId": "com.criptext.criptextmail",
3536
"afterSign": "notarize.js",
3637
"buildVersion": "1",
37-
"extraResources": [
38-
{
39-
"from": "../signal_interface/build/Release/",
40-
"to": "extraResources",
41-
"filter": [
42-
"**/*"
43-
]
44-
}
45-
],
38+
"extraResources": [{
39+
"from": "../signal_interface/build/Release/",
40+
"to": "extraResources",
41+
"filter": [
42+
"**/*"
43+
]
44+
}],
4645
"mac": {
4746
"hardenedRuntime": true,
4847
"gatekeeperAssess": false,
@@ -56,12 +55,10 @@
5655
"provisioningProfile": "build/Criptext_Mail_Distribution.provisionprofile",
5756
"darkModeSupport": true,
5857
"type": "distribution",
59-
"publish": [
60-
{
61-
"provider": "generic",
62-
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/mac"
63-
}
64-
]
58+
"publish": [{
59+
"provider": "generic",
60+
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/mac"
61+
}]
6562
},
6663
"mas": {
6764
"category": "public.app-category.productivity",
@@ -78,8 +75,7 @@
7875
"background": "build/background.png",
7976
"icon": "build/volume.icns",
8077
"title": "${productName}",
81-
"contents": [
82-
{
78+
"contents": [{
8379
"x": 145,
8480
"y": 195
8581
},
@@ -103,25 +99,21 @@
10399
"Comment": "Encrypted email built on privacy",
104100
"Categories": "Network"
105101
},
106-
"publish": [
107-
{
108-
"provider": "generic",
109-
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/linux"
110-
}
111-
]
102+
"publish": [{
103+
"provider": "generic",
104+
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/linux"
105+
}]
112106
},
113107
"win": {
114108
"target": [
115109
"nsis",
116110
"appx"
117111
],
118112
"icon": "build/icon.ico",
119-
"publish": [
120-
{
121-
"provider": "generic",
122-
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/windows"
123-
}
124-
],
113+
"publish": [{
114+
"provider": "generic",
115+
"url": "https://cdn.criptext.com/Criptext-Email-Desktop/windows"
116+
}],
125117
"certificateSubjectName": "Criptext Inc"
126118
},
127119
"nsis": {
@@ -178,4 +170,4 @@
178170
"verbose": true,
179171
"testURL": "http://localhost/"
180172
}
181-
}
173+
}

electron_app/src/utils/SourceUtils.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ const openWindowWithSource = (source, subject) => {
5252
// Send to hidden window for print
5353
const defaultDocumentName = subject;
5454
if (!workerWin) {
55-
workerWin = new BrowserWindow({ show: true });
55+
workerWin = new BrowserWindow({
56+
show: true,
57+
webPreferences: {
58+
nodeIntegration: true
59+
}
60+
});
5661
}
5762
workerWin.loadURL(
5863
path.join(

email_composer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "email_composer",
3-
"version": "0.25.0",
3+
"version": "0.26.0",
44
"private": true,
55
"dependencies": {
66
"@criptext/electron-better-ipc": "^0.7.0-rc1-0.2",

email_loading/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "email_loading",
3-
"version": "0.25.0",
3+
"version": "0.26.0",
44
"private": true,
55
"dependencies": {
66
"@criptext/electron-better-ipc": "^0.7.0-rc1-0.2",
@@ -27,4 +27,4 @@
2727
"not ie <= 11",
2828
"not op_mini all"
2929
]
30-
}
30+
}

email_login/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "email_login",
3-
"version": "0.25.0",
3+
"version": "0.26.0",
44
"private": true,
55
"dependencies": {
66
"@criptext/electron-better-ipc": "^0.7.0-rc1-0.2",
@@ -32,4 +32,4 @@
3232
"not ie <= 11",
3333
"not op_mini all"
3434
]
35-
}
35+
}

email_mailbox/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "email_mailbox",
3-
"version": "0.25.0",
3+
"version": "0.26.0",
44
"private": true,
55
"dependencies": {
66
"@criptext/electron-better-ipc": "^0.7.0-rc1-0.2",
@@ -53,4 +53,4 @@
5353
"not ie <= 11",
5454
"not op_mini all"
5555
]
56-
}
56+
}

0 commit comments

Comments
 (0)