mirror of
https://codeberg.org/gitnex/GitNex
synced 2025-02-02 12:27:24 +01:00
another quick release and another old Gitea instances issue
This commit is contained in:
parent
22b3802e73
commit
0ab8784a7a
@ -6,8 +6,8 @@ android {
|
|||||||
applicationId "org.mian.gitnex"
|
applicationId "org.mian.gitnex"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 62
|
versionCode 63
|
||||||
versionName "2.1.2"
|
versionName "2.1.3"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
@ -247,7 +247,12 @@ public class RepoInfoFragment extends Fragment {
|
|||||||
repoRepoUrlInfo.setText(repoInfo.getHtml_url());
|
repoRepoUrlInfo.setText(repoInfo.getHtml_url());
|
||||||
repoForksCountInfo.setText(repoInfo.getForks_count());
|
repoForksCountInfo.setText(repoInfo.getForks_count());
|
||||||
|
|
||||||
|
if(repoInfo.getHas_issues() != null) {
|
||||||
tinyDb.putBoolean("hasIssues", repoInfo.getHas_issues());
|
tinyDb.putBoolean("hasIssues", repoInfo.getHas_issues());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tinyDb.putBoolean("hasIssues", true);
|
||||||
|
}
|
||||||
|
|
||||||
switch (timeFormat) {
|
switch (timeFormat) {
|
||||||
case "pretty": {
|
case "pretty": {
|
||||||
|
13
fastlane/metadata/android/en-US/changelogs/63.txt
Normal file
13
fastlane/metadata/android/en-US/changelogs/63.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
2.1.3
|
||||||
|
Bugfix: another old Gitea instances API issue
|
||||||
|
|
||||||
|
2.1.0
|
||||||
|
- New: Font - Roboto
|
||||||
|
- New: Milestone progress bar @6543
|
||||||
|
- New: Redesign issues list
|
||||||
|
- New: Copy issue URL to clipboard @6543
|
||||||
|
- New: Redesign milestones list
|
||||||
|
- New: Added repository avatars
|
||||||
|
|
||||||
|
For more, check the release notes.
|
||||||
|
https://gitea.com/mmarif/GitNex/releases
|
Loading…
x
Reference in New Issue
Block a user