Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 009c1e5131 | |||
| 3839ad430c | |||
| 5b60b46676 | |||
| cfe89ec716 | |||
| 766326d170 | |||
| 9d281ebde9 | |||
| 8959fdaa99 | |||
| fbed0a15dc | |||
| 562d3662da | |||
| c97656a5d0 | |||
| 1b5f7918ce | |||
| 49e575e462 | |||
| ddc5cea6bd | |||
| 52ecbeb7d7 |
@@ -1,5 +1,20 @@
|
||||
# Changelog
|
||||
|
||||
## 3.9.5.0 (versionCode 47, 2025-07-06)
|
||||
|
||||
- Update to moasdawiki-server 3.9.5
|
||||
- Upgrade to Android API 36 (Android 16)
|
||||
- Upgrade to Gradle 8.14.3
|
||||
- Upgrade library dependencies
|
||||
- Fix warning
|
||||
|
||||
## 3.9.3.0 (versionCode 46, 2025-01-05)
|
||||
|
||||
- Update to moasdawiki-server 3.9.3
|
||||
- Upgrade to Gradle 8.12
|
||||
- Upgrade library dependencies
|
||||
- Update copyright year
|
||||
|
||||
## 3.9.1.1 (versionCode 45, 2024-11-02)
|
||||
|
||||
- Update App sync description
|
||||
|
||||
@@ -12,6 +12,7 @@ For MoasdaWiki documentation see https://moasdawiki.net/.
|
||||
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
|
||||
alt="Get it on F-Droid"
|
||||
height="80">](https://f-droid.org/packages/net.moasdawiki.app)
|
||||
or [Google Play](https://play.google.com/store/apps/details?id=net.moasdawiki.app)
|
||||
|
||||
## Features
|
||||
|
||||
|
||||
+10
-10
@@ -1,25 +1,25 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
namespace "net.moasdawiki.app"
|
||||
compileSdk 34 // 34 = Android 14
|
||||
namespace = "net.moasdawiki.app"
|
||||
compileSdk = 36 // 36 = Android 16
|
||||
defaultConfig {
|
||||
applicationId "net.moasdawiki.app"
|
||||
minSdk 28 // 28 = Android 9
|
||||
targetSdk 34 // should be same as compileSdk
|
||||
versionCode 45
|
||||
versionName "3.9.1.1"
|
||||
minSdk = 28 // 28 = Android 9
|
||||
targetSdk = 36 // should be same as compileSdk
|
||||
versionCode = 47
|
||||
versionName = "3.9.5.0"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
buildFeatures {
|
||||
buildConfig true
|
||||
buildConfig = true
|
||||
}
|
||||
lintOptions {
|
||||
// Workaround for NullPointerException in :app:lintVitalAnalyzeRelease in fdroid build
|
||||
checkReleaseBuilds false
|
||||
checkReleaseBuilds = false
|
||||
}
|
||||
base {
|
||||
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
||||
@@ -27,12 +27,12 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api 'net.moasdawiki:moasdawiki-server:3.9.1'
|
||||
api 'net.moasdawiki:moasdawiki-server:3.9.5'
|
||||
api ('androidx.appcompat:appcompat:1.6.1') {
|
||||
exclude group: 'org.jetbrains', module: 'annotations'
|
||||
}
|
||||
api ('androidx.preference:preference:1.2.1') {
|
||||
exclude group: 'org.jetbrains', module: 'annotations'
|
||||
}
|
||||
compileOnly 'org.jetbrains:annotations:26.0.1'
|
||||
compileOnly 'org.jetbrains:annotations:26.0.2'
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
@@ -276,6 +276,7 @@ public class MainActivity extends AppCompatActivity {
|
||||
// Close app
|
||||
finish();
|
||||
}
|
||||
super.onBackPressed();
|
||||
}
|
||||
|
||||
public void onConfigurationHintClicked(@SuppressWarnings("unused") View view) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* MoasdaWiki App
|
||||
* Copyright (C) 2008 - 2024 Herbert Reiter (herbert@moasdawiki.net)
|
||||
* Copyright (C) 2008 - 2025 Herbert Reiter (herbert@moasdawiki.net)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 3 as published
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ buildscript {
|
||||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.6.0'
|
||||
classpath 'com.android.tools.build:gradle:8.10.1'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
- Auf moasdawiki-server 3.9.3 aktualisieren
|
||||
- Gradle-Upgrade auf 8.12
|
||||
- Bibliotheks-Abhängigkeiten aktualisieren
|
||||
- Copyright-Jahr aktualisieren
|
||||
@@ -0,0 +1,5 @@
|
||||
- Auf moasdawiki-server 3.9.5 aktualisieren
|
||||
- Android API 36 (Android 16) unterstützen
|
||||
- Gradle-Upgrade auf 8.14.3
|
||||
- Bibliotheks-Abhängigkeiten aktualisieren
|
||||
- Warnung beheben
|
||||
@@ -0,0 +1,4 @@
|
||||
- Update to moasdawiki-server 3.9.3
|
||||
- Upgrade to Gradle 8.12
|
||||
- Upgrade library dependencies
|
||||
- Update copyright year
|
||||
@@ -0,0 +1,5 @@
|
||||
- Update to moasdawiki-server 3.9.5
|
||||
- Upgrade to Android API 36 (Android 16)
|
||||
- Upgrade to Gradle 8.14.3
|
||||
- Upgrade library dependencies
|
||||
- Fix warning
|
||||
+1
-19
@@ -1,21 +1,3 @@
|
||||
# Project-wide Gradle settings.
|
||||
|
||||
# IDE (e.g. Android Studio) users:
|
||||
# Gradle settings configured through the IDE *will override*
|
||||
# any settings specified in this file.
|
||||
|
||||
# For more details on how to configure your build environment visit
|
||||
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
||||
|
||||
# Specifies the JVM arguments used for the daemon process.
|
||||
# The setting is particularly useful for tweaking memory settings.
|
||||
# Default value: -Xmx10248m -XX:MaxPermSize=256m
|
||||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
||||
|
||||
# When configured, Gradle will run in incubating parallel mode.
|
||||
# This option should only be used with decoupled projects. More details, visit
|
||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||
# org.gradle.parallel=true
|
||||
|
||||
android.useAndroidX=true
|
||||
org.gradle.jvmargs=-Xmx3100M
|
||||
org.gradle.warning.mode=all
|
||||
|
||||
Vendored
BIN
Binary file not shown.
+2
-2
@@ -1,7 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
|
||||
distributionSha256Sum=bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
@@ -55,7 +57,7 @@
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
@@ -84,7 +86,7 @@ done
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
||||
Vendored
+2
@@ -13,6 +13,8 @@
|
||||
@rem See the License for the specific language governing permissions and
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
@rem SPDX-License-Identifier: Apache-2.0
|
||||
@rem
|
||||
|
||||
@if "%DEBUG%"=="" @echo off
|
||||
@rem ##########################################################################
|
||||
|
||||
Reference in New Issue
Block a user