├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── PRIVACY.md ├── README.md ├── app ├── build.gradle ├── lint.xml └── src │ ├── debug │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── de │ │ └── markusfisch │ │ └── android │ │ └── libra │ │ ├── activity │ │ ├── MainActivity.kt │ │ └── SplashActivity.kt │ │ ├── adapter │ │ ├── ArgumentsAdapter.kt │ │ └── IssuesAdapter.kt │ │ ├── app │ │ ├── ContentFrame.kt │ │ ├── LibraApp.kt │ │ ├── Permissions.kt │ │ ├── Recommendation.kt │ │ └── Share.kt │ │ ├── database │ │ ├── Cursor.kt │ │ ├── Database.kt │ │ ├── Export.kt │ │ └── Import.kt │ │ ├── fragment │ │ ├── ArgumentsFragment.kt │ │ ├── IssuesFragment.kt │ │ └── PreferencesFragment.kt │ │ ├── graphics │ │ └── Drawables.kt │ │ ├── io │ │ └── FileSaving.kt │ │ ├── preferences │ │ └── Preferences.kt │ │ └── widget │ │ ├── ArgumentView.kt │ │ ├── ScaleView.kt │ │ └── WeightBar.kt │ └── res │ ├── drawable-hdpi │ └── ic_splash.png │ ├── drawable-ldpi │ └── ic_splash.png │ ├── drawable-mdpi │ └── ic_splash.png │ ├── drawable-night-hdpi │ └── ic_splash.png │ ├── drawable-night-ldpi │ └── ic_splash.png │ ├── drawable-night-mdpi │ └── ic_splash.png │ ├── drawable-night-xhdpi │ └── ic_splash.png │ ├── drawable-night-xxhdpi │ └── ic_splash.png │ ├── drawable-night-xxxhdpi │ └── ic_splash.png │ ├── drawable-night │ ├── empty_arguments.xml │ ├── empty_issues.xml │ ├── ic_action_add.xml │ ├── ic_action_duplicate.xml │ ├── ic_action_edit.xml │ ├── ic_action_move_down.xml │ ├── ic_action_move_up.xml │ ├── ic_action_preferences.xml │ ├── ic_action_remove.xml │ ├── ic_action_restore.xml │ ├── ic_action_share.xml │ ├── ic_action_sort.xml │ ├── ic_save_argument.xml │ ├── scale_bar.xml │ ├── scale_frame.xml │ └── scale_pan.xml │ ├── drawable-v21 │ └── list_selector.xml │ ├── drawable-xhdpi │ └── ic_splash.png │ ├── drawable-xxhdpi │ └── ic_splash.png │ ├── drawable-xxxhdpi │ └── ic_splash.png │ ├── drawable │ ├── background_argument_editor.xml │ ├── background_splash.xml │ ├── empty_arguments.xml │ ├── empty_issues.xml │ ├── ic_action_add.xml │ ├── ic_action_duplicate.xml │ ├── ic_action_edit.xml │ ├── ic_action_move_down.xml │ ├── ic_action_move_up.xml │ ├── ic_action_preferences.xml │ ├── ic_action_remove.xml │ ├── ic_action_restore.xml │ ├── ic_action_share.xml │ ├── ic_action_sort.xml │ ├── ic_issue_incomplete.xml │ ├── ic_issue_maybe.xml │ ├── ic_issue_no.xml │ ├── ic_issue_yes.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_monochrome.xml │ ├── ic_save_argument.xml │ ├── list_selector.xml │ ├── scale_bar.xml │ ├── scale_frame.xml │ └── scale_pan.xml │ ├── layout │ ├── activity_main.xml │ ├── dialog_enter_name.xml │ ├── dialog_save_as.xml │ ├── fragment_arguments.xml │ ├── fragment_issues.xml │ ├── item_argument.xml │ ├── item_issue.xml │ └── toolbar.xml │ ├── menu │ ├── fragment_argument_edit.xml │ ├── fragment_arguments.xml │ ├── fragment_issue_edit.xml │ └── fragment_issues.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-ldpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-bg │ ├── plurals.xml │ └── strings.xml │ ├── values-de │ ├── plurals.xml │ └── strings.xml │ ├── values-es │ ├── plurals.xml │ └── strings.xml │ ├── values-fr │ ├── plurals.xml │ └── strings.xml │ ├── values-night │ ├── colors.xml │ └── styles.xml │ ├── values-nl │ ├── plurals.xml │ └── strings.xml │ ├── values-pt-rBR │ ├── plurals.xml │ └── strings.xml │ ├── values-ru │ ├── plurals.xml │ └── strings.xml │ ├── values-uk │ ├── plurals.xml │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── design.xml │ ├── plurals.xml │ ├── share_options.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── backup_rules.xml │ ├── extraction_rules.xml │ └── preferences.xml ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── .txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── screencap-arguments-dark.png │ │ │ ├── screencap-arguments-light.png │ │ │ ├── screencap-issues-dark.png │ │ │ └── screencap-issues-light.png │ ├── short_description.txt │ └── title.txt │ ├── es │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr │ ├── changelogs │ │ ├── 14.txt │ │ └── 15.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── screencap-arguments-dark.png │ │ │ ├── screencap-arguments-light.png │ │ │ ├── screencap-issues-dark.png │ │ │ └── screencap-issues-light.png │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── changelogs │ │ └── 15.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── screencap-arguments-dark.png │ │ │ ├── screencap-arguments-light.png │ │ │ ├── screencap-issues-dark.png │ │ │ └── screencap-issues-light.png │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── uk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── svg ├── debug ├── ic_launcher.svg └── ic_launcher_foreground.svg ├── empty_arguments.svg ├── empty_issues.svg ├── feature_graphic.svg ├── google_play_icon.svg ├── ic_action_add.svg ├── ic_action_edit.svg ├── ic_action_remove.svg ├── ic_action_sort.svg ├── ic_issue_incomplete.svg ├── ic_issue_maybe.svg ├── ic_issue_no.svg ├── ic_issue_yes.svg ├── ic_launcher.svg ├── ic_launcher_background.svg ├── ic_launcher_foreground.svg ├── ic_launcher_monochrome.svg ├── ic_save_argument.svg ├── ic_splash.svg ├── night ├── empty_arguments.svg ├── empty_issues.svg ├── ic_splash.svg ├── scale_bar.svg ├── scale_frame.svg └── scale_pan.svg ├── scale_bar.svg ├── scale_frame.svg ├── scale_pan.svg └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/Makefile -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/lint.xml -------------------------------------------------------------------------------- /app/src/debug/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/activity/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/activity/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/adapter/ArgumentsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/adapter/ArgumentsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/adapter/IssuesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/adapter/IssuesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/app/ContentFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/app/ContentFrame.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/app/LibraApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/app/LibraApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/app/Permissions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/app/Permissions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/app/Recommendation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/app/Recommendation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/app/Share.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/app/Share.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/database/Cursor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/database/Cursor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/database/Database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/database/Database.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/database/Export.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/database/Export.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/database/Import.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/database/Import.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/fragment/ArgumentsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/fragment/ArgumentsFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/fragment/IssuesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/fragment/IssuesFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/fragment/PreferencesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/fragment/PreferencesFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/graphics/Drawables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/graphics/Drawables.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/io/FileSaving.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/io/FileSaving.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/preferences/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/preferences/Preferences.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/widget/ArgumentView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/widget/ArgumentView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/widget/ScaleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/widget/ScaleView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/markusfisch/android/libra/widget/WeightBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/kotlin/de/markusfisch/android/libra/widget/WeightBar.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-hdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-ldpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-mdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-hdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-hdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-ldpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-ldpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-mdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-mdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-xhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-xhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-xxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-xxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-xxxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night-xxxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/empty_arguments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/empty_arguments.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/empty_issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/empty_issues.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_duplicate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_duplicate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_move_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_move_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_move_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_move_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_restore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_action_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_action_sort.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_save_argument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/ic_save_argument.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/scale_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/scale_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/scale_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/scale_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/scale_pan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-night/scale_pan.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-v21/list_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-xhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-xxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable-xxxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_argument_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/background_argument_editor.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_arguments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/empty_arguments.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/empty_issues.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_duplicate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_duplicate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_move_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_move_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_move_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_move_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_preferences.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_remove.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_restore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_action_sort.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_issue_incomplete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_issue_incomplete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_issue_maybe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_issue_maybe.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_issue_no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_issue_no.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_issue_yes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_issue_yes.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_save_argument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/ic_save_argument.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/list_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scale_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/scale_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scale_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/scale_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scale_pan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/drawable/scale_pan.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_enter_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/dialog_enter_name.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_save_as.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/dialog_save_as.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_arguments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/fragment_arguments.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/fragment_issues.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_argument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/item_argument.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_issue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/item_issue.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/layout/toolbar.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/fragment_argument_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/menu/fragment_argument_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/fragment_arguments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/menu/fragment_arguments.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/fragment_issue_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/menu/fragment_issue_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/fragment_issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/menu/fragment_issues.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-bg/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-bg/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-de/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-es/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-fr/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-nl/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-pt-rBR/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-ru/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-uk/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/design.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/design.xml -------------------------------------------------------------------------------- /app/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /app/src/main/res/values/share_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/share_options.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/xml/extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- 1 | * Add Dark theme 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/11.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/12.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- 1 | * Add French translation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | * Add Spanish translation 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/17.txt: -------------------------------------------------------------------------------- 1 | * Set cursor at the end of an argument when editing 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | * Update Dutch translation 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/19.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/2.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | * Fix calculating sums when sharing arguments 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/21.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- 1 | * Add Bulgarian translation 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/23.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- 1 | * Target Android 16 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- 1 | * Fix handling preferences 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | * Replaced rastered icons with vector drawables 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/7.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/changelogs/8.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- 1 | * Update app icon 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-arguments-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-arguments-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-arguments-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-arguments-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-issues-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-issues-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-issues-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/screencap-issues-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Decisions 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/es/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/es/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/title.txt: -------------------------------------------------------------------------------- 1 | Decisiones 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/15.txt: -------------------------------------------------------------------------------- 1 | * Ajout d’une traduction francophone 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/images/phoneScreenshots/screencap-arguments-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/images/phoneScreenshots/screencap-arguments-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/images/phoneScreenshots/screencap-arguments-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/images/phoneScreenshots/screencap-arguments-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/images/phoneScreenshots/screencap-issues-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/images/phoneScreenshots/screencap-issues-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/images/phoneScreenshots/screencap-issues-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/fr/images/phoneScreenshots/screencap-issues-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | Aide à la prise de décision en pondérant les arguments 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/title.txt: -------------------------------------------------------------------------------- 1 | Décisions 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/changelogs/15.txt: -------------------------------------------------------------------------------- 1 | * Tradução para o francês adicionada 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-arguments-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-arguments-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-arguments-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-arguments-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-issues-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-issues-dark.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-issues-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/screencap-issues-light.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Decisões 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Решения -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/uk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/fastlane/metadata/android/uk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/title.txt: -------------------------------------------------------------------------------- 1 | Рішення 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /svg/debug/ic_launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/debug/ic_launcher.svg -------------------------------------------------------------------------------- /svg/debug/ic_launcher_foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/debug/ic_launcher_foreground.svg -------------------------------------------------------------------------------- /svg/empty_arguments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/empty_arguments.svg -------------------------------------------------------------------------------- /svg/empty_issues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/empty_issues.svg -------------------------------------------------------------------------------- /svg/feature_graphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/feature_graphic.svg -------------------------------------------------------------------------------- /svg/google_play_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/google_play_icon.svg -------------------------------------------------------------------------------- /svg/ic_action_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_action_add.svg -------------------------------------------------------------------------------- /svg/ic_action_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_action_edit.svg -------------------------------------------------------------------------------- /svg/ic_action_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_action_remove.svg -------------------------------------------------------------------------------- /svg/ic_action_sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_action_sort.svg -------------------------------------------------------------------------------- /svg/ic_issue_incomplete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_issue_incomplete.svg -------------------------------------------------------------------------------- /svg/ic_issue_maybe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_issue_maybe.svg -------------------------------------------------------------------------------- /svg/ic_issue_no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_issue_no.svg -------------------------------------------------------------------------------- /svg/ic_issue_yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_issue_yes.svg -------------------------------------------------------------------------------- /svg/ic_launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_launcher.svg -------------------------------------------------------------------------------- /svg/ic_launcher_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_launcher_background.svg -------------------------------------------------------------------------------- /svg/ic_launcher_foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_launcher_foreground.svg -------------------------------------------------------------------------------- /svg/ic_launcher_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_launcher_monochrome.svg -------------------------------------------------------------------------------- /svg/ic_save_argument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_save_argument.svg -------------------------------------------------------------------------------- /svg/ic_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/ic_splash.svg -------------------------------------------------------------------------------- /svg/night/empty_arguments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/empty_arguments.svg -------------------------------------------------------------------------------- /svg/night/empty_issues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/empty_issues.svg -------------------------------------------------------------------------------- /svg/night/ic_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/ic_splash.svg -------------------------------------------------------------------------------- /svg/night/scale_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/scale_bar.svg -------------------------------------------------------------------------------- /svg/night/scale_frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/scale_frame.svg -------------------------------------------------------------------------------- /svg/night/scale_pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/night/scale_pan.svg -------------------------------------------------------------------------------- /svg/scale_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/scale_bar.svg -------------------------------------------------------------------------------- /svg/scale_frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/scale_frame.svg -------------------------------------------------------------------------------- /svg/scale_pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/scale_pan.svg -------------------------------------------------------------------------------- /svg/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markusfisch/Libra/HEAD/svg/update.sh --------------------------------------------------------------------------------