Release 10.0.0 (#1516)

Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1516
Co-authored-by: M M Arif <mmarif@swatian.com>
Co-committed-by: M M Arif <mmarif@swatian.com>
This commit is contained in:
M M Arif
2025-08-03 16:24:18 +02:00
committed by M M Arif
parent 5170e147b9
commit 10994a4c64
5 changed files with 44 additions and 6 deletions

View File

@@ -8,8 +8,8 @@ android {
applicationId "org.mian.gitnex"
minSdkVersion 26
targetSdkVersion 36
versionCode 995
versionName "10.0.0-dev"
versionCode 1000
versionName "10.0.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
compileSdk 35

View File

@@ -99,7 +99,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen8dp"
android:layout_marginBottom="@dimen/dimen8dp"
android:hint="@string/infoTabRepoDefaultBranch"
android:hint="@string/default_branch"
android:textColorHint="?attr/hintColor"
app:boxStrokeErrorColor="@color/darkRed"
app:endIconMode="clear_text"

View File

@@ -120,6 +120,7 @@
<string name="repoOwnerError">Select owner for the repository</string>
<string name="repoDefaultBranchError">The default branch must not be empty</string>
<string name="orgNameErrorEmpty">Organization name is empty</string>
<string name="orgNameErrorInvalid">Organization name is not valid, [a&#8211;z A&#8211;Z 0&#8211;9 &#8211; _]</string>
<string name="orgDescError">Organization description exceeds the max 255 characters limit</string>
@@ -491,6 +492,7 @@
<string name="branch_error_exists">Branch %1$s already exists</string>
<string name="branch_error_repo_locked">Repository is locked</string>
<string name="create_branch">Create Branch</string>
<string name="default_branch">Default Branch</string>
<string name="strFilter">Filter</string>
<string name="strMarkdown">Markdown</string>

View File

@@ -1,9 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="10.0.0-dev" versioncode="995">
<type name="Dev">
<change>Under development</change>
<release version="10.0.0" versioncode="1000">
<type name="🎉 Features">
<change>Display dates in the Files section (requires Gitea 1.24 or Forgejo 12.x)</change>
<change>Redesigned user profile screen</change>
<change>Redesigned repository info screen</change>
<change>Render Markdown in issue and PR titles</change>
<change>File icons in the file browser</change>
<change>Repository Actions: view workflows, variables, and runners (requires Gitea 1.24)</change>
<change>Create Actions variables</change>
<change>Update expired account token</change>
</type>
<type name="🚀 Improvements">
<change>Improved branches UI</change>
<change>Enhanced repository language bar and statistics UI</change>
<change>Added instance providers: Gitea, Forgejo, Codeberg</change>
<change>Unified login and add account screens</change>
</type>
<type name="🐛 Bug Fixes">
<change>Fixed crash when a repository does not exist (in most visited repositories)</change>
<change>Fixed heatmap timestamp issue</change>
</type>
<type name="🛠️ Support">
<change>Minimum supported Android version is 8.0</change>
</type>
</release>