Skip to content

Commit d50fb2c

Browse files
authored
Merge pull request #61 from Gitification-App/main
Release v1.3.1
2 parents 3710f78 + c8d4d94 commit d50fb2c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.3.1
2+
- Fixed app always starts in Turkish. (Sorry for that :sweat_smile:)
3+
14
### 1.3.0
25
- Updated Wowerlay to 1.1.0 to fix some bugs.
36
- Added select language option to settings page (en and tr for now).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitification",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"type": "module",
55
"scripts": {
66
"dev": "run-p vite:dev devtools",

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": "1.3.0"
11+
"version": "1.3.1"
1212
},
1313
"tauri": {
1414
"systemTray": {

src/composables/useI18n.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const localeMap: Record<Locale, typeof en> = { en, tr }
145145

146146
export const useI18n = createSharedComposable(() => {
147147
const currentLanguage = customRef<Locale>((track, trigger) => {
148-
const locale = ref<Locale>('tr')
148+
const locale = ref<Locale>(AppStorage.get('language'))
149149

150150
return {
151151
get() {

0 commit comments

Comments
 (0)