Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0cb372aa26 | |||
| b25bb0d1d2 | |||
| 7abb1788b6 | |||
| 2a16dbefb8 | |||
| 7e4d30bbe9 | |||
| eae02b9153 | |||
| 273901dc44 |
@@ -10,3 +10,6 @@ release/
|
|||||||
|
|
||||||
# Git
|
# Git
|
||||||
local.properties
|
local.properties
|
||||||
|
|
||||||
|
# Project
|
||||||
|
TODO.md
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.3.3.0 (versionCode 19, 2020-10-11)
|
||||||
|
|
||||||
|
- Bugfix: Show start page on app startup
|
||||||
|
- Bugfix: For searches only use the search index cache
|
||||||
|
- Update to moasdawiki-server 2.3.3
|
||||||
|
|
||||||
## 2.3.1.0 (versionCode 18, 2020-09-13)
|
## 2.3.1.0 (versionCode 18, 2020-09-13)
|
||||||
|
|
||||||
- Speed up full text search by a search index
|
- Speed up full text search by a search index
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ For MoasdaWiki documentation see https://moasdawiki.net/.
|
|||||||
|
|
||||||
- Synchronizes the data from a MoasdaWiki Server instance.
|
- Synchronizes the data from a MoasdaWiki Server instance.
|
||||||
- Data privacy: No cloud connection established, directly connects to the server inside your private network.
|
- Data privacy: No cloud connection established, directly connects to the server inside your private network.
|
||||||
- Powerful full text search, supports regular expressions.
|
- Fast full text search.
|
||||||
- Content cannot be modified within the app as it is no fun to type Wiki syntax on the mobile device,
|
- Content cannot be modified within the app as it is no fun to type Wiki syntax on the mobile device,
|
||||||
changes have to be done via the MoasdaWiki Server.
|
changes have to be done via the MoasdaWiki Server.
|
||||||
- Calendar integration, shows birthdays and events in the mobile calendar (German version only).
|
- Calendar integration, shows birthdays and events in the mobile calendar (German version only).
|
||||||
|
|||||||
+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 18
|
versionCode 19
|
||||||
versionName "2.3.1.0"
|
versionName "2.3.3.0"
|
||||||
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
|
||||||
}
|
}
|
||||||
sourceSets {
|
sourceSets {
|
||||||
@@ -24,7 +24,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'net.moasdawiki:moasdawiki-server:2.3.1'
|
implementation 'net.moasdawiki:moasdawiki-server:2.3.3'
|
||||||
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'
|
||||||
|
|||||||
@@ -418,7 +418,7 @@ public class MainActivity extends AppCompatActivity {
|
|||||||
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
|
||||||
if (!previousVisible) {
|
if (!previousVisible || webView.getUrl() == null) {
|
||||||
loadUrl(SERVER_BASE_URL);
|
loadUrl(SERVER_BASE_URL);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -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, repositoryService, wikiService);
|
SearchService searchService = new SearchService(logger, repositoryService, wikiService, true);
|
||||||
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);
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ buildscript {
|
|||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:4.0.1'
|
classpath 'com.android.tools.build:gradle:4.0.2'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- Bugfix: Zeige Startseite beim App-Start
|
||||||
|
- Bugfix: Bei der Suche ausschließlich den Suchindex-Cache verwenden
|
||||||
|
- Auf moasdawiki-server 2.3.3 aktualisieren
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- Bugfix: Show start page on app startup
|
||||||
|
- Bugfix: For searches only use the search index cache
|
||||||
|
- Update to moasdawiki-server 2.3.3
|
||||||
Reference in New Issue
Block a user