Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf1142afa2 | ||
|
|
359325bf64 | ||
|
|
c7d0f899e7 | ||
|
|
5121a7b2b8 | ||
|
|
04664c8920 | ||
|
|
2a56dd8128 | ||
|
|
63af7d30dc |
142
CHANGELOG.md
@@ -6,7 +6,147 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## [1.2.2] - TBD
|
## [1.3.1] - 2026-01-08
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **🔧 Multi-Device JSON Sync (Danke an Thomas aus Bielefeld)**
|
||||||
|
- JSON-Dateien werden jetzt korrekt zwischen Geräten synchronisiert
|
||||||
|
- Funktioniert auch ohne aktiviertes Markdown
|
||||||
|
- Hybrid-Optimierung: Server-Timestamp (Primary) + E-Tag (Secondary) Checks
|
||||||
|
- E-Tag wird nach Upload gecached um Re-Download zu vermeiden
|
||||||
|
|
||||||
|
### Performance Improvements
|
||||||
|
- **⚡ JSON Sync Performance-Parität**
|
||||||
|
- JSON-Sync erreicht jetzt gleiche Performance wie Markdown (~2-3 Sekunden)
|
||||||
|
- Timestamp-basierte Skip-Logik für unveränderte Dateien (~500ms pro Datei gespart)
|
||||||
|
- E-Tag-Matching als Fallback für Dateien die seit letztem Sync modifiziert wurden
|
||||||
|
- **Beispiel:** 24 Dateien von 12-14s auf ~2.7s reduziert (keine Änderungen)
|
||||||
|
|
||||||
|
- **⏭️ Skip unveränderte Dateien** (Haupt-Performance-Fix!)
|
||||||
|
- JSON-Dateien: Überspringt alle Notizen, die seit letztem Sync nicht geändert wurden
|
||||||
|
- Markdown-Dateien: Überspringt unveränderte MD-Dateien basierend auf Server-Timestamp
|
||||||
|
- **Spart ~500ms pro Datei** bei Nextcloud (~20 Dateien = 10 Sekunden gespart!)
|
||||||
|
- Von 21 Sekunden Sync-Zeit auf 2-3 Sekunden reduziert
|
||||||
|
|
||||||
|
- **⚡ Session-Caching für WebDAV**
|
||||||
|
- Sardine-Client wird pro Sync-Session wiederverwendet (~600ms gespart)
|
||||||
|
- WiFi-IP-Adresse wird gecacht statt bei jeder Anfrage neu ermittelt (~300ms gespart)
|
||||||
|
- `/notes/` Ordner-Existenz wird nur einmal pro Sync geprüft (~500ms gespart)
|
||||||
|
- **Gesamt: ~1.4 Sekunden zusätzlich gespart**
|
||||||
|
|
||||||
|
- **📝 Content-basierte Markdown-Erkennung**
|
||||||
|
- Extern bearbeitete Markdown-Dateien werden auch erkannt wenn YAML-Timestamp nicht aktualisiert wurde
|
||||||
|
- Löst das Problem: Obsidian/Texteditor-Änderungen wurden nicht importiert
|
||||||
|
- Hybridansatz: Erst Timestamp-Check (schnell), dann Content-Vergleich (zuverlässig)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **🔄 Sync-Status-Anzeige (UI)**
|
||||||
|
- Sichtbares Banner "Synchronisiere..." mit ProgressBar während Sync läuft
|
||||||
|
- Sync-Button und Pull-to-Refresh werden deaktiviert während Sync aktiv
|
||||||
|
- Verhindert versehentliche Doppel-Syncs durch visuelle Rückmeldung
|
||||||
|
- Auch in Einstellungen: "Jetzt synchronisieren" Button wird deaktiviert
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **🔧 Sync-Mutex verhindert doppelte Syncs**
|
||||||
|
- Keine doppelten Toast-Nachrichten mehr bei schnellem Pull-to-Refresh
|
||||||
|
- Concurrent Sync-Requests werden korrekt blockiert
|
||||||
|
|
||||||
|
- **🐛 Lint-Fehler behoben**
|
||||||
|
- `View.generateViewId()` statt hardcodierte IDs in RadioButtons
|
||||||
|
- `app:tint` statt `android:tint` für AppCompat-Kompatibilität
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **🔍 detekt Code-Analyse**
|
||||||
|
- Statische Code-Analyse mit detekt 1.23.4 integriert
|
||||||
|
- Pragmatische Konfiguration für Sync-intensive Codebasis
|
||||||
|
- 91 Issues identifiziert (als Baseline für v1.4.0)
|
||||||
|
|
||||||
|
- **🏗️ Debug Build mit separatem Package**
|
||||||
|
- Debug-APK kann parallel zur Release-Version installiert werden
|
||||||
|
- Package: `dev.dettmer.simplenotes.debug` (Debug) vs `dev.dettmer.simplenotes` (Release)
|
||||||
|
- App-Name zeigt "Simple Notes (Debug)" für einfache Unterscheidung
|
||||||
|
|
||||||
|
- **📊 Debug-Logging UI**
|
||||||
|
- Neuer "Debug Log" Button in Einstellungen → Erweitert
|
||||||
|
- Zeigt letzte Sync-Logs mit Zeitstempeln
|
||||||
|
- Export-Funktion für Fehlerberichte
|
||||||
|
|
||||||
|
### Technical
|
||||||
|
- `WebDavSyncService`: Hybrid-Optimierung für JSON-Downloads (Timestamp PRIMARY, E-Tag SECONDARY)
|
||||||
|
- `WebDavSyncService`: E-Tag refresh nach Upload statt Invalidierung (verhindert Re-Download)
|
||||||
|
- E-Tag Caching: `SharedPreferences` mit Key-Pattern `etag_json_{noteId}`
|
||||||
|
- Skip-Logik: `if (serverModified <= lastSync) skip` → ~1ms pro Datei
|
||||||
|
- Fallback E-Tag: `if (serverETag == cachedETag) skip` → für Dateien modifiziert nach lastSync
|
||||||
|
- PROPFIND nach PUT: Fetch E-Tag nach Upload für korrektes Caching
|
||||||
|
- `SyncStateManager`: Neuer Singleton mit `StateFlow<Boolean>` für Sync-Status
|
||||||
|
- `MainActivity`: Observer auf `SyncStateManager.isSyncing` für UI-Updates
|
||||||
|
- Layout: `sync_status_banner` mit `ProgressBar` + `TextView`
|
||||||
|
- `WebDavSyncService`: Skip-Logik für unveränderte JSON/MD Dateien basierend auf `lastSyncTimestamp`
|
||||||
|
- `WebDavSyncService`: Neue Session-Cache-Variablen (`sessionSardine`, `sessionWifiAddress`, `notesDirEnsured`)
|
||||||
|
- `getOrCreateSardine()`: Cached Sardine-Client mit automatischer Credentials-Konfiguration
|
||||||
|
- `getOrCacheWiFiAddress()`: WiFi-Adresse wird nur einmal pro Sync ermittelt
|
||||||
|
- `clearSessionCache()`: Aufräumen am Ende jeder Sync-Session
|
||||||
|
- `ensureNotesDirectoryExists()`: Cached Directory-Check
|
||||||
|
- Content-basierter Import: Vergleicht MD-Content mit lokaler Note wenn Timestamps gleich
|
||||||
|
- Build-Tooling: detekt aktiviert, ktlint vorbereitet (deaktiviert wegen Parser-Problemen)
|
||||||
|
- Debug BuildType: `applicationIdSuffix = ".debug"`, `versionNameSuffix = "-debug"`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## [1.3.0] - 2026-01-07
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **🚀 Multi-Device Sync** (Thanks to Thomas from Bielefeld for reporting!)
|
||||||
|
- Automatic download of new notes from other devices
|
||||||
|
- Deletion tracking prevents "zombie notes" (deleted notes don't come back)
|
||||||
|
- Smart cleanup: Re-created notes (newer timestamp) are downloaded
|
||||||
|
- Works with all devices: v1.2.0, v1.2.1, v1.2.2, and v1.3.0
|
||||||
|
|
||||||
|
- **🗑️ Server Deletion via Swipe Gesture**
|
||||||
|
- Swipe left on notes to delete from server (requires confirmation)
|
||||||
|
- Prevents duplicate notes on other devices
|
||||||
|
- Works with deletion tracking system
|
||||||
|
- Material Design confirmation dialog
|
||||||
|
|
||||||
|
- **⚡ E-Tag Performance Optimization**
|
||||||
|
- Smart server checking with E-Tag caching (~150ms vs 3000ms for "no changes")
|
||||||
|
- 20x faster when server has no updates
|
||||||
|
- E-Tag hybrid approach: E-Tag for JSON (fast), timestamp for Markdown (reliable)
|
||||||
|
- Battery-friendly with minimal server requests
|
||||||
|
|
||||||
|
- **📥 Markdown Auto-Sync Toggle**
|
||||||
|
- NEW: Unified Auto-Sync toggle in Settings (replaces separate Export/Auto-Import toggles)
|
||||||
|
- When enabled: Notes export to Markdown AND import changes automatically
|
||||||
|
- When disabled: Manual sync button appears for on-demand synchronization
|
||||||
|
- Performance: Auto-Sync OFF = 0ms overhead
|
||||||
|
|
||||||
|
- **🔘 Manual Markdown Sync Button**
|
||||||
|
- Manual sync button for performance-conscious users
|
||||||
|
- Shows import/export counts after completion
|
||||||
|
- Only visible when Auto-Sync is disabled
|
||||||
|
- On-demand synchronization (~150-200ms only when triggered)
|
||||||
|
|
||||||
|
- **⚙️ Server-Restore Modes**
|
||||||
|
- MERGE: Keep local notes + add server notes
|
||||||
|
- REPLACE: Delete all local + download from server
|
||||||
|
- OVERWRITE: Update duplicates, keep non-duplicates
|
||||||
|
- Restore modes now work correctly for WebDAV restore
|
||||||
|
|
||||||
|
### Technical
|
||||||
|
- New `DeletionTracker` model with JSON persistence
|
||||||
|
- `NotesStorage`: Added deletion tracking methods
|
||||||
|
- `WebDavSyncService.hasUnsyncedChanges()`: Intelligent server checks with E-Tag caching
|
||||||
|
- `WebDavSyncService.downloadRemoteNotes()`: Deletion-aware downloads
|
||||||
|
- `WebDavSyncService.restoreFromServer()`: Support for restore modes
|
||||||
|
- `WebDavSyncService.deleteNoteFromServer()`: Server deletion with YAML frontmatter scanning
|
||||||
|
- `WebDavSyncService.importMarkdownFiles()`: Automatic Markdown import during sync
|
||||||
|
- `WebDavSyncService.manualMarkdownSync()`: Manual sync with result counts
|
||||||
|
- `MainActivity.setupSwipeToDelete()`: Two-stage swipe deletion with confirmation
|
||||||
|
- E-Tag caching in SharedPreferences for performance
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## [1.2.2] - 2026-01-06
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- **Backward Compatibility for v1.2.0 Users (Critical)**
|
- **Backward Compatibility for v1.2.0 Users (Critical)**
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
[](https://m3.material.io/)
|
[](https://m3.material.io/)
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
|
|
||||||
|
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height="80">](https://apt.izzysoft.de/fdroid/index/apk/dev.dettmer.simplenotes)
|
||||||
|
|
||||||
**📱 [APK Download](https://github.com/inventory69/simple-notes-sync/releases/latest)** · **📖 [Documentation](docs/DOCS.en.md)** · **🚀 [Quick Start](QUICKSTART.en.md)**
|
**📱 [APK Download](https://github.com/inventory69/simple-notes-sync/releases/latest)** · **📖 [Documentation](docs/DOCS.en.md)** · **🚀 [Quick Start](QUICKSTART.en.md)**
|
||||||
|
|
||||||
**🌍 Languages:** [Deutsch](README.md) · **English**
|
**🌍 Languages:** [Deutsch](README.md) · **English**
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
[](https://m3.material.io/)
|
[](https://m3.material.io/)
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
|
|
||||||
|
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height="80">](https://apt.izzysoft.de/fdroid/index/apk/dev.dettmer.simplenotes)
|
||||||
|
|
||||||
**📱 [APK Download](https://github.com/inventory69/simple-notes-sync/releases/latest)** · **📖 [Dokumentation](docs/DOCS.md)** · **🚀 [Quick Start](QUICKSTART.md)**
|
**📱 [APK Download](https://github.com/inventory69/simple-notes-sync/releases/latest)** · **📖 [Dokumentation](docs/DOCS.md)** · **🚀 [Quick Start](QUICKSTART.md)**
|
||||||
|
|
||||||
**🌍 Sprachen:** **Deutsch** · [English](README.en.md)
|
**🌍 Sprachen:** **Deutsch** · [English](README.en.md)
|
||||||
|
|||||||
61
android/.editorconfig
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
# ⚡ v1.3.1: EditorConfig for ktlint
|
||||||
|
# https://editorconfig.org
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = true
|
||||||
|
max_line_length = 120
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.{kt,kts}]
|
||||||
|
# ktlint rules
|
||||||
|
ktlint_code_style = android_studio
|
||||||
|
ktlint_standard_no-wildcard-imports = disabled
|
||||||
|
ktlint_standard_package-name = enabled
|
||||||
|
ktlint_standard_filename = enabled
|
||||||
|
ktlint_standard_class-naming = enabled
|
||||||
|
ktlint_standard_function-naming = enabled
|
||||||
|
ktlint_standard_property-naming = enabled
|
||||||
|
ktlint_standard_backing-property-naming = enabled
|
||||||
|
ktlint_standard_enum-entry-name-case = enabled
|
||||||
|
ktlint_standard_multiline-if-else = enabled
|
||||||
|
ktlint_standard_no-empty-class-body = enabled
|
||||||
|
ktlint_standard_no-empty-first-line-in-class-body = enabled
|
||||||
|
ktlint_standard_blank-line-before-declaration = enabled
|
||||||
|
ktlint_standard_context-receiver-wrapping = enabled
|
||||||
|
ktlint_standard_function-expression-body = disabled
|
||||||
|
ktlint_standard_function-literal = enabled
|
||||||
|
ktlint_standard_function-type-modifier-spacing = enabled
|
||||||
|
ktlint_standard_kdoc-wrapping = enabled
|
||||||
|
ktlint_standard_modifier-list-spacing = enabled
|
||||||
|
ktlint_standard_no-blank-line-in-list = enabled
|
||||||
|
ktlint_standard_no-consecutive-comments = disabled
|
||||||
|
ktlint_standard_no-single-line-block-comment = enabled
|
||||||
|
ktlint_standard_parameter-list-spacing = enabled
|
||||||
|
ktlint_standard_parameter-list-wrapping = enabled
|
||||||
|
ktlint_standard_property-wrapping = enabled
|
||||||
|
ktlint_standard_spacing-between-function-name-and-opening-parenthesis = enabled
|
||||||
|
ktlint_standard_statement-wrapping = enabled
|
||||||
|
ktlint_standard_string-template-indent = disabled
|
||||||
|
ktlint_standard_try-catch-finally-spacing = enabled
|
||||||
|
ktlint_standard_type-argument-list-spacing = enabled
|
||||||
|
ktlint_standard_type-parameter-list-spacing = enabled
|
||||||
|
ktlint_standard_value-argument-comment = enabled
|
||||||
|
ktlint_standard_value-parameter-comment = enabled
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
[*.{xml,json}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
@@ -1,6 +1,9 @@
|
|||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application)
|
alias(libs.plugins.android.application)
|
||||||
alias(libs.plugins.kotlin.android)
|
alias(libs.plugins.kotlin.android)
|
||||||
|
// ⚡ v1.3.1: ktlint deaktiviert wegen Parser-Problemen, aktivieren in v1.4.0
|
||||||
|
// alias(libs.plugins.ktlint)
|
||||||
|
alias(libs.plugins.detekt)
|
||||||
}
|
}
|
||||||
|
|
||||||
import java.util.Properties
|
import java.util.Properties
|
||||||
@@ -17,8 +20,8 @@ android {
|
|||||||
applicationId = "dev.dettmer.simplenotes"
|
applicationId = "dev.dettmer.simplenotes"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 7 // 🔧 v1.2.2: Backward compatibility for v1.2.0 migration
|
versionCode = 9 // 🚀 v1.3.1: Sync-Performance & Debug-Logging
|
||||||
versionName = "1.2.2" // 🔧 v1.2.2: Dual-mode download (Root + /notes/)
|
versionName = "1.3.1" // 🚀 v1.3.1: Skip unchanged MD-Files, Sync-Mutex, Debug-Logging UI
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
@@ -32,23 +35,15 @@ android {
|
|||||||
includeInBundle = false // Also disable for AAB (Google Play)
|
includeInBundle = false // Also disable for AAB (Google Play)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enable multiple APKs per ABI for smaller downloads
|
|
||||||
splits {
|
|
||||||
abi {
|
|
||||||
isEnable = true
|
|
||||||
reset()
|
|
||||||
include("armeabi-v7a", "arm64-v8a")
|
|
||||||
isUniversalApk = true // Also generate universal APK
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Product Flavors for F-Droid and standard builds
|
// Product Flavors for F-Droid and standard builds
|
||||||
|
// Note: APK splits are disabled to ensure single APK output
|
||||||
flavorDimensions += "distribution"
|
flavorDimensions += "distribution"
|
||||||
productFlavors {
|
productFlavors {
|
||||||
create("fdroid") {
|
create("fdroid") {
|
||||||
dimension = "distribution"
|
dimension = "distribution"
|
||||||
// F-Droid builds have no proprietary dependencies
|
// F-Droid builds have no proprietary dependencies
|
||||||
// All dependencies in this project are already FOSS-compatible
|
// All dependencies in this project are already FOSS-compatible
|
||||||
|
// No APK splits - F-Droid expects single universal APK
|
||||||
}
|
}
|
||||||
|
|
||||||
create("standard") {
|
create("standard") {
|
||||||
@@ -75,6 +70,16 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
debug {
|
||||||
|
// ⚡ v1.3.1: Debug-Builds können parallel zur Release-App installiert werden
|
||||||
|
applicationIdSuffix = ".debug"
|
||||||
|
versionNameSuffix = "-debug"
|
||||||
|
isDebuggable = true
|
||||||
|
|
||||||
|
// Optionales separates Icon-Label für Debug-Builds
|
||||||
|
resValue("string", "app_name_debug", "Simple Notes (Debug)")
|
||||||
|
}
|
||||||
|
|
||||||
release {
|
release {
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
isShrinkResources = true
|
isShrinkResources = true
|
||||||
@@ -144,3 +149,27 @@ fun getBuildDate(): String {
|
|||||||
val dateFormat = SimpleDateFormat("yyyy-MM-dd", Locale.US)
|
val dateFormat = SimpleDateFormat("yyyy-MM-dd", Locale.US)
|
||||||
return dateFormat.format(Date())
|
return dateFormat.format(Date())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ⚡ v1.3.1: ktlint deaktiviert wegen Parser-Problemen
|
||||||
|
// Aktivieren in v1.4.0 wenn Code-Stil bereinigt wurde
|
||||||
|
// ktlint {
|
||||||
|
// android = true
|
||||||
|
// outputToConsole = true
|
||||||
|
// ignoreFailures = true
|
||||||
|
// enableExperimentalRules = false
|
||||||
|
// filter {
|
||||||
|
// exclude("**/generated/**")
|
||||||
|
// exclude("**/build/**")
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// ⚡ v1.3.1: detekt-Konfiguration
|
||||||
|
detekt {
|
||||||
|
buildUponDefaultConfig = true
|
||||||
|
allRules = false
|
||||||
|
config.setFrom(files("$rootDir/config/detekt/detekt.yml"))
|
||||||
|
baseline = file("$rootDir/config/detekt/baseline.xml")
|
||||||
|
|
||||||
|
// Parallel-Verarbeitung für schnellere Checks
|
||||||
|
parallel = true
|
||||||
|
}
|
||||||
@@ -21,20 +21,29 @@ import com.google.android.material.color.DynamicColors
|
|||||||
import com.google.android.material.floatingactionbutton.FloatingActionButton
|
import com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||||
import com.google.android.material.snackbar.Snackbar
|
import com.google.android.material.snackbar.Snackbar
|
||||||
import com.google.android.material.card.MaterialCardView
|
import com.google.android.material.card.MaterialCardView
|
||||||
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
||||||
import dev.dettmer.simplenotes.adapters.NotesAdapter
|
import dev.dettmer.simplenotes.adapters.NotesAdapter
|
||||||
|
import dev.dettmer.simplenotes.models.Note
|
||||||
import dev.dettmer.simplenotes.storage.NotesStorage
|
import dev.dettmer.simplenotes.storage.NotesStorage
|
||||||
import dev.dettmer.simplenotes.sync.SyncWorker
|
import dev.dettmer.simplenotes.sync.SyncWorker
|
||||||
import dev.dettmer.simplenotes.utils.NotificationHelper
|
import dev.dettmer.simplenotes.utils.NotificationHelper
|
||||||
import dev.dettmer.simplenotes.utils.showToast
|
import dev.dettmer.simplenotes.utils.showToast
|
||||||
import dev.dettmer.simplenotes.utils.Constants
|
import dev.dettmer.simplenotes.utils.Constants
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
import android.widget.CheckBox
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.lifecycle.lifecycleScope
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import dev.dettmer.simplenotes.sync.WebDavSyncService
|
import dev.dettmer.simplenotes.sync.WebDavSyncService
|
||||||
|
import dev.dettmer.simplenotes.sync.SyncStateManager
|
||||||
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
|
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
|
||||||
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||||
|
import android.view.View
|
||||||
|
import android.widget.LinearLayout
|
||||||
|
|
||||||
class MainActivity : AppCompatActivity() {
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
@@ -44,9 +53,16 @@ class MainActivity : AppCompatActivity() {
|
|||||||
private lateinit var toolbar: MaterialToolbar
|
private lateinit var toolbar: MaterialToolbar
|
||||||
private lateinit var swipeRefreshLayout: SwipeRefreshLayout
|
private lateinit var swipeRefreshLayout: SwipeRefreshLayout
|
||||||
|
|
||||||
|
// 🔄 v1.3.1: Sync Status Banner
|
||||||
|
private lateinit var syncStatusBanner: LinearLayout
|
||||||
|
private lateinit var syncStatusText: TextView
|
||||||
|
|
||||||
private lateinit var adapter: NotesAdapter
|
private lateinit var adapter: NotesAdapter
|
||||||
private val storage by lazy { NotesStorage(this) }
|
private val storage by lazy { NotesStorage(this) }
|
||||||
|
|
||||||
|
// Menu reference for sync button state
|
||||||
|
private var optionsMenu: Menu? = null
|
||||||
|
|
||||||
// Track pending deletions to prevent flicker when notes reload
|
// Track pending deletions to prevent flicker when notes reload
|
||||||
private val pendingDeletions = mutableSetOf<String>()
|
private val pendingDeletions = mutableSetOf<String>()
|
||||||
|
|
||||||
@@ -91,9 +107,10 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
setContentView(R.layout.activity_main)
|
setContentView(R.layout.activity_main)
|
||||||
|
|
||||||
// File Logging aktivieren wenn eingestellt
|
// Logger initialisieren und File-Logging aktivieren wenn eingestellt
|
||||||
if (prefs.getBoolean("file_logging_enabled", false)) {
|
Logger.init(this)
|
||||||
Logger.enableFileLogging(this)
|
if (prefs.getBoolean(Constants.KEY_FILE_LOGGING_ENABLED, false)) {
|
||||||
|
Logger.setFileLoggingEnabled(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alte Sync-Notifications beim App-Start löschen
|
// Alte Sync-Notifications beim App-Start löschen
|
||||||
@@ -110,6 +127,65 @@ class MainActivity : AppCompatActivity() {
|
|||||||
setupFab()
|
setupFab()
|
||||||
|
|
||||||
loadNotes()
|
loadNotes()
|
||||||
|
|
||||||
|
// 🔄 v1.3.1: Observe sync state for UI updates
|
||||||
|
setupSyncStateObserver()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 🔄 v1.3.1: Beobachtet Sync-Status für UI-Feedback
|
||||||
|
*/
|
||||||
|
private fun setupSyncStateObserver() {
|
||||||
|
SyncStateManager.syncStatus.observe(this) { status ->
|
||||||
|
when (status.state) {
|
||||||
|
SyncStateManager.SyncState.SYNCING -> {
|
||||||
|
// Disable sync controls
|
||||||
|
setSyncControlsEnabled(false)
|
||||||
|
// 🔄 v1.3.1: Show sync status banner (ersetzt SwipeRefresh-Animation)
|
||||||
|
syncStatusText.text = getString(R.string.sync_status_syncing)
|
||||||
|
syncStatusBanner.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
SyncStateManager.SyncState.COMPLETED -> {
|
||||||
|
// Re-enable sync controls
|
||||||
|
setSyncControlsEnabled(true)
|
||||||
|
swipeRefreshLayout.isRefreshing = false
|
||||||
|
// Show completed briefly, then hide
|
||||||
|
syncStatusText.text = status.message ?: getString(R.string.sync_status_completed)
|
||||||
|
lifecycleScope.launch {
|
||||||
|
kotlinx.coroutines.delay(1500)
|
||||||
|
syncStatusBanner.visibility = View.GONE
|
||||||
|
SyncStateManager.reset()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
SyncStateManager.SyncState.ERROR -> {
|
||||||
|
// Re-enable sync controls
|
||||||
|
setSyncControlsEnabled(true)
|
||||||
|
swipeRefreshLayout.isRefreshing = false
|
||||||
|
// Show error briefly, then hide
|
||||||
|
syncStatusText.text = status.message ?: getString(R.string.sync_status_error)
|
||||||
|
lifecycleScope.launch {
|
||||||
|
kotlinx.coroutines.delay(3000)
|
||||||
|
syncStatusBanner.visibility = View.GONE
|
||||||
|
SyncStateManager.reset()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
SyncStateManager.SyncState.IDLE -> {
|
||||||
|
setSyncControlsEnabled(true)
|
||||||
|
swipeRefreshLayout.isRefreshing = false
|
||||||
|
syncStatusBanner.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 🔄 v1.3.1: Aktiviert/deaktiviert Sync-Controls (Button + SwipeRefresh)
|
||||||
|
*/
|
||||||
|
private fun setSyncControlsEnabled(enabled: Boolean) {
|
||||||
|
// Menu Sync-Button
|
||||||
|
optionsMenu?.findItem(R.id.action_sync)?.isEnabled = enabled
|
||||||
|
// SwipeRefresh
|
||||||
|
swipeRefreshLayout.isEnabled = enabled
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
@@ -145,6 +221,12 @@ class MainActivity : AppCompatActivity() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 🔄 v1.3.1: Check if sync already running
|
||||||
|
if (!SyncStateManager.tryStartSync("auto-$source")) {
|
||||||
|
Logger.d(TAG, "⏭️ Auto-sync ($source): Another sync already in progress")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
Logger.d(TAG, "🔄 Auto-sync triggered ($source)")
|
Logger.d(TAG, "🔄 Auto-sync triggered ($source)")
|
||||||
|
|
||||||
// Update last sync timestamp
|
// Update last sync timestamp
|
||||||
@@ -157,6 +239,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
||||||
if (!syncService.hasUnsyncedChanges()) {
|
if (!syncService.hasUnsyncedChanges()) {
|
||||||
Logger.d(TAG, "⏭️ Auto-sync ($source): No unsynced changes - skipping")
|
Logger.d(TAG, "⏭️ Auto-sync ($source): No unsynced changes - skipping")
|
||||||
|
SyncStateManager.reset()
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,6 +250,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
if (!isReachable) {
|
if (!isReachable) {
|
||||||
Logger.d(TAG, "⏭️ Auto-sync ($source): Server not reachable - skipping silently")
|
Logger.d(TAG, "⏭️ Auto-sync ($source): Server not reachable - skipping silently")
|
||||||
|
SyncStateManager.reset()
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -178,6 +262,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
// Feedback abhängig von Source
|
// Feedback abhängig von Source
|
||||||
if (result.isSuccess && result.syncedCount > 0) {
|
if (result.isSuccess && result.syncedCount > 0) {
|
||||||
Logger.d(TAG, "✅ Auto-sync successful ($source): ${result.syncedCount} notes")
|
Logger.d(TAG, "✅ Auto-sync successful ($source): ${result.syncedCount} notes")
|
||||||
|
SyncStateManager.markCompleted("${result.syncedCount} Notizen")
|
||||||
|
|
||||||
// onResume: Nur Success-Toast
|
// onResume: Nur Success-Toast
|
||||||
showToast("✅ Gesynct: ${result.syncedCount} Notizen")
|
showToast("✅ Gesynct: ${result.syncedCount} Notizen")
|
||||||
@@ -185,14 +270,17 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
} else if (result.isSuccess) {
|
} else if (result.isSuccess) {
|
||||||
Logger.d(TAG, "ℹ️ Auto-sync ($source): No changes")
|
Logger.d(TAG, "ℹ️ Auto-sync ($source): No changes")
|
||||||
|
SyncStateManager.markCompleted()
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Logger.e(TAG, "❌ Auto-sync failed ($source): ${result.errorMessage}")
|
Logger.e(TAG, "❌ Auto-sync failed ($source): ${result.errorMessage}")
|
||||||
|
SyncStateManager.markError(result.errorMessage)
|
||||||
// Kein Toast - App ist im Hintergrund
|
// Kein Toast - App ist im Hintergrund
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Logger.e(TAG, "💥 Auto-sync exception ($source): ${e.message}")
|
Logger.e(TAG, "💥 Auto-sync exception ($source): ${e.message}")
|
||||||
|
SyncStateManager.markError(e.message)
|
||||||
// Kein Toast - App ist im Hintergrund
|
// Kein Toast - App ist im Hintergrund
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -229,6 +317,10 @@ class MainActivity : AppCompatActivity() {
|
|||||||
fabAddNote = findViewById(R.id.fabAddNote)
|
fabAddNote = findViewById(R.id.fabAddNote)
|
||||||
toolbar = findViewById(R.id.toolbar)
|
toolbar = findViewById(R.id.toolbar)
|
||||||
swipeRefreshLayout = findViewById<SwipeRefreshLayout>(R.id.swipeRefreshLayout)
|
swipeRefreshLayout = findViewById<SwipeRefreshLayout>(R.id.swipeRefreshLayout)
|
||||||
|
|
||||||
|
// 🔄 v1.3.1: Sync Status Banner
|
||||||
|
syncStatusBanner = findViewById(R.id.syncStatusBanner)
|
||||||
|
syncStatusText = findViewById(R.id.syncStatusText)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupToolbar() {
|
private fun setupToolbar() {
|
||||||
@@ -256,6 +348,12 @@ class MainActivity : AppCompatActivity() {
|
|||||||
swipeRefreshLayout.setOnRefreshListener {
|
swipeRefreshLayout.setOnRefreshListener {
|
||||||
Logger.d(TAG, "🔄 Pull-to-Refresh triggered - starting manual sync")
|
Logger.d(TAG, "🔄 Pull-to-Refresh triggered - starting manual sync")
|
||||||
|
|
||||||
|
// 🔄 v1.3.1: Check if sync already running (Banner zeigt Status)
|
||||||
|
if (!SyncStateManager.tryStartSync("pullToRefresh")) {
|
||||||
|
swipeRefreshLayout.isRefreshing = false
|
||||||
|
return@setOnRefreshListener
|
||||||
|
}
|
||||||
|
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
try {
|
try {
|
||||||
val prefs = getSharedPreferences(Constants.PREFS_NAME, Context.MODE_PRIVATE)
|
val prefs = getSharedPreferences(Constants.PREFS_NAME, Context.MODE_PRIVATE)
|
||||||
@@ -263,7 +361,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
if (serverUrl.isNullOrEmpty()) {
|
if (serverUrl.isNullOrEmpty()) {
|
||||||
showToast("⚠️ Server noch nicht konfiguriert")
|
showToast("⚠️ Server noch nicht konfiguriert")
|
||||||
swipeRefreshLayout.isRefreshing = false
|
SyncStateManager.reset()
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -272,15 +370,13 @@ class MainActivity : AppCompatActivity() {
|
|||||||
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
||||||
if (!syncService.hasUnsyncedChanges()) {
|
if (!syncService.hasUnsyncedChanges()) {
|
||||||
Logger.d(TAG, "⏭️ No unsynced changes, skipping server reachability check")
|
Logger.d(TAG, "⏭️ No unsynced changes, skipping server reachability check")
|
||||||
showToast("✅ Bereits synchronisiert")
|
SyncStateManager.markCompleted("Bereits synchronisiert")
|
||||||
swipeRefreshLayout.isRefreshing = false
|
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if server is reachable
|
// Check if server is reachable
|
||||||
if (!syncService.isServerReachable()) {
|
if (!syncService.isServerReachable()) {
|
||||||
showToast("⚠️ Server nicht erreichbar")
|
SyncStateManager.markError("Server nicht erreichbar")
|
||||||
swipeRefreshLayout.isRefreshing = false
|
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -288,16 +384,14 @@ class MainActivity : AppCompatActivity() {
|
|||||||
val result = syncService.syncNotes()
|
val result = syncService.syncNotes()
|
||||||
|
|
||||||
if (result.isSuccess) {
|
if (result.isSuccess) {
|
||||||
showToast("✅ ${result.syncedCount} Notizen synchronisiert")
|
SyncStateManager.markCompleted("${result.syncedCount} Notizen")
|
||||||
loadNotes()
|
loadNotes()
|
||||||
} else {
|
} else {
|
||||||
showToast("❌ Sync fehlgeschlagen: ${result.errorMessage}")
|
SyncStateManager.markError(result.errorMessage)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Logger.e(TAG, "Pull-to-Refresh sync failed", e)
|
Logger.e(TAG, "Pull-to-Refresh sync failed", e)
|
||||||
showToast("❌ Fehler: ${e.message}")
|
SyncStateManager.markError(e.message)
|
||||||
} finally {
|
|
||||||
swipeRefreshLayout.isRefreshing = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -320,36 +414,20 @@ class MainActivity : AppCompatActivity() {
|
|||||||
): Boolean = false
|
): Boolean = false
|
||||||
|
|
||||||
override fun onSwiped(viewHolder: RecyclerView.ViewHolder, direction: Int) {
|
override fun onSwiped(viewHolder: RecyclerView.ViewHolder, direction: Int) {
|
||||||
val position = viewHolder.adapterPosition
|
val position = viewHolder.bindingAdapterPosition
|
||||||
val note = adapter.currentList[position]
|
val swipedNote = adapter.currentList[position]
|
||||||
val notesCopy = adapter.currentList.toMutableList()
|
|
||||||
|
|
||||||
// Track pending deletion to prevent flicker
|
// Store original list BEFORE removing note
|
||||||
pendingDeletions.add(note.id)
|
val originalList = adapter.currentList.toList()
|
||||||
|
|
||||||
// Remove from list immediately for visual feedback
|
// Remove from list for visual feedback (NOT from storage yet!)
|
||||||
notesCopy.removeAt(position)
|
val listWithoutNote = originalList.toMutableList().apply {
|
||||||
adapter.submitList(notesCopy)
|
removeAt(position)
|
||||||
|
}
|
||||||
|
adapter.submitList(listWithoutNote)
|
||||||
|
|
||||||
// Show Snackbar with UNDO
|
// Show dialog with ability to restore
|
||||||
Snackbar.make(
|
showServerDeletionDialog(swipedNote, originalList)
|
||||||
recyclerViewNotes,
|
|
||||||
"Notiz gelöscht",
|
|
||||||
Snackbar.LENGTH_LONG
|
|
||||||
).setAction("RÜCKGÄNGIG") {
|
|
||||||
// UNDO: Remove from pending deletions and restore
|
|
||||||
pendingDeletions.remove(note.id)
|
|
||||||
loadNotes()
|
|
||||||
}.addCallback(object : Snackbar.Callback() {
|
|
||||||
override fun onDismissed(transientBottomBar: Snackbar?, event: Int) {
|
|
||||||
if (event != DISMISS_EVENT_ACTION) {
|
|
||||||
// Snackbar dismissed without UNDO → Actually delete the note
|
|
||||||
storage.deleteNote(note.id)
|
|
||||||
pendingDeletions.remove(note.id)
|
|
||||||
loadNotes()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).show()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getSwipeThreshold(viewHolder: RecyclerView.ViewHolder): Float {
|
override fun getSwipeThreshold(viewHolder: RecyclerView.ViewHolder): Float {
|
||||||
@@ -361,6 +439,104 @@ class MainActivity : AppCompatActivity() {
|
|||||||
itemTouchHelper.attachToRecyclerView(recyclerViewNotes)
|
itemTouchHelper.attachToRecyclerView(recyclerViewNotes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun showServerDeletionDialog(note: Note, originalList: List<Note>) {
|
||||||
|
val alwaysDeleteFromServer = prefs.getBoolean(Constants.KEY_ALWAYS_DELETE_FROM_SERVER, false)
|
||||||
|
|
||||||
|
if (alwaysDeleteFromServer) {
|
||||||
|
// Auto-delete from server without asking
|
||||||
|
deleteNoteLocally(note, deleteFromServer = true)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
val dialogView = layoutInflater.inflate(R.layout.dialog_server_deletion, null)
|
||||||
|
val checkboxAlways = dialogView.findViewById<CheckBox>(R.id.checkboxAlwaysDeleteFromServer)
|
||||||
|
|
||||||
|
MaterialAlertDialogBuilder(this)
|
||||||
|
.setTitle("Notiz löschen")
|
||||||
|
.setMessage("\"${note.title}\" wird lokal gelöscht.\n\nAuch vom Server löschen?")
|
||||||
|
.setView(dialogView)
|
||||||
|
.setNeutralButton("Abbrechen") { _, _ ->
|
||||||
|
// RESTORE: Re-submit original list (note is NOT deleted from storage)
|
||||||
|
adapter.submitList(originalList)
|
||||||
|
}
|
||||||
|
.setOnCancelListener {
|
||||||
|
// User pressed back - also restore
|
||||||
|
adapter.submitList(originalList)
|
||||||
|
}
|
||||||
|
.setPositiveButton("Nur lokal") { _, _ ->
|
||||||
|
if (checkboxAlways.isChecked) {
|
||||||
|
prefs.edit().putBoolean(Constants.KEY_ALWAYS_DELETE_FROM_SERVER, false).apply()
|
||||||
|
}
|
||||||
|
// NOW actually delete from storage
|
||||||
|
deleteNoteLocally(note, deleteFromServer = false)
|
||||||
|
}
|
||||||
|
.setNegativeButton("Vom Server löschen") { _, _ ->
|
||||||
|
if (checkboxAlways.isChecked) {
|
||||||
|
prefs.edit().putBoolean(Constants.KEY_ALWAYS_DELETE_FROM_SERVER, true).apply()
|
||||||
|
}
|
||||||
|
deleteNoteLocally(note, deleteFromServer = true)
|
||||||
|
}
|
||||||
|
.setCancelable(true)
|
||||||
|
.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun deleteNoteLocally(note: Note, deleteFromServer: Boolean) {
|
||||||
|
// Track pending deletion to prevent flicker
|
||||||
|
pendingDeletions.add(note.id)
|
||||||
|
|
||||||
|
// Delete from storage
|
||||||
|
storage.deleteNote(note.id)
|
||||||
|
|
||||||
|
// Reload to reflect changes
|
||||||
|
loadNotes()
|
||||||
|
|
||||||
|
// Show Snackbar with UNDO option
|
||||||
|
val message = if (deleteFromServer) {
|
||||||
|
"\"${note.title}\" wird lokal und vom Server gelöscht"
|
||||||
|
} else {
|
||||||
|
"\"${note.title}\" lokal gelöscht (Server bleibt)"
|
||||||
|
}
|
||||||
|
|
||||||
|
Snackbar.make(recyclerViewNotes, message, Snackbar.LENGTH_LONG)
|
||||||
|
.setAction("RÜCKGÄNGIG") {
|
||||||
|
// UNDO: Restore note
|
||||||
|
storage.saveNote(note)
|
||||||
|
pendingDeletions.remove(note.id)
|
||||||
|
loadNotes()
|
||||||
|
}
|
||||||
|
.addCallback(object : Snackbar.Callback() {
|
||||||
|
override fun onDismissed(transientBottomBar: Snackbar?, event: Int) {
|
||||||
|
if (event != DISMISS_EVENT_ACTION) {
|
||||||
|
// Snackbar dismissed without UNDO
|
||||||
|
pendingDeletions.remove(note.id)
|
||||||
|
|
||||||
|
// Delete from server if requested
|
||||||
|
if (deleteFromServer) {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
try {
|
||||||
|
val webdavService = WebDavSyncService(this@MainActivity)
|
||||||
|
val success = webdavService.deleteNoteFromServer(note.id)
|
||||||
|
if (success) {
|
||||||
|
runOnUiThread {
|
||||||
|
Toast.makeText(this@MainActivity, "Vom Server gelöscht", Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
runOnUiThread {
|
||||||
|
Toast.makeText(this@MainActivity, "Server-Löschung fehlgeschlagen", Toast.LENGTH_LONG).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
runOnUiThread {
|
||||||
|
Toast.makeText(this@MainActivity, "Server-Fehler: ${e.message}", Toast.LENGTH_LONG).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).show()
|
||||||
|
}
|
||||||
|
|
||||||
private fun setupFab() {
|
private fun setupFab() {
|
||||||
fabAddNote.setOnClickListener {
|
fabAddNote.setOnClickListener {
|
||||||
openNoteEditor(null)
|
openNoteEditor(null)
|
||||||
@@ -405,6 +581,11 @@ class MainActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun triggerManualSync() {
|
private fun triggerManualSync() {
|
||||||
|
// 🔄 v1.3.1: Check if sync already running (Banner zeigt Status)
|
||||||
|
if (!SyncStateManager.tryStartSync("manual")) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
try {
|
try {
|
||||||
// Create sync service
|
// Create sync service
|
||||||
@@ -413,12 +594,10 @@ class MainActivity : AppCompatActivity() {
|
|||||||
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
||||||
if (!syncService.hasUnsyncedChanges()) {
|
if (!syncService.hasUnsyncedChanges()) {
|
||||||
Logger.d(TAG, "⏭️ Manual Sync: No unsynced changes - skipping")
|
Logger.d(TAG, "⏭️ Manual Sync: No unsynced changes - skipping")
|
||||||
showToast("✅ Bereits synchronisiert")
|
SyncStateManager.markCompleted("Bereits synchronisiert")
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
showToast("Starte Synchronisation...")
|
|
||||||
|
|
||||||
// ⭐ WICHTIG: Server-Erreichbarkeits-Check VOR Sync (wie in SyncWorker)
|
// ⭐ WICHTIG: Server-Erreichbarkeits-Check VOR Sync (wie in SyncWorker)
|
||||||
val isReachable = withContext(Dispatchers.IO) {
|
val isReachable = withContext(Dispatchers.IO) {
|
||||||
syncService.isServerReachable()
|
syncService.isServerReachable()
|
||||||
@@ -426,7 +605,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
if (!isReachable) {
|
if (!isReachable) {
|
||||||
Logger.d(TAG, "⏭️ Manual Sync: Server not reachable - aborting")
|
Logger.d(TAG, "⏭️ Manual Sync: Server not reachable - aborting")
|
||||||
showToast("Server nicht erreichbar")
|
SyncStateManager.markError("Server nicht erreichbar")
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -437,20 +616,21 @@ class MainActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
// Show result
|
// Show result
|
||||||
if (result.isSuccess) {
|
if (result.isSuccess) {
|
||||||
showToast("Sync erfolgreich: ${result.syncedCount} Notizen")
|
SyncStateManager.markCompleted("${result.syncedCount} Notizen")
|
||||||
loadNotes() // Reload notes
|
loadNotes() // Reload notes
|
||||||
} else {
|
} else {
|
||||||
showToast("Sync Fehler: ${result.errorMessage}")
|
SyncStateManager.markError(result.errorMessage)
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
showToast("Sync Fehler: ${e.message}")
|
SyncStateManager.markError(e.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||||
menuInflater.inflate(R.menu.menu_main, menu)
|
menuInflater.inflate(R.menu.menu_main, menu)
|
||||||
|
optionsMenu = menu // 🔄 v1.3.1: Store reference for sync button state
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import android.os.PowerManager
|
|||||||
import android.provider.Settings
|
import android.provider.Settings
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
|
import android.view.View
|
||||||
import android.widget.Button
|
import android.widget.Button
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
import android.widget.RadioButton
|
import android.widget.RadioButton
|
||||||
@@ -33,6 +34,7 @@ import dev.dettmer.simplenotes.backup.RestoreMode
|
|||||||
import dev.dettmer.simplenotes.utils.UrlValidator
|
import dev.dettmer.simplenotes.utils.UrlValidator
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import dev.dettmer.simplenotes.sync.WebDavSyncService
|
import dev.dettmer.simplenotes.sync.WebDavSyncService
|
||||||
|
import dev.dettmer.simplenotes.sync.SyncStateManager
|
||||||
import dev.dettmer.simplenotes.sync.NetworkMonitor
|
import dev.dettmer.simplenotes.sync.NetworkMonitor
|
||||||
import dev.dettmer.simplenotes.utils.Constants
|
import dev.dettmer.simplenotes.utils.Constants
|
||||||
import dev.dettmer.simplenotes.utils.Logger
|
import dev.dettmer.simplenotes.utils.Logger
|
||||||
@@ -57,14 +59,15 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
private lateinit var editTextUsername: EditText
|
private lateinit var editTextUsername: EditText
|
||||||
private lateinit var editTextPassword: EditText
|
private lateinit var editTextPassword: EditText
|
||||||
private lateinit var switchAutoSync: SwitchCompat
|
private lateinit var switchAutoSync: SwitchCompat
|
||||||
private lateinit var switchMarkdownExport: SwitchCompat
|
private lateinit var switchMarkdownAutoSync: SwitchCompat
|
||||||
private lateinit var buttonTestConnection: Button
|
private lateinit var buttonTestConnection: Button
|
||||||
private lateinit var buttonSyncNow: Button
|
private lateinit var buttonSyncNow: Button
|
||||||
private lateinit var buttonCreateBackup: Button
|
private lateinit var buttonCreateBackup: Button
|
||||||
private lateinit var buttonRestoreFromFile: Button
|
private lateinit var buttonRestoreFromFile: Button
|
||||||
private lateinit var buttonRestoreFromServer: Button
|
private lateinit var buttonRestoreFromServer: Button
|
||||||
private lateinit var buttonImportMarkdown: Button
|
private lateinit var buttonManualMarkdownSync: Button
|
||||||
private lateinit var textViewServerStatus: TextView
|
private lateinit var textViewServerStatus: TextView
|
||||||
|
private lateinit var textViewManualSyncInfo: TextView
|
||||||
|
|
||||||
// Protocol Selection UI
|
// Protocol Selection UI
|
||||||
private lateinit var protocolRadioGroup: RadioGroup
|
private lateinit var protocolRadioGroup: RadioGroup
|
||||||
@@ -81,6 +84,11 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
private lateinit var cardDeveloperProfile: MaterialCardView
|
private lateinit var cardDeveloperProfile: MaterialCardView
|
||||||
private lateinit var cardLicense: MaterialCardView
|
private lateinit var cardLicense: MaterialCardView
|
||||||
|
|
||||||
|
// Debug Section UI
|
||||||
|
private lateinit var switchFileLogging: com.google.android.material.materialswitch.MaterialSwitch
|
||||||
|
private lateinit var buttonExportLogs: Button
|
||||||
|
private lateinit var buttonClearLogs: Button
|
||||||
|
|
||||||
// Backup Manager
|
// Backup Manager
|
||||||
private val backupManager by lazy { BackupManager(this) }
|
private val backupManager by lazy { BackupManager(this) }
|
||||||
|
|
||||||
@@ -122,6 +130,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
setupListeners()
|
setupListeners()
|
||||||
setupSyncIntervalPicker()
|
setupSyncIntervalPicker()
|
||||||
setupAboutSection()
|
setupAboutSection()
|
||||||
|
setupDebugSection()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun findViews() {
|
private fun findViews() {
|
||||||
@@ -130,14 +139,15 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
editTextUsername = findViewById(R.id.editTextUsername)
|
editTextUsername = findViewById(R.id.editTextUsername)
|
||||||
editTextPassword = findViewById(R.id.editTextPassword)
|
editTextPassword = findViewById(R.id.editTextPassword)
|
||||||
switchAutoSync = findViewById(R.id.switchAutoSync)
|
switchAutoSync = findViewById(R.id.switchAutoSync)
|
||||||
switchMarkdownExport = findViewById(R.id.switchMarkdownExport)
|
switchMarkdownAutoSync = findViewById(R.id.switchMarkdownAutoSync)
|
||||||
buttonTestConnection = findViewById(R.id.buttonTestConnection)
|
buttonTestConnection = findViewById(R.id.buttonTestConnection)
|
||||||
buttonSyncNow = findViewById(R.id.buttonSyncNow)
|
buttonSyncNow = findViewById(R.id.buttonSyncNow)
|
||||||
buttonCreateBackup = findViewById(R.id.buttonCreateBackup)
|
buttonCreateBackup = findViewById(R.id.buttonCreateBackup)
|
||||||
buttonRestoreFromFile = findViewById(R.id.buttonRestoreFromFile)
|
buttonRestoreFromFile = findViewById(R.id.buttonRestoreFromFile)
|
||||||
buttonRestoreFromServer = findViewById(R.id.buttonRestoreFromServer)
|
buttonRestoreFromServer = findViewById(R.id.buttonRestoreFromServer)
|
||||||
buttonImportMarkdown = findViewById(R.id.buttonImportMarkdown)
|
buttonManualMarkdownSync = findViewById(R.id.buttonManualMarkdownSync)
|
||||||
textViewServerStatus = findViewById(R.id.textViewServerStatus)
|
textViewServerStatus = findViewById(R.id.textViewServerStatus)
|
||||||
|
textViewManualSyncInfo = findViewById(R.id.textViewManualSyncInfo)
|
||||||
|
|
||||||
// Protocol Selection UI
|
// Protocol Selection UI
|
||||||
protocolRadioGroup = findViewById(R.id.protocolRadioGroup)
|
protocolRadioGroup = findViewById(R.id.protocolRadioGroup)
|
||||||
@@ -153,6 +163,11 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
cardGitHubRepo = findViewById(R.id.cardGitHubRepo)
|
cardGitHubRepo = findViewById(R.id.cardGitHubRepo)
|
||||||
cardDeveloperProfile = findViewById(R.id.cardDeveloperProfile)
|
cardDeveloperProfile = findViewById(R.id.cardDeveloperProfile)
|
||||||
cardLicense = findViewById(R.id.cardLicense)
|
cardLicense = findViewById(R.id.cardLicense)
|
||||||
|
|
||||||
|
// Debug Section UI
|
||||||
|
switchFileLogging = findViewById(R.id.switchFileLogging)
|
||||||
|
buttonExportLogs = findViewById(R.id.buttonExportLogs)
|
||||||
|
buttonClearLogs = findViewById(R.id.buttonClearLogs)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun loadSettings() {
|
private fun loadSettings() {
|
||||||
@@ -180,7 +195,14 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
editTextUsername.setText(prefs.getString(Constants.KEY_USERNAME, ""))
|
editTextUsername.setText(prefs.getString(Constants.KEY_USERNAME, ""))
|
||||||
editTextPassword.setText(prefs.getString(Constants.KEY_PASSWORD, ""))
|
editTextPassword.setText(prefs.getString(Constants.KEY_PASSWORD, ""))
|
||||||
switchAutoSync.isChecked = prefs.getBoolean(Constants.KEY_AUTO_SYNC, false)
|
switchAutoSync.isChecked = prefs.getBoolean(Constants.KEY_AUTO_SYNC, false)
|
||||||
switchMarkdownExport.isChecked = prefs.getBoolean(Constants.KEY_MARKDOWN_EXPORT, false) // Default: disabled (offline-first)
|
|
||||||
|
// Load Markdown Auto-Sync (backward compatible)
|
||||||
|
val markdownExport = prefs.getBoolean(Constants.KEY_MARKDOWN_EXPORT, false)
|
||||||
|
val markdownAutoImport = prefs.getBoolean(Constants.KEY_MARKDOWN_AUTO_IMPORT, false)
|
||||||
|
val markdownAutoSync = markdownExport && markdownAutoImport
|
||||||
|
switchMarkdownAutoSync.isChecked = markdownAutoSync
|
||||||
|
|
||||||
|
updateMarkdownButtonVisibility()
|
||||||
|
|
||||||
// Update hint text based on selected protocol
|
// Update hint text based on selected protocol
|
||||||
updateProtocolHint()
|
updateProtocolHint()
|
||||||
@@ -269,17 +291,16 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
showRestoreDialog(RestoreSource.WEBDAV_SERVER, null)
|
showRestoreDialog(RestoreSource.WEBDAV_SERVER, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
buttonImportMarkdown.setOnClickListener {
|
buttonManualMarkdownSync.setOnClickListener {
|
||||||
saveSettings()
|
performManualMarkdownSync()
|
||||||
importMarkdownChanges()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switchAutoSync.setOnCheckedChangeListener { _, isChecked ->
|
switchAutoSync.setOnCheckedChangeListener { _, isChecked ->
|
||||||
onAutoSyncToggled(isChecked)
|
onAutoSyncToggled(isChecked)
|
||||||
}
|
}
|
||||||
|
|
||||||
switchMarkdownExport.setOnCheckedChangeListener { _, isChecked ->
|
switchMarkdownAutoSync.setOnCheckedChangeListener { _, isChecked ->
|
||||||
onMarkdownExportToggled(isChecked)
|
onMarkdownAutoSyncToggled(isChecked)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear error when user starts typing again
|
// Clear error when user starts typing again
|
||||||
@@ -377,6 +398,109 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setup Debug section with file logging toggle and export functionality
|
||||||
|
*/
|
||||||
|
private fun setupDebugSection() {
|
||||||
|
// Load current file logging state
|
||||||
|
val fileLoggingEnabled = prefs.getBoolean(Constants.KEY_FILE_LOGGING_ENABLED, false)
|
||||||
|
switchFileLogging.isChecked = fileLoggingEnabled
|
||||||
|
|
||||||
|
// Update Logger state
|
||||||
|
Logger.setFileLoggingEnabled(fileLoggingEnabled)
|
||||||
|
|
||||||
|
// Toggle file logging
|
||||||
|
switchFileLogging.setOnCheckedChangeListener { _, isChecked ->
|
||||||
|
prefs.edit().putBoolean(Constants.KEY_FILE_LOGGING_ENABLED, isChecked).apply()
|
||||||
|
Logger.setFileLoggingEnabled(isChecked)
|
||||||
|
|
||||||
|
if (isChecked) {
|
||||||
|
showToast("📝 Datei-Logging aktiviert")
|
||||||
|
Logger.i(TAG, "File logging enabled by user")
|
||||||
|
} else {
|
||||||
|
showToast("📝 Datei-Logging deaktiviert")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Export logs button
|
||||||
|
buttonExportLogs.setOnClickListener {
|
||||||
|
exportAndShareLogs()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear logs button
|
||||||
|
buttonClearLogs.setOnClickListener {
|
||||||
|
showClearLogsConfirmation()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Export logs and share via system share sheet
|
||||||
|
*/
|
||||||
|
private fun exportAndShareLogs() {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
try {
|
||||||
|
val logFile = Logger.getLogFile(this@SettingsActivity)
|
||||||
|
|
||||||
|
if (logFile == null || !logFile.exists() || logFile.length() == 0L) {
|
||||||
|
showToast("📭 Keine Logs vorhanden")
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create share intent using FileProvider
|
||||||
|
val logUri = FileProvider.getUriForFile(
|
||||||
|
this@SettingsActivity,
|
||||||
|
"${BuildConfig.APPLICATION_ID}.fileprovider",
|
||||||
|
logFile
|
||||||
|
)
|
||||||
|
|
||||||
|
val shareIntent = Intent(Intent.ACTION_SEND).apply {
|
||||||
|
type = "text/plain"
|
||||||
|
putExtra(Intent.EXTRA_STREAM, logUri)
|
||||||
|
putExtra(Intent.EXTRA_SUBJECT, "SimpleNotes Sync Logs")
|
||||||
|
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
||||||
|
}
|
||||||
|
|
||||||
|
startActivity(Intent.createChooser(shareIntent, "Logs teilen via..."))
|
||||||
|
Logger.i(TAG, "Logs exported and shared")
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Logger.e(TAG, "Failed to export logs", e)
|
||||||
|
showToast("❌ Fehler beim Exportieren: ${e.message}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show confirmation dialog before clearing logs
|
||||||
|
*/
|
||||||
|
private fun showClearLogsConfirmation() {
|
||||||
|
AlertDialog.Builder(this)
|
||||||
|
.setTitle("Logs löschen?")
|
||||||
|
.setMessage("Alle gespeicherten Sync-Logs werden unwiderruflich gelöscht.")
|
||||||
|
.setPositiveButton("Löschen") { _, _ ->
|
||||||
|
clearLogs()
|
||||||
|
}
|
||||||
|
.setNegativeButton("Abbrechen", null)
|
||||||
|
.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear all log files
|
||||||
|
*/
|
||||||
|
private fun clearLogs() {
|
||||||
|
try {
|
||||||
|
val cleared = Logger.clearLogFile(this)
|
||||||
|
if (cleared) {
|
||||||
|
showToast("🗑️ Logs gelöscht")
|
||||||
|
} else {
|
||||||
|
showToast("📭 Keine Logs zum Löschen")
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Logger.e(TAG, "Failed to clear logs", e)
|
||||||
|
showToast("❌ Fehler beim Löschen: ${e.message}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Opens URL in browser
|
* Opens URL in browser
|
||||||
*/
|
*/
|
||||||
@@ -458,6 +582,14 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun syncNow() {
|
private fun syncNow() {
|
||||||
|
// 🔄 v1.3.1: Check if sync already running (Button wird deaktiviert)
|
||||||
|
if (!SyncStateManager.tryStartSync("settings")) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Disable button during sync
|
||||||
|
buttonSyncNow.isEnabled = false
|
||||||
|
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
try {
|
try {
|
||||||
val syncService = WebDavSyncService(this@SettingsActivity)
|
val syncService = WebDavSyncService(this@SettingsActivity)
|
||||||
@@ -465,14 +597,16 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
// 🔥 v1.1.2: Check if there are unsynced changes first (performance optimization)
|
||||||
if (!syncService.hasUnsyncedChanges()) {
|
if (!syncService.hasUnsyncedChanges()) {
|
||||||
showToast("✅ Bereits synchronisiert")
|
showToast("✅ Bereits synchronisiert")
|
||||||
|
SyncStateManager.markCompleted()
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
showToast("Synchronisiere...")
|
showToast("🔄 Synchronisiere...")
|
||||||
|
|
||||||
// ⭐ WICHTIG: Server-Erreichbarkeits-Check VOR Sync (wie in anderen Triggern)
|
// ⭐ WICHTIG: Server-Erreichbarkeits-Check VOR Sync (wie in anderen Triggern)
|
||||||
if (!syncService.isServerReachable()) {
|
if (!syncService.isServerReachable()) {
|
||||||
showToast("⚠️ Server nicht erreichbar")
|
showToast("⚠️ Server nicht erreichbar")
|
||||||
|
SyncStateManager.markError("Server nicht erreichbar")
|
||||||
checkServerStatus() // Server-Status aktualisieren
|
checkServerStatus() // Server-Status aktualisieren
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
@@ -481,18 +615,24 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
if (result.isSuccess) {
|
if (result.isSuccess) {
|
||||||
if (result.hasConflicts) {
|
if (result.hasConflicts) {
|
||||||
showToast("Sync abgeschlossen. ${result.conflictCount} Konflikte erkannt!")
|
showToast("✅ Sync abgeschlossen. ${result.conflictCount} Konflikte erkannt!")
|
||||||
} else {
|
} else {
|
||||||
showToast("Erfolgreich! ${result.syncedCount} Notizen synchronisiert")
|
showToast("✅ Erfolgreich! ${result.syncedCount} Notizen synchronisiert")
|
||||||
}
|
}
|
||||||
|
SyncStateManager.markCompleted("${result.syncedCount} Notizen")
|
||||||
checkServerStatus() // ✅ Server-Status nach Sync aktualisieren
|
checkServerStatus() // ✅ Server-Status nach Sync aktualisieren
|
||||||
} else {
|
} else {
|
||||||
showToast("Sync fehlgeschlagen: ${result.errorMessage}")
|
showToast("❌ Sync fehlgeschlagen: ${result.errorMessage}")
|
||||||
|
SyncStateManager.markError(result.errorMessage)
|
||||||
checkServerStatus() // ✅ Auch bei Fehler aktualisieren
|
checkServerStatus() // ✅ Auch bei Fehler aktualisieren
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
showToast("Fehler: ${e.message}")
|
showToast("❌ Fehler: ${e.message}")
|
||||||
|
SyncStateManager.markError(e.message)
|
||||||
checkServerStatus() // ✅ Auch bei Exception aktualisieren
|
checkServerStatus() // ✅ Auch bei Exception aktualisieren
|
||||||
|
} finally {
|
||||||
|
// Re-enable button
|
||||||
|
buttonSyncNow.isEnabled = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -548,7 +688,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onMarkdownExportToggled(enabled: Boolean) {
|
private fun onMarkdownAutoSyncToggled(enabled: Boolean) {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
// Initial-Export wenn Feature aktiviert wird
|
// Initial-Export wenn Feature aktiviert wird
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
@@ -559,7 +699,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
if (currentNoteCount > 0) {
|
if (currentNoteCount > 0) {
|
||||||
// Zeige Progress-Dialog
|
// Zeige Progress-Dialog
|
||||||
val progressDialog = ProgressDialog(this@SettingsActivity).apply {
|
val progressDialog = ProgressDialog(this@SettingsActivity).apply {
|
||||||
setTitle("Markdown-Export")
|
setTitle("Markdown Auto-Sync")
|
||||||
setMessage("Exportiere Notizen nach Markdown...")
|
setMessage("Exportiere Notizen nach Markdown...")
|
||||||
setProgressStyle(ProgressDialog.STYLE_HORIZONTAL)
|
setProgressStyle(ProgressDialog.STYLE_HORIZONTAL)
|
||||||
max = currentNoteCount
|
max = currentNoteCount
|
||||||
@@ -577,7 +717,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
if (serverUrl.isBlank() || username.isBlank() || password.isBlank()) {
|
if (serverUrl.isBlank() || username.isBlank() || password.isBlank()) {
|
||||||
progressDialog.dismiss()
|
progressDialog.dismiss()
|
||||||
showToast("⚠️ Bitte zuerst WebDAV-Server konfigurieren")
|
showToast("⚠️ Bitte zuerst WebDAV-Server konfigurieren")
|
||||||
switchMarkdownExport.isChecked = false
|
switchMarkdownAutoSync.isChecked = false
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -597,8 +737,13 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
progressDialog.dismiss()
|
progressDialog.dismiss()
|
||||||
|
|
||||||
// Speichere Einstellung
|
// Speichere beide Einstellungen
|
||||||
prefs.edit().putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled).apply()
|
prefs.edit()
|
||||||
|
.putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled)
|
||||||
|
.putBoolean(Constants.KEY_MARKDOWN_AUTO_IMPORT, enabled)
|
||||||
|
.apply()
|
||||||
|
|
||||||
|
updateMarkdownButtonVisibility()
|
||||||
|
|
||||||
// Erfolgs-Nachricht
|
// Erfolgs-Nachricht
|
||||||
showToast("✅ $exportedCount Notizen nach Markdown exportiert")
|
showToast("✅ $exportedCount Notizen nach Markdown exportiert")
|
||||||
@@ -608,76 +753,35 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
showToast("❌ Export fehlgeschlagen: ${e.message}")
|
showToast("❌ Export fehlgeschlagen: ${e.message}")
|
||||||
|
|
||||||
// Deaktiviere Toggle bei Fehler
|
// Deaktiviere Toggle bei Fehler
|
||||||
switchMarkdownExport.isChecked = false
|
switchMarkdownAutoSync.isChecked = false
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Keine Notizen vorhanden - speichere Einstellung direkt
|
// Keine Notizen vorhanden - speichere Einstellungen direkt
|
||||||
prefs.edit().putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled).apply()
|
prefs.edit()
|
||||||
showToast("Markdown-Export aktiviert - Notizen werden als .md-Dateien exportiert")
|
.putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled)
|
||||||
|
.putBoolean(Constants.KEY_MARKDOWN_AUTO_IMPORT, enabled)
|
||||||
|
.apply()
|
||||||
|
|
||||||
|
updateMarkdownButtonVisibility()
|
||||||
|
showToast("Markdown Auto-Sync aktiviert - Notizen werden als .md-Dateien exportiert und importiert")
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Logger.e(TAG, "Error toggling markdown export: ${e.message}")
|
Logger.e(TAG, "Error toggling markdown auto-sync: ${e.message}")
|
||||||
showToast("Fehler: ${e.message}")
|
showToast("Fehler: ${e.message}")
|
||||||
switchMarkdownExport.isChecked = false
|
switchMarkdownAutoSync.isChecked = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Deaktivieren - nur Setting speichern
|
// Deaktivieren - Settings speichern
|
||||||
prefs.edit().putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled).apply()
|
prefs.edit()
|
||||||
showToast("Markdown-Export deaktiviert - nur JSON-Sync aktiv")
|
.putBoolean(Constants.KEY_MARKDOWN_EXPORT, enabled)
|
||||||
}
|
.putBoolean(Constants.KEY_MARKDOWN_AUTO_IMPORT, enabled)
|
||||||
}
|
.apply()
|
||||||
|
|
||||||
private fun importMarkdownChanges() {
|
updateMarkdownButtonVisibility()
|
||||||
// Prüfen ob Server konfiguriert ist
|
showToast("Markdown Auto-Sync deaktiviert - nur JSON-Sync aktiv")
|
||||||
val serverUrl = prefs.getString(Constants.KEY_SERVER_URL, "") ?: ""
|
|
||||||
val username = prefs.getString(Constants.KEY_USERNAME, "") ?: ""
|
|
||||||
val password = prefs.getString(Constants.KEY_PASSWORD, "") ?: ""
|
|
||||||
|
|
||||||
if (serverUrl.isBlank() || username.isBlank() || password.isBlank()) {
|
|
||||||
showToast("Bitte zuerst WebDAV-Server konfigurieren")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Import-Dialog mit Warnung
|
|
||||||
AlertDialog.Builder(this)
|
|
||||||
.setTitle("Markdown-Import")
|
|
||||||
.setMessage(
|
|
||||||
"Importiert Änderungen aus .md-Dateien vom Server.\n\n" +
|
|
||||||
"⚠️ Bei Konflikten: Last-Write-Wins (neuere Zeitstempel gewinnen)\n\n" +
|
|
||||||
"Fortfahren?"
|
|
||||||
)
|
|
||||||
.setPositiveButton("Importieren") { _, _ ->
|
|
||||||
performMarkdownImport(serverUrl, username, password)
|
|
||||||
}
|
|
||||||
.setNegativeButton("Abbrechen", null)
|
|
||||||
.show()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun performMarkdownImport(serverUrl: String, username: String, password: String) {
|
|
||||||
showToast("Importiere Markdown-Dateien...")
|
|
||||||
|
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
|
||||||
try {
|
|
||||||
val syncService = WebDavSyncService(this@SettingsActivity)
|
|
||||||
val importCount = syncService.syncMarkdownFiles(serverUrl, username, password)
|
|
||||||
|
|
||||||
withContext(Dispatchers.Main) {
|
|
||||||
if (importCount > 0) {
|
|
||||||
showToast("$importCount Notizen aus Markdown importiert")
|
|
||||||
// Benachrichtige MainActivity zum Neuladen
|
|
||||||
sendBroadcast(Intent("dev.dettmer.simplenotes.NOTES_CHANGED"))
|
|
||||||
} else {
|
|
||||||
showToast("Keine Markdown-Änderungen gefunden")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
withContext(Dispatchers.Main) {
|
|
||||||
showToast("Import-Fehler: ${e.message}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -851,20 +955,20 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
// Radio Buttons erstellen
|
// Radio Buttons erstellen
|
||||||
val radioMerge = android.widget.RadioButton(this).apply {
|
val radioMerge = android.widget.RadioButton(this).apply {
|
||||||
text = "⚪ Zusammenführen (Standard)\n → Neue hinzufügen, Bestehende behalten"
|
text = "⚪ Zusammenführen (Standard)\n → Neue hinzufügen, Bestehende behalten"
|
||||||
id = 0
|
id = android.view.View.generateViewId()
|
||||||
isChecked = true
|
isChecked = true
|
||||||
setPadding(10, 10, 10, 10)
|
setPadding(10, 10, 10, 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
val radioReplace = android.widget.RadioButton(this).apply {
|
val radioReplace = android.widget.RadioButton(this).apply {
|
||||||
text = "⚪ Ersetzen\n → Alle löschen & Backup importieren"
|
text = "⚪ Ersetzen\n → Alle löschen & Backup importieren"
|
||||||
id = 1
|
id = android.view.View.generateViewId()
|
||||||
setPadding(10, 10, 10, 10)
|
setPadding(10, 10, 10, 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
val radioOverwrite = android.widget.RadioButton(this).apply {
|
val radioOverwrite = android.widget.RadioButton(this).apply {
|
||||||
text = "⚪ Duplikate überschreiben\n → Backup gewinnt bei Konflikten"
|
text = "⚪ Duplikate überschreiben\n → Backup gewinnt bei Konflikten"
|
||||||
id = 2
|
id = android.view.View.generateViewId()
|
||||||
setPadding(10, 10, 10, 10)
|
setPadding(10, 10, 10, 10)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -903,8 +1007,8 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
.setView(mainLayout)
|
.setView(mainLayout)
|
||||||
.setPositiveButton("Wiederherstellen") { _, _ ->
|
.setPositiveButton("Wiederherstellen") { _, _ ->
|
||||||
val selectedMode = when (radioGroup.checkedRadioButtonId) {
|
val selectedMode = when (radioGroup.checkedRadioButtonId) {
|
||||||
1 -> RestoreMode.REPLACE
|
radioReplace.id -> RestoreMode.REPLACE
|
||||||
2 -> RestoreMode.OVERWRITE_DUPLICATES
|
radioOverwrite.id -> RestoreMode.OVERWRITE_DUPLICATES
|
||||||
else -> RestoreMode.MERGE
|
else -> RestoreMode.MERGE
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -940,7 +1044,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
// Refresh MainActivity's note list
|
// Refresh MainActivity's note list
|
||||||
setResult(RESULT_OK)
|
setResult(RESULT_OK)
|
||||||
broadcastNotesChanged()
|
broadcastNotesChanged(result.imported_notes)
|
||||||
} else {
|
} else {
|
||||||
showErrorDialog("Wiederherstellung fehlgeschlagen", result.error ?: "Unbekannter Fehler")
|
showErrorDialog("Wiederherstellung fehlgeschlagen", result.error ?: "Unbekannter Fehler")
|
||||||
}
|
}
|
||||||
@@ -953,12 +1057,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Führt Restore vom Server durch (Task #1.2.0-05b)
|
* Server-Restore mit Restore-Modi (v1.3.0)
|
||||||
* Nutzt neues universelles Dialog-System mit Restore-Modi
|
|
||||||
*
|
|
||||||
* HINWEIS: Die alte WebDavSyncService.restoreFromServer() Funktion
|
|
||||||
* unterstützt noch keine Restore-Modi. Aktuell wird immer REPLACE verwendet.
|
|
||||||
* TODO: WebDavSyncService.restoreFromServer() erweitern für v1.2.1+
|
|
||||||
*/
|
*/
|
||||||
private fun performRestoreFromServer(mode: RestoreMode) {
|
private fun performRestoreFromServer(mode: RestoreMode) {
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
@@ -970,7 +1069,6 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
Logger.d(TAG, "📥 Restoring from server (mode: $mode)")
|
Logger.d(TAG, "📥 Restoring from server (mode: $mode)")
|
||||||
Logger.w(TAG, "⚠️ Server-Restore nutzt aktuell immer REPLACE Mode (TODO: v1.2.1+)")
|
|
||||||
|
|
||||||
// Auto-Backup erstellen (Sicherheitsnetz)
|
// Auto-Backup erstellen (Sicherheitsnetz)
|
||||||
val autoBackupUri = backupManager.createAutoBackup()
|
val autoBackupUri = backupManager.createAutoBackup()
|
||||||
@@ -981,8 +1079,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
// Server-Restore durchführen
|
// Server-Restore durchführen
|
||||||
val webdavService = WebDavSyncService(this@SettingsActivity)
|
val webdavService = WebDavSyncService(this@SettingsActivity)
|
||||||
val result = withContext(Dispatchers.IO) {
|
val result = withContext(Dispatchers.IO) {
|
||||||
// Nutzt alte Funktion (immer REPLACE)
|
webdavService.restoreFromServer(mode) // ✅ Pass mode parameter
|
||||||
webdavService.restoreFromServer()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
progressDialog.dismiss()
|
progressDialog.dismiss()
|
||||||
@@ -990,7 +1087,7 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
if (result.isSuccess) {
|
if (result.isSuccess) {
|
||||||
showToast("✅ Wiederhergestellt: ${result.restoredCount} Notizen")
|
showToast("✅ Wiederhergestellt: ${result.restoredCount} Notizen")
|
||||||
setResult(RESULT_OK)
|
setResult(RESULT_OK)
|
||||||
broadcastNotesChanged()
|
broadcastNotesChanged(result.restoredCount)
|
||||||
} else {
|
} else {
|
||||||
showErrorDialog("Wiederherstellung fehlgeschlagen", result.errorMessage ?: "Unbekannter Fehler")
|
showErrorDialog("Wiederherstellung fehlgeschlagen", result.errorMessage ?: "Unbekannter Fehler")
|
||||||
}
|
}
|
||||||
@@ -1005,13 +1102,70 @@ class SettingsActivity : AppCompatActivity() {
|
|||||||
/**
|
/**
|
||||||
* Sendet Broadcast dass Notizen geändert wurden
|
* Sendet Broadcast dass Notizen geändert wurden
|
||||||
*/
|
*/
|
||||||
private fun broadcastNotesChanged() {
|
private fun broadcastNotesChanged(count: Int = 0) {
|
||||||
val intent = Intent(dev.dettmer.simplenotes.sync.SyncWorker.ACTION_SYNC_COMPLETED)
|
val intent = Intent(dev.dettmer.simplenotes.sync.SyncWorker.ACTION_SYNC_COMPLETED)
|
||||||
intent.putExtra("success", true)
|
intent.putExtra("success", true)
|
||||||
intent.putExtra("syncedCount", 0)
|
intent.putExtra("syncedCount", count)
|
||||||
LocalBroadcastManager.getInstance(this).sendBroadcast(intent)
|
LocalBroadcastManager.getInstance(this).sendBroadcast(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Updates visibility of manual sync button based on Auto-Sync toggle state
|
||||||
|
*/
|
||||||
|
private fun updateMarkdownButtonVisibility() {
|
||||||
|
val autoSyncEnabled = switchMarkdownAutoSync.isChecked
|
||||||
|
val visibility = if (autoSyncEnabled) View.GONE else View.VISIBLE
|
||||||
|
|
||||||
|
textViewManualSyncInfo.visibility = visibility
|
||||||
|
buttonManualMarkdownSync.visibility = visibility
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs manual Markdown sync (Export + Import)
|
||||||
|
* Called when manual sync button is clicked
|
||||||
|
*/
|
||||||
|
private fun performManualMarkdownSync() {
|
||||||
|
lifecycleScope.launch {
|
||||||
|
var progressDialog: ProgressDialog? = null
|
||||||
|
try {
|
||||||
|
// Validierung
|
||||||
|
val serverUrl = prefs.getString(Constants.KEY_SERVER_URL, "")
|
||||||
|
val username = prefs.getString(Constants.KEY_USERNAME, "")
|
||||||
|
val password = prefs.getString(Constants.KEY_PASSWORD, "")
|
||||||
|
|
||||||
|
if (serverUrl.isNullOrBlank() || username.isNullOrBlank() || password.isNullOrBlank()) {
|
||||||
|
showToast("⚠️ Bitte zuerst WebDAV-Server konfigurieren")
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
|
||||||
|
// Progress-Dialog
|
||||||
|
progressDialog = ProgressDialog(this@SettingsActivity).apply {
|
||||||
|
setTitle("Markdown-Sync")
|
||||||
|
setMessage("Synchronisiere Markdown-Dateien...")
|
||||||
|
setCancelable(false)
|
||||||
|
show()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sync ausführen
|
||||||
|
val syncService = dev.dettmer.simplenotes.sync.WebDavSyncService(this@SettingsActivity)
|
||||||
|
val result = syncService.manualMarkdownSync()
|
||||||
|
|
||||||
|
progressDialog.dismiss()
|
||||||
|
|
||||||
|
// Erfolgs-Nachricht
|
||||||
|
val message = "✅ Sync abgeschlossen\n📤 ${result.exportedCount} exportiert\n📥 ${result.importedCount} importiert"
|
||||||
|
showToast(message)
|
||||||
|
|
||||||
|
Logger.d("SettingsActivity", "Manual markdown sync: exported=${result.exportedCount}, imported=${result.importedCount}")
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
progressDialog?.dismiss()
|
||||||
|
showToast("❌ Sync fehlgeschlagen: ${e.message}")
|
||||||
|
Logger.e("SettingsActivity", "Manual markdown sync failed", e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zeigt Error-Dialog an
|
* Zeigt Error-Dialog an
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
package dev.dettmer.simplenotes.models
|
||||||
|
|
||||||
|
import org.json.JSONArray
|
||||||
|
import org.json.JSONObject
|
||||||
|
|
||||||
|
data class DeletionRecord(
|
||||||
|
val id: String,
|
||||||
|
val deletedAt: Long,
|
||||||
|
val deviceId: String
|
||||||
|
)
|
||||||
|
|
||||||
|
data class DeletionTracker(
|
||||||
|
val version: Int = 1,
|
||||||
|
val deletedNotes: MutableList<DeletionRecord> = mutableListOf()
|
||||||
|
) {
|
||||||
|
fun addDeletion(noteId: String, deviceId: String) {
|
||||||
|
if (!deletedNotes.any { it.id == noteId }) {
|
||||||
|
deletedNotes.add(DeletionRecord(noteId, System.currentTimeMillis(), deviceId))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun isDeleted(noteId: String): Boolean {
|
||||||
|
return deletedNotes.any { it.id == noteId }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getDeletionTimestamp(noteId: String): Long? {
|
||||||
|
return deletedNotes.find { it.id == noteId }?.deletedAt
|
||||||
|
}
|
||||||
|
|
||||||
|
fun removeDeletion(noteId: String) {
|
||||||
|
deletedNotes.removeIf { it.id == noteId }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun toJson(): String {
|
||||||
|
val jsonObject = JSONObject()
|
||||||
|
jsonObject.put("version", version)
|
||||||
|
|
||||||
|
val notesArray = JSONArray()
|
||||||
|
for (record in deletedNotes) {
|
||||||
|
val recordObj = JSONObject()
|
||||||
|
recordObj.put("id", record.id)
|
||||||
|
recordObj.put("deletedAt", record.deletedAt)
|
||||||
|
recordObj.put("deviceId", record.deviceId)
|
||||||
|
notesArray.put(recordObj)
|
||||||
|
}
|
||||||
|
jsonObject.put("deletedNotes", notesArray)
|
||||||
|
|
||||||
|
return jsonObject.toString(2) // Pretty print with 2-space indent
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
fun fromJson(json: String): DeletionTracker? {
|
||||||
|
return try {
|
||||||
|
val jsonObject = JSONObject(json)
|
||||||
|
val version = jsonObject.optInt("version", 1)
|
||||||
|
val deletedNotes = mutableListOf<DeletionRecord>()
|
||||||
|
|
||||||
|
val notesArray = jsonObject.optJSONArray("deletedNotes")
|
||||||
|
if (notesArray != null) {
|
||||||
|
for (i in 0 until notesArray.length()) {
|
||||||
|
val recordObj = notesArray.getJSONObject(i)
|
||||||
|
val record = DeletionRecord(
|
||||||
|
id = recordObj.getString("id"),
|
||||||
|
deletedAt = recordObj.getLong("deletedAt"),
|
||||||
|
deviceId = recordObj.getString("deviceId")
|
||||||
|
)
|
||||||
|
deletedNotes.add(record)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DeletionTracker(version, deletedNotes)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,18 @@
|
|||||||
package dev.dettmer.simplenotes.storage
|
package dev.dettmer.simplenotes.storage
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
|
import dev.dettmer.simplenotes.models.DeletionTracker
|
||||||
import dev.dettmer.simplenotes.models.Note
|
import dev.dettmer.simplenotes.models.Note
|
||||||
|
import dev.dettmer.simplenotes.utils.DeviceIdGenerator
|
||||||
|
import dev.dettmer.simplenotes.utils.Logger
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
class NotesStorage(private val context: Context) {
|
class NotesStorage(private val context: Context) {
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private const val TAG = "NotesStorage"
|
||||||
|
}
|
||||||
|
|
||||||
private val notesDir: File = File(context.filesDir, "notes").apply {
|
private val notesDir: File = File(context.filesDir, "notes").apply {
|
||||||
if (!exists()) mkdirs()
|
if (!exists()) mkdirs()
|
||||||
}
|
}
|
||||||
@@ -34,19 +41,89 @@ class NotesStorage(private val context: Context) {
|
|||||||
|
|
||||||
fun deleteNote(id: String): Boolean {
|
fun deleteNote(id: String): Boolean {
|
||||||
val file = File(notesDir, "$id.json")
|
val file = File(notesDir, "$id.json")
|
||||||
return file.delete()
|
val deleted = file.delete()
|
||||||
|
|
||||||
|
if (deleted) {
|
||||||
|
Logger.d(TAG, "🗑️ Deleted note: $id")
|
||||||
|
|
||||||
|
// Track deletion to prevent zombie notes
|
||||||
|
val deviceId = DeviceIdGenerator.getDeviceId(context)
|
||||||
|
trackDeletion(id, deviceId)
|
||||||
|
}
|
||||||
|
|
||||||
|
return deleted
|
||||||
}
|
}
|
||||||
|
|
||||||
fun deleteAllNotes(): Boolean {
|
fun deleteAllNotes(): Boolean {
|
||||||
return try {
|
return try {
|
||||||
notesDir.listFiles()
|
val notes = loadAllNotes()
|
||||||
?.filter { it.extension == "json" }
|
val deviceId = DeviceIdGenerator.getDeviceId(context)
|
||||||
?.forEach { it.delete() }
|
|
||||||
|
for (note in notes) {
|
||||||
|
deleteNote(note.id) // Uses trackDeletion() automatically
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.d(TAG, "🗑️ Deleted all notes (${notes.size} notes)")
|
||||||
true
|
true
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
Logger.e(TAG, "Failed to delete all notes", e)
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// === Deletion Tracking ===
|
||||||
|
|
||||||
|
private fun getDeletionTrackerFile(): File {
|
||||||
|
return File(context.filesDir, "deleted_notes.json")
|
||||||
|
}
|
||||||
|
|
||||||
|
fun loadDeletionTracker(): DeletionTracker {
|
||||||
|
val file = getDeletionTrackerFile()
|
||||||
|
if (!file.exists()) {
|
||||||
|
return DeletionTracker()
|
||||||
|
}
|
||||||
|
|
||||||
|
return try {
|
||||||
|
val json = file.readText()
|
||||||
|
DeletionTracker.fromJson(json) ?: DeletionTracker()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Logger.e(TAG, "Failed to load deletion tracker", e)
|
||||||
|
DeletionTracker()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveDeletionTracker(tracker: DeletionTracker) {
|
||||||
|
try {
|
||||||
|
val file = getDeletionTrackerFile()
|
||||||
|
file.writeText(tracker.toJson())
|
||||||
|
|
||||||
|
if (tracker.deletedNotes.size > 1000) {
|
||||||
|
Logger.w(TAG, "⚠️ Deletion tracker large: ${tracker.deletedNotes.size} entries")
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.d(TAG, "✅ Deletion tracker saved (${tracker.deletedNotes.size} entries)")
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Logger.e(TAG, "Failed to save deletion tracker", e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun trackDeletion(noteId: String, deviceId: String) {
|
||||||
|
val tracker = loadDeletionTracker()
|
||||||
|
tracker.addDeletion(noteId, deviceId)
|
||||||
|
saveDeletionTracker(tracker)
|
||||||
|
Logger.d(TAG, "📝 Tracked deletion: $noteId")
|
||||||
|
}
|
||||||
|
|
||||||
|
fun isNoteDeleted(noteId: String): Boolean {
|
||||||
|
val tracker = loadDeletionTracker()
|
||||||
|
return tracker.isDeleted(noteId)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun clearDeletionTracker() {
|
||||||
|
saveDeletionTracker(DeletionTracker())
|
||||||
|
Logger.d(TAG, "🗑️ Deletion tracker cleared")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
fun getNotesDir(): File = notesDir
|
fun getNotesDir(): File = notesDir
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,129 @@
|
|||||||
|
package dev.dettmer.simplenotes.sync
|
||||||
|
|
||||||
|
import androidx.lifecycle.LiveData
|
||||||
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import dev.dettmer.simplenotes.utils.Logger
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 🔄 v1.3.1: Zentrale Verwaltung des Sync-Status
|
||||||
|
*
|
||||||
|
* Verhindert doppelte Syncs und informiert die UI über den aktuellen Status.
|
||||||
|
* Thread-safe Singleton mit LiveData für UI-Reaktivität.
|
||||||
|
*/
|
||||||
|
object SyncStateManager {
|
||||||
|
|
||||||
|
private const val TAG = "SyncStateManager"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mögliche Sync-Zustände
|
||||||
|
*/
|
||||||
|
enum class SyncState {
|
||||||
|
IDLE, // Kein Sync aktiv
|
||||||
|
SYNCING, // Sync läuft gerade
|
||||||
|
COMPLETED, // Sync erfolgreich abgeschlossen (kurz anzeigen)
|
||||||
|
ERROR // Sync fehlgeschlagen (kurz anzeigen)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Detaillierte Sync-Informationen für UI
|
||||||
|
*/
|
||||||
|
data class SyncStatus(
|
||||||
|
val state: SyncState = SyncState.IDLE,
|
||||||
|
val message: String? = null,
|
||||||
|
val source: String? = null, // "manual", "auto", "pullToRefresh", "background"
|
||||||
|
val timestamp: Long = System.currentTimeMillis()
|
||||||
|
)
|
||||||
|
|
||||||
|
// Private mutable LiveData
|
||||||
|
private val _syncStatus = MutableLiveData(SyncStatus())
|
||||||
|
|
||||||
|
// Public immutable LiveData für Observer
|
||||||
|
val syncStatus: LiveData<SyncStatus> = _syncStatus
|
||||||
|
|
||||||
|
// Lock für Thread-Sicherheit
|
||||||
|
private val lock = Any()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prüft ob gerade ein Sync läuft
|
||||||
|
*/
|
||||||
|
val isSyncing: Boolean
|
||||||
|
get() = _syncStatus.value?.state == SyncState.SYNCING
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versucht einen Sync zu starten.
|
||||||
|
* @return true wenn Sync gestartet werden kann, false wenn bereits einer läuft
|
||||||
|
*/
|
||||||
|
fun tryStartSync(source: String): Boolean {
|
||||||
|
synchronized(lock) {
|
||||||
|
if (isSyncing) {
|
||||||
|
Logger.d(TAG, "⚠️ Sync already in progress, rejecting new sync from: $source")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.d(TAG, "🔄 Starting sync from: $source")
|
||||||
|
_syncStatus.postValue(
|
||||||
|
SyncStatus(
|
||||||
|
state = SyncState.SYNCING,
|
||||||
|
message = "Synchronisiere...",
|
||||||
|
source = source
|
||||||
|
)
|
||||||
|
)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Markiert Sync als erfolgreich abgeschlossen
|
||||||
|
*/
|
||||||
|
fun markCompleted(message: String? = null) {
|
||||||
|
synchronized(lock) {
|
||||||
|
val currentSource = _syncStatus.value?.source
|
||||||
|
Logger.d(TAG, "✅ Sync completed from: $currentSource")
|
||||||
|
_syncStatus.postValue(
|
||||||
|
SyncStatus(
|
||||||
|
state = SyncState.COMPLETED,
|
||||||
|
message = message,
|
||||||
|
source = currentSource
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Markiert Sync als fehlgeschlagen
|
||||||
|
*/
|
||||||
|
fun markError(errorMessage: String?) {
|
||||||
|
synchronized(lock) {
|
||||||
|
val currentSource = _syncStatus.value?.source
|
||||||
|
Logger.e(TAG, "❌ Sync failed from: $currentSource - $errorMessage")
|
||||||
|
_syncStatus.postValue(
|
||||||
|
SyncStatus(
|
||||||
|
state = SyncState.ERROR,
|
||||||
|
message = errorMessage,
|
||||||
|
source = currentSource
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setzt Status zurück auf IDLE
|
||||||
|
*/
|
||||||
|
fun reset() {
|
||||||
|
synchronized(lock) {
|
||||||
|
_syncStatus.postValue(SyncStatus())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Aktualisiert die Nachricht während des Syncs (z.B. Progress)
|
||||||
|
*/
|
||||||
|
fun updateMessage(message: String) {
|
||||||
|
synchronized(lock) {
|
||||||
|
val current = _syncStatus.value ?: return
|
||||||
|
if (current.state == SyncState.SYNCING) {
|
||||||
|
_syncStatus.postValue(current.copy(message = message))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -23,6 +23,13 @@ object Constants {
|
|||||||
const val KEY_MARKDOWN_EXPORT = "markdown_export_enabled"
|
const val KEY_MARKDOWN_EXPORT = "markdown_export_enabled"
|
||||||
const val KEY_MARKDOWN_AUTO_IMPORT = "markdown_auto_import_enabled"
|
const val KEY_MARKDOWN_AUTO_IMPORT = "markdown_auto_import_enabled"
|
||||||
|
|
||||||
|
// 🔥 v1.3.0: Performance & Multi-Device Sync
|
||||||
|
const val KEY_ALWAYS_CHECK_SERVER = "always_check_server"
|
||||||
|
const val KEY_ALWAYS_DELETE_FROM_SERVER = "always_delete_from_server"
|
||||||
|
|
||||||
|
// 🔥 v1.3.1: Debug & Logging
|
||||||
|
const val KEY_FILE_LOGGING_ENABLED = "file_logging_enabled"
|
||||||
|
|
||||||
// WorkManager
|
// WorkManager
|
||||||
const val SYNC_WORK_TAG = "notes_sync"
|
const val SYNC_WORK_TAG = "notes_sync"
|
||||||
const val SYNC_DELAY_SECONDS = 5L
|
const val SYNC_DELAY_SECONDS = 5L
|
||||||
|
|||||||
@@ -17,9 +17,32 @@ object Logger {
|
|||||||
|
|
||||||
private var fileLoggingEnabled = false
|
private var fileLoggingEnabled = false
|
||||||
private var logFile: File? = null
|
private var logFile: File? = null
|
||||||
|
private var appContext: Context? = null
|
||||||
private val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS", Locale.getDefault())
|
private val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS", Locale.getDefault())
|
||||||
private val maxLogEntries = 500 // Nur letzte 500 Einträge
|
private val maxLogEntries = 500 // Nur letzte 500 Einträge
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setzt den File-Logging Status (für UI Toggle)
|
||||||
|
*/
|
||||||
|
fun setFileLoggingEnabled(enabled: Boolean) {
|
||||||
|
fileLoggingEnabled = enabled
|
||||||
|
if (!enabled) {
|
||||||
|
logFile = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gibt zurück, ob File-Logging aktiviert ist
|
||||||
|
*/
|
||||||
|
fun isFileLoggingEnabled(): Boolean = fileLoggingEnabled
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialisiert den Logger mit App-Context
|
||||||
|
*/
|
||||||
|
fun init(context: Context) {
|
||||||
|
appContext = context.applicationContext
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktiviert File-Logging für Debugging
|
* Aktiviert File-Logging für Debugging
|
||||||
*/
|
*/
|
||||||
@@ -50,11 +73,47 @@ object Logger {
|
|||||||
*/
|
*/
|
||||||
fun getLogFile(): File? = logFile
|
fun getLogFile(): File? = logFile
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gibt Log-Datei mit Context zurück (für SettingsActivity)
|
||||||
|
*/
|
||||||
|
fun getLogFile(context: Context): File? {
|
||||||
|
if (logFile == null && fileLoggingEnabled) {
|
||||||
|
logFile = File(context.filesDir, "simplenotes_debug.log")
|
||||||
|
}
|
||||||
|
return logFile
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Löscht die Log-Datei
|
||||||
|
*/
|
||||||
|
fun clearLogFile(context: Context): Boolean {
|
||||||
|
return try {
|
||||||
|
val file = File(context.filesDir, "simplenotes_debug.log")
|
||||||
|
if (file.exists()) {
|
||||||
|
file.delete()
|
||||||
|
logFile = null
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e("Logger", "Failed to clear log file", e)
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Schreibt Log-Eintrag in Datei
|
* Schreibt Log-Eintrag in Datei
|
||||||
*/
|
*/
|
||||||
private fun writeToFile(level: String, tag: String, message: String, throwable: Throwable? = null) {
|
private fun writeToFile(level: String, tag: String, message: String, throwable: Throwable? = null) {
|
||||||
if (!fileLoggingEnabled || logFile == null) return
|
if (!fileLoggingEnabled) return
|
||||||
|
|
||||||
|
// Lazy-init logFile mit appContext
|
||||||
|
if (logFile == null && appContext != null) {
|
||||||
|
logFile = File(appContext!!.filesDir, "simplenotes_debug.log")
|
||||||
|
}
|
||||||
|
|
||||||
|
if (logFile == null) return
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val timestamp = dateFormat.format(Date())
|
val timestamp = dateFormat.format(Date())
|
||||||
|
|||||||
@@ -22,6 +22,39 @@
|
|||||||
app:title="@string/app_name"
|
app:title="@string/app_name"
|
||||||
app:titleTextAppearance="@style/TextAppearance.Material3.TitleLarge" />
|
app:titleTextAppearance="@style/TextAppearance.Material3.TitleLarge" />
|
||||||
|
|
||||||
|
<!-- 🔄 v1.3.1: Sync Status Banner -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/syncStatusBanner"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:paddingHorizontal="16dp"
|
||||||
|
android:paddingVertical="8dp"
|
||||||
|
android:background="?attr/colorPrimaryContainer"
|
||||||
|
android:visibility="gone">
|
||||||
|
|
||||||
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
||||||
|
android:id="@+id/syncProgressIndicator"
|
||||||
|
android:layout_width="24dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
|
android:indeterminate="true"
|
||||||
|
app:indicatorSize="24dp"
|
||||||
|
app:trackThickness="3dp"
|
||||||
|
app:indicatorColor="?attr/colorOnPrimaryContainer" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/syncStatusText"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:text="@string/sync_status_syncing"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.BodyMedium"
|
||||||
|
android:textColor="?attr/colorOnPrimaryContainer" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
</com.google.android.material.appbar.AppBarLayout>
|
</com.google.android.material.appbar.AppBarLayout>
|
||||||
|
|
||||||
<!-- SwipeRefreshLayout für Pull-to-Refresh (v1.1.2) -->
|
<!-- SwipeRefreshLayout für Pull-to-Refresh (v1.1.2) -->
|
||||||
|
|||||||
@@ -429,11 +429,11 @@
|
|||||||
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
</com.google.android.material.card.MaterialCardView>
|
||||||
|
|
||||||
<!-- Markdown Export Toggle -->
|
<!-- Markdown Auto-Sync Toggle (fusioniert Export + Auto-Import) -->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="8dp"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:gravity="center_vertical">
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
@@ -441,34 +441,47 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:text="📝 Markdown Export (Desktop-Zugriff)"
|
android:text="🔄 Markdown Auto-Sync"
|
||||||
android:textAppearance="@style/TextAppearance.Material3.BodyLarge" />
|
android:textAppearance="@style/TextAppearance.Material3.BodyLarge" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
android:id="@+id/switchMarkdownExport"
|
android:id="@+id/switchMarkdownAutoSync"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:checked="true" />
|
android:checked="false" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<!-- Import Markdown Button -->
|
<!-- Auto-Sync Info Text -->
|
||||||
<Button
|
|
||||||
android:id="@+id/buttonImportMarkdown"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="📥 Markdown-Änderungen importieren"
|
|
||||||
style="@style/Widget.Material3.Button.TonalButton" />
|
|
||||||
|
|
||||||
<!-- Import Info Text -->
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginBottom="16dp"
|
||||||
android:text="Importiert manuelle Änderungen von Desktop-Apps (.md Dateien vom Server)"
|
android:text="Synchronisiert Notizen automatisch als .md Dateien (Upload + Download bei jedem Sync)"
|
||||||
android:textAppearance="@style/TextAppearance.Material3.BodySmall"
|
android:textAppearance="@style/TextAppearance.Material3.BodySmall"
|
||||||
android:textColor="?attr/colorOnSurfaceVariant" />
|
android:textColor="?attr/colorOnSurfaceVariant" />
|
||||||
|
|
||||||
|
<!-- Manual Sync Info (nur sichtbar wenn Auto-Sync OFF) -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/textViewManualSyncInfo"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
android:text="Oder synchronisiere Markdown-Dateien manuell:"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.BodyMedium"
|
||||||
|
android:textColor="?attr/colorOnSurface"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- Manual Sync Button (nur sichtbar wenn Auto-Sync OFF) -->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/buttonManualMarkdownSync"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Markdown synchronisieren"
|
||||||
|
android:visibility="gone"
|
||||||
|
style="@style/Widget.Material3.Button.TonalButton" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
</com.google.android.material.card.MaterialCardView>
|
||||||
@@ -736,6 +749,96 @@
|
|||||||
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
</com.google.android.material.card.MaterialCardView>
|
||||||
|
|
||||||
|
<!-- Material 3 Card: Debug Section -->
|
||||||
|
<com.google.android.material.card.MaterialCardView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
style="@style/Widget.Material3.CardView.Elevated"
|
||||||
|
app:cardCornerRadius="16dp">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="20dp">
|
||||||
|
|
||||||
|
<!-- Section Header -->
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Debug & Diagnose"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.TitleMedium"
|
||||||
|
android:layout_marginBottom="16dp" />
|
||||||
|
|
||||||
|
<!-- File Logging Toggle -->
|
||||||
|
<com.google.android.material.card.MaterialCardView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="12dp"
|
||||||
|
app:cardBackgroundColor="?attr/colorSurfaceVariant"
|
||||||
|
app:cardCornerRadius="12dp"
|
||||||
|
app:cardElevation="0dp">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:padding="16dp"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="📝 Datei-Logging"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.LabelLarge"
|
||||||
|
android:textColor="?attr/colorPrimary"
|
||||||
|
android:layout_marginBottom="4dp" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Sync-Logs in Datei speichern"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.BodyMedium" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<com.google.android.material.materialswitch.MaterialSwitch
|
||||||
|
android:id="@+id/switchFileLogging"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</com.google.android.material.card.MaterialCardView>
|
||||||
|
|
||||||
|
<!-- Export Logs Button -->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/buttonExportLogs"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="📤 Logs exportieren & teilen"
|
||||||
|
style="@style/Widget.Material3.Button.TonalButton"
|
||||||
|
android:layout_marginBottom="8dp" />
|
||||||
|
|
||||||
|
<!-- Clear Logs Button -->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/buttonClearLogs"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="🗑️ Logs löschen"
|
||||||
|
style="@style/Widget.Material3.Button.OutlinedButton" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</com.google.android.material.card.MaterialCardView>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
android:layout_gravity="center_horizontal"
|
android:layout_gravity="center_horizontal"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
android:src="@android:drawable/ic_menu_delete"
|
android:src="@android:drawable/ic_menu_delete"
|
||||||
android:tint="?attr/colorError"
|
app:tint="?attr/colorError"
|
||||||
android:contentDescription="@string/delete" />
|
android:contentDescription="@string/delete" />
|
||||||
|
|
||||||
<!-- Title -->
|
<!-- Title -->
|
||||||
|
|||||||
15
android/app/src/main/res/layout/dialog_server_deletion.xml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="16dp">
|
||||||
|
|
||||||
|
<CheckBox
|
||||||
|
android:id="@+id/checkboxAlwaysDeleteFromServer"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Diese Entscheidung merken"
|
||||||
|
android:textAppearance="@style/TextAppearance.Material3.BodyMedium" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
android:layout_height="18dp"
|
android:layout_height="18dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:src="@android:drawable/ic_popup_sync"
|
android:src="@android:drawable/ic_popup_sync"
|
||||||
android:tint="?attr/colorPrimary"
|
app:tint="?attr/colorPrimary"
|
||||||
android:contentDescription="@string/sync_status" />
|
android:contentDescription="@string/sync_status" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@mipmap/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<background android:drawable="@mipmap/ic_launcher_background"/>
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
|
||||||
</adaptive-icon>
|
</adaptive-icon>
|
||||||
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 316 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 7.7 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 774 B |
|
Before Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 3.9 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 774 B |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 319 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 11 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 22 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 38 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -4,6 +4,9 @@
|
|||||||
<color name="black">#FF000000</color>
|
<color name="black">#FF000000</color>
|
||||||
<color name="white">#FFFFFFFF</color>
|
<color name="white">#FFFFFFFF</color>
|
||||||
|
|
||||||
|
<!-- Adaptive Icon Background -->
|
||||||
|
<color name="ic_launcher_background">#f9e9c8</color>
|
||||||
|
|
||||||
<!-- Material 3 Light Theme Colors -->
|
<!-- Material 3 Light Theme Colors -->
|
||||||
<color name="md_theme_light_primary">#6750A4</color>
|
<color name="md_theme_light_primary">#6750A4</color>
|
||||||
<color name="md_theme_light_onPrimary">#FFFFFF</color>
|
<color name="md_theme_light_onPrimary">#FFFFFF</color>
|
||||||
|
|||||||
@@ -57,4 +57,10 @@
|
|||||||
<string name="restore_progress">Stelle Notizen wieder her…</string>
|
<string name="restore_progress">Stelle Notizen wieder her…</string>
|
||||||
<string name="restore_success">✓ %d Notizen wiederhergestellt</string>
|
<string name="restore_success">✓ %d Notizen wiederhergestellt</string>
|
||||||
<string name="restore_error">Fehler: %s</string>
|
<string name="restore_error">Fehler: %s</string>
|
||||||
|
|
||||||
|
<!-- Sync Status Banner (v1.3.1) -->
|
||||||
|
<string name="sync_status_syncing">Synchronisiere…</string>
|
||||||
|
<string name="sync_status_completed">Synchronisierung abgeschlossen</string>
|
||||||
|
<string name="sync_status_error">Synchronisierung fehlgeschlagen</string>
|
||||||
|
<string name="sync_already_running">Synchronisierung läuft bereits</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -2,4 +2,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application) apply false
|
alias(libs.plugins.android.application) apply false
|
||||||
alias(libs.plugins.kotlin.android) apply false
|
alias(libs.plugins.kotlin.android) apply false
|
||||||
|
alias(libs.plugins.ktlint) apply false
|
||||||
|
alias(libs.plugins.detekt) apply false
|
||||||
}
|
}
|
||||||
136
android/config/detekt/detekt.yml
Normal file
@@ -0,0 +1,136 @@
|
|||||||
|
# ⚡ v1.3.1: detekt Configuration
|
||||||
|
# Pragmatic rules for simple-notes-sync
|
||||||
|
|
||||||
|
build:
|
||||||
|
maxIssues: 100 # Allow existing issues for v1.3.1 release, fix in v1.4.0
|
||||||
|
excludeCorrectable: false
|
||||||
|
|
||||||
|
config:
|
||||||
|
validation: true
|
||||||
|
warningsAsErrors: false
|
||||||
|
|
||||||
|
comments:
|
||||||
|
CommentOverPrivateProperty:
|
||||||
|
active: false
|
||||||
|
UndocumentedPublicClass:
|
||||||
|
active: false
|
||||||
|
UndocumentedPublicFunction:
|
||||||
|
active: false
|
||||||
|
|
||||||
|
complexity:
|
||||||
|
ComplexCondition:
|
||||||
|
active: true
|
||||||
|
threshold: 5
|
||||||
|
CyclomaticComplexMethod:
|
||||||
|
active: true
|
||||||
|
threshold: 15
|
||||||
|
ignoreSingleWhenExpression: true
|
||||||
|
LargeClass:
|
||||||
|
active: true
|
||||||
|
threshold: 600 # Increased for WebDavSyncService
|
||||||
|
LongMethod:
|
||||||
|
active: true
|
||||||
|
threshold: 80 # Increased for sync methods
|
||||||
|
LongParameterList:
|
||||||
|
active: true
|
||||||
|
functionThreshold: 6
|
||||||
|
constructorThreshold: 7
|
||||||
|
NestedBlockDepth:
|
||||||
|
active: true
|
||||||
|
threshold: 5
|
||||||
|
TooManyFunctions:
|
||||||
|
active: true
|
||||||
|
thresholdInFiles: 25
|
||||||
|
thresholdInClasses: 25
|
||||||
|
thresholdInInterfaces: 20
|
||||||
|
thresholdInObjects: 20
|
||||||
|
thresholdInEnums: 10
|
||||||
|
|
||||||
|
empty-blocks:
|
||||||
|
EmptyCatchBlock:
|
||||||
|
active: true
|
||||||
|
allowedExceptionNameRegex: "_|(ignore|expected).*"
|
||||||
|
EmptyFunctionBlock:
|
||||||
|
active: true
|
||||||
|
ignoreOverridden: true
|
||||||
|
|
||||||
|
exceptions:
|
||||||
|
SwallowedException:
|
||||||
|
active: true
|
||||||
|
ignoredExceptionTypes:
|
||||||
|
- "InterruptedException"
|
||||||
|
- "MalformedURLException"
|
||||||
|
- "NumberFormatException"
|
||||||
|
- "ParseException"
|
||||||
|
TooGenericExceptionCaught:
|
||||||
|
active: true
|
||||||
|
exceptionNames:
|
||||||
|
- "Error"
|
||||||
|
- "Throwable"
|
||||||
|
allowedExceptionNameRegex: "_|(ignore|expected).*"
|
||||||
|
|
||||||
|
naming:
|
||||||
|
FunctionNaming:
|
||||||
|
active: true
|
||||||
|
functionPattern: "[a-zA-Z][a-zA-Z0-9]*"
|
||||||
|
VariableNaming:
|
||||||
|
active: true
|
||||||
|
variablePattern: "[a-z][A-Za-z0-9]*"
|
||||||
|
PackageNaming:
|
||||||
|
active: true
|
||||||
|
packagePattern: "[a-z]+(\\.[a-z][A-Za-z0-9]*)*"
|
||||||
|
|
||||||
|
performance:
|
||||||
|
SpreadOperator:
|
||||||
|
active: false # Spread operator is fine in most cases
|
||||||
|
|
||||||
|
potential-bugs:
|
||||||
|
CastToNullableType:
|
||||||
|
active: true
|
||||||
|
EqualsWithHashCodeExist:
|
||||||
|
active: true
|
||||||
|
UnconditionalJumpStatementInLoop:
|
||||||
|
active: true
|
||||||
|
|
||||||
|
style:
|
||||||
|
ForbiddenComment:
|
||||||
|
active: true
|
||||||
|
comments:
|
||||||
|
- "FIXME:"
|
||||||
|
- "STOPSHIP:"
|
||||||
|
allowedPatterns: ""
|
||||||
|
MagicNumber:
|
||||||
|
active: true
|
||||||
|
ignoreNumbers:
|
||||||
|
- "-1"
|
||||||
|
- "0"
|
||||||
|
- "1"
|
||||||
|
- "2"
|
||||||
|
- "100"
|
||||||
|
- "1000"
|
||||||
|
ignoreHashCodeFunction: true
|
||||||
|
ignorePropertyDeclaration: true
|
||||||
|
ignoreLocalVariableDeclaration: true
|
||||||
|
ignoreAnnotation: true
|
||||||
|
ignoreEnums: true
|
||||||
|
ignoreRanges: true
|
||||||
|
ignoreExtensionFunctions: true
|
||||||
|
MaxLineLength:
|
||||||
|
active: true
|
||||||
|
maxLineLength: 120
|
||||||
|
excludePackageStatements: true
|
||||||
|
excludeImportStatements: true
|
||||||
|
ReturnCount:
|
||||||
|
active: true
|
||||||
|
max: 4
|
||||||
|
excludedFunctions: []
|
||||||
|
excludeLabeled: true
|
||||||
|
excludeReturnFromLambda: true
|
||||||
|
excludeGuardClauses: true
|
||||||
|
UnusedImports:
|
||||||
|
active: true
|
||||||
|
UnusedPrivateMember:
|
||||||
|
active: true
|
||||||
|
allowedNames: "_.*"
|
||||||
|
WildcardImport:
|
||||||
|
active: false # Allow wildcard imports
|
||||||
@@ -9,6 +9,8 @@ appcompat = "1.6.1"
|
|||||||
material = "1.10.0"
|
material = "1.10.0"
|
||||||
activity = "1.8.0"
|
activity = "1.8.0"
|
||||||
constraintlayout = "2.1.4"
|
constraintlayout = "2.1.4"
|
||||||
|
ktlint = "12.1.0"
|
||||||
|
detekt = "1.23.4"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
||||||
@@ -23,4 +25,6 @@ androidx-constraintlayout = { group = "androidx.constraintlayout", name = "const
|
|||||||
[plugins]
|
[plugins]
|
||||||
android-application = { id = "com.android.application", version.ref = "agp" }
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
||||||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
||||||
|
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
|
||||||
|
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
||||||
|
|
||||||
|
|||||||
12
fastlane/metadata/android/de-DE/changelogs/8.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
v1.3.0 - Multi-Device Sync
|
||||||
|
|
||||||
|
NEUE FEATURES:
|
||||||
|
• Multi-Device Sync mit Deletion Tracking (keine Zombie-Notizen)
|
||||||
|
• Wisch-Geste zum Server-Löschen (verhindert Duplikate auf anderen Geräten)
|
||||||
|
• E-Tag Performance-Optimierung (~150ms statt 3s)
|
||||||
|
• Markdown Auto-Sync Toggle (Export + Import vereint)
|
||||||
|
• Manueller Markdown-Sync Button
|
||||||
|
• Server-Wiederherstellung Modi (Merge/Replace/Overwrite)
|
||||||
|
|
||||||
|
Dank an Thomas aus Bielefeld!
|
||||||
|
Kompatibel: v1.2.0-v1.3.0
|
||||||
13
fastlane/metadata/android/de-DE/changelogs/9.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
v1.3.1 - Multi-Device Sync Fix + Performance
|
||||||
|
|
||||||
|
Multi-Device JSON Sync (Danke Thomas!):
|
||||||
|
- JSON-Dateien syncen jetzt zwischen Geräten
|
||||||
|
- Funktioniert auch ohne Markdown aktiviert
|
||||||
|
- Keine doppelten Downloads mehr
|
||||||
|
|
||||||
|
Performance-Verbesserungen:
|
||||||
|
- Sync beschleunigt: 12-14s -> 2-3s
|
||||||
|
- Erster Sync nach MD-Export jetzt schnell
|
||||||
|
- JSON erreicht Markdown-Geschwindigkeit
|
||||||
|
|
||||||
|
+ Sync-Status-UI, Content MD-Import, Debug-Tools
|
||||||
@@ -4,12 +4,14 @@ HAUPTFUNKTIONEN:
|
|||||||
|
|
||||||
• Einfache Notizen erstellen und bearbeiten
|
• Einfache Notizen erstellen und bearbeiten
|
||||||
• WebDAV-Synchronisation mit eigenem Server
|
• WebDAV-Synchronisation mit eigenem Server
|
||||||
|
• Multi-Device Sync (Handy, Tablet, Desktop)
|
||||||
|
• Markdown-Export für Obsidian/Desktop-Editoren
|
||||||
• Automatische Synchronisation im Heim-WLAN
|
• Automatische Synchronisation im Heim-WLAN
|
||||||
• Konfigurierbares Sync-Interval (15/30/60 Minuten)
|
• Konfigurierbares Sync-Interval (15/30/60 Minuten)
|
||||||
• Transparente Batterie-Verbrauchsanzeige
|
• Transparente Batterie-Verbrauchsanzeige
|
||||||
• Material Design 3 mit Dynamic Colors (Android 12+)
|
• Material Design 3 mit Dynamic Colors (Android 12+)
|
||||||
• Swipe-to-Delete mit Bestätigungsdialog
|
• Swipe-to-Delete mit Server-Sync
|
||||||
• Server-Backup & Wiederherstellung
|
• Server-Backup & Wiederherstellung (Merge/Replace/Overwrite)
|
||||||
• Komplett offline nutzbar
|
• Komplett offline nutzbar
|
||||||
• Keine Werbung, keine Tracker
|
• Keine Werbung, keine Tracker
|
||||||
|
|
||||||
@@ -17,14 +19,23 @@ DATENSCHUTZ:
|
|||||||
|
|
||||||
Deine Daten bleiben bei dir! Die App kommuniziert nur mit deinem eigenen WebDAV-Server. Keine Cloud-Dienste, keine Tracking-Bibliotheken, keine Analysetools.
|
Deine Daten bleiben bei dir! Die App kommuniziert nur mit deinem eigenen WebDAV-Server. Keine Cloud-Dienste, keine Tracking-Bibliotheken, keine Analysetools.
|
||||||
|
|
||||||
|
MULTI-DEVICE SYNC:
|
||||||
|
|
||||||
|
• Notizen synchronisieren automatisch zwischen allen Geräten
|
||||||
|
• Lösch-Tracking verhindert "Zombie-Notizen"
|
||||||
|
• Intelligente Konfliktlösung durch Timestamps
|
||||||
|
• Markdown-Dateien für Desktop-Bearbeitung (Obsidian, VS Code, etc.)
|
||||||
|
• Änderungen von Desktop-Editoren werden automatisch importiert
|
||||||
|
|
||||||
SYNCHRONISATION:
|
SYNCHRONISATION:
|
||||||
|
|
||||||
• Unterstützt alle WebDAV-Server (Nextcloud, ownCloud, etc.)
|
• Unterstützt alle WebDAV-Server (Nextcloud, ownCloud, etc.)
|
||||||
• Konfigurierbares Interval: 15, 30 oder 60 Minuten
|
• Konfigurierbares Interval: 15, 30 oder 60 Minuten
|
||||||
|
• Optimierte Performance: überspringt unveränderte Dateien (~2-3s Sync-Zeit)
|
||||||
|
• E-Tag Caching für 20x schnellere "keine Änderungen" Checks
|
||||||
• Gemessener Akkuverbrauch: nur ~0.4% pro Tag (bei 30min)
|
• Gemessener Akkuverbrauch: nur ~0.4% pro Tag (bei 30min)
|
||||||
• Doze Mode optimiert für zuverlässige Background-Syncs
|
• Doze Mode optimiert für zuverlässige Background-Syncs
|
||||||
• Manuelle Synchronisation jederzeit möglich
|
• Manuelle Synchronisation jederzeit möglich
|
||||||
• Konfliktfreie Zusammenführung durch Timestamps
|
|
||||||
|
|
||||||
MATERIAL DESIGN 3:
|
MATERIAL DESIGN 3:
|
||||||
|
|
||||||
@@ -32,6 +43,7 @@ MATERIAL DESIGN 3:
|
|||||||
• Dynamic Colors (Material You) auf Android 12+
|
• Dynamic Colors (Material You) auf Android 12+
|
||||||
• Dark Mode Support
|
• Dark Mode Support
|
||||||
• Intuitive Gesten (Swipe-to-Delete)
|
• Intuitive Gesten (Swipe-to-Delete)
|
||||||
|
• Live Sync-Status Anzeige
|
||||||
|
|
||||||
Open Source unter MIT-Lizenz
|
Open Source unter MIT-Lizenz
|
||||||
Quellcode: https://github.com/inventory69/simple-notes-sync
|
Quellcode: https://github.com/inventory69/simple-notes-sync
|
||||||
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 93 KiB |
12
fastlane/metadata/android/en-US/changelogs/8.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
v1.3.0 - Multi-Device Sync
|
||||||
|
|
||||||
|
NEW FEATURES:
|
||||||
|
• Multi-Device Sync with deletion tracking (no zombie notes)
|
||||||
|
• Swipe gesture for server deletion (prevents duplicates on other devices)
|
||||||
|
• E-Tag performance optimization (~150ms vs 3s)
|
||||||
|
• Markdown Auto-Sync toggle (unified Export + Import)
|
||||||
|
• Manual Markdown sync button
|
||||||
|
• Server restore modes (Merge/Replace/Overwrite)
|
||||||
|
|
||||||
|
Thanks to Thomas from Bielefeld!
|
||||||
|
Compatible: v1.2.0-v1.3.0
|
||||||
13
fastlane/metadata/android/en-US/changelogs/9.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
v1.3.1 - Multi-Device Sync Fix + Performance
|
||||||
|
|
||||||
|
Multi-Device JSON Sync (Thanks Thomas!):
|
||||||
|
- JSON files now sync between devices
|
||||||
|
- Works without Markdown enabled
|
||||||
|
- No duplicate downloads anymore
|
||||||
|
|
||||||
|
Performance Improvements:
|
||||||
|
- Sync speed: 12-14s -> 2-3s
|
||||||
|
- First sync after MD export now fast
|
||||||
|
- JSON matches Markdown speed
|
||||||
|
|
||||||
|
+ Sync status UI, content MD import, debug tools
|
||||||
@@ -4,12 +4,14 @@ KEY FEATURES:
|
|||||||
|
|
||||||
• Create and edit simple notes
|
• Create and edit simple notes
|
||||||
• WebDAV synchronization with your own server
|
• WebDAV synchronization with your own server
|
||||||
|
• Multi-device sync (phone, tablet, desktop)
|
||||||
|
• Markdown export for Obsidian/desktop editors
|
||||||
• Automatic synchronization on home WiFi
|
• Automatic synchronization on home WiFi
|
||||||
• Configurable sync interval (15/30/60 minutes)
|
• Configurable sync interval (15/30/60 minutes)
|
||||||
• Transparent battery usage display
|
• Transparent battery usage display
|
||||||
• Material Design 3 with Dynamic Colors (Android 12+)
|
• Material Design 3 with Dynamic Colors (Android 12+)
|
||||||
• Swipe-to-delete with confirmation dialog
|
• Swipe-to-delete with server sync
|
||||||
• Server backup & restore
|
• Server backup & restore (Merge/Replace/Overwrite)
|
||||||
• Fully usable offline
|
• Fully usable offline
|
||||||
• No ads, no trackers
|
• No ads, no trackers
|
||||||
|
|
||||||
@@ -17,14 +19,23 @@ PRIVACY:
|
|||||||
|
|
||||||
Your data stays with you! The app only communicates with your own WebDAV server. No cloud services, no tracking libraries, no analytics tools.
|
Your data stays with you! The app only communicates with your own WebDAV server. No cloud services, no tracking libraries, no analytics tools.
|
||||||
|
|
||||||
|
MULTI-DEVICE SYNC:
|
||||||
|
|
||||||
|
• Notes sync automatically between all your devices
|
||||||
|
• Deletion tracking prevents "zombie notes"
|
||||||
|
• Smart conflict resolution through timestamps
|
||||||
|
• Markdown files for desktop editing (Obsidian, VS Code, etc.)
|
||||||
|
• Changes from desktop editors are auto-imported
|
||||||
|
|
||||||
SYNCHRONIZATION:
|
SYNCHRONIZATION:
|
||||||
|
|
||||||
• Supports all WebDAV servers (Nextcloud, ownCloud, etc.)
|
• Supports all WebDAV servers (Nextcloud, ownCloud, etc.)
|
||||||
• Configurable interval: 15, 30, or 60 minutes
|
• Configurable interval: 15, 30, or 60 minutes
|
||||||
|
• Optimized performance: skips unchanged files (~2-3s sync time)
|
||||||
|
• E-Tag caching for 20x faster "no changes" checks
|
||||||
• Measured battery consumption: only ~0.4% per day (at 30min)
|
• Measured battery consumption: only ~0.4% per day (at 30min)
|
||||||
• Doze Mode optimized for reliable background syncs
|
• Doze Mode optimized for reliable background syncs
|
||||||
• Manual synchronization available anytime
|
• Manual synchronization available anytime
|
||||||
• Conflict-free merging through timestamps
|
|
||||||
|
|
||||||
MATERIAL DESIGN 3:
|
MATERIAL DESIGN 3:
|
||||||
|
|
||||||
@@ -32,6 +43,7 @@ MATERIAL DESIGN 3:
|
|||||||
• Dynamic Colors (Material You) on Android 12+
|
• Dynamic Colors (Material You) on Android 12+
|
||||||
• Dark Mode support
|
• Dark Mode support
|
||||||
• Intuitive gestures (Swipe-to-delete)
|
• Intuitive gestures (Swipe-to-delete)
|
||||||
|
• Live sync status indicator
|
||||||
|
|
||||||
Open Source under MIT License
|
Open Source under MIT License
|
||||||
Source code: https://github.com/inventory69/simple-notes-sync
|
Source code: https://github.com/inventory69/simple-notes-sync
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 93 KiB |
@@ -1,8 +1,8 @@
|
|||||||
Categories:
|
Categories:
|
||||||
- Writing
|
- Writing
|
||||||
License: MIT
|
License: MIT
|
||||||
AuthorName: Liq Dettmer
|
AuthorName: inventory69
|
||||||
AuthorEmail: liq@dettmer.dev
|
AuthorEmail: admin@dettmer.dev
|
||||||
AuthorWebSite: https://dettmer.dev
|
AuthorWebSite: https://dettmer.dev
|
||||||
SourceCode: https://github.com/inventory69/simple-notes-sync
|
SourceCode: https://github.com/inventory69/simple-notes-sync
|
||||||
IssueTracker: https://github.com/inventory69/simple-notes-sync/issues
|
IssueTracker: https://github.com/inventory69/simple-notes-sync/issues
|
||||||
@@ -63,7 +63,63 @@ Builds:
|
|||||||
scandelete:
|
scandelete:
|
||||||
- android/gradle/wrapper
|
- android/gradle/wrapper
|
||||||
|
|
||||||
|
- versionName: 1.2.1
|
||||||
|
versionCode: 6
|
||||||
|
commit: v1.2.1
|
||||||
|
subdir: android/app
|
||||||
|
sudo:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y openjdk-17-jdk-headless
|
||||||
|
- update-java-alternatives -a
|
||||||
|
gradle:
|
||||||
|
- fdroid
|
||||||
|
prebuild: sed -i -e '/signingConfig/d' build.gradle.kts
|
||||||
|
scandelete:
|
||||||
|
- android/gradle/wrapper
|
||||||
|
|
||||||
|
- versionName: 1.2.2
|
||||||
|
versionCode: 7
|
||||||
|
commit: v1.2.2
|
||||||
|
subdir: android/app
|
||||||
|
sudo:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y openjdk-17-jdk-headless
|
||||||
|
- update-java-alternatives -a
|
||||||
|
gradle:
|
||||||
|
- fdroid
|
||||||
|
prebuild: sed -i -e '/signingConfig/d' build.gradle.kts
|
||||||
|
scandelete:
|
||||||
|
- android/gradle/wrapper
|
||||||
|
|
||||||
|
- versionName: 1.3.0
|
||||||
|
versionCode: 8
|
||||||
|
commit: v1.3.0
|
||||||
|
subdir: android/app
|
||||||
|
sudo:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y openjdk-17-jdk-headless
|
||||||
|
- update-java-alternatives -a
|
||||||
|
gradle:
|
||||||
|
- fdroid
|
||||||
|
prebuild: sed -i -e '/signingConfig/d' build.gradle.kts
|
||||||
|
scandelete:
|
||||||
|
- android/gradle/wrapper
|
||||||
|
|
||||||
|
- versionName: 1.3.1
|
||||||
|
versionCode: 9
|
||||||
|
commit: v1.3.1
|
||||||
|
subdir: android/app
|
||||||
|
sudo:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y openjdk-17-jdk-headless
|
||||||
|
- update-java-alternatives -a
|
||||||
|
gradle:
|
||||||
|
- fdroid
|
||||||
|
prebuild: sed -i -e '/signingConfig/d' build.gradle.kts
|
||||||
|
scandelete:
|
||||||
|
- android/gradle/wrapper
|
||||||
|
|
||||||
AutoUpdateMode: Version
|
AutoUpdateMode: Version
|
||||||
UpdateCheckMode: Tags
|
UpdateCheckMode: Tags
|
||||||
CurrentVersion: 1.2.0
|
CurrentVersion: 1.3.1
|
||||||
CurrentVersionCode: 5
|
CurrentVersionCode: 9
|
||||||
|
|||||||