Skip to content

Commit 3a7b2f7

Browse files
committed
bump v0.6.2
1 parent 566a219 commit 3a7b2f7

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM oven/bun:latest as builder
22

33
WORKDIR /app
4-
COPY package*.json ./
4+
COPY package.json bun.lockb ./
55
RUN bun install
66
COPY . .
77
RUN bun run build
@@ -10,4 +10,4 @@ FROM nginx:alpine
1010
COPY --from=builder /app/dist /usr/share/nginx/html
1111
COPY nginx.conf /etc/nginx/conf.d/default.conf
1212
EXPOSE 80
13-
CMD ["nginx", "-g", "daemon off;"]
13+
CMD ["nginx", "-g", "daemon off;"]

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode 2
11-
versionName "0.6.1"
11+
versionName "0.6.2"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

bun.lockb

-4 Bytes
Binary file not shown.

desktop/bun.lockb

0 Bytes
Binary file not shown.

desktop/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trusty-notes-electron",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"main": "main.js",
55
"type": "commonjs",
66
"description": "TrustyNotes is a simple, secure, and reliable note-taking app",
@@ -39,11 +39,11 @@
3939
}
4040
},
4141
"devDependencies": {
42-
"electron": "^35.1.4",
42+
"electron": "^36.2.1",
4343
"electron-builder": "^26.0.12"
4444
},
4545
"dependencies": {
46-
"electron-log": "^5.3.3",
46+
"electron-log": "^5.4.0",
4747
"electron-updater": "^6.6.2",
4848
"electron-window-state": "^5.0.3"
4949
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "trusty-notes-web",
33
"private": true,
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"type": "module",
66
"description": "TrustyNotes is a simple, secure, and reliable note-taking app",
77
"author": "Toolworks.dev",
@@ -34,9 +34,9 @@
3434
"@capacitor/splash-screen": "^7.0.1",
3535
"@capacitor/status-bar": "^7.0.1",
3636
"@emotion/react": "^11.14.0",
37-
"@mantine/core": "^7.17.7",
38-
"@mantine/hooks": "^7.17.7",
39-
"@mantine/notifications": "^7.17.7",
37+
"@mantine/core": "^8.0.1",
38+
"@mantine/hooks": "^8.0.1",
39+
"@mantine/notifications": "^8.0.1",
4040
"@noble/curves": "^1.9.1",
4141
"@noble/ed25519": "^2.2.3",
4242
"@noble/hashes": "^1.8.0",
@@ -76,7 +76,7 @@
7676
"@vitejs/plugin-react": "^4.4.1",
7777
"concurrently": "^9.1.2",
7878
"cross-env": "^7.0.3",
79-
"electron": "^35.4.0",
79+
"electron": "^36.2.1",
8080
"electron-builder": "^26.0.12",
8181
"sharp": "^0.34.2",
8282
"typescript": "^5.8.3",

server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM oven/bun:1
22

33
WORKDIR /app
44

5-
COPY package*.json ./
5+
COPY package.json bun.lock ./
66
COPY .env ./
77
RUN bun install
88

0 commit comments

Comments
 (0)