-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
}, | ||
"package": { | ||
"productName": "bewCloud Desktop Sync", | ||
"version": "0.0.1" | ||
"version": "0.0.2" | ||
}, | ||
"tauri": { | ||
"allowlist": { | ||
|
@@ -66,11 +66,13 @@ | |
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
] | ||
], | ||
"category": "Utility" | ||
}, | ||
"systemTray": { | ||
"iconPath": "icons/sync-unset.png", | ||
"iconAsTemplate": true | ||
"iconAsTemplate": true, | ||
"title": "bewCloud Desktop Sync" | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -303,6 +303,9 @@ function App() { | |
id="new_username" | ||
type="text" | ||
placeholder="[email protected]" | ||
autocorrect="off" | ||
autocapitalize="off" | ||
spellcheck="false" | ||
Check failure on line 308 in src/App.tsx GitHub Actions / build (ubuntu-latest, x86_64, x86_64-unknown-linux-gnu)
Check failure on line 308 in src/App.tsx GitHub Actions / build (ubuntu-latest, aarch64, aarch64-unknown-linux-gnu)
Check failure on line 308 in src/App.tsx GitHub Actions / build (macos-latest, x86_64, x86_64-apple-darwin)
Check failure on line 308 in src/App.tsx GitHub Actions / build (macos-latest, aarch64, aarch64-apple-darwin)
|
||
onInput={(event) => | ||
setNewAccountUsername(event.currentTarget.value) | ||
} | ||
|
@@ -335,6 +338,9 @@ function App() { | |
id="new_name" | ||
type="text" | ||
placeholder="bewcloud" | ||
autocorrect="off" | ||
autocapitalize="off" | ||
spellcheck="false" | ||
Check failure on line 343 in src/App.tsx GitHub Actions / build (ubuntu-latest, x86_64, x86_64-unknown-linux-gnu)
Check failure on line 343 in src/App.tsx GitHub Actions / build (ubuntu-latest, aarch64, aarch64-unknown-linux-gnu)
Check failure on line 343 in src/App.tsx GitHub Actions / build (macos-latest, x86_64, x86_64-apple-darwin)
Check failure on line 343 in src/App.tsx GitHub Actions / build (macos-latest, aarch64, aarch64-apple-darwin)
|
||
onInput={(event) => | ||
setNewAccountName(event.currentTarget.value) | ||
} | ||
|