Skip to content

Commit e983c1a

Browse files
committed
android: 0.6.4
1 parent e943d93 commit e983c1a

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ android {
9494
applicationId 'jp.nonbili.nora'
9595
minSdkVersion rootProject.ext.minSdkVersion
9696
targetSdkVersion rootProject.ext.targetSdkVersion
97-
versionCode 55
98-
versionName "0.6.3"
97+
versionCode 56
98+
versionName "0.6.4"
9999

100100
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
101-
resourceConfigurations += ["ar", "el", "en", "es", "fr", "it", "pl", "b+zh+Hans", "b+zh+Hant"]
101+
resourceConfigurations += ["ar", "el", "en", "es", "fr", "it", "pl", "tr", "b+zh+Hans", "b+zh+Hant"]
102102
}
103103
signingConfigs {
104104
debug {

app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ module.exports = ({ config }: { config: ExpoConfig }) => {
118118
[
119119
'expo-localization',
120120
{
121-
supportedLocales: ['ar', 'el', 'en', 'es', 'fr', 'it', 'pl', 'zh-Hans', 'zh-Hant'],
121+
supportedLocales: ['ar', 'el', 'en', 'es', 'fr', 'it', 'pl', 'tr', 'zh-Hans', 'zh-Hant'],
122122
},
123123
],
124124
['expo-share-intent', { iosAppGroupIdentifier: 'group.g.jp.nonbili.nora' }],

lib/i18n.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import frText from '@/locales/fr.json'
88
import itText from '@/locales/it.json'
99
/* import jaText from '@/locales/ja.json' */
1010
import plText from '@/locales/pl.json'
11+
import trText from '@/locales/tr.json'
1112
import zhHansText from '@/locales/zh_Hans.json'
1213
import zhHantText from '@/locales/zh_Hant.json'
1314

@@ -36,6 +37,9 @@ const resources = {
3637
pl: {
3738
translation: plText,
3839
},
40+
tr: {
41+
translation: trText,
42+
},
3943
zh_Hans: {
4044
translation: zhHansText,
4145
},

metadata/en-US/changelogs/5604.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Support using microphone
2+
- Add Turkish translation

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"name": "nora",
66
"private": true,
77
"main": "expo-router/entry",
8-
"version": "0.6.3",
9-
"versionCode": 55,
8+
"version": "0.6.4",
9+
"versionCode": 56,
1010
"buildNumber": "3",
1111
"scripts": {
1212
"bundle": "bun build --target browser content/main.ts --outfile assets/scripts/main.bjs",

0 commit comments

Comments
 (0)