Skip to content

Commit 53e9c8c

Browse files
committedMay 24, 2022
upgrades
1 parent 541d451 commit 53e9c8c

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed
 

‎.gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ image:
22
file: .gitpod.dockerfile
33

44
tasks:
5-
- before: nvm install 16.14.2 && nvm use 16.14.2
5+
- before: nvm install 16.15.0 && nvm use 16.15.0
66
init: npm install
77
command: npm run start-server
88

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !!! Don't try to build this Dockerfile directly, run it through bin/build-docker.sh script !!!
2-
FROM node:16.14.2-alpine
2+
FROM node:16.15.0-alpine
33

44
# Create app directory
55
WORKDIR /usr/src/app

‎bin/build-server.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
PKG_DIR=dist/trilium-linux-x64-server
4-
NODE_VERSION=16.14.2
4+
NODE_VERSION=16.15.0
55

66
if [ "$1" != "DONTCOPY" ]
77
then

‎bin/copy-trilium.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [[ $# -eq 0 ]] ; then
55
exit 1
66
fi
77

8-
n exec 16.14.2 npm run webpack
8+
n exec 16.15.0 npm run webpack
99

1010
DIR=$1
1111

@@ -30,7 +30,7 @@ cp -r electron.js $DIR/
3030
cp webpack-* $DIR/
3131

3232
# run in subshell (so we return to original dir)
33-
(cd $DIR && n exec 16.14.2 npm install --only=prod)
33+
(cd $DIR && n exec 16.15.0 npm install --only=prod)
3434

3535
# cleanup of useless files in dependencies
3636
rm -r $DIR/node_modules/image-q/demo

‎dump-db/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It is meant as a last resort solution when the standard mean to access your data
66

77
## Installation
88

9-
This tool requires node.js, testing has been done on 16.14.2, but it will probably work on other versions as well.
9+
This tool requires node.js, testing has been done on 16.15.0, but it will probably work on other versions as well.
1010

1111
```
1212
npm install

‎package-lock.json

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"postinstall": "rimraf ./node_modules/canvas"
2626
},
2727
"dependencies": {
28+
"@electron/remote": "2.0.8",
2829
"@excalidraw/excalidraw": "0.11.0",
2930
"archiver": "5.3.1",
3031
"async-mutex": "0.3.2",
@@ -41,13 +42,12 @@
4142
"electron-dl": "3.3.1",
4243
"electron-find": "1.0.7",
4344
"electron-window-state": "5.0.3",
44-
"@electron/remote": "2.0.8",
4545
"express": "4.18.1",
4646
"express-partial-content": "1.0.2",
4747
"express-rate-limit": "6.4.0",
4848
"express-session": "1.17.3",
4949
"fs-extra": "10.1.0",
50-
"helmet": "5.0.2",
50+
"helmet": "5.1.0",
5151
"html": "1.0.0",
5252
"html2plaintext": "2.1.4",
5353
"http-proxy-agent": "5.0.0",
@@ -61,7 +61,7 @@
6161
"jsdom": "19.0.0",
6262
"mime-types": "2.1.35",
6363
"multer": "1.4.4",
64-
"node-abi": "3.15.0",
64+
"node-abi": "3.21.0",
6565
"normalize-strings": "1.1.1",
6666
"open": "8.4.0",
6767
"portscanner": "2.2.0",

‎src/public/app/services/app_context.js

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import Component from "../widgets/component.js";
1111
import keyboardActionsService from "./keyboard_actions.js";
1212
import MobileScreenSwitcherExecutor from "../widgets/mobile_widgets/mobile_screen_switcher.js";
1313
import MainTreeExecutors from "./main_tree_executors.js";
14-
import protectedSessionHolder from "./protected_session_holder.js";
1514
import toast from "./toast.js";
1615

1716
class AppContext extends Component {

‎trilium.iml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<excludeFolder url="file://$MODULE_DIR$/docs" />
1515
<excludeFolder url="file://$MODULE_DIR$/bin/better-sqlite3" />
1616
<excludeFolder url="file://$MODULE_DIR$/data" />
17+
<excludeFolder url="file://$MODULE_DIR$/.flatpak-builder" />
1718
</content>
1819
<orderEntry type="inheritedJdk" />
1920
<orderEntry type="sourceFolder" forTests="false" />

0 commit comments

Comments
 (0)