Files
simple-notes-sync/CONTRIBUTING.md
inventory69 cf54f44377 docs(v1.8.1): comprehensive metadata & documentation update for F-Droid release
Complete overhaul of all metadata and documentation for v1.8.1:

F-Droid Critical:
- Fix broken umlauts in de-DE/10.txt changelog (für, hinzugefügt, aufgeräumt)
- Shorten de-DE/7.txt changelog for brevity
- Remove trailing newline from en-US/title.txt

Version & Accuracy:
- Update README badges (Android 7.0+) and footer (v1.8.1)
- Add widgets, sorting, parallel sync to highlights
- Fix APK names in workflows (removed "universal")
- Update cache action v3 → v4 in PR workflow
- Fix CONTRIBUTING.md filename references
- Update QUICKSTART guides (APK name, typo, Android version, docs links)

Feature Documentation:
- Update full_description.txt (both locales) - remove NEW/NEU labels, add v1.8.0+ features
- Major FEATURES.md update - add Views & Layout, Widgets sections, updated tech stack
- Add UPCOMING.md v1.7.0-1.8.1 as released sections
- Update DOCS.md roadmap references and dates to Feb 2026
- Create missing en-US changelogs 1.txt, 2.txt

Supplementary Fixes:
- Update BACKUP.md - add encryption docs, fix cross-references
- Add CHANGELOG.md reference links v1.2.1-v1.8.1 (15 missing)
- Fix DEBUG_APK.md duplicate header
- Rewrite fastlane/README.md with both locales and limits table
- Create SELF_SIGNED_SSL.de.md (full German translation)

Affects: 26 files across READMEs, docs/, fastlane/, workflows
2026-02-11 15:45:51 +01:00

6.4 KiB

Contributing to Simple Notes Sync 🤝

Beiträge sind willkommen! / Contributions are welcome!

🌍 Languages: Deutsch · English


Deutsch

Danke, dass du zu Simple Notes Sync beitragen möchtest!

🚀 Schnellstart

  1. Fork & Clone

    git clone https://github.com/inventory69/simple-notes-sync.git
    cd simple-notes-sync
    
  2. Branch erstellen

    git checkout -b feature/mein-feature
    # oder
    git checkout -b fix/mein-bugfix
    
  3. Änderungen machen

    • Code schreiben
    • Testen
    • Committen mit aussagekräftiger Message
  4. Pull Request erstellen

    • Push deinen Branch: git push origin feature/mein-feature
    • Gehe zu GitHub und erstelle einen Pull Request
    • Beschreibe deine Änderungen

🧪 Automatische Tests

Wenn du einen Pull Request erstellst, läuft automatisch ein Build Check:

  • Debug APKs werden gebaut (Standard + F-Droid)
  • Unit Tests werden ausgeführt
  • APKs werden als Artefakte hochgeladen (zum Testen)
  • Build-Status wird als Kommentar im PR gepostet

Wichtig: Der Build muss erfolgreich sein (grüner Haken ) bevor der PR gemerged werden kann.

📱 Android App Development

Build lokal testen:

cd android

# Debug Build
./gradlew assembleStandardDebug

# Tests ausführen
./gradlew test

# Lint Check
./gradlew lint

Anforderungen:

  • Android SDK 36 (Target)
  • Android SDK 24 (Minimum)
  • JDK 17
  • Kotlin 1.9+

📝 Code Style

  • Kotlin: Folge den Kotlin Coding Conventions
  • Formatierung: Android Studio Default Formatter
  • Kommentare: Deutsch oder Englisch (bevorzugt Englisch für Code)

🐛 Bug Reports

Nutze die Bug Report Template mit:

  • Android Version
  • App Version
  • Schritte zum Reproduzieren
  • Erwartetes vs. tatsächliches Verhalten

💡 Feature Requests

Nutze die Feature Request Template und beschreibe:

  • Was soll hinzugefügt werden
  • Warum ist es nützlich
  • Wie könnte es funktionieren

📚 Dokumentation

Dokumentations-Verbesserungen sind auch Contributions!

