Skip to content

Commit

Permalink
Merge pull request #146 from Crazy-Marvin/development
Browse files Browse the repository at this point in the history
Release 2.0
  • Loading branch information
CrazyMarvin authored Feb 27, 2023
2 parents e668073 + e91d193 commit 05159a8
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:localeConfig="@xml/locales_config">
android:localeConfig="@xml/locales_config"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/rocks/poopjournal/morse/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,8 @@ protected void onCreate(Bundle savedInstanceState) {
});

history.setOnClickListener(view -> startActivity(new Intent(MainActivity.this, PhraseBookActivity.class)));
mic.setOnClickListener(view -> Toast.makeText(getApplicationContext(), Toast.makeText(context, context.getString(R.string.future_release), Toast.LENGTH_SHORT).show());
settings.setOnClickListener(v -> Toast.makeText(getApplicationContext(), Toast.makeText(context, context.getString(R.string.future_release), Toast.LENGTH_SHORT).show());
mic.setOnClickListener(view -> Toast.makeText(this, getString(R.string.future_release), Toast.LENGTH_SHORT).show());
settings.setOnClickListener(v -> Toast.makeText(this, getString(R.string.future_release), Toast.LENGTH_SHORT).show());
container = findViewById(R.id.container);
bottomNavigation = findViewById(R.id.bottomLayout);
morseInputContainer = findViewById(R.id.morseInputContainer);
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/ru-RU/changelogs/10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Поддержка языковых настроек для приложения (Android 13+) 🗺️
1 change: 1 addition & 0 deletions fastlane/metadata/android/ru-RU/changelogs/11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Некоторые ошибки связанные с Android 13 исправлены, вроде бы 🐛
4 changes: 2 additions & 2 deletions fastlane/metadata/android/ru-RU/changelogs/8.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- Управление скоростью звука (обычная, др. Фарнсворт или пользовательская)
- Исправления кодовой базы
- Исправления ошибок в кодовой базе
- Обновлены переводы на другие языки
5 changes: 5 additions & 0 deletions fastlane/metadata/android/ru-RU/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Исправлен вылет при переходе в режим планшета🐛 (#126)
- Поддержка Ñ ➕ (#124)
- Поддержка перекрашиваемых иконок на Android 13+ 🎨 (#117)
- Обновлены зависимости⚙️
- Обновлены переводы на другие языки 🗺️

0 comments on commit 05159a8

Please sign in to comment.