Skip to content

Commit ecc9658

Browse files
Upgrade Tauri v1 -> v2
This attempts to upgrade Tauri and fails completely. Still many things are failing and there are no clear docs to move forward. It's unfortunate as it should fix #1 and #2. I'm not planning to continue this work myself and will instead stop releasing the desktop app, moving this repo to simple instructions to use `rclone` directly, as that's mainly what the app was doing anyway, and that way, users can have greater configuration options.
1 parent 585620e commit ecc9658

File tree

16 files changed

+4562
-3439
lines changed

16 files changed

+4562
-3439
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
github: [BrunoBernardino]
22
custom:
33
[
4+
'https://donate.stripe.com/bIYeWBbw00Ape5iaFi',
45
'https://paypal.me/brunobernardino',
56
'https://gist.github.com/BrunoBernardino/ff5b54c13dd96ac7f9fee6fbfd825b09',
67
]

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333

3434
runs-on: ${{ matrix.config.os }}
3535
steps:
36-
- uses: actions/checkout@v4
37-
- uses: actions/setup-node@v4
36+
- uses: actions/checkout@v5
37+
- uses: actions/setup-node@v5
3838
with:
3939
node-version-file: ".nvmrc"
4040

@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Install dependencies
5757
run: |
58-
npm i -g npm@10.1.0
58+
npm i -g npm@10.9.3
5959
make install
6060
6161
- name: Build

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.9.0
1+
v22.19.0

biome.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
3-
"organizeImports": {
4-
"enabled": false
5-
},
2+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
3+
"assist": { "actions": { "source": { "organizeImports": "off" } } },
64
"files": {
7-
"ignore": ["src-tauri/target/", "dist/"]
5+
"includes": ["**", "!**/src-tauri/target", "!**/dist", "!**/src/styles.css"]
86
},
97
"linter": {
108
"enabled": true,
@@ -18,13 +16,18 @@
1816
"noNonNullAssertion": "off"
1917
}
2018
},
21-
"ignore": ["src-tauri/target/", "dist/"]
19+
"includes": [
20+
"**",
21+
"!**/src-tauri/target/**",
22+
"!**/dist/**",
23+
"!**/src/styles.css"
24+
]
2225
},
2326
"formatter": {
2427
"enabled": true,
2528
"indentStyle": "space",
2629
"indentWidth": 2,
27-
"ignore": ["src-tauri/target/", "dist/"]
30+
"includes": ["**", "!**/src-tauri/target/**", "!**/dist/**"]
2831
},
2932
"javascript": {
3033
"formatter": {

0 commit comments

Comments
 (0)