Skip to content

Commit 7554fe4

Browse files
Merge pull request #7 from ThatOneCalculator/main
0.0.8
2 parents 5a26315 + 54503ae commit 7554fe4

39 files changed

+1499
-1129
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,4 @@ jobs:
4141
with:
4242
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
4343
releaseName: 'v__VERSION__'
44-
releaseBody: 'Assets are as follows:\n
45-
- `.AppImage` or `.deb` for Linux\n
46-
- `.dmg` or `.app.tar.gz` for macOS\n
47-
- `.exe` or `.msi` for Windows\n\n
48-
49-
Please note that the builds are not signed.'
44+
releaseBody: '[![download windows](https://img.shields.io/badge/download_for-windows-0079D5?logo=windows&style=for-the-badge)](https://github.com/ThatOneCalculator/google-chat-tauri/releases/download/app-v__VERSION__/Google.Chat___VERSION___x64-setup.exe) [![download macOS](https://img.shields.io/badge/download_for-macOS-000000?logo=apple&style=for-the-badge)](https://github.com/ThatOneCalculator/google-chat-tauri/releases/download/app-v__VERSION__/Google.Chat___VERSION___x64.dmg) [![download linux appimage](https://img.shields.io/badge/download_for-Linux_Appimage-709DB7?logo=linux&style=for-the-badge)](https://github.com/ThatOneCalculator/google-chat-tauri/releases/download/app-v__VERSION__/google-chat___VERSION___amd64.AppImage) [![download linux deb](https://img.shields.io/badge/download_for-Linux_.deb-EA4F06?logo=ubuntu&style=for-the-badge)](https://github.com/ThatOneCalculator/google-chat-tauri/releases/download/app-v__VERSION__/google-chat___VERSION___amd64.deb)'

.vscode/extensions.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
3-
}
2+
"recommendations": [
3+
"rust-lang.rust-analyzer",
4+
"tauri-apps.tauri-vscode"
5+
]
6+
}

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Pros:
2121
- Not Electron
2222
- Relatively small, both in file size (17MB binary and 488KB saved cache on Linux) and memory usage (~800-1000MB average with a space open)
2323
- Notifications
24-
- Cool splash screen
2524

2625
Cons:
2726

@@ -49,5 +48,5 @@ Non-plans:
4948

5049
Credits:
5150

52-
- <https://github.com/squalou/google-chat-linux/> - Inspiration and icons
51+
- <https://github.com/squalou/google-chat-linux/> - Inspiration
5352
- `create-tauri-app` - Scaffolding template

bun.lockb

21.9 KB
Binary file not shown.

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "google-chat-tauri",
3-
"private": true,
4-
"version": "0.0.7",
5-
"description": "A Google Chat desktop app built with Tauri",
6-
"packageManager": "pnpm@8.9.2",
7-
"type": "module",
8-
"scripts": {
9-
"dev": "vite",
10-
"build": "tsc && vite build",
11-
"preview": "vite preview",
12-
"tauri": "tauri"
13-
},
14-
"dependencies": {
15-
"@tauri-apps/api": "^1.5.0",
16-
"pnpm": "^8.9.2"
17-
},
18-
"devDependencies": {
19-
"@tauri-apps/cli": "^1.5.0",
20-
"lightningcss": "^1.22.0",
21-
"typescript": "^5.0.2",
22-
"vite": "^4.4.4"
23-
}
2+
"name": "google-chat-tauri",
3+
"private": true,
4+
"version": "0.0.8",
5+
"description": "A Google Chat desktop app built with Tauri",
6+
"packageManager": "pnpm@8.9.2",
7+
"type": "module",
8+
"scripts": {
9+
"dev": "vite",
10+
"build": "tsc && vite build",
11+
"preview": "vite preview",
12+
"tauri": "tauri"
13+
},
14+
"dependencies": {
15+
"@tauri-apps/api": "^1.6.0",
16+
"pnpm": "^8.9.2"
17+
},
18+
"devDependencies": {
19+
"@tauri-apps/cli": "^1.6.0",
20+
"lightningcss": "^1.22.0",
21+
"typescript": "^5.0.2",
22+
"vite": "^4.4.4"
23+
}
2424
}

0 commit comments

Comments
 (0)