Compare commits

..

7 Commits

Author SHA1 Message Date
Herbert Reiter 0cb372aa26 New release 2020-10-11 18:53:07 +02:00
Herbert Reiter b25bb0d1d2 - Update to moasdawiki-server 2.3.3
- new release
2020-10-11 18:52:55 +02:00
Herbert Reiter 7abb1788b6 Bugfix: For searches only use the search index cache 2020-10-11 18:52:15 +02:00
Herbert Reiter 2a16dbefb8 Bugfix: Don't show empty page on app startup 2020-10-11 15:57:00 +02:00
Herbert Reiter 7e4d30bbe9 Update Gradle version 2020-10-11 13:28:26 +02:00
Herbert Reiter eae02b9153 Update .gitignore 2020-10-11 13:27:45 +02:00
Herbert Reiter 273901dc44 Update README.md 2020-09-15 20:38:44 +02:00
9 changed files with 23 additions and 8 deletions
+3
View File
@@ -10,3 +10,6 @@ release/
# Git # Git
local.properties local.properties
# Project
TODO.md
+6
View File
@@ -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
+1 -1
View File
@@ -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).
+4 -4
View File
@@ -6,12 +6,12 @@ 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 {
main{ main {
java { java {
exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*" exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*"
} }
@@ -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
View File
@@ -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