Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d70ba6351 | |||
| 33f8f709f8 |
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.2.0.0 (versionCode 15, 2020-02-08)
|
||||||
|
|
||||||
|
- Speed up full text search by searching only in the page titles in the first step
|
||||||
|
|
||||||
## 2.1.0.0 (versionCode 14, 2020-01-11)
|
## 2.1.0.0 (versionCode 14, 2020-01-11)
|
||||||
|
|
||||||
- Renewed the user interface
|
- Renewed the user interface
|
||||||
|
|||||||
+3
-3
@@ -6,8 +6,8 @@ android {
|
|||||||
applicationId "net.moasdawiki.app"
|
applicationId "net.moasdawiki.app"
|
||||||
minSdkVersion 26 // 26 = Oreo 8.0
|
minSdkVersion 26 // 26 = Oreo 8.0
|
||||||
targetSdkVersion 29 // should be same as compileSdkVersion
|
targetSdkVersion 29 // should be same as compileSdkVersion
|
||||||
versionCode 14
|
versionCode 15
|
||||||
versionName "2.1.0.0"
|
versionName "2.2.0.0"
|
||||||
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
||||||
}
|
}
|
||||||
sourceSets {
|
sourceSets {
|
||||||
@@ -24,7 +24,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'net.moasdawiki:moasdawiki-server:2.1.0'
|
implementation 'net.moasdawiki:moasdawiki-server:2.2.0'
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
implementation 'androidx.appcompat:appcompat:1.1.0'
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||||
implementation 'androidx.preference:preference:1.1.0'
|
implementation 'androidx.preference:preference:1.1.0'
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public class WikiEngineApplication extends Application {
|
|||||||
public void onCreate() {
|
public void onCreate() {
|
||||||
super.onCreate();
|
super.onCreate();
|
||||||
|
|
||||||
logger = new Logger();
|
logger = new Logger(System.out);
|
||||||
logger.write("MoasdaWiki app starting");
|
logger.write("MoasdaWiki app starting");
|
||||||
|
|
||||||
File internalStorageRepositoryRoot = new File(getFilesDir(), "repository");
|
File internalStorageRepositoryRoot = new File(getFilesDir(), "repository");
|
||||||
|
|||||||
Reference in New Issue
Block a user