Compare commits
20 Commits
release-4.
...
7-assign-t
Author | SHA1 | Date | |
---|---|---|---|
71d7f543a6 | |||
244dc12fc3 | |||
6a6ecd251a | |||
36808b1dbb | |||
cd902ff1ca | |||
e8f938bdb0 | |||
8312983ed3 | |||
a47be21017 | |||
69b7984d85 | |||
26b623a35b | |||
df3e1b9940 | |||
1d15f9b1d2 | |||
1e838031e1 | |||
c6ebca8a08 | |||
5b92be3a28 | |||
fbd92eb06b | |||
f727ec51b8 | |||
829320ca0c | |||
4d1d7a7204 | |||
a009e5dac9 |
@ -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" />
|
||||
|
@ -116,6 +116,18 @@
|
||||
android:layout_marginStart="64dp"
|
||||
android:background="?attr/dividerColor" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/assignTeam"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="@string/assignTeamTitle"
|
||||
android:drawableStart="@drawable/ic_people"
|
||||
android:drawablePadding="24dp"
|
||||
android:textColor="?attr/primaryTextColor"
|
||||
android:textSize="16sp"
|
||||
android:padding="12dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/addCollaborator"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -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>
|
||||
|
@ -713,6 +713,8 @@
|
||||
<string name="repoTransferOwnerError">New owner is required</string>
|
||||
<string name="repoTransferError">There is a problem with the owner name. Make sure that the new owner exists</string>
|
||||
|
||||
<string name="assignTeamTitle">Assign Team</string>
|
||||
|
||||
<string name="exploreFilterDialogTitle">Filter Repositories</string>
|
||||
<string name="exploreFilterIncludeTopic">Search ONLY in Topic</string>
|
||||
<string name="exploreFilterIncludeDesc">Search in Description</string>
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user