mirror of https://codeberg.org/gitnex/GitNex.git
Kick start 4.1.0 (#966)
As title Co-authored-by: M M Arif <mmarif@swatian.com> Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/966 Co-authored-by: M M Arif <mmarif@noreply.codeberg.org> Co-committed-by: M M Arif <mmarif@noreply.codeberg.org>
This commit is contained in:
parent
8ea7e470c5
commit
244dc12fc3
|
@ -6,8 +6,8 @@ android {
|
|||
applicationId "org.mian.gitnex"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 400
|
||||
versionName "4.0.0"
|
||||
versionCode 405
|
||||
versionName "4.1.0-dev"
|
||||
multiDexEnabled true
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -88,7 +88,8 @@
|
|||
<activity
|
||||
android:name=".activities.MainActivity"
|
||||
android:theme="@android:style/Theme.NoTitleBar"
|
||||
android:configChanges="orientation|screenSize|smallestScreenSize|density|screenLayout|uiMode|keyboard|keyboardHidden|navigation">
|
||||
android:configChanges="orientation|screenSize|smallestScreenSize|density|screenLayout|uiMode|keyboard|keyboardHidden|navigation"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
|
@ -173,7 +174,8 @@
|
|||
android:name=".activities.DeepLinksActivity"
|
||||
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
||||
android:noHistory="true"
|
||||
android:launchMode="singleTask">
|
||||
android:launchMode="singleTask"
|
||||
android:exported="true">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="versionLow" translatable="false">1.13</string>
|
||||
<string name="versionHigh" translatable="false">1.14</string>
|
||||
<string name="versionLow" translatable="false">1.14</string>
|
||||
<string name="versionHigh" translatable="false">1.16</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -1,15 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<changelog>
|
||||
|
||||
<release version="4.0.0" versioncode="400">
|
||||
<change>New: Revamped UI across the whole app</change>
|
||||
<change>Explore public organizations</change>
|
||||
<change>Users profile view with details, repositories, starred repositories, organizations, followers, following</change>
|
||||
<change>Notifications for all accounts</change>
|
||||
<change>New dialog popup for About App</change>
|
||||
<change>Delete head branch after PR is merged</change>
|
||||
<change>Time selection for changing dark theme</change>
|
||||
<change>More deep linking for other endpoints like user profile, organizations, issues, pr, releases etc</change>
|
||||
<release version="4.1.0-dev" versioncode="405">
|
||||
<change>Under development</change>
|
||||
</release>
|
||||
|
||||
</changelog>
|
||||
|
|
Loading…
Reference in New Issue