diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f7265..4781b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.3.0 + +### Features +* you can now toggle the theme + +### Fix +* add space at bottom to show complete review list +* change styling to look like github +* on logout, delete all store data +* add animation for loading state + ## 0.2.0 ### Features * rework application from react to svelte (reduce bundle size) diff --git a/README.md b/README.md index b235021..e172301 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ An system tray app for showing your pull requested reviews. -![image](./docs/app.png) +![image](./website/static/screenshot.png) ## Development instructions diff --git a/docs/app.png b/docs/app.png deleted file mode 100644 index 6da1e3f..0000000 Binary files a/docs/app.png and /dev/null differ diff --git a/docs/icon.png b/docs/icon.png deleted file mode 100644 index 8b7e064..0000000 Binary files a/docs/icon.png and /dev/null differ diff --git a/index.html b/index.html index f0bd234..2f55359 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ Gitbar - +
diff --git a/package.json b/package.json index 31072b8..5092f43 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitbar", "private": true, - "version": "0.2.0", + "version": "0.3.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index c3017a3..a5c3684 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -921,7 +921,7 @@ dependencies = [ [[package]] name = "gitbar" -version = "0.2.0" +version = "0.3.0" dependencies = [ "auto-launch", "cocoa", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 82dddb0..f981691 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitbar" -version = "0.2.0" +version = "0.3.0" description = "Github review counter" authors = ["mikael.kristiansson"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 18aa6a2..5d6ee09 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Gitbar", - "version": "0.2.0" + "version": "0.3.0" }, "tauri": { "allowlist": { diff --git a/src/App.svelte b/src/App.svelte index 6e0778e..f5ccac6 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -1,9 +1,38 @@ + + + + +