Skip to content

Commit de86e89

Browse files
committed
Release v2.0.7
1 parent 1249c0d commit de86e89

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 2.0.7
2+
- Removed debug value.
3+
14
### 2.0.6
25
- Fixed adding account failing because Home redirect on app window hide, causing `Add account` page to unmount.
36

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gitification",
33
"type": "module",
4-
"version": "2.0.6",
4+
"version": "2.0.7",
55
"files": [
66
"README.md",
77
"package.json"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "Gitification",
11-
"version": "2.0.6"
11+
"version": "2.0.7"
1212
},
1313
"tauri": {
1414
"systemTray": {

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ watch(() => Gitification.state.theme, (theme) => {
4040
}
4141
}, { immediate: true })
4242
43-
const [timerZero, resetTimer] = useCountDown(5)
43+
const [timerZero, resetTimer] = useCountDown(60)
4444
4545
whenever(timerZero, () => {
4646
resetTimer()

src/views/HomeView.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<script lang="ts" setup>
2-
import { useEventListener, whenever } from '@vueuse/core'
3-
import { computed, onMounted, onScopeDispose } from 'vue'
4-
import { useCountDown } from '../composables/useCountDown'
2+
import { useEventListener } from '@vueuse/core'
3+
import { computed, onScopeDispose } from 'vue'
54
import { useKey } from '../composables/useKey'
65
import { useTauriEvent } from '../composables/useTauriEvent'
76
import * as Gitification from '../gitification/index'

0 commit comments

Comments
 (0)