Compare commits

...

20 Commits

Author SHA1 Message Date
71d7f543a6 Merge branch 'main' into 7-assign-team-to-repo 2021-08-30 00:22:07 +02:00
244dc12fc3 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>
2021-08-24 21:29:34 +02:00
6a6ecd251a Merge branch 'main' into 7-assign-team-to-repo 2021-08-02 20:08:41 +02:00
36808b1dbb Merge branch 'main' into 7-assign-team-to-repo 2021-05-01 19:45:45 +02:00
cd902ff1ca Merge branch 'master' into 7-assign-team-to-repo 2021-04-13 20:57:48 +02:00
e8f938bdb0 Merge branch 'master' into 7-assign-team-to-repo 2021-04-10 21:43:33 +02:00
8312983ed3 Merge branch 'master' into 7-assign-team-to-repo 2021-04-10 20:37:56 +02:00
a47be21017 Merge branch 'master' into 7-assign-team-to-repo 2021-03-31 19:24:12 +02:00
69b7984d85 Merge branch 'master' into 7-assign-team-to-repo 2021-03-19 14:48:26 +01:00
26b623a35b Merge branch 'master' into 7-assign-team-to-repo 2021-03-10 10:30:50 +01:00
df3e1b9940 Merge branch 'master' into 7-assign-team-to-repo 2021-02-04 10:40:33 +01:00
1d15f9b1d2 Merge branch 'master' into 7-assign-team-to-repo 2021-02-02 01:20:24 +01:00
1e838031e1 Merge branch 'master' into 7-assign-team-to-repo 2021-01-26 23:52:29 +01:00
c6ebca8a08 Merge branch 'master' into 7-assign-team-to-repo 2021-01-26 18:57:15 +01:00
5b92be3a28 Merge branch 'master' into 7-assign-team-to-repo 2021-01-14 18:43:23 +01:00
fbd92eb06b Merge branch 'master' into 7-assign-team-to-repo 2020-10-12 23:13:53 +05:00
f727ec51b8 Merge branch 'master' into 7-assign-team-to-repo 2020-10-12 18:04:27 +05:00
829320ca0c Merge branch 'master' into 7-assign-team-to-repo 2020-10-05 21:34:16 +05:00
4d1d7a7204 Merge branch 'master' into 7-assign-team-to-repo
# Conflicts:
#	app/src/main/res/values/strings.xml
2020-10-05 21:22:21 +05:00
a009e5dac9 add to menu 2020-09-16 20:59:17 +05:00
6 changed files with 24 additions and 15 deletions

View File

@ -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"
}

View File

@ -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" />

View File

@ -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"

View File

@ -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>

View File

@ -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>

View File

@ -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>