Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b3ee62d8b | |||
| 8c330dd825 | |||
| cde3e690be | |||
| 46698f1ed2 | |||
| 93644569fd |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.3.1.0 (versionCode 18, 2020-09-13)
|
||||||
|
|
||||||
|
- Speed up full text search by a search index
|
||||||
|
- Bugfix: Don't go back to start page after App restore
|
||||||
|
- Update to moasdawiki-server 2.3.1
|
||||||
|
|
||||||
## 2.2.1.1 (versionCode 17, 2020-09-08)
|
## 2.2.1.1 (versionCode 17, 2020-09-08)
|
||||||
|
|
||||||
- Add German fastlane metadata for F-Droid repository
|
- Add German fastlane metadata for F-Droid repository
|
||||||
|
|||||||
+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 17
|
versionCode 18
|
||||||
versionName "2.2.1.1"
|
versionName "2.3.1.0"
|
||||||
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
||||||
}
|
}
|
||||||
sourceSets {
|
sourceSets {
|
||||||
@@ -24,7 +24,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'net.moasdawiki:moasdawiki-server:2.2.0'
|
implementation 'net.moasdawiki:moasdawiki-server:2.3.1'
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
implementation 'androidx.appcompat:appcompat:1.2.0'
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||||
implementation 'androidx.preference:preference:1.1.1'
|
implementation 'androidx.preference:preference:1.1.1'
|
||||||
|
|||||||
@@ -414,7 +414,7 @@ public class MainActivity extends AppCompatActivity {
|
|||||||
boolean webViewVisible = !hostUnconfiguredHintVisible && !repositoryEmptyHintVisible;
|
boolean webViewVisible = !hostUnconfiguredHintVisible && !repositoryEmptyHintVisible;
|
||||||
if (webViewVisible) {
|
if (webViewVisible) {
|
||||||
searchArea.setVisibility(View.VISIBLE);
|
searchArea.setVisibility(View.VISIBLE);
|
||||||
boolean previousVisible = (webView.getVisibility() == View.INVISIBLE);
|
boolean previousVisible = (webView.getVisibility() == View.VISIBLE);
|
||||||
webView.setVisibility(View.VISIBLE);
|
webView.setVisibility(View.VISIBLE);
|
||||||
|
|
||||||
// if WebView is shown the first time, go to start page
|
// if WebView is shown the first time, go to start page
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ public class WikiEngineApplication extends Application {
|
|||||||
RepositoryService repositoryService = new FilesystemRepositoryService(logger, internalStorageRepositoryRoot);
|
RepositoryService repositoryService = new FilesystemRepositoryService(logger, internalStorageRepositoryRoot);
|
||||||
repositoryService.init();
|
repositoryService.init();
|
||||||
WikiService wikiService = new WikiServiceImpl(logger, repositoryService);
|
WikiService wikiService = new WikiServiceImpl(logger, repositoryService);
|
||||||
SearchService searchService = new SearchService(logger, wikiService);
|
SearchService searchService = new SearchService(logger, repositoryService, wikiService);
|
||||||
Settings settings = new AndroidSettings(logger, repositoryService, AndroidSettings.getConfigFileApp());
|
Settings settings = new AndroidSettings(logger, repositoryService, AndroidSettings.getConfigFileApp());
|
||||||
Messages messages = new Messages(logger, settings, repositoryService);
|
Messages messages = new Messages(logger, settings, repositoryService);
|
||||||
PluginService pluginService = new PluginService(logger, settings);
|
PluginService pluginService = new PluginService(logger, settings);
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- Volltextsuche beschleunigen durch einen Suchindex
|
||||||
|
- Bugfix: Nicht zur Wiki-Startseite wechseln wenn die App wieder geöffnet wird
|
||||||
|
- Auf moasdawiki-server 2.3.1 aktualisieren
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- Speed up full text search by a search index
|
||||||
|
- Bugfix: Don't go back to start page after App restore
|
||||||
|
- Update to moasdawiki-server 2.3.1
|
||||||
Reference in New Issue
Block a user