Dateien:

  • README.de.md / README.md - Übersicht
  • QUICKSTART.de.md / QUICKSTART.md - Schritt-für-Schritt Anleitung
  • docs/DOCS.de.md / docs/DOCS.md - Technische Details
  • server/README.de.md / server/README.md - Server Setup

Bitte: Halte beide Sprachen (DE/EN) synchron!

Pull Request Checklist

  • Code kompiliert lokal (./gradlew assembleStandardDebug)
  • Tests laufen durch (./gradlew test)
  • Keine neuen Lint-Warnungen
  • Commit-Messages sind aussagekräftig
  • Dokumentation aktualisiert (falls nötig)
  • Beide Sprachen aktualisiert (bei Doku-Änderungen)

🎯 Was wird akzeptiert?

Gerne:

  • Bug Fixes
  • Performance-Verbesserungen
  • Neue Features (nach Diskussion in einem Issue)
  • Dokumentations-Verbesserungen
  • Tests
  • UI/UX Verbesserungen

Schwierig:

  • Breaking Changes (bitte erst als Issue diskutieren)
  • Komplett neue Architektur
  • Dependencies mit fragwürdigen Lizenzen

📄 Lizenz

Indem du contributest, stimmst du zu dass dein Code unter der MIT License veröffentlicht wird.


English

Thanks for wanting to contribute to Simple Notes Sync!

🚀 Quick Start

  1. Fork & Clone

    git clone https://github.com/inventory69/simple-notes-sync.git
    cd simple-notes-sync
    
  2. Create Branch

    git checkout -b feature/my-feature
    # or
    git checkout -b fix/my-bugfix
    
  3. Make Changes

    • Write code
    • Test
    • Commit with meaningful message
  4. Create Pull Request

    • Push your branch: git push origin feature/my-feature
    • Go to GitHub and create a Pull Request
    • Describe your changes

🧪 Automated Tests

When you create a Pull Request, an automatic Build Check runs:

  • Debug APKs are built (Standard + F-Droid)
  • Unit tests are executed
  • APKs are uploaded as artifacts (for testing)
  • Build status is posted as comment in PR

Important: The build must succeed (green checkmark ) before the PR can be merged.

📱 Android App Development

Test build locally:

cd android

# Debug Build
./gradlew assembleStandardDebug

# Run tests
./gradlew test

# Lint Check
./gradlew lint

Requirements:

  • Android SDK 36 (Target)
  • Android SDK 24 (Minimum)
  • JDK 17
  • Kotlin 1.9+

📝 Code Style

  • Kotlin: Follow Kotlin Coding Conventions
  • Formatting: Android Studio Default Formatter
  • Comments: German or English (preferably English for code)

🐛 Bug Reports

Use the Bug Report Template with:

  • Android version
  • App version
  • Steps to reproduce
  • Expected vs. actual behavior

💡 Feature Requests

Use the Feature Request Template and describe:

  • What should be added
  • Why is it useful
  • How could it work

📚 Documentation

Documentation improvements are also contributions!

Files:

  • README.de.md / README.md - Overview
  • QUICKSTART.de.md / QUICKSTART.md - Step-by-step guide
  • docs/DOCS.de.md / docs/DOCS.md - Technical details
  • server/README.de.md / server/README.md - Server setup

Please: Keep both languages (DE/EN) in sync!

Pull Request Checklist

  • Code compiles locally (./gradlew assembleStandardDebug)
  • Tests pass (./gradlew test)
  • No new lint warnings
  • Commit messages are meaningful
  • Documentation updated (if needed)
  • Both languages updated (for doc changes)

🎯 What Gets Accepted?

Welcome:

  • Bug fixes
  • Performance improvements
  • New features (after discussion in an issue)
  • Documentation improvements
  • Tests
  • UI/UX improvements

Difficult:

  • Breaking changes (please discuss in issue first)
  • Completely new architecture
  • Dependencies with questionable licenses

📄 License

By contributing, you agree that your code will be published under the MIT License.


🆘 Fragen? / Questions?

Öffne ein Issue oder nutze die Question Template.

Happy Coding! 🚀