Version increment.

Add contributors section to 'About' page.
Add changelogs to 'fastlane' folder for.. whatever reason.
master
Dmitry Isaenko 2020-10-22 23:24:31 +03:00
parent 17460aa53f
commit 91edd0e248
17 changed files with 70 additions and 13 deletions

View File

@ -22,9 +22,7 @@ Logo font: [Play](https://fonts.google.com/specimen/Play) by Jonas Hecksher. Ope
### System requirements
* Minimum: Android 4.0 (Ice Cream Sandwich)
* Maximum: Android 10.0 (Q)
* USB-OTG support / WiFi
### Usage
@ -55,15 +53,15 @@ If you're Samsung owner, it would be better to not rotating your phone during tr
### Other notes
'Status' = 'Uploaded' that appears in the table does not mean that file has been installed. It means that it has been sent to NS without any issues! That's what this app about.
Handling successful/failed installation is a purpose of the other side application: TinFoil/GoldLeaf v0.5. And they don't provide any feedback interfaces so I can't detect success/failure.
Handling successful/failed installation is a purpose of the other side application: TinFoil/GoldLeaf v0.5. And they don't provide any feedback interfaces so I can't detect success/failure.
#### Translators
#### Contributors and Translators
Traditional Chinese by [qazrfv1234](https://github.com/qazrfv1234)
* Thanks [Huang YunKun](https://github.com/htynkn) for various contributions!
Simplified Chinese by FFT9 (XXGAME GROUP)(http://www.xxgame.net)
Italian by [IvanMazzoli](https://github.com/IvanMazzoli)
* Traditional Chinese by [qazrfv1234](https://github.com/qazrfv1234)
* Simplified Chinese by FFT9 (XXGAME GROUP)(http://www.xxgame.net)
* Italian by [IvanMazzoli](https://github.com/IvanMazzoli)
#### TODO:

View File

@ -7,8 +7,8 @@ android {
applicationId "com.blogspot.developersu.ns_usbloader"
minSdkVersion 15
targetSdkVersion 29
versionCode 5
versionName "3.0"
versionCode 6
versionName "4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
android.defaultConfig.vectorDrawables.useSupportLibrary = true
}

View File

@ -37,6 +37,8 @@ public class AboutActivity extends AppCompatActivity {
t6.setMovementMethod(LinkMovementMethod.getInstance());
final TextView tTranslators = findViewById(R.id.textViewTranslators);
tTranslators.setMovementMethod(LinkMovementMethod.getInstance());
final TextView tContributors = findViewById(R.id.textViewContributorsNames);
tContributors.setMovementMethod(LinkMovementMethod.getInstance());
ImageView donateLibera = findViewById(R.id.donateLiberaImageView);
donateLibera.setOnClickListener(this::donateLiberaOnClickAction);

View File

@ -79,9 +79,22 @@
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:paddingTop="5dp"
android:text="@string/about_translators"
android:text="@string/translators"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
<TextView
android:id="@+id/textViewContributorsTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:text="@string/about_line_contributors"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
<TextView
android:id="@+id/textViewContributorsNames"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:text="@string/contributors"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
<TextView
android:id="@+id/textView6"
android:layout_width="match_parent"

View File

@ -46,4 +46,5 @@
<item>Tema chiaro</item>
<item>Tema scuro</item>
</string-array>
<string name="about_line_contributors">Contributori:</string>
</resources>

View File

@ -46,4 +46,5 @@
</string-array>
<string name="settings_application_settings">Настройки приложения</string>
<string name="settings_app_theme">Тема:</string>
<string name="about_line_contributors">При участии:</string>
</resources>

View File

@ -41,4 +41,5 @@
<string name="about_line_5">口譯員:: </string>
<string name="settings_application_settings">应用设置</string>
<string name="settings_app_theme">应用主题:</string>
<string name="about_line_contributors">参与者:</string>
</resources>

View File

@ -41,4 +41,5 @@
<string name="notification_chan_desc_progress">在通知欄顯示傳輸檔案進度</string>
<string name="settings_application_settings">程式設置</string>
<string name="settings_app_theme">程式主題:</string>
<string name="about_line_contributors">參與者:</string>
</resources>

View File

@ -45,7 +45,7 @@
<string name="notification_transfer_in_progress">Data transfer in progress</string>
<string name="notification_chan_name_progress">Transfer in progress</string>
<string name="notification_chan_desc_progress">Notification indicates transfer progress</string>
<string name="about_translators" translatable="false">* 中文(繁體) - <a href="https://github.com/qazrfv1234">qazrfv1234</a>\n* 中文(简体) - FFT9 <a href="http://www.xxgame.net">(XXGAME GROUP)</a>\n* Italiano - <a href="https://github.com/IvanMazzoli">IvanMazzoli</a></string>
<string name="translators" translatable="false">* 中文(繁體) - <a href="https://github.com/qazrfv1234">qazrfv1234</a>\n* 中文(简体) - FFT9 <a href="http://www.xxgame.net">(XXGAME GROUP)</a>\n* Italiano - <a href="https://github.com/IvanMazzoli">IvanMazzoli</a></string>
<string-array name="dayNightSelector">
<item>System default</item>
<item>Day theme</item>
@ -53,4 +53,6 @@
</string-array>
<string name="settings_application_settings">Application settings</string>
<string name="settings_app_theme">Application theme:</string>
<string name="about_line_contributors">With contributors:</string>
<string name="contributors" translatable="false"><a href="https://github.com/htynkn">Huang YunKun</a></string>
</resources>

View File

@ -0,0 +1,4 @@
* Remove notification that appears once user connects NS
* Add Traditional Chinese by @qazrfv1234. Thank you!
* Fix startup failures on old android versions related to vector assets
* Add split-screen and window-in-window support for 'modern' android versions

View File

@ -0,0 +1 @@
* Add Simplified Chinese by FFT9 (XXGAME GROUP). Thank you!

View File

@ -0,0 +1,7 @@
* Add dark theme
* Created and added navigation panel pattern
* Updated margins for better view on phones with curved screens (e.g. 1+ 8pro)
* Add ability for users to select application theme: day/night/system
* Update notification priority: there should be no sound on modern devices when notification icon appears (reinstall app if you still hear it or disable somewhere in system settings if don't want to reinstall)
* Made disable button(s) on a main application screen looks 'disable' (darker colour).
* Rewrite a bit net-related code to make it readable.

View File

@ -0,0 +1,7 @@
* Italian translation added by @IvanMazzoli. Thank you!
@htynkn added many interesting things:
* Corrected Chinese translations
* File associations for nsp, nsz, xci, xcz files. Now you can open these file directly.
* CI (GitHub actions)
Many thanks!

View File

@ -0,0 +1,4 @@
* Удалено уведомление, которое появлялось при подключении NS
* Благодаря qazrfv1234, добавлена перевод на традиционный китайский. Спасибо!
* Исправленны падения при запуске приложения на старых версиях Android происходивших из-за использования векторных изображений
* Добавлена поддержка 'разделённого экрана' и 'окна-в-окне' в современных версиях Android

View File

@ -0,0 +1 @@
* FFT9 (XXGAME GROUP) перевели приложение на упрощённый китайский. Спасибо!

View File

@ -0,0 +1,7 @@
* Добавленна тёмная тема
* Создан и добавлен паттерн на навигационной панели
* Обновлены отступы для лучшего отображения на телефонах с загнутым экраном (например 1+ 8pro)
* Добавлена возможность выбора темы приложения - Светлая/Ночная/Системная
* Обновлен приоритет уведомления. На современных устройствах не должно быть звукового уведомления при при появлении значка в панели уведомлений. (Переустановите приложение если вы всё ещё слышите звук или отключите его где-то в настройках системы)
* Неактивные кнопки на главном экране приложения теперь выглядят "неактивными" (их цвет темнее).
* Немного переписан код, относящийся к передаче данных по-сети. Теперь он немного более читаем, чем прежде.

View File

@ -0,0 +1,7 @@
* IvanMazzoli перевёл приложение на итальянский. Спасибо ему!
htynkn добавил много интересного в приложение:
* Обновил/подкорректировал переводы на китайский язык
* Добавил файловые ассоциации для nsp, nsz, xci, xcz. Теперь вы можете добавить файлы напрямую из файлового менеджера.
* Добавил поддержку CI (GitHub actions)
Большое спасибо!