Skip to content

Commit ef30250

Browse files
committed
robo8x [chore] 5/25/2019, 12:25:09 PM
1 parent 8f2d342 commit ef30250

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
# 📚 P3X OneNote Linux v2019.4.104
14+
# 📚 P3X OneNote Linux v2019.4.105
1515

1616

1717
🙏 This is an open-source project. Star this repository, if you like it, or even donate to maintain the servers and the development. Thank you so much!
@@ -195,7 +195,7 @@ If you try to build the app with AppImage, you have to change from `electron` `d
195195

196196
---
197197

198-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.104
198+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.105
199199

200200
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
201201

artifacts/new-language.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
---
1616

17-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.104
17+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.105
1818

1919
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
2020

artifacts/npm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Though, I am using it, but some distros are different and I only use Linux Mint
2727

2828
---
2929

30-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.104
30+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.105
3131

3232
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
3333

bin/p3x-onenote.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Terminal=false
3333
await utils.childProcess.exec('gtk-update-icon-cache || true');
3434
}
3535

36-
await utils.childProcess.exec(`${__dirname}/../node_modules/.bin/electron ${path.resolve(__dirname + '/../')}`, true);
36+
await utils.childProcess.exec(`${__dirname}/../node_modules/.bin/electron --no-sandbox ${path.resolve(__dirname + '/../')}`, true);
3737
} catch (e) {
3838
console.error(e);
3939
throw e;

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ FEATURE: for all links in P3X OneNote is left for the user to decide how the lin
8080

8181
---
8282

83-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.104
83+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2019.4.105
8484

8585
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
8686

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p3x-onenote",
3-
"version": "2019.4.104",
3+
"version": "2019.4.105",
44
"description": "📚 P3X OneNote Linux",
55
"main": "src/electron/app.js",
66
"corifeus": {
@@ -66,7 +66,7 @@
6666
"node": ">=10.13.0"
6767
},
6868
"build": {
69-
"afterPack": "./src/after-pack.js",
69+
"afterPack": "./src/build/after-pack.js",
7070
"publish": [
7171
{
7272
"provider": "github",
@@ -89,4 +89,4 @@
8989
"type": "opencollective",
9090
"url": "https://opencollective.com/p3x-onenote"
9191
}
92-
}
92+
}

src/after-pack.js src/build/after-pack.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const fs = require('fs-extra')
2-
const pkg = require('../package')
2+
const pkg = require('../../package')
33
const { spawn } = require('child_process')
44
const { chdir } = require('process')
55

0 commit comments

Comments
 (0)