Showing preview only (1,697K chars total). Download the full file or copy to clipboard to get everything.
Repository: emavgl/oinkoin
Branch: master
Commit: 1eaae2e0463b
Files: 395
Total size: 1.5 MB
Directory structure:
gitextract_kx9s49de/
├── .claude/
│ └── skills/
│ └── translate/
│ └── SKILL.md
├── .githooks/
│ └── pre-commit
├── .github/
│ ├── FUNDING.yml
│ └── workflows/
│ ├── build-alpha-arm64.yml
│ ├── manual-build.yml
│ ├── on-release.yml
│ └── release-alpha.yml
├── .gitignore
├── .gitmodules
├── .metadata
├── .vscode/
│ └── launch.json
├── LICENSE
├── README.md
├── analysis_options.yaml
├── android/
│ ├── .gitignore
│ ├── app/
│ │ ├── build.gradle
│ │ └── src/
│ │ ├── alpha/
│ │ │ └── res/
│ │ │ └── mipmap-anydpi-v26/
│ │ │ └── ic_launcher.xml
│ │ ├── debug/
│ │ │ └── AndroidManifest.xml
│ │ ├── main/
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── kotlin/
│ │ │ │ └── com/
│ │ │ │ └── example/
│ │ │ │ └── piggybank/
│ │ │ │ └── MainActivity.kt
│ │ │ └── res/
│ │ │ ├── drawable/
│ │ │ │ └── launch_background.xml
│ │ │ ├── mipmap-anydpi-v26/
│ │ │ │ └── ic_launcher.xml
│ │ │ ├── values/
│ │ │ │ └── styles.xml
│ │ │ └── xml/
│ │ │ └── locales_config.xml
│ │ └── profile/
│ │ └── AndroidManifest.xml
│ ├── build.gradle
│ ├── gradle/
│ │ └── wrapper/
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── settings.gradle
│ └── settings_aar.gradle
├── appium/
│ ├── .gitattributes
│ ├── .gitignore
│ ├── app/
│ │ ├── build.gradle
│ │ └── src/
│ │ └── test/
│ │ └── java/
│ │ └── com/
│ │ └── github/
│ │ └── emavgl/
│ │ └── oinkoin/
│ │ └── tests/
│ │ └── appium/
│ │ ├── BaseTest.java
│ │ ├── HomePageTest.java
│ │ ├── NavigationBarTest.java
│ │ ├── pages/
│ │ │ ├── BasePage.java
│ │ │ ├── CategoriesPage.java
│ │ │ ├── CategorySelectionPage.java
│ │ │ ├── EditRecordPage.java
│ │ │ ├── HomePage.java
│ │ │ └── SettingsPage.java
│ │ └── utils/
│ │ ├── CategoryType.java
│ │ ├── Constants.java
│ │ ├── RecordData.java
│ │ ├── RepeatOption.java
│ │ └── Utils.java
│ ├── gradle/
│ │ └── wrapper/
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── assets/
│ └── locales/
│ ├── ar.json
│ ├── ca.json
│ ├── da.json
│ ├── de.json
│ ├── el.json
│ ├── en-GB.json
│ ├── en-US.json
│ ├── es.json
│ ├── fr.json
│ ├── hr.json
│ ├── it.json
│ ├── ja.json
│ ├── or-IN.json
│ ├── pl.json
│ ├── pt-BR.json
│ ├── pt-PT.json
│ ├── ru.json
│ ├── ta-IN.json
│ ├── tr.json
│ ├── uk-UA.json
│ ├── vec-IT.json
│ └── zh-CN.json
├── build.sh
├── build_linux.sh
├── bump_new_version.py
├── create_release_blog_post.py
├── devtools_options.yaml
├── distribute_options.yaml
├── ios/
│ ├── Flutter/
│ │ └── ephemeral/
│ │ ├── flutter_lldb_helper.py
│ │ └── flutter_lldbinit
│ └── PLACEHOLDER
├── lib/
│ ├── categories/
│ │ ├── categories-grid.dart
│ │ ├── categories-list.dart
│ │ ├── categories-tab-page-edit.dart
│ │ ├── categories-tab-page-view.dart
│ │ ├── category-sort-option.dart
│ │ └── edit-category-page.dart
│ ├── components/
│ │ ├── category_icon_circle.dart
│ │ ├── tag_chip.dart
│ │ └── year-picker.dart
│ ├── generated_plugin_registrant.dart
│ ├── helpers/
│ │ ├── alert-dialog-builder.dart
│ │ ├── color-utils.dart
│ │ ├── date_picker_utils.dart
│ │ ├── datetime-utility-functions.dart
│ │ ├── first_day_of_week_localizations.dart
│ │ ├── records-generator.dart
│ │ └── records-utility-functions.dart
│ ├── i18n/
│ │ └── i18n_helper.dart
│ ├── i18n.dart
│ ├── main.dart
│ ├── models/
│ │ ├── backup.dart
│ │ ├── category-icons.dart
│ │ ├── category-type.dart
│ │ ├── category.dart
│ │ ├── model.dart
│ │ ├── record-tag-association.dart
│ │ ├── record.dart
│ │ ├── records-per-category.dart
│ │ ├── records-per-day.dart
│ │ ├── records-summary-by-category.dart
│ │ ├── recurrent-period.dart
│ │ └── recurrent-record-pattern.dart
│ ├── premium/
│ │ ├── splash-screen.dart
│ │ └── util-widgets.dart
│ ├── records/
│ │ ├── components/
│ │ │ ├── days-summary-box-card.dart
│ │ │ ├── filter_modal_content.dart
│ │ │ ├── records-day-list.dart
│ │ │ ├── records-per-day-card.dart
│ │ │ ├── styled_action_buttons.dart
│ │ │ ├── styled_popup_menu_button.dart
│ │ │ ├── tab_records_app_bar.dart
│ │ │ ├── tab_records_date_picker.dart
│ │ │ ├── tab_records_search_app_bar.dart
│ │ │ └── tag_selection_dialog.dart
│ │ ├── controllers/
│ │ │ └── tab_records_controller.dart
│ │ ├── edit-record-page.dart
│ │ ├── formatter/
│ │ │ ├── auto_decimal_shift_formatter.dart
│ │ │ ├── calculator-normalizer.dart
│ │ │ └── group-separator-formatter.dart
│ │ └── records-page.dart
│ ├── recurrent_record_patterns/
│ │ └── patterns-page-view.dart
│ ├── services/
│ │ ├── backup-service.dart
│ │ ├── csv-service.dart
│ │ ├── database/
│ │ │ ├── database-interface.dart
│ │ │ ├── exceptions.dart
│ │ │ ├── sqlite-database.dart
│ │ │ └── sqlite-migration-service.dart
│ │ ├── locale-service.dart
│ │ ├── logger.dart
│ │ ├── platform-file-service.dart
│ │ ├── recurrent-record-service.dart
│ │ └── service-config.dart
│ ├── settings/
│ │ ├── backup-page.dart
│ │ ├── backup-restore-dialogs.dart
│ │ ├── backup-retention-period.dart
│ │ ├── clickable-customization-item.dart
│ │ ├── components/
│ │ │ └── setting-separator.dart
│ │ ├── constants/
│ │ │ ├── homepage-time-interval.dart
│ │ │ ├── overview-time-interval.dart
│ │ │ ├── preferences-defaults-values.dart
│ │ │ ├── preferences-keys.dart
│ │ │ └── preferences-options.dart
│ │ ├── customization-page.dart
│ │ ├── dropdown-customization-item.dart
│ │ ├── feedback-page.dart
│ │ ├── preferences-utils.dart
│ │ ├── settings-item.dart
│ │ ├── settings-page.dart
│ │ ├── style.dart
│ │ ├── switch-customization-item.dart
│ │ └── text-input-customization-item.dart
│ ├── shell.dart
│ ├── statistics/
│ │ ├── aggregated-list-view.dart
│ │ ├── balance-chart-models.dart
│ │ ├── balance-comparison-chart.dart
│ │ ├── balance-tab-page.dart
│ │ ├── bar-chart-card.dart
│ │ ├── base-statistics-page.dart
│ │ ├── categories-pie-chart.dart
│ │ ├── category-tag-balance-page.dart
│ │ ├── category-tag-records-page.dart
│ │ ├── group-by-dropdown.dart
│ │ ├── overview-card.dart
│ │ ├── record-filters.dart
│ │ ├── statistics-calculator.dart
│ │ ├── statistics-models.dart
│ │ ├── statistics-page.dart
│ │ ├── statistics-summary-card.dart
│ │ ├── statistics-tab-page.dart
│ │ ├── statistics-utils.dart
│ │ ├── summary-models.dart
│ │ ├── summary-rows.dart
│ │ ├── tags-pie-chart.dart
│ │ └── unified-balance-card.dart
│ ├── style.dart
│ ├── tags/
│ │ └── tags-page-view.dart
│ └── utils/
│ └── constants.dart
├── linux/
│ ├── .gitignore
│ ├── CMakeLists.txt
│ ├── com.github.emavgl.oinkoin.desktop
│ ├── flutter/
│ │ ├── CMakeLists.txt
│ │ ├── generated_plugin_registrant.cc
│ │ ├── generated_plugin_registrant.h
│ │ └── generated_plugins.cmake
│ ├── packaging/
│ │ ├── appimage/
│ │ │ └── make_config.yaml
│ │ ├── deb/
│ │ │ └── make_config.yaml
│ │ └── rpm/
│ │ └── make_config.yaml
│ └── runner/
│ ├── CMakeLists.txt
│ ├── main.cc
│ ├── my_application.cc
│ └── my_application.h
├── macos/
│ ├── Flutter/
│ │ └── GeneratedPluginRegistrant.swift
│ └── PLACEHOLDER
├── metadata/
│ ├── ca/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── en-US/
│ │ ├── changelogs/
│ │ │ ├── 6008.txt
│ │ │ ├── 6009.txt
│ │ │ ├── 6016.txt
│ │ │ ├── 6017.txt
│ │ │ ├── 6018.txt
│ │ │ ├── 6019.txt
│ │ │ ├── 6020.txt
│ │ │ ├── 6021.txt
│ │ │ ├── 6022.txt
│ │ │ ├── 6023.txt
│ │ │ ├── 6024.txt
│ │ │ ├── 6025.txt
│ │ │ ├── 6026.txt
│ │ │ ├── 6027.txt
│ │ │ ├── 6028.txt
│ │ │ ├── 6029.txt
│ │ │ ├── 6030.txt
│ │ │ ├── 6031.txt
│ │ │ ├── 6032.txt
│ │ │ ├── 6033.txt
│ │ │ ├── 6034.txt
│ │ │ ├── 6035.txt
│ │ │ ├── 6036.txt
│ │ │ ├── 6037.txt
│ │ │ ├── 6038.txt
│ │ │ ├── 6039.txt
│ │ │ ├── 6040.txt
│ │ │ ├── 6041.txt
│ │ │ ├── 6042.txt
│ │ │ ├── 6043.txt
│ │ │ ├── 6044.txt
│ │ │ ├── 6045.txt
│ │ │ ├── 6046.txt
│ │ │ ├── 6047.txt
│ │ │ ├── 6048.txt
│ │ │ ├── 6049.txt
│ │ │ ├── 6050.txt
│ │ │ ├── 6051.txt
│ │ │ ├── 6052.txt
│ │ │ ├── 6053.txt
│ │ │ ├── 6054.txt
│ │ │ ├── 6055.txt
│ │ │ ├── 6056.txt
│ │ │ ├── 6057.txt
│ │ │ ├── 6058.txt
│ │ │ ├── 6059.txt
│ │ │ ├── 6060.txt
│ │ │ ├── 6061.txt
│ │ │ ├── 6062.txt
│ │ │ ├── 6063.txt
│ │ │ ├── 6064.txt
│ │ │ ├── 6065.txt
│ │ │ ├── 6066.txt
│ │ │ ├── 6067.txt
│ │ │ ├── 6068.txt
│ │ │ ├── 6069.txt
│ │ │ ├── 6070.txt
│ │ │ ├── 6071.txt
│ │ │ ├── 6072.txt
│ │ │ ├── 6073.txt
│ │ │ ├── 6074.txt
│ │ │ ├── 6075.txt
│ │ │ ├── 6076.txt
│ │ │ ├── 6077.txt
│ │ │ ├── 6078.txt
│ │ │ ├── 6079.txt
│ │ │ ├── 6080.txt
│ │ │ ├── 6081.txt
│ │ │ ├── 6082.txt
│ │ │ ├── 6083.txt
│ │ │ ├── 6084.txt
│ │ │ ├── 6085.txt
│ │ │ ├── 6086.txt
│ │ │ ├── 6087.txt
│ │ │ ├── 6088.txt
│ │ │ ├── 6089.txt
│ │ │ ├── 6090.txt
│ │ │ ├── 6091.txt
│ │ │ ├── 6092.txt
│ │ │ ├── 6093.txt
│ │ │ ├── 6094.txt
│ │ │ ├── 7095.txt
│ │ │ ├── 7096.txt
│ │ │ ├── 7097.txt
│ │ │ ├── 7098.txt
│ │ │ ├── 7099.txt
│ │ │ ├── 7100.txt
│ │ │ ├── 7101.txt
│ │ │ ├── 7102.txt
│ │ │ ├── 7103.txt
│ │ │ ├── 7104.txt
│ │ │ ├── 7105.txt
│ │ │ ├── 7106.txt
│ │ │ ├── 7107.txt
│ │ │ ├── 7108.txt
│ │ │ ├── 7109.txt
│ │ │ ├── 7110.txt
│ │ │ ├── 7111.txt
│ │ │ ├── 7112.txt
│ │ │ ├── 7113.txt
│ │ │ ├── 7114.txt
│ │ │ ├── 7115.txt
│ │ │ └── 7116.txt
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── ja/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ └── ru/
│ ├── full_description.txt
│ └── short_description.txt
├── privacy-policy.md
├── pubspec.yaml
├── scripts/
│ ├── oinkoin_from_csv_importer.py
│ ├── update-submodules.sh
│ └── update_en_strings.py
├── test/
│ ├── backup/
│ │ ├── README.md
│ │ ├── backup_service_test.dart
│ │ ├── backup_service_test.mocks.dart
│ │ ├── database_interface.mocks.dart
│ │ ├── import_tag_association_bug_test.dart
│ │ ├── import_tag_association_bug_test.mocks.dart
│ │ ├── user_data_import_verification_test.dart
│ │ └── user_data_import_verification_test.mocks.dart
│ ├── backup_import_tag_bug_test.dart
│ ├── chart_ticks_test.dart
│ ├── compute_number_of_intervals_test.dart
│ ├── csv_service_test.dart
│ ├── datetime_utility_functions_locale_test.dart
│ ├── datetime_utility_functions_test.dart
│ ├── formatter/
│ │ ├── auto_decimal_shift_formatter_test.dart
│ │ └── formatter_integration_test.dart
│ ├── future_records_integration_test.dart
│ ├── future_recurrent_records_test.dart
│ ├── helpers/
│ │ └── test_database.dart
│ ├── locale_debug_test.dart
│ ├── models/
│ │ ├── category.dart
│ │ ├── record.dart
│ │ └── recurrent_pattern.dart
│ ├── overview_card_calculations_test.dart
│ ├── record_filters_test.dart
│ ├── recurrent_pattern_tags_integration_test.dart
│ ├── recurrent_record_test.dart
│ ├── show_future_records_preference_test.dart
│ ├── statistics_drilldown_label_test.dart
│ ├── tab_records_controller_test.dart
│ ├── tag_management_test.dart
│ └── test_database.dart
└── website/
├── .gitignore
├── DEPLOYMENT.md
├── QUICKSTART.md
├── README.md
├── astro.config.mjs
├── package.json
├── public/
│ ├── .assetsignore
│ └── robots.txt
├── src/
│ ├── components/
│ │ ├── Download.astro
│ │ ├── Features.astro
│ │ ├── Footer.astro
│ │ ├── Hero.astro
│ │ ├── NavBar.astro
│ │ └── Screenshots.astro
│ ├── content/
│ │ ├── blog/
│ │ │ ├── linux-beta.md
│ │ │ ├── release-1-1-10.md
│ │ │ ├── release-1-1-7.md
│ │ │ ├── release-1-1-8.md
│ │ │ ├── release-1-1-9.md
│ │ │ ├── release-1-2-0.md
│ │ │ ├── release-1-2-1.md
│ │ │ ├── release-1-3-0.md
│ │ │ ├── release-1-3-1.md
│ │ │ ├── release-1-3-2.md
│ │ │ ├── release-1-3-3.md
│ │ │ ├── release-1-4-0.md
│ │ │ ├── release-1-4-1.md
│ │ │ ├── release-1-4-2.md
│ │ │ ├── release-1-5-0.md
│ │ │ └── welcome.md
│ │ └── config.ts
│ ├── env.d.ts
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ ├── blog/
│ │ ├── [...slug].astro
│ │ └── index.astro
│ ├── index.astro
│ └── safety.astro
├── tailwind.config.mjs
├── tsconfig.json
└── wrangler.jsonc
================================================
FILE CONTENTS
================================================
================================================
FILE: .claude/skills/translate/SKILL.md
================================================
---
name: translate
description: Translates untranslated strings in a locale JSON file for the Oinkoin app. Use when the user wants to localise or update translations for a specific language, or says "translate <locale>".
argument-hint: "[locale-file]"
---
# Skill: translate
Translate untranslated strings in a locale JSON file for the Oinkoin app.
## Usage
```
/translate <locale-file>
```
Example: `/translate assets/locales/it.json`
If no file is specified, address all the locale files
---
## How translations work in this project
- All locale files live in `assets/locales/` (e.g. `it.json`, `de.json`, `pt-BR.json`).
- `assets/locales/en-US.json` is the **source of truth**: every key AND its English value are listed there.
- Every other locale file has the **same keys**. A string is **untranslated** when its value is identical to its key (i.e. it was never localised and still reads in English).
- A string is **already translated** when its value differs from its key. **Never touch those.**
## Step-by-step instructions
### 0. Sync keys with the codebase (always run first)
Run the sync script from the project root to ensure `en-US.json` is up-to-date and stale keys are removed from all locale files:
```
python3 scripts/update_en_strings.py
```
This regenerates `en-US.json` from all `.i18n` strings found in `lib/`, and removes obsolete keys from every other locale file. Run it before translating so you are working against the current set of keys.
### 1. Read the target locale file
Read the full file specified by the user.
### 2. Identify untranslated strings
A string is untranslated when `value == key`. Collect every such entry.
If there are no untranslated strings, tell the user and stop.
### 3. For each untranslated string — look up context before translating
Do **not** guess from the key text alone. For each untranslated key:
- Search the Dart source code (Grep in `lib/`) for the exact key string to find where it is used.
- Look at the surrounding widget/function/page to understand the context (e.g. is it a button label, a dialog title, an error message, a settings toggle description?).
- Only then choose the most natural, contextually appropriate translation for the target language.
### 4. Write the translated strings
Edit the locale file, replacing only the untranslated values. Keep every other entry byte-for-byte identical.
### 5. Report what changed
After editing, print a compact table of the strings you translated:
| Key | Translation |
|-----|-------------|
| … | … |
---
## Important rules
- **Never modify already-translated strings** (value ≠ key).
- **Never change keys** — only values.
- Preserve placeholders exactly as written: `%s`, `%d`, `%1$s`, etc.
- Match the tone and terminology of the strings that ARE already translated in the same file — consistency matters more than literal accuracy.
- For technical or brand terms (e.g. "Oinkoin Pro", "PIN", "CSV", "JSON") keep them untranslated.
- If a string has no natural translation (e.g. it is already the correct word in the target language), it is fine to leave the value equal to the key — but note this in your report.
- Process the **whole file** in one pass; do not ask for confirmation before each string.
## Exceptions
For British english use en-GB.json - in this case, key and value will most of case matches. Consider all the strings as already translated and skip it.
================================================
FILE: .githooks/pre-commit
================================================
#!/usr/bin/env bash
echo "Running pre-commit git-hooks"
dart format lib
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: #
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
#liberapay: emavgl
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: https://www.buymeacoffee.com/emavgl
================================================
FILE: .github/workflows/build-alpha-arm64.yml
================================================
name: Build Alpha APK (arm64)
on: workflow_dispatch
jobs:
build:
name: Build Alpha APK for arm64
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- run: submodules/flutter/bin/flutter pub get
- name: Run Flutter tests
run: submodules/flutter/bin/flutter test
- name: Set up signing config
run: |
echo "${{ secrets.ANDROID_KEY_BASE64 }}" | base64 -d - > upload-keystore.jks
echo "${{ secrets.ANDROID_PROPERTIES_BASE64 }}" | base64 -d - > key.properties
export X_KEYSTORE_PATH="$(pwd)/upload-keystore.jks"
echo "X_KEYSTORE_PATH=$X_KEYSTORE_PATH" >> $GITHUB_ENV
cp key.properties android/key.properties
- name: Build Alpha APK for arm64
run: submodules/flutter/bin/flutter build apk --split-debug-info=./build-debug-files --flavor alpha --release --target-platform android-arm64
env:
X_KEYSTORE_PATH: ${{ env.X_KEYSTORE_PATH }}
- name: Upload Alpha APK arm64
uses: actions/upload-artifact@v4
with:
name: app-alpha-release.apk
path: build/app/outputs/flutter-apk/app-alpha-release.apk
================================================
FILE: .github/workflows/manual-build.yml
================================================
name: Build Apk manual workflow
on: workflow_dispatch
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- run: submodules/flutter/bin/flutter pub get
- name: Run Flutter tests
run: submodules/flutter/bin/flutter test
- name: Set up signing config
run: |
echo "${{ secrets.ANDROID_KEY_BASE64 }}" | base64 -d - > upload-keystore.jks
echo "${{ secrets.ANDROID_PROPERTIES_BASE64 }}" | base64 -d - > key.properties
export X_KEYSTORE_PATH="$(pwd)/upload-keystore.jks"
echo "X_KEYSTORE_PATH=$X_KEYSTORE_PATH" >> $GITHUB_ENV
cp key.properties android/key.properties
- name: Bump new version
run: |
echo "${{ github.event.release.body }}" > changelog.temp
python bump_new_version.py ${{ github.event.release.tag_name }} changelog.temp
- name: Build APK
run: submodules/flutter/bin/flutter build apk --split-debug-info=./build-debug-files --flavor pro --release --split-per-abi
env:
X_KEYSTORE_PATH: ${{ env.X_KEYSTORE_PATH }}
- name: Build app bundle
run: |
submodules/flutter/bin/flutter build appbundle --obfuscate --split-debug-info=./build-debug-file --flavor free
submodules/flutter/bin/flutter build appbundle --obfuscate --split-debug-info=./build-debug-file --flavor pro
- name: Upload APK app-x86_64-pro-release.apk
uses: actions/upload-artifact@v4
with:
name: app-x86_64-pro-release.apk
path: build/app/outputs/flutter-apk/app-x86_64-pro-release.apk
- name: Upload APK app-armeabi-v7a-pro-release
uses: actions/upload-artifact@v4
with:
name: app-armeabi-v7a-pro-release.apk
path: build/app/outputs/flutter-apk/app-armeabi-v7a-pro-release.apk
build-linux:
name: Build Linux .deb
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
# Install Linux build dependencies
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- name: Enable Linux desktop
run: submodules/flutter/bin/flutter config --enable-linux-desktop
- run: submodules/flutter/bin/flutter pub get
- name: Build Linux packages (.deb, .rpm, and AppImage)
run: |
# Add submodule Flutter to PATH first (so flutter_distributor uses it)
export PATH="$(pwd)/submodules/flutter/bin:$PATH"
# Install flutter_distributor
dart pub global activate flutter_distributor
export PATH="$HOME/.pub-cache/bin:$PATH"
# Install tools for building .rpm and AppImage packages
sudo apt-get install -y rpm fuse libfuse2
# Download and install appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x appimagetool-x86_64.AppImage
sudo mv appimagetool-x86_64.AppImage /usr/local/bin/appimagetool
# Verify Flutter version
which flutter
flutter --version
# Build .deb, .rpm, and AppImage packages
flutter_distributor release --name=linux-release --jobs=release-linux-deb,release-linux-rpm,release-linux-appimage
- name: Upload .deb as artifact
uses: actions/upload-artifact@v4
with:
name: linux-deb
path: dist/*/*-linux.deb
- name: Upload .rpm as artifact
uses: actions/upload-artifact@v4
with:
name: linux-rpm
path: dist/*/*-linux.rpm
- name: Upload AppImage as artifact
uses: actions/upload-artifact@v4
with:
name: linux-appimage
path: dist/*/*-linux.AppImage
================================================
FILE: .github/workflows/on-release.yml
================================================
name: Build for Android and Linux
on:
release:
types: [prereleased]
jobs:
validate-build:
name: Validate APK Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- run: submodules/flutter/bin/flutter pub get
- name: Run Flutter tests
run: submodules/flutter/bin/flutter test
- name: Set up signing config
run: |
echo "${{ secrets.ANDROID_KEY_BASE64 }}" | base64 -d - > upload-keystore.jks
echo "${{ secrets.ANDROID_PROPERTIES_BASE64 }}" | base64 -d - > key.properties
export X_KEYSTORE_PATH="$(pwd)/upload-keystore.jks"
echo "X_KEYSTORE_PATH=$X_KEYSTORE_PATH" >> $GITHUB_ENV
cp key.properties android/key.properties
- name: Build Alpha APK for arm64
run: submodules/flutter/bin/flutter build apk --split-debug-info=./build-debug-files --flavor alpha --release --target-platform android-arm64
env:
X_KEYSTORE_PATH: ${{ env.X_KEYSTORE_PATH }}
bump-version:
name: Bump Version
runs-on: ubuntu-latest
needs: validate-build
permissions:
contents: write
outputs:
new_version: ${{ steps.version.outputs.new_version }}
version_code: ${{ steps.version.outputs.version_code }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Bump new version
id: version
run: |
echo "${{ github.event.release.body }}" > changelog.temp
python bump_new_version.py ${{ github.event.release.tag_name }} changelog.temp
# Extract the new version from pubspec.yaml
NEW_VERSION=$(grep "version:" pubspec.yaml | sed 's/version: \(.*\)+.*/\1/')
VERSION_CODE=$(grep "version:" pubspec.yaml | sed 's/version: .*+\(.*\)/\1/')
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "version_code=$VERSION_CODE" >> $GITHUB_OUTPUT
echo "New version: $NEW_VERSION"
echo "Version code: $VERSION_CODE"
- name: Create blog post for release
run: |
python create_release_blog_post.py ${{ github.event.release.tag_name }} changelog.temp
- uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: master
commit_message: "[auto] version bump"
file_pattern: 'pubspec.* *.txt submodules/* website/src/content/blog/*.md'
- name: Update the tag
run: |
git tag -d ${{ github.event.release.tag_name }}
git push --delete origin ${{ github.event.release.tag_name }}
git tag ${{ github.event.release.tag_name }}
git push origin ${{ github.event.release.tag_name }}
build-android:
name: Build Android APK and Bundle
runs-on: ubuntu-latest
needs: bump-version
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Pull latest changes including version bump
run: git pull origin master
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- run: submodules/flutter/bin/flutter pub get
- name: Set up signing config
run: |
echo "${{ secrets.ANDROID_KEY_BASE64 }}" | base64 -d - > upload-keystore.jks
echo "${{ secrets.ANDROID_PROPERTIES_BASE64 }}" | base64 -d - > key.properties
export X_KEYSTORE_PATH="$(pwd)/upload-keystore.jks"
echo "X_KEYSTORE_PATH=$X_KEYSTORE_PATH" >> $GITHUB_ENV
cp key.properties android/key.properties
- name: Build APK
run: submodules/flutter/bin/flutter build apk --split-debug-info=./build-debug-files --flavor pro --release --split-per-abi
env:
X_KEYSTORE_PATH: ${{ env.X_KEYSTORE_PATH }}
- name: Upload APK as Release asset
uses: softprops/action-gh-release@v1
with:
files: |
build/app/outputs/flutter-apk/app-armeabi-v7a-pro-release.apk
build/app/outputs/flutter-apk/app-arm64-v8a-pro-release.apk
build/app/outputs/flutter-apk/app-x86_64-pro-release.apk
body: ${{ github.event.release.body }}
tag_name: ${{ github.event.release.tag_name }}
- name: Build app bundle
run: |
submodules/flutter/bin/flutter build appbundle --obfuscate --split-debug-info=./build-debug-file --flavor free
submodules/flutter/bin/flutter build appbundle --obfuscate --split-debug-info=./build-debug-file --flavor pro
- name: Publish on Google Play Free
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_DEV_CONSOLE_SERVICE_ACCOUNT_JSON }}
packageName: com.github.emavgl.piggybank
releaseFiles: build/app/outputs/bundle/freeRelease/app-free-release.aab
whatsNewDirectory: metadata/en-US
- name: Publish on Google Play Pro
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_DEV_CONSOLE_SERVICE_ACCOUNT_JSON }}
packageName: com.github.emavgl.piggybankpro
releaseFiles: build/app/outputs/bundle/proRelease/app-pro-release.aab
whatsNewDirectory: metadata/en-US
build-linux:
name: Build Linux packages
runs-on: ubuntu-latest
needs: bump-version
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Pull latest changes including version bump
run: git pull origin master
- uses: actions/setup-python@v4
with:
python-version: '3.10'
# Install Linux build dependencies
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- name: Enable Linux desktop
run: submodules/flutter/bin/flutter config --enable-linux-desktop
- run: submodules/flutter/bin/flutter pub get
- name: Build Linux packages (.deb, .rpm, and AppImage)
run: |
# Add submodule Flutter to PATH first (so flutter_distributor uses it)
export PATH="$(pwd)/submodules/flutter/bin:$PATH"
# Install flutter_distributor
dart pub global activate flutter_distributor
export PATH="$HOME/.pub-cache/bin:$PATH"
# Install tools for building .rpm and AppImage packages
sudo apt-get install -y rpm fuse libfuse2
# Download and install appimagetool
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x appimagetool-x86_64.AppImage
sudo mv appimagetool-x86_64.AppImage /usr/local/bin/appimagetool
# Verify Flutter version
which flutter
flutter --version
# Build .deb, .rpm, and AppImage packages
flutter_distributor release --name=linux-release --jobs=release-linux-deb,release-linux-rpm,release-linux-appimage
- name: Upload Linux packages as Release asset
uses: softprops/action-gh-release@v1
with:
files: |
dist/*/*-linux.deb
dist/*/*-linux.rpm
dist/*/*-linux.AppImage
body: ${{ github.event.release.body }}
tag_name: ${{ github.event.release.tag_name }}
================================================
FILE: .github/workflows/release-alpha.yml
================================================
name: Release internal channel
on:
# Allow for manual triggering of the workflow
workflow_dispatch:
inputs:
branch:
description: 'The branch to build the alpha from'
required: true
default: 'master'
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# Checkout the branch specified by the user
ref: ${{ github.event.inputs.branch }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
# Navigate to the submodule and perform the necessary git operations
- name: Update flutter submodule to stable branch
run: |
git submodule update --init --recursive
cd submodules/flutter
git reset --merge
git checkout stable
git pull origin stable
cd ../..
- run: submodules/flutter/bin/flutter pub get
- name: Run Flutter tests
run: submodules/flutter/bin/flutter test
- name: Set up signing config
run: |
echo "${{ secrets.ANDROID_KEY_BASE64 }}" | base64 -d - > upload-keystore.jks
echo "${{ secrets.ANDROID_PROPERTIES_BASE64 }}" | base64 -d - > key.properties
export X_KEYSTORE_PATH="$(pwd)/upload-keystore.jks"
echo "X_KEYSTORE_PATH=$X_KEYSTORE_PATH" >> $GITHUB_ENV
cp key.properties android/key.properties
- name: Bump new version
run: |
echo "Internal" > changelog.temp
python bump_new_version.py keep changelog.temp
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.event.inputs.branch }}
commit_message: "[auto] version bump"
file_pattern: 'pubspec.* *.txt'
- name: Build app bundle
run: |
submodules/flutter/bin/flutter build appbundle --obfuscate --split-debug-info=./build-debug-file --flavor pro
- name: Publish on Google Play Pro
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_DEV_CONSOLE_SERVICE_ACCOUNT_JSON }}
packageName: com.github.emavgl.piggybankpro
releaseFiles: build/app/outputs/bundle/proRelease/app-pro-release.aab
whatsNewDirectory: metadata/en-US
track: alpha
================================================
FILE: .gitignore
================================================
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.packages
.pub-cache/
.pub/
/build/
# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java
# iOS/XCode related
**/ios/**/*.mode1v3
**/ios/**/*.mode2v3
**/ios/**/*.moved-aside
**/ios/**/*.pbxuser
**/ios/**/*.perspectivev3
**/ios/**/*sync/
**/ios/**/.sconsign.dblite
**/ios/**/.tags*
**/ios/**/.vagrant/
**/ios/**/DerivedData/
**/ios/**/Icon?
**/ios/**/Pods/
**/ios/**/.symlinks/
**/ios/**/profile
**/ios/**/xcuserdata
**/ios/.generated/
**/ios/Flutter/App.framework
**/ios/Flutter/Flutter.framework
**/ios/Flutter/Generated.xcconfig
**/ios/Flutter/app.flx
**/ios/Flutter/app.zip
**/ios/Flutter/flutter_assets/
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
/android/key.properties
/build-debug-files/
/store-assets/
/build-debug-file/
/tmp_build
.flutter-plugins-dependencies
ios/Flutter/flutter_export_environment.sh
macos/Flutter/ephemeral/flutter_export_environment.sh
macos/Flutter/ephemeral/Flutter-Generated.xcconfig
dist/
================================================
FILE: .gitmodules
================================================
[submodule "submodules/flutter"]
path = submodules/flutter
url = https://github.com/flutter/flutter
branch = stable
================================================
FILE: .metadata
================================================
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "b45fa18946ecc2d9b4009952c636ba7e2ffbb787"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
- platform: linux
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'
================================================
FILE: .vscode/launch.json
================================================
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart"
}
]
}
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
# Oinkoin - Money Tracker
<div align="center">
<img src="https://play-lh.googleusercontent.com/LHL_KxBCAr-Ee5grPRGyudqiME6g0fAfHTP5m1TyadDIyFoRfd2vr-vAzkfuAbCJjud5=w480-h960" alt="Image" style="border-radius: 50%; width: 150px; height: 150px;"></br>
<a href="https://app.element.io/#/room/#oinkoin:matrix.org" target="_blank">
<img alt="Matrix" src="https://img.shields.io/matrix/oinkoin%3Amatrix.org?link=https%3A%2F%2Fapp.element.io%2F%23%2Froom%2F!yGAxceDMeCmycXVuuw%3Amatrix.org&link=https%3A%2F%2Fapp.element.io%2F%23%2Froom%2F!yGAxceDMeCmycXVuuw%3Amatrix.org">
</a>
</div><br>
> **Warning:** Oinkoin is not associated with any token or cryptocurrency project.
Oinkoin Money Manager makes managing personal finances easy and secure. It is light and easy to use. You need just few taps to keep track of your expenses. Simplicity and Security are our two main drivers: Oinkoin is an offline and ad-free app.
* **Privacy Caring**
We believe you should be the only person in control of your data. Oinkoin cares about your privacy, therefore it works completely offline and without any ads! No special permissions are required.
* **Save your battery**
The app only consumes battery when you use it, no power consuming operations are performed in background.
* **Statistics**
Understandable and clean statistics and charts!
| Screenshot 1 | Screenshot 2 | Screenshot 3 | Screenshot 4 | Screenshot 5 |
| :---: | :---: | :---: | :---: | :---: |
|  |  |  |  |  |
## Download
At the moment, Oinkoin is only available for Android.
### Oinkoin
<a href='https://play.google.com/store/apps/details?id=com.github.emavgl.piggybank&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width='150'></a>
### Oinkoin PRO
Oinkoin PRO comes with some additional features at a small costs:
- Backup/Restore your data
- New fantastic icons
- More colours for your categories
- View your data specifying a custom date-range
- Set recurrent records
- Label your records with `Tags`
- Support the development
<a href='https://play.google.com/store/apps/details?id=com.github.emavgl.piggybankpro&pli=1&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width='150'/></a>
<a href='https://f-droid.org/en/packages/com.github.emavgl.piggybankpro/'><img alt='Get it on F-Droid' src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' width='150'/></a>
Oinkoin PRO is also available *for free* via [F-droid](https://f-droid.org/en/packages/com.github.emavgl.piggybankpro/). However, F-droid can be very slow in updating the release to the latest available versions. If want the very last version, you can manually download the APK from [Github directly](https://github.com/emavgl/oinkoin/releases). You can add Oinkoin to [Obtainium](https://github.com/ImranR98/Obtainium) which will check and install the latest version from Github release directly.
## Contribution
Contributions are welcome! How can you contribute?
- Report issues/bugs: We can only fix issues that we know about. Please check the issue tracker on Github and if it doesn't already exist, report it there.
- Contribute code: Pull requests are always welcome. If you need any pointers on how to do something just let us know in the chat or in a Github discussion.
- Do you have an idea? Open an Issue on Github. I am always open to new ideas.
- Share the App with family and friends
- Translate the strings in your language (see below)
### Translation
> **Important:** The Crowdin integration is no longer available. All translation updates and new language contributions must be submitted directly via **Pull Request** on GitHub.
#### Translation Strategy
To maintain high coverage across all features, strings are translated from time to time using **AI-assisted tools**.
#### How to Contribute
We all know however that AI does not produce always the best translations. For this, community contributions are always welcome.
1. Fork the repository.
2. Edit the JSON files located in `/assets/locales/`.
3. Open a **Pull Request** with your changes.
Oinkoin is currently available in the following languages:
* **English**
* **Italian**
* **German** — thanks to [@DSiekmeier](https://github.com/DSiekmeier)
* **French** — thanks to [@nizarus](https://github.com/nizarus)
* **Arabic** — thanks to [@nizarus](https://github.com/nizarus)
* **Spanish** — thanks to [@mockballed](https://github.com/mockballed)
* **Portuguese (PT and BR)** — thanks to [@cubiquitous](https://github.com/cubiquitous)
* **Russian** — thanks to [Irina (volnairina)](https://github.com/volnairina) and [@alexk700i](https://github.com/alexk700i)
* **Chinese** — thanks to [@Chzy2018](https://github.com/chzy2018)
* **Turkish** — thanks to [@bkrucarci](https://github.com/bkrucarci)
* **Venetian** — thanks to AgGelmi
* **Croatian** — thanks to ashune
* **Polish** — thanks to [@Smuuuko](https://github.com/Smuuuko)
* **Danish** — thanks to catsnote
## How can I donate and sponsor the project?
Any donation is welcome, thanks for your support! If you wish to donate, you can do it in the following ways:
- Buy [Oinkoin PRO on Google Play Store](https://play.google.com/store/apps/details?id=com.github.emavgl.piggybankpro)
- Bitcoin `bc1qscnas903lcycrkaw7ztflskwld87k8wxgc0sx8`
- Monero `44LmMThH7jMgi5pGpRtQVxCXUr9tNSenhSm97g3zgXQZPS1bwMMqxSR7M7yFcbQ9uUJAwHTJ4gXENKXZdaTDopv9QU2aGni`
- [buymeacoffe.com](https://www.buymeacoffee.com/emavgl)
With your donation you support the work I do, also helping to keep this project alive.
I intend to also use the donations to help pay for the yearly subscription fee of 100€ for the apple developer program in order to also offer Oinkoin in the App Store in the future.
## Security & Scam Prevention
Oinkoin is an independent open-source project and is not affiliated with any cryptocurrency, token, or airdrop. Be cautious of anyone claiming otherwise. Quick safety tips:
- Never send money, tokens, or private keys to people claiming to represent Oinkoin.
- Verify official binaries and releases on our GitHub releases page and the Play Store.
- Do not follow unsolicited links promising giveaways; check domain names carefully.
- If you suspect fraud, report it via our GitHub issues or the platform where the scam appeared.
If you run the website locally or visit the hosted site, see the Safety & Scam Prevention page for more details.
================================================
FILE: analysis_options.yaml
================================================
analyzer:
exclude:
- submodules/**
================================================
FILE: android/.gitignore
================================================
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
================================================
FILE: android/app/build.gradle
================================================
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
compileSdkVersion 36
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.github.emavgl.piggybank"
minSdkVersion flutter.minSdkVersion
targetSdkVersion 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystorePropertiesFile.withReader('UTF-8') { reader ->
keystoreProperties.load(reader)
}
}
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : file(System.env.X_KEYSTORE_PATH)
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
flavorDimensions "oinkoin"
productFlavors {
dev {
dimension "oinkoin"
applicationIdSuffix ".dev.pro"
resValue "string", "app_name", "Oinkoin Debug"
}
free {
dimension "oinkoin"
applicationIdSuffix ""
resValue "string", "app_name", "Oinkoin"
}
pro {
dimension "oinkoin"
applicationId "com.github.emavgl.piggybankpro"
resValue "string", "app_name", "Oinkoin Pro"
}
alpha {
dimension "oinkoin"
applicationId "com.github.emavgl.piggybank.alpha.pro"
resValue "string", "app_name", "Oinkoin Alpha"
}
fdroid {
dimension "oinkoin"
applicationId "com.github.emavgl.piggybankpro"
resValue "string", "app_name", "Oinkoin"
}
}
namespace 'com.example.piggybank' // MainActivity package namespace
}
flutter {
source '../..'
}
dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
ext.abiCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2, x86_64: 4]
// F-droid requires variant.versionCode * 1000 + baseAbiVersionCode
// instead of the flutter default: baseAbiVersionCode * 1000 + variant.versionCode
// read more at: https://github.com/emavgl/oinkoin/issues/120
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter("ABI"))
if (baseAbiVersionCode != null) {
output.versionCodeOverride = variant.versionCode * 1000 + baseAbiVersionCode
}
}
}
================================================
FILE: android/app/src/alpha/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
================================================
FILE: android/app/src/debug/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
================================================
FILE: android/app/src/main/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<!-- To connect to media browser services in other apps, media browser clients
that target Android 11 need to add the following in their manifest -->
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="*/*" />
</intent>
</queries>
<uses-permission android:name="android.permission.USE_BIOMETRIC"/>
<application
android:name="${applicationName}"
android:label="@string/app_name"
android:localeConfig="@xml/locales_config"
android:hasFragileUserData="true"
android:enableOnBackInvokedCallback="false"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:exported="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
================================================
FILE: android/app/src/main/kotlin/com/example/piggybank/MainActivity.kt
================================================
package com.example.piggybank
import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterFragmentActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugins.GeneratedPluginRegistrant
class MainActivity: FlutterFragmentActivity() {
}
================================================
FILE: android/app/src/main/res/drawable/launch_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Background color splashscreen -->
<item>
<color android:color="#FFD65B"/>
</item>
<!-- Image is inserted automatically -->
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>
================================================
FILE: android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
================================================
FILE: android/app/src/main/res/values/styles.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<color name="splashBackground">#FFD65B</color>
</resources>
================================================
FILE: android/app/src/main/res/xml/locales_config.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="en-US"/>
<locale android:name="en-GB"/>
<locale android:name="ca"/>
<locale android:name="fr"/>
<locale android:name="it"/>
<locale android:name="el"/>
<locale android:name="es"/>
<locale android:name="hr"/>
<locale android:name="ar"/>
<locale android:name="de"/>
<locale android:name="ru"/>
<locale android:name="ta-IN"/>
<locale android:name="or-IN"/>
<locale android:name="tr"/>
<locale android:name="vec-IT"/>
<locale android:name="zh-CN"/>
<locale android:name="pt-BR"/>
<locale android:name="pt-PT"/>
<locale android:name="pl"/>
<locale android:name="uk-UA"/>
<locale android:name="da"/>
<locale android:name="ja"/>
</locale-config>
================================================
FILE: android/app/src/profile/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
================================================
FILE: android/build.gradle
================================================
buildscript {
ext.kotlin_version = '2.2.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
subprojects {
afterEvaluate { project ->
if (project.hasProperty('android')) {
project.android {
if (namespace == null) {
namespace project.group
}
}
}
}
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
================================================
FILE: android/gradle/wrapper/gradle-wrapper.properties
================================================
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
================================================
FILE: android/gradle.properties
================================================
org.gradle.jvmargs=-Xmx3536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
================================================
FILE: android/settings.gradle
================================================
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}()
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id "com.android.application" version "8.9.1" apply false
id "org.jetbrains.kotlin.android" version "2.2.21" apply false
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
}
include ":app"
================================================
FILE: android/settings_aar.gradle
================================================
include ':app'
================================================
FILE: appium/.gitattributes
================================================
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf
# These are Windows script files and should use crlf
*.bat text eol=crlf
# Binary files should be left untouched
*.jar binary
================================================
FILE: appium/.gitignore
================================================
# Ignore Gradle project-specific cache directory
.gradle
# Ignore Gradle build output directory
build
================================================
FILE: appium/app/build.gradle
================================================
plugins {
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'io.appium:java-client:9.3.0'
testImplementation 'org.testng:testng:7.10.2'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.named('test') {
useTestNG()
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/BaseTest.java
================================================
package com.github.emavgl.oinkoin.tests.appium;
import com.github.emavgl.oinkoin.tests.appium.utils.Constants;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.android.options.UiAutomator2Options;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
import java.net.MalformedURLException;
import java.net.URL;
import java.time.Duration;
public class BaseTest {
protected AndroidDriver driver;
@BeforeSuite
public void setUp() {
UiAutomator2Options options = new UiAutomator2Options()
.setAutomationName("UiAutomator2")
.setPlatformName(Constants.PLATFORM_NAME)
.setPlatformVersion(Constants.PLATFORM_VERSION)
.setUdid(Constants.UDID)
.setApp(Constants.APP_PATH)
.setAppPackage(Constants.APP_PACKAGE)
.setFullReset(true)
.amend("appium:settings[disableIdLocatorAutocompletion]", true)
.amend("appium:newCommandTimeout", 3600);
driver = new AndroidDriver(getAppiumServerUrl(), options);
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(5));
}
private URL getAppiumServerUrl() {
try {
return new URL(Constants.APPIUM_SERVER_URL);
} catch (MalformedURLException e) {
throw new RuntimeException("Invalid URL for Appium server", e);
}
}
@AfterSuite
public void tearDown() {
if (driver != null) {
driver.quit();
}
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/HomePageTest.java
================================================
package com.github.emavgl.oinkoin.tests.appium;
import com.github.emavgl.oinkoin.tests.appium.pages.HomePage;
import com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;
import com.github.emavgl.oinkoin.tests.appium.utils.RecordData;
import com.github.emavgl.oinkoin.tests.appium.utils.RepeatOption;
import org.testng.annotations.Test;
import java.time.LocalDate;
import java.time.Month;
import java.time.Year;
import static com.github.emavgl.oinkoin.tests.appium.utils.Utils.formatRangeDateText;
import static org.testng.AssertJUnit.*;
public class HomePageTest extends BaseTest {
@Test
public void shouldDisplayCorrectTextForSelectedMonth() {
HomePage homePage = new HomePage(driver);
homePage.showRecordsPerMonth(Month.OCTOBER);
String expectedText = "October " + LocalDate.now().getYear();
assertEquals(homePage.dateRangeText(), expectedText);
}
@Test
public void shouldDisplayCorrectTextForSelectedYear() {
HomePage homePage = new HomePage(driver);
homePage.showRecordsPerYear(Year.of(2020));
String expectedText = "Jan 1 - Dec 31, 2020";
assertEquals(expectedText, homePage.dateRangeText());
}
@Test
public void shouldDisplayCorrectTextForCustomDateRange() {
HomePage homePage = new HomePage(driver);
LocalDate startDate = LocalDate.now().minusMonths(2).minusDays(3);
LocalDate endDate = LocalDate.now().minusDays(4);
homePage.showRecordPerDateRange(startDate, endDate);
String expectedText = formatRangeDateText(startDate, endDate);
assertEquals(homePage.dateRangeText(), expectedText);
}
@Test
public void addExpenseRecord() {
HomePage homePage = new HomePage(driver);
RecordData expenseRecord = new RecordData(
"Groceries",
50.25,
CategoryType.EXPENSE,
"Food",
LocalDate.now(),
RepeatOption.NOT_REPEAT,
"Grocery shopping"
);
homePage.addRecord(expenseRecord);
RecordData savedRecord = homePage.getRecord(expenseRecord.name(), expenseRecord.categoryType(), expenseRecord.amount(), expenseRecord.date());
homePage.deleteRecord(expenseRecord.name(), expenseRecord.categoryType(), expenseRecord.amount(), expenseRecord.date());
assertEquals(expenseRecord, savedRecord);
}
@Test
public void addIncomeRecord() {
HomePage homePage = new HomePage(driver);
RecordData incomeRecord = new RecordData(
"Salary",
1500.0,
CategoryType.INCOME,
"Salary",
LocalDate.now(),
RepeatOption.EVERY_MONTH,
"Monthly salary payment"
);
homePage.addRecord(incomeRecord);
RecordData savedRecord = homePage.getRecord(incomeRecord.name(), incomeRecord.categoryType(), incomeRecord.amount(), incomeRecord.date());
homePage.deleteRecord(incomeRecord.name(), incomeRecord.categoryType(), incomeRecord.amount(), incomeRecord.date());
assertEquals(incomeRecord, savedRecord);
}
@Test
public void deleteRecord() {
HomePage homePage = new HomePage(driver);
RecordData record = new RecordData(
"Salary",
1500.0,
CategoryType.INCOME,
"Salary",
LocalDate.now(),
RepeatOption.EVERY_MONTH,
"Monthly salary payment"
);
homePage.addRecord(record);
homePage.deleteRecord(record.name(), record.categoryType(), record.amount(), record.date());
assertFalse(homePage.isRecordDisplayedInCurrentView(record.name(), record.categoryType(), record.amount()));
}
@Test
public void shouldDisplayRecordsForSelectedMonthOnly() {
HomePage homePage = new HomePage(driver);
RecordData currentMonthRecord = new RecordData(
"Groceries",
100.0,
CategoryType.EXPENSE,
"Food",
LocalDate.now(),
RepeatOption.NOT_REPEAT,
"Test record for current month"
);
homePage.addRecord(currentMonthRecord);
RecordData otherMonthRecord = new RecordData(
"Rent",
500.0,
CategoryType.EXPENSE,
"House",
LocalDate.now().minusMonths(2),
RepeatOption.NOT_REPEAT,
"Test record for another month"
);
homePage.addRecord(otherMonthRecord);
// Filter by current month
homePage.showRecordsPerYear(Year.now());
homePage.showRecordsPerMonth(LocalDate.now().getMonth());
assertTrue(homePage.isRecordDisplayedInCurrentView(currentMonthRecord.name(), currentMonthRecord.categoryType(), currentMonthRecord.amount()));
assertFalse(homePage.isRecordDisplayedInCurrentView(otherMonthRecord.name(), otherMonthRecord.categoryType(), otherMonthRecord.amount()));
homePage.deleteRecord(currentMonthRecord.name(), currentMonthRecord.categoryType(), currentMonthRecord.amount(), currentMonthRecord.date());
homePage.deleteRecord(otherMonthRecord.name(), otherMonthRecord.categoryType(), otherMonthRecord.amount(), otherMonthRecord.date());
}
@Test
public void shouldDisplayRecordsForSelectedYearOnly() {
HomePage homePage = new HomePage(driver);
RecordData currentYearRecord = new RecordData(
"Salary",
2000.0,
CategoryType.INCOME,
"Salary",
LocalDate.now(),
RepeatOption.NOT_REPEAT,
"Test record for current year"
);
homePage.addRecord(currentYearRecord);
RecordData otherYearRecord = new RecordData(
"Bonus",
1500.0,
CategoryType.INCOME,
"Salary",
LocalDate.now().minusYears(1),
RepeatOption.NOT_REPEAT,
"Test record for another year"
);
homePage.addRecord(otherYearRecord);
// Filter by current year
homePage.showRecordsPerYear(Year.now());
assertTrue(homePage.isRecordDisplayedInCurrentView(currentYearRecord.name(), currentYearRecord.categoryType(), currentYearRecord.amount()));
assertFalse(homePage.isRecordDisplayedInCurrentView(otherYearRecord.name(), otherYearRecord.categoryType(), otherYearRecord.amount()));
homePage.deleteRecord(currentYearRecord.name(), currentYearRecord.categoryType(), currentYearRecord.amount(), currentYearRecord.date());
homePage.deleteRecord(otherYearRecord.name(), otherYearRecord.categoryType(), otherYearRecord.amount(), otherYearRecord.date());
}
@Test
public void shouldDisplayRecordsForCustomDateRangeOnly() {
HomePage homePage = new HomePage(driver);
LocalDate startDate = LocalDate.now().minusWeeks(3);
LocalDate endDate = LocalDate.now().minusWeeks(1);
RecordData inRangeRecord = new RecordData(
"Table and chairs",
75.0,
CategoryType.EXPENSE,
"House",
startDate.plusDays(1),
RepeatOption.NOT_REPEAT,
"Test record within range"
);
homePage.addRecord(inRangeRecord);
RecordData outOfRangeRecord = new RecordData(
"Train ticket",
30.0,
CategoryType.EXPENSE,
"Transport",
LocalDate.now().minusMonths(2),
RepeatOption.NOT_REPEAT,
"Test record outside range"
);
homePage.addRecord(outOfRangeRecord);
// Filter by personalized range
homePage.showRecordPerDateRange(startDate, endDate);
assertTrue(homePage.isRecordDisplayedInCurrentView(inRangeRecord.name(), inRangeRecord.categoryType(), inRangeRecord.amount()));
assertFalse(homePage.isRecordDisplayedInCurrentView(outOfRangeRecord.name(), outOfRangeRecord.categoryType(), outOfRangeRecord.amount()));
homePage.deleteRecord(inRangeRecord.name(), inRangeRecord.categoryType(), inRangeRecord.amount(), inRangeRecord.date());
homePage.deleteRecord(outOfRangeRecord.name(), outOfRangeRecord.categoryType(), outOfRangeRecord.amount(), outOfRangeRecord.date());
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/NavigationBarTest.java
================================================
package com.github.emavgl.oinkoin.tests.appium;
import com.github.emavgl.oinkoin.tests.appium.pages.HomePage;
import io.appium.java_client.AppiumBy;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
import static org.testng.Assert.assertTrue;
public class NavigationBarTest extends BaseTest {
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/BasePage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.pagefactory.AppiumFieldDecorator;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public abstract class BasePage {
protected final AppiumDriver driver;
@FindBy(id = "home-tab")
protected WebElement homeTab;
@FindBy(id = "home-tab-selected")
protected WebElement homeTabSelected;
@FindBy(id = "categories-tab")
protected WebElement categoriesTab;
@FindBy(id = "categories-tab-selected")
protected WebElement categoriesTabSelected;
@FindBy(id = "settings-tab")
protected WebElement settingsTab;
@FindBy(id = "settings-tab-selected")
protected WebElement settingsTabSelected;
public BasePage(AppiumDriver driver) {
this.driver = driver;
PageFactory.initElements(new AppiumFieldDecorator(driver), this);
}
public boolean isDisplayed(WebElement webElement) {
try {
return webElement.isDisplayed();
} catch (NoSuchElementException e) {
return false;
}
}
public void openHomeTab() {
if (isDisplayed(homeTab))
homeTab.click();
else
homeTabSelected.click();
}
public void openCategoriesTab() {
if (isDisplayed(categoriesTab))
categoriesTab.click();
else
categoriesTabSelected.click();
}
public void openSettingsTab() {
if (isDisplayed(settingsTab))
settingsTab.click();
else
settingsTabSelected.click();
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategoriesPage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
public class CategoriesPage {
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategorySelectionPage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
import com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;
import io.appium.java_client.AppiumBy;
import io.appium.java_client.AppiumDriver;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
public class CategorySelectionPage extends BasePage {
@FindBy(id = "expenses-tab")
private WebElement expensesTab;
@FindBy(id = "income-tab")
private WebElement incomeTab;
public CategorySelectionPage(AppiumDriver driver) {
super(driver);
}
public void selectExpensesTab() {
expensesTab.click();
}
public void selectIncomeTab() {
incomeTab.click();
}
public void selectCategory(CategoryType categoryType, String categoryName) {
if (categoryType.equals(CategoryType.EXPENSE))
selectExpensesTab();
else
selectIncomeTab();
try {
driver.findElement(AppiumBy.accessibilityId(categoryName)).click();
} catch (NoSuchElementException e) {
throw new NoSuchElementException(
String.format("Category not found: Type: %s, Name: %s", categoryType.getDisplayName(), categoryName),
e
);
}
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/EditRecordPage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
import com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;
import com.github.emavgl.oinkoin.tests.appium.utils.RecordData;
import com.github.emavgl.oinkoin.tests.appium.utils.RepeatOption;
import io.appium.java_client.AppiumBy;
import io.appium.java_client.AppiumDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Locale;
import static com.github.emavgl.oinkoin.tests.appium.utils.Utils.extractDate;
import static com.github.emavgl.oinkoin.tests.appium.utils.Utils.extractRepeatOption;
public class EditRecordPage extends BasePage {
private static final String DATE_FORMAT = "MM/dd/yyyy";
@FindBy(id = "amount-field")
private WebElement amountField;
@FindBy(id = "record-name-field")
private WebElement recordNameField;
@FindBy(id = "category-field")
private WebElement categoryField;
@FindBy(id = "date-field")
private WebElement dateField;
@FindBy(id = "repeat-field")
private WebElement repeatField;
@FindBy(id = "note-field")
private WebElement noteField;
@FindBy(id = "save-button")
private WebElement saveButton;
@FindBy(id = "delete-button")
private WebElement deleteButton;
public EditRecordPage(AppiumDriver driver) {
super(driver);
}
public CategoryType getCategoryType() {
String sign = amountField.getAttribute("hint").split("\n")[0];
return "-".equals(sign) ? CategoryType.EXPENSE : CategoryType.INCOME;
}
public double getAmount() {
return Double.parseDouble(amountField.getText());
}
public void setAmount(double amount) {
amountField.click();
amountField.clear();
amountField.sendKeys(String.format(Locale.US, "%.2f", amount));
}
public String getRecordName() {
return recordNameField.getText();
}
public void setRecordName(String name) {
recordNameField.click();
recordNameField.clear();
recordNameField.sendKeys(name);
}
public String getCategory() {
return categoryField.getAttribute("content-desc");
}
public LocalDate getDate() {
return extractDate(dateField.getAttribute("content-desc"));
}
public void setDate(LocalDate date) {
dateField.click();
WebElement datePicker = driver.findElement(AppiumBy.androidUIAutomator("new UiSelector().className(\"android.widget.Button\").instance(0)"));
datePicker.click();
WebElement editPicker = driver.findElement(AppiumBy.className("android.widget.EditText"));
editPicker.click();
editPicker.clear();
editPicker.sendKeys(date.format(DateTimeFormatter.ofPattern(DATE_FORMAT)));
driver.findElement(AppiumBy.accessibilityId("OK")).click();
}
public RepeatOption getRepeatOption() {
return extractRepeatOption(dateField.getAttribute("content-desc"));
}
public void setRepeatOption(RepeatOption repeatOption) {
if (repeatOption.equals(RepeatOption.NOT_REPEAT))
return;
repeatField.click();
driver.findElement(AppiumBy.accessibilityId(repeatOption.getDisplayName())).click();
}
public String getNote() {
return noteField.getText();
}
public void setNote(String note) {
noteField.click();
noteField.clear();
noteField.sendKeys(note);
}
public void saveRecord() {
saveButton.click();
}
public void back() {
driver.findElement(AppiumBy.accessibilityId("Back")).click();
}
public void delete() {
deleteButton.click();
driver.findElement(AppiumBy.accessibilityId("Yes")).click();
}
public void addRecord(RecordData recordData) {
setAmount(recordData.amount());
setRecordName(recordData.name());
setDate(recordData.date());
setRepeatOption(recordData.repeatOption());
setNote(recordData.note());
saveRecord();
}
public RecordData getRecord() {
RecordData recordData = new RecordData(
getRecordName(),
getAmount(),
getCategoryType(),
getCategory(),
getDate(),
getRepeatOption(),
getNote()
);
back();
return recordData;
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/HomePage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
import com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;
import com.github.emavgl.oinkoin.tests.appium.utils.RecordData;
import io.appium.java_client.AppiumBy;
import io.appium.java_client.AppiumDriver;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import java.text.NumberFormat;
import java.time.LocalDate;
import java.time.Month;
import java.time.Year;
import java.time.format.DateTimeFormatter;
import java.util.Locale;
import static com.github.emavgl.oinkoin.tests.appium.utils.Utils.capitalizeFirstLetter;
public class HomePage extends BasePage {
private static final String DATE_FORMAT = "MM/dd/yyyy";
@FindBy(id = "select-date")
private WebElement showRecordsPerButton;
@FindBy(id = "statistics")
private WebElement statisticsButton;
@FindBy(id = "three-dots")
private WebElement threeDotsButton;
@FindBy(id = "date-text")
private WebElement dateRangeText;
@FindBy(id = "add-record")
private WebElement addRecordButton;
public HomePage(AppiumDriver driver) {
super(driver);
}
public String dateRangeText() {
return dateRangeText.getAttribute("content-desc");
}
public void showRecordsPer(String option, String value) {
openHomeTab();
showRecordsPerButton.click();
driver.findElement(AppiumBy.accessibilityId(option)).click();
driver.findElement(AppiumBy.accessibilityId(value)).click();
driver.findElement(AppiumBy.accessibilityId("OK")).click();
}
public void showRecordsPerMonth(Month month) {
String shortMonth = capitalizeFirstLetter(month.toString()).substring(0, 3);
showRecordsPer("Month", shortMonth);
}
public void showRecordsPerYear(Year year) {
showRecordsPer("Year", year.toString());
}
public void showRecordPerDateRange(LocalDate startDate, LocalDate endDate) {
openHomeTab();
showRecordsPerButton.click();
driver.findElement(AppiumBy.accessibilityId("Date Range")).click();
driver.findElement(AppiumBy.androidUIAutomator("new UiSelector().className(\"android.widget.Button\").instance(2)")).click();
setDateRange(startDate, endDate);
driver.findElement(AppiumBy.accessibilityId("OK")).click();
}
private void setDateRange(LocalDate startDate, LocalDate endDate) {
setDateField(0, startDate);
setDateField(1, endDate);
}
private void setDateField(int fieldIndex, LocalDate date) {
WebElement dateField = driver.findElement(AppiumBy.androidUIAutomator(
"new UiSelector().className(\"android.widget.EditText\").instance(" + fieldIndex + ")"
));
dateField.click();
dateField.clear();
dateField.sendKeys(date.format(DateTimeFormatter.ofPattern(DATE_FORMAT)));
}
public void addRecord(RecordData recordData) {
openHomeTab();
addRecordButton.click();
new CategorySelectionPage(driver).selectCategory(recordData.categoryType(), recordData.category());
new EditRecordPage(driver).addRecord(recordData);
}
public boolean isRecordDisplayedInCurrentView(String name, CategoryType categoryType, double amount) {
String accessibilityId = generateRecordAccessibilityId(name, categoryType, amount);
return !driver.findElements(AppiumBy.accessibilityId(accessibilityId)).isEmpty();
}
public void openRecord(String name, CategoryType categoryType, double amount, LocalDate date) {
showRecordsPerYear(Year.of(date.getYear()));
showRecordsPerMonth(date.getMonth());
String accessibilityId = generateRecordAccessibilityId(name, categoryType, amount);
try {
driver.findElement(AppiumBy.accessibilityId(accessibilityId)).click();
} catch (NoSuchElementException e) {
throw new NoSuchElementException(
String.format("Record not found: %s. Year: %d, Month: %s", accessibilityId, date.getYear(), date.getMonth()), e
);
}
}
private String generateRecordAccessibilityId(String name, CategoryType categoryType, double amount) {
String sign = categoryType.getDisplayName().equals("Expense") ? "-" : "";
NumberFormat numberFormat = NumberFormat.getNumberInstance(Locale.US);
numberFormat.setMinimumFractionDigits(2);
numberFormat.setMaximumFractionDigits(2);
String formattedAmount = numberFormat.format(amount);
return String.format(Locale.US, "%s\n%s%s", name, sign, formattedAmount);
}
public RecordData getRecord(String name, CategoryType categoryType, double amount, LocalDate date) {
openRecord(name, categoryType, amount, date);
return new EditRecordPage(driver).getRecord();
}
public void deleteRecord(String name, CategoryType categoryType, double amount, LocalDate date) {
openRecord(name, categoryType, amount, date);
new EditRecordPage(driver).delete();
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/SettingsPage.java
================================================
package com.github.emavgl.oinkoin.tests.appium.pages;
public class SettingsPage {
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/CategoryType.java
================================================
package com.github.emavgl.oinkoin.tests.appium.utils;
public enum CategoryType {
EXPENSE("Expense"),
INCOME("Income");
private final String displayName;
CategoryType(String displayName) {
this.displayName = displayName;
}
public String getDisplayName() {
return displayName;
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Constants.java
================================================
package com.github.emavgl.oinkoin.tests.appium.utils;
public class Constants {
public static final String PLATFORM_NAME = "Android";
public static final String PLATFORM_VERSION = "15";
public static final String UDID = "your-device-id";
public static final String APP_PACKAGE = "com.github.emavgl.piggybankpro";
public static final String APP_PATH = "/path/to/your/apk/app-pro-debug.apk";
public static final String APPIUM_SERVER_URL = "http://127.0.0.1:4723";
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/RecordData.java
================================================
package com.github.emavgl.oinkoin.tests.appium.utils;
import java.time.LocalDate;
public record RecordData(String name,
double amount,
CategoryType categoryType,
String category,
LocalDate date,
RepeatOption repeatOption,
String note) {
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/RepeatOption.java
================================================
package com.github.emavgl.oinkoin.tests.appium.utils;
public enum RepeatOption {
NOT_REPEAT("Not repeat"),
EVERY_DAY("Every day"),
EVERY_WEEK("Every week"),
EVERY_TWO_WEEKS("Every two weeks"),
EVERY_MONTH("Every month"),
EVERY_THREE_MONTHS("Every three months"),
EVERY_FOUR_MONTHS("Every four months"),
EVERY_YEAR("Every year");
private final String displayName;
RepeatOption(String displayName) {
this.displayName = displayName;
}
public String getDisplayName() {
return displayName;
}
}
================================================
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Utils.java
================================================
package com.github.emavgl.oinkoin.tests.appium.utils;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Utils {
public static String capitalizeFirstLetter(String input) {
return input.charAt(0) + input.substring(1).toLowerCase();
}
public static String formatRangeDateText(LocalDate startDate, LocalDate endDate) {
String startDateMonth = capitalizeFirstLetter(startDate.getMonth().toString()).substring(0, 3);
String endDateMonth = capitalizeFirstLetter(endDate.getMonth().toString()).substring(0, 3);
return String.format("%s %s - %s %s, %s", startDateMonth, startDate.getDayOfMonth(), endDateMonth, endDate.getDayOfMonth(), endDate.getYear());
}
// from "11/30/2024\nEvery day" to LocalDate (11/30/2024)
public static LocalDate extractDate(String input) {
String dateString = input.split("\n")[0];
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MM/dd/yyyy");
return LocalDate.parse(dateString, formatter);
}
// from "11/30/2024\nEvery day" to RepeatOption.EVERY_DAY
public static RepeatOption extractRepeatOption(String input) {
String[] parts = input.split("\n");
if (parts.length > 1) {
String repeatText = parts[1].trim();
for (RepeatOption option : RepeatOption.values()) {
if (option.getDisplayName().equalsIgnoreCase(repeatText)) {
return option;
}
}
}
return RepeatOption.NOT_REPEAT;
}
}
================================================
FILE: appium/gradle/wrapper/gradle-wrapper.properties
================================================
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
================================================
FILE: appium/gradlew
================================================
#!/bin/sh
#
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
warn () {
echo "$*"
} >&2
die () {
echo
echo "$*"
echo
exit 1
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"
================================================
FILE: appium/gradlew.bat
================================================
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
================================================
FILE: appium/settings.gradle
================================================
rootProject.name = 'appium'
include('app')
================================================
FILE: assets/locales/ar.json
================================================
{
"%s selected": "%s محدد",
"Add a new category": "أضف فئة جديدة",
"Add a new record": "إضافة سِجِل جديد",
"Add a note": "أضف ملاحظة",
"Add recurrent expenses": "إضافة مصاريف متكررة",
"Add selected tags (%s)": "إضافة الوسوم المحددة (%s)",
"Add tags": "إضافة وسوم",
"Additional Settings": "إعدادات إضافية",
"All": "الكل",
"All categories": "جميع التصنيفات",
"All records": "جميع السجلات",
"All tags": "جميع الوسوم",
"All the data has been deleted": "تم حذف جميع البيانات",
"Amount": "القيمة",
"Amount input keyboard type": "نوع لوحة مفاتيح إدخال المبلغ",
"App protected by PIN or biometric check": "التطبيق محمي بـ PIN أو التحقق البيومتري",
"Appearance": "المظهر",
"Apply Filters": "تطبيق الفلاتر",
"Archive": "أرشيف",
"Archived Categories": "التصنيفات المؤرشفة",
"Archiving the category you will NOT remove the associated records": "أرشفة التصنيف لن تحذف السجلات المرتبطة به",
"Are you sure you want to delete these %s tags?": "هل أنت متأكد أنك تريد حذف %s وسوم؟",
"Are you sure you want to delete this tag?": "هل أنت متأكد أنك تريد حذف هذا الوسم؟",
"Authenticate to access the app": "المصادقة للوصول إلى التطبيق",
"Automatic backup retention": "مدة الاحتفاظ بالنسخ الاحتياطية التلقائية",
"Available Tags": "الوسوم المتاحة",
"Available on Oinkoin Pro": "متوفر في أيون كوين برو",
"Average": "المعدل",
"Average of %s": "متوسط %s",
"Average of %s a day": "متوسط %s في اليوم",
"Average of %s a month": "متوسط %s في الشهر",
"Average of %s a year": "متوسط %s في السنة",
"Median of %s": "وسيط %s",
"Median of %s a day": "وسيط %s في اليوم",
"Median of %s a month": "وسيط %s في الشهر",
"Median of %s a year": "وسيط %s في السنة",
"Backup": "النسخ الاحتياطية",
"Backup encryption": "تشفير النسخ الاحتياطية",
"Backup/Restore the application data": "نسخ احتياطي/استعادة بيانات التطبيق",
"Balance": "الرصيد",
"Can't decrypt without a password": "لا يمكن فك التشفير بدون كلمة مرور",
"Cancel": "ألغِ",
"Categories": "التصنيفات",
"Categories vs Tags": "التصنيفات مقابل الوسوم",
"Category name": "اسم الفئة",
"Choose a color": "اختر لونًا",
"Clear All Filters": "مسح جميع الفلاتر",
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": "النقر على الزر أدناه يمكنك من إرسال ملاحظاتك إلينا. ملاحظاتك موضع تقدير كبير وسوف تساعدنا على النمو!",
"Color": "لون",
"Colors": "ألوان",
"Create backup and change settings": "إنشاء نسخة احتياطية وتغيير الإعدادات",
"Critical action": "عمل حاسم",
"Customization": "تخصيص",
"DOWNLOAD IT NOW!": "تحميل الآن!",
"Dark": "داكن",
"Data is deleted": "تم حذف البيانات",
"Date Format": "تنسيق التاريخ",
"Date Range": "فترة التاريخ",
"Day": "يوم",
"Decimal digits": "الأرقام العشرية",
"Decimal separator": "الفاصل العشري",
"Default": "إفتراضي",
"Default (System)": "افتراضي (النظام)",
"Define the records to show in the app homepage": "تحديد السجلات التي تظهر في الصفحة الرئيسية للتطبيق",
"Define what to summarize": "تحديد ما يتم تلخيصه",
"Delete": "حذف",
"Delete all the data": "حذف جميع البيانات",
"Delete tags": "حذف الوسوم",
"Deleting the category you will remove all the associated records": "حذف الفئة سيزيل جميع السجلات المرتبطة بها",
"Destination folder": "مجلد الوجهة",
"Displayed records": "السجلات المعروضة",
"Do you really want to archive the category?": "هل تريد حقاً أرشفة هذا التصنيف؟",
"Do you really want to delete all the data?": "هل تريد حذف كافة البيانات ؟",
"Do you really want to delete the category?": "هل تريد حقاً حذف هذه الفئة؟",
"Do you really want to delete this record?": "هل تريد حقا حذف هذا السجل؟",
"Do you really want to delete this recurrent record?": "هل تريد حقاً حذف هذا السجل المتكرر؟",
"Do you really want to unarchive the category?": "هل تريد حقاً إلغاء أرشفة هذا التصنيف؟",
"Don't show": "لا تُظهر",
"Edit Tag": "تعديل الوسم",
"Edit category": "تعديل الفئة",
"Edit record": "تعديل الأدخال",
"Edit tag": "تعديل الوسم",
"Enable automatic backup": "تفعيل النسخ الاحتياطي التلقائي",
"Enable if you want to have encrypted backups": "فعّل إذا كنت تريد نسخاً احتياطية مشفرة",
"Enable record's name suggestions": "تفعيل اقتراحات اسم السجل",
"Enable to automatically backup at every access": "تفعيل النسخ الاحتياطي التلقائي عند كل دخول",
"End Date (optional)": "تاريخ الانتهاء (اختياري)",
"Enter an encryption password": "أدخل كلمة مرور التشفير",
"Enter decryption password": "أدخل كلمة مرور فك التشفير",
"Enter your password here": "أدخل كلمة مرورك هنا",
"Every day": "كل يوم",
"Every four months": "كل أربعة أشهر",
"Every four weeks": "كل أربعة أسابيع",
"Every month": "كل شهر",
"Every three months": "كل ثلاثة أشهر",
"Every two weeks": "كل أسبوعين",
"Every week": "كل اسبوع",
"Every year": "كل سنة",
"Expense Categories": "تصنيفات المصاريف",
"Expenses": "المصاريف",
"Export Backup": "تصدير النسخة الاحتياطية",
"Export CSV": "تصدير CSV",
"Export Database": "تصدير قاعدة البيانات",
"Feedback": "ملاحظات",
"File will have a unique name": "سيكون للملف اسم فريد",
"Filter Logic": "منطق الفلتر",
"First Day of Week": "أول يوم في الأسبوع",
"Filter by Categories": "تصفية حسب التصنيفات",
"Filter by Tags": "تصفية حسب الوسوم",
"Filter records": "تصفية السجلات",
"Filter records by year or custom date range": "تصفية السجلات حسب السنة أو نطاق تاريخ مخصص",
"Filters": "الفلاتر",
"Food": "الطعام",
"Full category icon pack and color picker": "حزمة ايقونات التصنيف الكاملة ومنتقي الألوان",
"Got problems? Check out the logs": "هل تواجه مشاكل؟ تحقق من السجلات",
"Grouping separator": "فاصل التجميع",
"Home": "الرئيسية",
"Homepage settings": "إعدادات الصفحة الرئيسية",
"Homepage time interval": "الفترة الزمنية للصفحة الرئيسية",
"House": "البيت",
"How long do you want to keep backups": "كم من الوقت تريد الاحتفاظ بالنسخ الاحتياطية",
"How many categories/tags to be displayed": "كم عدد التصنيفات/الوسوم التي سيتم عرضها",
"Icon": "أيقونة",
"If enabled, you get suggestions when typing the record's name": "إذا تم تفعيله، ستحصل على اقتراحات عند كتابة اسم السجل",
"Include version and date in the name": "تضمين الإصدار والتاريخ في الاسم",
"Income": "الدخل",
"Income Categories": "تصنيفات الدخل",
"Info": "معلومات",
"It appears the file has been encrypted. Enter the password:": "يبدو أن الملف مشفر. أدخل كلمة المرور:",
"Language": "اللغة",
"Last Used": "الأخير استخداماً",
"Last backup: ": "آخر نسخة احتياطية: ",
"Light": "فاتح",
"Limit records by categories": "تحديد السجلات حسب التصنيفات",
"Load": "تحميل",
"Localization": "التوطين",
"Logs": "السجلات",
"Make it default": "اجعله افتراضياً",
"Make sure you have the latest version of the app. If so, the backup file may be corrupted.": "تأكد من أن لديك أحدث إصدار من التطبيق. إذا كان الأمر كذلك، قد يكون ملف النسخ الاحتياطي تالفًا.",
"Manage your existing tags": "إدارة وسومك الحالية",
"Monday": "الاثنين",
"Month": "شهر",
"Monthly": "شهرياً",
"Monthly Image": "صورة شهرية",
"Most Used": "الأكثر استخداماً",
"Name": "الاسم",
"Name (Alphabetically)": "الاسم (أبجدياً)",
"Never delete": "لا تحذف أبداً",
"No": "لا",
"No Category is set yet.": "لم يتم تعيين أي فئة حتى الآن.",
"No categories yet.": "لا توجد فئات حتى الآن.",
"No entries to show.": "لا توجد إدخالات لإظهارها.",
"No entries yet.": "لا توجد إدخالات حتى الآن.",
"No recurrent records yet.": "لا توجد سجلات متكررة حتى الآن.",
"No tags found": "لم يتم العثور على وسوم",
"Not a valid format (use for example: %s)": "تنسيق غير صحيح (استخدم على سبيل المثال: %s)",
"Not repeat": "غير متكرر",
"Not set": "غير محدد",
"Number keyboard": "لوحة مفاتيح الأرقام",
"Number of categories/tags in Pie Chart": "عدد التصنيفات/الوسوم في المخطط الدائري",
"Number of rows to display": "عدد الصفوف المراد عرضها",
"OK": "OK",
"Oinkoin Pro": "Oinkoin Pro",
"Once set, you can't see the password": "بمجرد الضبط، لن تتمكن من رؤية كلمة المرور",
"Order by": "ترتيب حسب",
"Original Order": "الترتيب الأصلي",
"Others": "أخرى",
"Overwrite the key `comma`": "استبدل مفتاح `فاصلة`",
"Overwrite the key `dot`": "استبدل المفتاح `نقطة`",
"Password": "كلمة المرور",
"Phone keyboard (with math symbols)": "لوحة مفاتيح الهاتف (مع الرموز الرياضية)",
"Please enter a value": "الرجاء إدخال قيمة",
"Please enter the category name": "الرجاء إدخال اسم الفئة",
"Privacy policy and credits": "سياسة الخصوصية والائتمانات",
"Protect access to the app": "حماية الوصول إلى التطبيق",
"Record name": "اسم السجل",
"Records matching categories OR tags": "السجلات المطابقة للتصنيفات أو الوسوم",
"Records must match categories AND tags": "يجب أن تتطابق السجلات مع التصنيفات والوسوم",
"Records of the current month": "سجلات الشهر الحالي",
"Records of the current week": "سجلات الأسبوع الحالي",
"Records of the current year": "سجلات السنة الحالية",
"Recurrent Records": "سجلات متكررة",
"Require App restart": "يتطلب إعادة تشغيل التطبيق",
"Reset to default dates": "إعادة التعيين إلى التواريخ الافتراضية",
"Restore Backup": "استرجاع النسخة الاحتياطية",
"Restore all the default configurations": "استعادة جميع الإعدادات الافتراضية",
"Restore data from a backup file": "استعادة البيانات من ملف النسخ الاحتياطي",
"Restore successful": "تمت الاستعادة بنجاح",
"Restore unsuccessful": "فشلت الاستعادة",
"Salary": "الراتب",
"Saturday": "السبت",
"Save": "حفظ",
"Scroll for more": "مرر للمزيد",
"Search or add new tag...": "ابحث أو أضف وسماً جديداً...",
"Search or create tags": "ابحث أو أنشئ وسوماً",
"Search records...": "ابحث في السجلات...",
"Select the app language": "اختر لغة التطبيق",
"Select the app theme color": "حدد لون سمة التطبيق",
"Select the app theme style": "حدد نمط سمة التطبيق",
"Select the category": "اختر الفئة",
"Select the date format": "اختر تنسيق التاريخ",
"Select the decimal separator": "اختر الفاصل العشري",
"Select the first day of the week": "اختر أول يوم في الأسبوع",
"Select the grouping separator": "اختر فاصل التجميع",
"Select the keyboard layout for amount input": "اختر تخطيط لوحة المفاتيح لإدخال المبلغ",
"Select the number of decimal digits": "حدد عدد الأرقام العشرية",
"Send a feedback": "أرسل ملاحظتك",
"Send us a feedback": "أرسل ملاحظتك",
"Settings": "إعدادات",
"Share the backup file": "مشاركة ملف النسخة الاحتياطية",
"Share the database file": "مشاركة ملف قاعدة البيانات",
"Show active categories": "عرض التصنيفات النشطة",
"Show all rows": "عرض جميع الصفوف",
"Show archived categories": "عرض التصنيفات المؤرشفة",
"Show at most one row": "عرض صف واحد على الأكثر",
"Show at most three rows": "عرض ثلاثة صفوف على الأكثر",
"Show at most two rows": "عرض صفين على الأكثر",
"Show categories with their own colors instead of the default palette": "عرض التصنيفات بألوانها الخاصة بدلاً من لوحة الألوان الافتراضية",
"Show or hide tags in the record list": "إظهار أو إخفاء الوسوم في قائمة السجلات",
"Show records that have all selected tags": "عرض السجلات التي تحتوي على جميع الوسوم المحددة",
"Show records that have any of the selected tags": "عرض السجلات التي تحتوي على أي من الوسوم المحددة",
"Show records' notes on the homepage": "عرض ملاحظات السجلات في الصفحة الرئيسية",
"Shows records per": "عرض السجلات لكل",
"Statistics": "الإحصاءات",
"Store the Backup on disk": "تخزين النسخة الاحتياطية على القرص",
"Suggested tags": "الوسوم المقترحة",
"Sunday": "الأحد",
"System": "النظام",
"Tag name": "اسم الوسم",
"Tags": "الوسوم",
"Tags must be a single word without commas.": "يجب أن تكون الوسوم كلمة واحدة بدون فواصل.",
"The data from the backup file are now restored.": "يتم الآن استعادة البيانات من ملف النسخ الاحتياطي.",
"Theme style": "نوع السمة",
"Transport": "المواصلات",
"Try searching or create a new tag": "جرب البحث أو أنشئ وسماً جديداً",
"Unable to create a backup: please, delete manually the old backup": "تعذر إنشاء نسخة احتياطية: يرجى حذف النسخة الاحتياطية القديمة يدوياً",
"Unarchive": "إلغاء الأرشفة",
"Upgrade to": "الترقية إلى",
"Upgrade to Pro": "ترقية إلى النسخة الكاملة",
"Use Category Colors in Pie Chart": "استخدام ألوان التصنيفات في المخطط الدائري",
"View or delete recurrent records": "عرض السجلات المتكررة أو حذفها",
"Visual settings and more": "الإعدادات المرئية والمزيد",
"Visualise tags in the main page": "عرض الوسوم في الصفحة الرئيسية",
"Weekly": "أسبوعياً",
"What should the 'Overview widget' summarize?": "ما الذي يجب أن تلخصه 'أداة النظرة العامة'؟",
"When typing `comma`, it types `dot` instead": "عند كتابة 'فاصلة'، تكتب 'نقطة' بدلًا من ذلك",
"When typing `dot`, it types `comma` instead": "عند كتابة 'نقطة'، تكتب 'فاصلة' بدلًا من ذلك",
"Year": "سنة",
"Yes": "نعم",
"You need to set a category first. Go to Category tab and add a new category.": "تحتاج إلى تعيين فئة أولاً. انتقل إلى علامة تبويب الفئة وأضف فئة جديدة.",
"You spent": "لقد أنفقت",
"Your income is": "دخلك هو",
"apostrophe": "الفاصله العليا",
"comma": "فاصلة",
"dot": "نقطة",
"none": "none",
"space": "فضاء",
"underscore": "واصلة سفلية",
"Auto decimal input": "إدخال الأرقام العشرية تلقائياً",
"Typing 5 becomes %s5": "كتابة 5 تصبح %s5",
"Custom starting day of the month": "يوم بداية الشهر المخصص",
"Define the starting day of the month for records that show in the app homepage": "تحديد يوم بداية الشهر للسجلات التي تظهر في الصفحة الرئيسية للتطبيق",
"Generate and display upcoming recurrent records (they will be included in statistics)": "توليد وعرض السجلات المتكررة القادمة (سيتم تضمينها في الإحصاءات)",
"Hide cumulative balance line": "إخفاء خط الرصيد التراكمي",
"No entries found": "لم يتم العثور على إدخالات",
"Number & Formatting": "الأرقام والتنسيق",
"Records": "السجلات",
"Show cumulative balance line": "عرض خط الرصيد التراكمي",
"Show future recurrent records": "عرض السجلات المتكررة المستقبلية",
"Switch to bar chart": "التبديل إلى المخطط الشريطي",
"Switch to net savings view": "التبديل إلى عرض صافي المدخرات",
"Switch to pie chart": "التبديل إلى المخطط الدائري",
"Switch to separate income and expense bars": "التبديل إلى أشرطة الدخل والمصاريف المنفصلة",
"Tags (%d)": "الوسوم (%d)",
"You overspent": "لقد تجاوزت ميزانيتك"
}
================================================
FILE: assets/locales/ca.json
================================================
{
"%s selected": "%s seleccionats",
"Add a new category": "Afegeix una nova categoria",
"Add a new record": "Afegeix un nou registre",
"Add a note": "Afegeix una nota",
"Add recurrent expenses": "Afegeix despeses recurrents",
"Add selected tags (%s)": "Afegeix les etiquetes seleccionades (%s)",
"Add tags": "Afegeix etiquetes",
"Additional Settings": "Configuració addicional",
"All": "Tot",
"All categories": "Totes les categories",
"All records": "Tots els registres",
"All tags": "Totes les etiquetes",
"All the data has been deleted": "S'han eliminat totes les dades",
"Amount": "Import",
"Amount input keyboard type": "Tipus de teclat per a l'import",
"App protected by PIN or biometric check": "Aplicació protegida per PIN o verificació biomètrica",
"Appearance": "Aparença",
"Apply Filters": "Aplica filtres",
"Archive": "Arxiva",
"Archived Categories": "Categories arxivades",
"Archiving the category you will NOT remove the associated records": "En arxivar la categoria NO s'eliminaran els registres associats",
"Are you sure you want to delete these %s tags?": "Segur que vols eliminar aquestes %s etiquetes?",
"Are you sure you want to delete this tag?": "Segur que vols eliminar aquesta etiqueta?",
"Authenticate to access the app": "Autentica't per accedir a l'aplicació",
"Automatic backup retention": "Retenció de còpies de seguretat automàtiques",
"Available Tags": "Etiquetes disponibles",
"Available on Oinkoin Pro": "Disponible a Oinkoin Pro",
"Average": "Mitjana",
"Average of %s": "Mitjana de %s",
"Average of %s a day": "Mitjana de %s al dia",
"Average of %s a month": "Mitjana de %s al mes",
"Average of %s a year": "Mitjana de %s a l'any",
"Median of %s": "Mediana de %s",
"Median of %s a day": "Mediana de %s al dia",
"Median of %s a month": "Mediana de %s al mes",
"Median of %s a year": "Mediana de %s a l'any",
"Backup": "Còpia de seguretat",
"Backup encryption": "Xifrat de còpia de seguretat",
"Backup/Restore the application data": "Fer còpia de seguretat/Restaurar les dades de l'aplicació",
"Balance": "Balanç",
"Can't decrypt without a password": "No es pot desxifrar sense contrasenya",
"Cancel": "Cancel·la",
"Categories": "Categories",
"Categories vs Tags": "Categories vs Etiquetes",
"Category name": "Nom de la categoria",
"Choose a color": "Tria un color",
"Clear All Filters": "Neteja tots els filtres",
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": "Fent clic al botó següent ens podeu enviar un correu de comentaris. Els vostres comentaris són molt apreciats i ens ajudaran a créixer!",
"Color": "Color",
"Colors": "Colors",
"Create backup and change settings": "Crea una còpia de seguretat i canvia la configuració",
"Critical action": "Acció crítica",
"Customization": "Personalització",
"DOWNLOAD IT NOW!": "BAIXA-LA ARA!",
"Dark": "Fosc",
"Data is deleted": "Les dades s'han eliminat",
"Date Format": "Format de data",
"Date Range": "Interval de dates",
"Day": "Dia",
"Decimal digits": "Dígits decimals",
"Decimal separator": "Separador decimal",
"Default": "Per defecte",
"Default (System)": "Per defecte (sistema)",
"Define the records to show in the app homepage": "Defineix els registres que es mostraran a la pàgina d'inici de l'aplicació",
"Define what to summarize": "Defineix què resumir",
"Delete": "Elimina",
"Delete all the data": "Elimina totes les dades",
"Delete tags": "Elimina etiquetes",
"Deleting the category you will remove all the associated records": "En eliminar la categoria, s'eliminaran tots els registres associats",
"Destination folder": "Carpeta de destinació",
"Displayed records": "Registres mostrats",
"Do you really want to archive the category?": "Realment vols arxivar la categoria?",
"Do you really want to delete all the data?": "Realment vols eliminar totes les dades?",
"Do you really want to delete the category?": "Realment vols eliminar la categoria?",
"Do you really want to delete this record?": "Realment vols eliminar aquest registre?",
"Do you really want to delete this recurrent record?": "Realment vols eliminar aquest registre recurrent?",
"Do you really want to unarchive the category?": "Realment vols desarxivar la categoria?",
"Don't show": "No mostris",
"Edit Tag": "Edita l'etiqueta",
"Edit category": "Edita la categoria",
"Edit record": "Edita el registre",
"Edit tag": "Edita l'etiqueta",
"Enable automatic backup": "Activa la còpia de seguretat automàtica",
"Enable if you want to have encrypted backups": "Activa si vols tenir còpies de seguretat xifrades",
"Enable record's name suggestions": "Activa els suggeriments de nom del registre",
"Enable to automatically backup at every access": "Activa per fer còpia de seguretat automàtica a cada accés",
"End Date (optional)": "Data de finalització (opcional)",
"Enter an encryption password": "Introdueix una contrasenya de xifrat",
"Enter decryption password": "Introdueix la contrasenya de desxifrat",
"Enter your password here": "Introdueix la teva contrasenya aquí",
"Every day": "Cada dia",
"Every four months": "Cada quatre mesos",
"Every four weeks": "Cada quatre setmanes",
"Every month": "Cada mes",
"Every three months": "Cada tres mesos",
"Every two weeks": "Cada dues setmanes",
"Every week": "Cada setmana",
"Every year": "Cada any",
"Expense Categories": "Categories de despesa",
"Expenses": "Despeses",
"Export Backup": "Exporta còpia de seguretat",
"Export CSV": "Exporta CSV",
"Export Database": "Exporta base de dades",
"Feedback": "Comentaris",
"File will have a unique name": "El fitxer tindrà un nom únic",
"Filter Logic": "Lògica de filtratge",
"First Day of Week": "Primer dia de la setmana",
"Filter by Categories": "Filtra per categories",
"Filter by Tags": "Filtra per etiquetes",
"Filter records": "Filtra registres",
"Filter records by year or custom date range": "Filtra registres per any o interval de dates personalitzat",
"Filters": "Filtres",
"Food": "Menjar",
"Full category icon pack and color picker": "Paquet d'icones complet per a categories i selector de colors",
"Got problems? Check out the logs": "Tens problemes? Mira els registres",
"Grouping separator": "Separador de milers",
"Home": "Inici",
"Homepage settings": "Configuració de la pàgina d'inici",
"Homepage time interval": "Interval de temps de la pàgina d'inici",
"House": "Casa",
"How long do you want to keep backups": "Quant de temps vols conservar les còpies de seguretat",
"How many categories/tags to be displayed": "Quantes categories/etiquetes es mostraran",
"Icon": "Icona",
"If enabled, you get suggestions when typing the record's name": "Si està activat, rebràs suggeriments en escriure el nom del registre",
"Include version and date in the name": "Inclou la versió i la data al nom",
"Income": "Ingrés",
"Income Categories": "Categories d'ingrés",
"Info": "Informació",
"It appears the file has been encrypted. Enter the password:": "Sembla que el fitxer està xifrat. Introdueix la contrasenya:",
"Language": "Idioma",
"Last Used": "Últim ús",
"Last backup: ": "Última còpia de seguretat: ",
"Light": "Clar",
"Limit records by categories": "Limita els registres per categories",
"Load": "Carrega",
"Localization": "Localització",
"Logs": "Registres",
"Make it default": "Fes-lo per defecte",
"Make sure you have the latest version of the app. If so, the backup file may be corrupted.": "Assegura't que tens l'última versió de l'aplicació. Si és així, el fitxer de còpia de seguretat pot estar corrupte.",
"Manage your existing tags": "Gestiona les teves etiquetes existents",
"Monday": "Dilluns",
"Month": "Mes",
"Monthly": "Mensual",
"Monthly Image": "Imatge mensual",
"Most Used": "Més utilitzat",
"Name": "Nom",
"Name (Alphabetically)": "Nom (alfabèticament)",
"Never delete": "No eliminar mai",
"No": "No",
"No Category is set yet.": "Encara no s'ha definit cap categoria.",
"No categories yet.": "Encara no hi ha categories.",
"No entries to show.": "No hi ha entrades per mostrar.",
"No entries yet.": "Encara no hi ha entrades.",
"No recurrent records yet.": "Encara no hi ha registres recurrents.",
"No tags found": "No s'han trobat etiquetes",
"Not a valid format (use for example: %s)": "No és un format vàlid (utilitza per exemple: %s)",
"Not repeat": "No repetir",
"Not set": "No definit",
"Number keyboard": "Teclat numèric",
"Number of categories/tags in Pie Chart": "Nombre de categories/etiquetes al gràfic circular",
"Number of rows to display": "Nombre de files a mostrar",
"OK": "D'acord",
"Oinkoin Pro": "Oinkoin Pro",
"Once set, you can't see the password": "Un cop definida, no podràs veure la contrasenya",
"Order by": "Ordena per",
"Original Order": "Ordre original",
"Others": "Altres",
"Overwrite the key `comma`": "Sobreescriu la tecla `coma`",
"Overwrite the key `dot`": "Sobreescriu la tecla `punt`",
"Password": "Contrasenya",
"Phone keyboard (with math symbols)": "Teclat de telèfon (amb símbols matemàtics)",
"Please enter a value": "Si us plau, introdueix un valor",
"Please enter the category name": "Si us plau, introdueix el nom de la categoria",
"Privacy policy and credits": "Política de privacitat i crèdits",
"Protect access to the app": "Protegeix l'accés a l'aplicació",
"Record name": "Nom del registre",
"Records matching categories OR tags": "Registres que coincideixen amb categories O etiquetes",
"Records must match categories AND tags": "Els registres han de coincidir amb categories I etiquetes",
"Records of the current month": "Registres del mes actual",
"Records of the current week": "Registres de la setmana actual",
"Records of the current year": "Registres de l'any actual",
"Recurrent Records": "Registres recurrents",
"Require App restart": "Requereix reiniciar l'aplicació",
"Reset to default dates": "Restableix les dates per defecte",
"Restore Backup": "Restaura còpia de seguretat",
"Restore all the default configurations": "Restaura totes les configuracions per defecte",
"Restore data from a backup file": "Restaura les dades des d'un fitxer de còpia de seguretat",
"Restore successful": "Restauració correcta",
"Restore unsuccessful": "Restauració fallida",
"Salary": "Sou",
"Saturday": "Dissabte",
"Save": "Desa",
"Scroll for more": "Desplaça't per veure'n més",
"Search or add new tag...": "Cerca o afegeix una etiqueta nova...",
"Search or create tags": "Cerca o crea etiquetes",
"Search records...": "Cerca registres...",
"Select the app language": "Selecciona l'idioma de l'aplicació",
"Select the app theme color": "Selecciona el color del tema de l'aplicació",
"Select the app theme style": "Selecciona l'estil del tema de l'aplicació",
"Select the category": "Selecciona la categoria",
"Select the date format": "Selecciona el format de data",
"Select the decimal separator": "Selecciona el separador decimal",
"Select the first day of the week": "Selecciona el primer dia de la setmana",
"Select the grouping separator": "Selecciona el separador de milers",
"Select the keyboard layout for amount input": "Selecciona la disposició del teclat per a l'import",
"Select the number of decimal digits": "Selecciona el nombre de dígits decimals",
"Send a feedback": "Envia un comentari",
"Send us a feedback": "Envia'ns un comentari",
"Settings": "Configuració",
"Share the backup file": "Comparteix el fitxer de còpia de seguretat",
"Share the database file": "Comparteix el fitxer de base de dades",
"Show active categories": "Mostra categories actives",
"Show all rows": "Mostra totes les files",
"Show archived categories": "Mostra categories arxivades",
"Show at most one row": "Mostra com a màxim una fila",
"Show at most three rows": "Mostra com a màxim tres files",
"Show at most two rows": "Mostra com a màxim dues files",
"Show categories with their own colors instead of the default palette": "Mostra les categories amb els seus propis colors en lloc de la paleta per defecte",
"Show or hide tags in the record list": "Mostra o amaga les etiquetes a la llista de registres",
"Show records that have all selected tags": "Mostra registres que tinguin totes les etiquetes seleccionades",
"Show records that have any of the selected tags": "Mostra registres que tinguin alguna de les etiquetes seleccionades",
"Show records' notes on the homepage": "Mostra les notes dels registres a la pàgina d'inici",
"Shows records per": "Mostra registres per",
"Statistics": "Estadístiques",
"Store the Backup on disk": "Emmagatzema la còpia de seguretat al disc",
"Suggested tags": "Etiquetes suggerides",
"Sunday": "Diumenge",
"System": "Sistema",
"Tag name": "Nom de l'etiqueta",
"Tags": "Etiquetes",
"Tags must be a single word without commas.": "Les etiquetes han de ser una sola paraula sense comes.",
"The data from the backup file are now restored.": "Les dades del fitxer de còpia de seguretat s'han restaurat.",
"Theme style": "Estil del tema",
"Transport": "Transport",
"Try searching or create a new tag": "Prova de cercar o crea una etiqueta nova",
"Unable to create a backup: please, delete manually the old backup": "No s'ha pogut crear una còpia de seguretat: suprimeix manualment la còpia de seguretat antiga",
"Unarchive": "Desarxivar",
"Upgrade to": "Actualitza a",
"Upgrade to Pro": "Actualitza a Pro",
"Use Category Colors in Pie Chart": "Utilitza colors de categoria al gràfic circular",
"View or delete recurrent records": "Visualitza o elimina registres recurrents",
"Visual settings and more": "Configuració visual i més",
"Visualise tags in the main page": "Visualitza etiquetes a la pàgina principal",
"Weekly": "Setmanal",
"What should the 'Overview widget' summarize?": "Què ha de resumir el 'widget de resum'?",
"When typing `comma`, it types `dot` instead": "Quan escrius `coma`, escriu `punt` en lloc seu",
"When typing `dot`, it types `comma` instead": "Quan escrius `punt`, escriu `coma` en lloc seu",
"Year": "Any",
"Yes": "Sí",
"You need to set a category first. Go to Category tab and add a new category.": "Primer has de definir una categoria. Ves a la pestanya de categories i afegeix una categoria nova.",
"You spent": "Has gastat",
"Your income is": "El teu ingrés és",
"apostrophe": "apòstrof",
"comma": "coma",
"dot": "punt",
"none": "cap",
"space": "espai",
"underscore": "guió baix",
"Auto decimal input": "Entrada decimal automàtica",
"Typing 5 becomes %s5": "Escriure 5 es converteix en %s5"
}
================================================
FILE: assets/locales/da.json
================================================
{
"%s selected": "%s valgt",
"Add a new category": "Tilføj en ny kategori",
"Add a new record": "Tilføj en ny post",
"Add a note": "Tilføj en note",
"Add recurrent expenses": "Tilføj tilbagevendende udgifter",
"Add selected tags (%s)": "Tilføj valgte tags (%s)",
"Add tags": "Tilføj tags",
"Additional Settings": "Yderligere indstillinger",
"All": "Alle",
"All categories": "Alle kategorier",
"All records": "Alle poster",
"All tags": "Alle tags",
"All the data has been deleted": "Alle data er blevet slettet",
"Amount": "Beløb",
"Amount input keyboard type": "Tastaturtype til beløbsinput",
"App protected by PIN or biometric check": "App beskyttet af PIN-kode eller biometrisk kontrol",
"Appearance": "Udseende",
"Apply Filters": "Anvend filtre",
"Archive": "Arkiver",
"Archived Categories": "Arkiverede kategorier",
"Archiving the category you will NOT remove the associated records": "Arkivering af kategorien fjerner IKKE de tilknyttede poster",
"Are you sure you want to delete these %s tags?": "Er du sikker på, at du vil slette disse %s tags?",
"Are you sure you want to delete this tag?": "Er du sikker på, at du vil slette dette tag?",
"Authenticate to access the app": "Godkend for at få adgang til appen",
"Automatic backup retention": "Automatisk sikkerhedskopiopbevaring",
"Available Tags": "Tilgængelige tags",
"Available on Oinkoin Pro": "Tilgængelig på Oinkoin Pro",
"Average": "Gennemsnit",
"Average of %s": "Gennemsnit af %s",
"Average of %s a day": "Gennemsnit af %s om dagen",
"Average of %s a month": "Gennemsnit af %s om måneden",
"Average of %s a year": "Gennemsnit af %s om året",
"Median of %s": "Median af %s",
"Median of %s a day": "Median af %s om dagen",
"Median of %s a month": "Median af %s om måneden",
"Median of %s a year": "Median af %s om året",
"Backup": "Sikkerhedskopi",
"Backup encryption": "Kryptering af sikkerhedskopi",
"Backup/Restore the application data": "Sikkerhedskopier/gendan appdata",
"Balance": "Saldo",
"Can't decrypt without a password": "Kan ikke dekryptere uden adgangskode",
"Cancel": "Annuller",
"Categories": "Kategorier",
"Categories vs Tags": "Kategorier vs tags",
"Category name": "Kategorinavn",
"Choose a color": "Vælg en farve",
"Clear All Filters": "Ryd alle filtre",
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": "Ved at klikke på knappen nedenfor kan du sende os en feedback-e-mail. Din feedback er meget værdsat og vil hjælpe os med at vokse!",
"Color": "Farve",
"Colors": "Farver",
"Create backup and change settings": "Opret sikkerhedskopi og skift indstillinger",
"Critical action": "Kritisk handling",
"Customization": "Tilpasning",
"DOWNLOAD IT NOW!": "HENT DET NU!",
"Dark": "Mørk",
"Data is deleted": "Data er slettet",
"Date Format": "Datoformat",
"Date Range": "Datointerval",
"Day": "Dag",
"Decimal digits": "Decimaltal",
"Decimal separator": "Decimalseparator",
"Default": "Standard",
"Default (System)": "Default (System)",
"Define the records to show in the app homepage": "Definer hvilke poster der skal vises på appens startside",
"Define what to summarize": "Definer hvad der skal opsummeres",
"Delete": "Slet",
"Delete all the data": "Slet alle data",
"Delete tags": "Slet tags",
"Deleting the category you will remove all the associated records": "Hvis du sletter kategorien, fjerner du alle tilknyttede poster",
"Destination folder": "Destinationsmappe",
"Displayed records": "Viste poster",
"Do you really want to archive the category?": "Vil du virkelig arkivere kategorien?",
"Do you really want to delete all the data?": "Vil du virkelig slette alle data?",
"Do you really want to delete the category?": "Vil du virkelig slette kategorien?",
"Do you really want to delete this record?": "Vil du virkelig slette denne post?",
"Do you really want to delete this recurrent record?": "Vil du virkelig slette denne tilbagevendende post?",
"Do you really want to unarchive the category?": "Vil du virkelig fjerne arkiveringen af kategorien?",
"Don't show": "Vis ikke",
"Edit Tag": "Rediger tag",
"Edit category": "Rediger kategori",
"Edit record": "Rediger post",
"Edit tag": "Rediger tag",
"Enable automatic backup": "Aktiver automatisk sikkerhedskopi",
"Enable if you want to have encrypted backups": "Aktiver hvis du vil have krypterede sikkerhedskopier",
"Enable record's name suggestions": "Aktiver navneforslag til poster",
"Enable to automatically backup at every access": "Aktiver for automatisk at sikkerhedskopiere ved hvert besøg",
"End Date (optional)": "Slutdato (valgfri)",
"Enter an encryption password": "Indtast en krypteringsadgangskode",
"Enter decryption password": "Indtast dekrypteringsadgangskode",
"Enter your password here": "Indtast din adgangskode her",
"Every day": "Hver dag",
"Every four months": "Hver fjerde måned",
"Every four weeks": "Hver fjerde uge",
"Every month": "Hver måned",
"Every three months": "Hver tredje måned",
"Every two weeks": "Hver anden uge",
"Every week": "Hver uge",
"Every year": "Hvert år",
"Expense Categories": "Udgiftskategorier",
"Expenses": "Udgifter",
"Export Backup": "Eksporter sikkerhedskopi",
"Export CSV": "Export CSV",
"Export Database": "Eksporter database",
"Feedback": "Feedback",
"File will have a unique name": "Filen får et unikt navn",
"Filter Logic": "Filterlogik",
"First Day of Week": "Ugens første dag",
"Filter by Categories": "Filtrer efter kategorier",
"Filter by Tags": "Filtrer efter tags",
"Filter records": "Filtrer poster",
"Filter records by year or custom date range": "Filtrer poster efter år eller brugerdefineret datointerval",
"Filters": "Filtre",
"Food": "Mad",
"Full category icon pack and color picker": "Fuldt kategoriikonpakke og farvevælger",
"Got problems? Check out the logs": "Har du problemer? Se loggene",
"Grouping separator": "Grupperingsseparator",
"Home": "Hjem",
"Homepage settings": "Startsideindstillinger",
"Homepage time interval": "Tidsinterval på startside",
"House": "Hus",
"How long do you want to keep backups": "Hvor længe vil du beholde sikkerhedskopier",
"How many categories/tags to be displayed": "Hvor mange kategorier/tags skal vises",
"Icon": "Ikon",
"If enabled, you get suggestions when typing the record's name": "Hvis aktiveret, får du forslag, når du skriver postens navn",
"Include version and date in the name": "Inkluder version og dato i navnet",
"Income": "Indtægt",
"Income Categories": "Indtægtskategorier",
"Info": "Info",
"It appears the file has been encrypted. Enter the password:": "Det ser ud til, at filen er krypteret. Indtast adgangskoden:",
"Language": "Sprog",
"Last Used": "Sidst brugt",
"Last backup: ": "Seneste sikkerhedskopi: ",
"Light": "Lys",
"Limit records by categories": "Begræns poster efter kategorier",
"Load": "Indlæs",
"Localization": "Lokalisering",
"Logs": "Logs",
"Make it default": "Gør det til standard",
"Make sure you have the latest version of the app. If so, the backup file may be corrupted.": "Sørg for at du har den nyeste version af appen. Hvis det er tilfældet, kan sikkerhedskopifilen være beskadiget.",
"Manage your existing tags": "Administrer dine eksisterende tags",
"Monday": "Mandag",
"Month": "Måned",
"Monthly": "Månedlig",
"Monthly Image": "Månedligt billede",
"Most Used": "Mest brugt",
"Name": "Navn",
"Name (Alphabetically)": "Navn (alfabetisk)",
"Never delete": "Slet aldrig",
"No": "Nej",
"No Category is set yet.": "Ingen kategori er angivet endnu.",
"No categories yet.": "Ingen kategorier endnu.",
"No entries to show.": "Ingen poster at vise.",
"No entries yet.": "Ingen poster endnu.",
"No recurrent records yet.": "Ingen tilbagevendende poster endnu.",
"No tags found": "Ingen tags fundet",
"Not a valid format (use for example: %s)": "Ikke et gyldigt format (brug for eksempel: %s)",
"Not repeat": "Gentag ikke",
"Not set": "Ikke angivet",
"Number keyboard": "Nummertastatur",
"Number of categories/tags in Pie Chart": "Antal kategorier/tags i cirkeldiagram",
"Number of rows to display": "Antal rækker der skal vises",
"OK": "OK",
"Oinkoin Pro": "Oinkoin Pro",
"Once set, you can't see the password": "Når den er indstillet, kan du ikke se adgangskoden",
"Order by": "Sorter efter",
"Original Order": "Original rækkefølge",
"Others": "Andre",
"Overwrite the key `comma`": "Overskriv tasten `komma`",
"Overwrite the key `dot`": "Overskriv tasten `punktum`",
"Password": "Adgangskode",
"Phone keyboard (with math symbols)": "Telefontastatur (med matematiske symboler)",
"Please enter a value": "Indtast venligst en værdi",
"Please enter the category name": "Indtast venligst kategorinavnet",
"Privacy policy and credits": "Privatlivspolitik og krediteringer",
"Protect access to the app": "Beskyt adgang til appen",
"Record name": "Postnavn",
"Records matching categories OR tags": "Poster der matcher kategorier ELLER tags",
"Records must match categories AND tags": "Poster skal matche kategorier OG tags",
"Records of the current month": "Poster for den aktuelle måned",
"Records of the current week": "Poster for den aktuelle uge",
"Records of the current year": "Poster for det aktuelle år",
"Recurrent Records": "Tilbagevendende poster",
"Require App restart": "Kræver genstart af app",
"Reset to default dates": "Nulstil til standarddatoer",
"Restore Backup": "Gendan sikkerhedskopi",
"Restore all the default configurations": "Gendan alle standardkonfigurationer",
"Restore data from a backup file": "Gendan data fra en sikkerhedskopifil",
"Restore successful": "Gendannelse lykkedes",
"Restore unsuccessful": "Gendannelse mislykkedes",
"Salary": "Løn",
"Saturday": "Lørdag",
"Save": "Gem",
"Scroll for more": "Rul for mere",
"Search or add new tag...": "Søg eller tilføj nyt tag...",
"Search or create tags": "Søg eller opret tags",
"Search records...": "Søg i poster...",
"Select the app language": "Vælg appens sprog",
"Select the app theme color": "Vælg appens temafarve",
"Select the app theme style": "Vælg appens temastil",
"Select the category": "Vælg kategorien",
"Select the date format": "Vælg datoformat",
"Select the decimal separator": "Vælg decimalseparator",
"Select the first day of the week": "Vælg ugens første dag",
"Select the grouping separator": "Vælg grupperingsseparator",
"Select the keyboard layout for amount input": "Vælg tastaturlayout til beløbsinput",
"Select the number of decimal digits": "Vælg antal decimalcifre",
"Send a feedback": "Send feedback",
"Send us a feedback": "Send os feedback",
"Settings": "Indstillinger",
"Share the backup file": "Del sikkerhedskopifilen",
"Share the database file": "Del databasefilen",
"Show active categories": "Vis aktive kategorier",
"Show all rows": "Vis alle rækker",
"Show archived categories": "Vis arkiverede kategorier",
"Show at most one row": "Vis højst én række",
"Show at most three rows": "Vis højst tre rækker",
"Show at most two rows": "Vis højst to rækker",
"Show categories with their own colors instead of the default palette": "Vis kategorier med deres egne farver i stedet for standardpaletten",
"Show or hide tags in the record list": "Vis eller skjul tags i postlisten",
"Show records that have all selected tags": "Vis poster der har alle valgte tags",
"Show records that have any of the selected tags": "Vis poster der har et af de valgte tags",
"Show records' notes on the homepage": "Vis posters noter på startsiden",
"Shows records per": "Viser poster per",
"Statistics": "Statistik",
"Store the Backup on disk": "Gem sikkerhedskopien på disken",
"Suggested tags": "Foreslåede tags",
"Sunday": "Søndag",
"System": "System",
"Tag name": "Tagnavn",
"Tags": "Tags",
"Tags must be a single word without commas.": "Tags skal være et enkelt ord uden kommaer.",
"The data from the backup file are now restored.": "Dataene fra sikkerhedskopifilen er nu gendannet.",
"Theme style": "Temastil",
"Transport": "Transport",
"Try searching or create a new tag": "Prøv at søge eller opret et nyt tag",
"Unable to create a backup: please, delete manually the old backup": "Kan ikke oprette en sikkerhedskopi: slet venligst den gamle sikkerhedskopi manuelt",
"Unarchive": "Fjern arkivering",
"Upgrade to": "Opgrader til",
"Upgrade to Pro": "Opgrader til Pro",
"Use Category Colors in Pie Chart": "Brug kategorifarverne i cirkeldiagrammet",
"View or delete recurrent records": "Vis eller slet tilbagevendende poster",
"Visual settings and more": "Visuelle indstillinger og mere",
"Visualise tags in the main page": "Visualiser tags på hovedsiden",
"Weekly": "Ugentlig",
"What should the 'Overview widget' summarize?": "Hvad skal 'Oversigtwidgetten' opsummere?",
"When typing `comma`, it types `dot` instead": "Når du skriver `komma`, skriver den `punktum` i stedet",
"When typing `dot`, it types `comma` instead": "Når du skriver `punktum`, skriver den `komma` i stedet",
"Year": "År",
"Yes": "Ja",
"You need to set a category first. Go to Category tab and add a new category.": "Du skal først angive en kategori. Gå til fanen Kategori og tilføj en ny kategori.",
"You spent": "Du har brugt",
"Your income is": "Din indtægt er",
"apostrophe": "apostrof",
"comma": "komma",
"dot": "punktum",
"none": "ingen",
"space": "mellemrum",
"underscore": "understregning",
"Auto decimal input": "Automatisk decimalinput",
"Typing 5 becomes %s5": "Indtastning af 5 bliver %s5",
"Custom starting day of the month": "Brugerdefineret startdag for måneden",
"Define the starting day of the month for records that show in the app homepage": "Definer startdagen for måneden for poster der vises på appens startside",
"Generate and display upcoming recurrent records (they will be included in statistics)": "Generer og vis kommende tilbagevendende poster (de vil blive inkluderet i statistik)",
"Hide cumulative balance line": "Skjul kumulativ saldolinje",
"No entries found": "Ingen poster fundet",
"Number & Formatting": "Tal og formatering",
"Records": "Poster",
"Show cumulative balance line": "Vis kumulativ saldolinje",
"Show future recurrent records": "Vis fremtidige tilbagevendende poster",
"Switch to bar chart": "Skift til søjlediagram",
"Switch to net savings view": "Skift til visning af nettopbesparelser",
"Switch to pie chart": "Skift til cirkeldiagram",
"Switch to separate income and expense bars": "Skift til separate søjler for indtægt og udgift",
"Tags (%d)": "Tags (%d)",
"You overspent": "Du har overbrugt"
}
================================================
FILE: assets/locales/de.json
================================================
{
"%s selected": "%s ausgewählt",
"Add a new category": "Eine neue Kategorie hinzufügen",
"Add a new record": "Neuen Eintrag hinzufügen",
"Add a note": "Anmerkung hinzufügen",
"Add recurrent expenses": "Wiederkehrende Ausgaben hinzufügen",
"Add selected tags (%s)": "Ausgewählte Tags hinzufügen (%s)",
"Add tags": "Tags hinzufügen",
"Additional Settings": "Weitere Einstellungen",
"All": "Alle",
"All categories": "Alle Kategorien",
"All records": "Alle Einträge",
"All tags": "Alle Tags",
"All the data has been deleted": "Alle Daten wurden gelöscht",
"Amount": "Betrag",
"Amount input keyboard type": "Tastaturtyp für die Betragseingabe",
"App protected by PIN or biometric check": "App-Zugriff per PIN oder Fingerabdruck geschützt",
"Appearance": "Aussehen",
"Apply Filters": "Filter anwenden",
"Archive": "Archivieren",
"Archived Categories": "Archivierte Kategorien",
"Archiving the category you will NOT remove the associated records": "Das Archivieren der Kategorie wird nicht die zugehörigen Einträge entfernen",
"Are you sure you want to delete these %s tags?": "Möchten Sie diese %s Tags wirklich löschen?",
"Are you sure you want to delete this tag?": "Möchten Sie diesen Tag wirklich löschen?",
"Authenticate to access the app": "Authentifizieren Sie sich, um auf die App zugreifen zu können",
"Automatic backup retention": "Automatische Aufbewahrung von Backups",
"Available Tags": "Verfügbare Tags",
"Available on Oinkoin Pro": "Verfügbar bei Oinkoin Pro",
"Average": "Durchschnitt",
"Average of %s": "Durchschnitt von %s",
"Average of %s a day": "Durchschnitt von %s pro Tag",
"Average of %s a month": "Durchschnitt von %s pro Monat",
"Average of %s a year": "Durchschnitt von %s pro Jahr",
"Median of %s": "Median von %s",
"Median of %s a day": "Median von %s pro Tag",
"Median of %s a month": "Median von %s pro Monat",
"Median of %s a year": "Median von %s pro Jahr",
"Backup": "Datensicherung",
"Backup encryption": "Backupverschlüsselung",
"Backup/Restore the application data": "Sichern und Wiederherstellen der App-Daten",
"Balance": "Bilanz",
"Can't decrypt without a password": "Die Entschlüsselung ist ohne Passwort nicht möglich",
"Cancel": "Abbrechen",
"Categories": "Kategorien",
"Categories vs Tags": "Kategorien vs Tags",
"Category name": "Kategorie-Name",
"Choose a color": "Farbe auwählen",
"Clear All Filters": "Alle Filter zurücksetzen",
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": "Beim Klicken auf den Button unten können Sie eine E-Mail senden. Das Feedback hilft uns die App zu verbessern!",
"Color": "Farbe",
"Colors": "Farben",
"Create backup and change settings": "Backup erstellen und Einstellungen ändern",
"Critical action": "Kritische Aktion",
"Customization": "Einstellungen",
"DOWNLOAD IT NOW!": "JETZT HERUNTERLADEN!",
"Dark": "Dunkel",
"Data is deleted": "Daten gelöscht",
"Date Format": "Datumsformat",
"Date Range": "Datumsbereich",
"Day": "Tag",
"Decimal digits": "Dezimal-Stellen",
"Decimal separator": "Dezimaltrennzeichen",
"Default": "Voreinstellung",
"Default (System)": "Voreinstellung (System)",
"Define the records to show in the app homepage": "Wählen Sie die Einträge, die in der App-Homepage angezeigt werden sollen",
"Define what to summarize": "Wähle, was zusammengefasst wird",
"Delete": "Löschen",
"Delete all the data": "Alle Daten löschen",
"Delete tags": "Tags löschen",
"Deleting the category you will remove all the associated records": "Löschen der Kategorie entfernt auch alle Einträge dieser Kategorie",
"Destination folder": "Zielordner",
"Displayed records": "Angezeigte Einträge",
"Do you really want to archive the category?": "Möchten Sie die Kategorie wirklich archivieren?",
"Do you really want to delete all the data?": "Möchten Sie wirklich alle Daten löschen?",
"Do you really want to delete the category?": "Kategorie wirklich löschen?",
"Do you really want to delete this record?": "Soll dieser Eintrag wirklich gelöscht werden?",
"Do you really want to delete this recurrent record?": "Soll der wiederkehrende Eintrag wirklich gelöscht werden?",
"Do you really want to unarchive the category?": "Möchten Sie die Kategorie wirklich aus dem Archiv holen?",
"Don't show": "Keine Notizen anzeigen",
"Edit Tag": "Tag bearbeiten",
"Edit category": "Kategorie ändern",
"Edit record": "Eintrag ändern",
"Edit tag": "Tag bearbeiten",
"Enable automatic backup": "Automatische Backups aktivieren",
"Enable if you want to have encrypted backups": "Aktivieren, um Backups zu verschlüsseln",
"Enable record's name suggestions": "Namensvorschläge des Datensatzes aktivieren",
"Enable to automatically backup at every access": "Aktivieren, um bei jedem Zugriff automatisch ein Backup zu erstellen",
"End Date (optional)": "Enddatum (optional)",
"Enter an encryption password": "Geben Sie ein Verschlüsselungspasswort ein",
"Enter decryption password": "Geben Sie das Verschlüsselungspasswort ein",
"Enter your password here": "Geben Sie Ihr Passwort an",
"Every day": "Täglich",
"Every four months": "Jeden vierten Monat",
"Every four weeks": "Alle vier Wochen",
"Every month": "Monatlich",
"Every three months": "Jeden dritten Monat",
"Every two weeks": "Alle zwei Wochen",
"Every week": "Wöchentlich",
"Every year": "Jährlich",
"Expense Categories": "Ausgabenkategorien",
"Expenses": "Ausgaben",
"Export Backup": "Backup exportieren",
"Export CSV": "CSV exportieren",
"Export Database": "Datenbank exportieren",
"Feedback": "Feedback",
"File will have a unique name": "Die Datei wird einen eindeutigen Namen haben",
"Filter Logic": "Filterlogik",
"First Day of Week": "Erster Wochentag",
"Filter by Categories": "Nach Kategorien filtern",
"Filter by Tags": "Nach Tags filtern",
"Filter records": "Einträge filtern",
"Filter records by year or custom date range": "Einträge nach Jahr oder benutzerdefiniertem Datum filtern",
"Filters": "Filter",
"Food": "Lebensmittel",
"Full category icon pack and color picker": "Vollständige Kategorie-Icons und Farbwähler",
"Got problems? Check out the logs": "Probleme? Überprüfen Sie die Protokolle",
"Grouping separator": "Gruppen-Trenner",
"Home": "Start",
"Homepage settings": "Startseiten-Einstellungen",
"Homepage time interval": "Zeitintervall der Homepage",
"House": "Wohnen",
"How long do you want to keep backups": "Wie lange wollen Sie Sicherungen behalten",
"How many categories/tags to be displayed": "Wie viele Kategorien/Tags angezeigt werden sollen",
"Icon": "Symbol",
"If enabled, you get suggestions when typing the record's name": "Wenn aktiviert, erhalten Sie Vorschläge bei der Eingabe des Namens des Eintrags",
"Include version and date in the name": "Version und Datum in den Namen einfügen",
"Income": "Einkommen",
"Income Categories": "Einkommenskategorien",
"Info": "Info",
"It appears the file has been encrypted. Enter the password:": "Die Datei wurde verschlüsselt. Geben Sie das Passwort ein:",
"Language": "Sprache",
"Last Used": "Zuletzt verwendet",
"Last backup: ": "Letztes Backup: ",
"Light": "Hell",
"Limit records by categories": "Einträge nach Kategorien begrenzen",
"Load": "Laden",
"Localization": "Lokalisierung",
"Logs": "Logs",
"Make it default": "Als Standard festlegen",
"Make sure you have the latest version of the app. If so, the backup file may be corrupted.": "Stellen Sie sicher die neuste App-Version zu nutzen. Ist dies der Fall, könnte die Sicherungsdatei beschädigt sein.",
"Manage your existing tags": "Vorhandene Tags verwalten",
"Monday": "Montag",
"Month": "Monat",
"Monthly": "Monatlich",
"Monthly Image": "Monatliches Bild",
"Most Used": "Am häufigsten verwendet",
"Name": "Name",
"Name (Alphabetically)": "Name (alphabetisch)",
"Never delete": "Nie löschen",
"No": "Nein",
"No Category is set yet.": "Es wurde noch keine Kategorie festgelegt.",
"No categories yet.": "Noch keine Kategorien",
"No entries to show.": "Keine Einträge anzeigbar.",
"No entries yet.": "Noch keine Einträge vorhanden.",
"No recurrent records yet.": "Keine wiederkehrenden Einträge vorhanden.",
"No tags found": "Keine Tags gefunden",
"Not a valid format (use for example: %s)": "Kein gültiges Format (Beispiel: %s)",
"Not repeat": "Nicht wiederkehrend",
"Not set": "Nicht gesetzt",
"Number keyboard": "Nummernblock",
"Number of categories/tags in Pie Chart": "Anzahl Kategorien/Tags im Kreisdiagramm",
"Number of rows to display": "Anzahl an angezeigten Zeilen",
"OK": "OK",
"Oinkoin Pro": "Oinkoin Pro",
"Once set, you can't see the password": "Einmal festgelegt, können Sie das Passwort nicht sehen",
"Order by": "Sortieren nach",
"Original Order": "Ursprüngliche Reihenfolge",
"Others": "Andere",
"Overwrite the key `comma`": "Überschreibe den Schlüssel `comma`",
"Overwrite the key `dot`": "Überschreibe den Schlüssel `Punkt`",
"Password": "Passwort",
"Phone keyboard (with math symbols)": "Telefontastatur (mit mathematischen Symbolen)",
"Please enter a value": "Bitte einen Wert eingeben",
"Please enter the category name": "Bitte einen Kategorie-Namen eingeben",
"Privacy policy and credits": "Datenschutzerklärung und Danksagung",
"Protect access to the app": "Zugriff auf die App schützen",
"Record name": "Eintragsname",
"Records matching categories OR tags": "Einträge, die Kategorien ODER Tags entsprechen",
"Records must match categories AND tags": "Einträge müssen Kategorien UND Tags entsprechen",
"Records of the current month": "Einträge des aktuellen Monats",
"Records of the current week": "Einträge der aktuellen Woche",
"Records of the current year": "Einträge des aktuellen Jahres",
"Recurrent Records": "Wiederkehrende Einträge",
"Require App restart": "Erfordert Neustart der App",
"Reset to default dates": "Auf Standarddaten zurücksetzen",
"Restore Backup": "Sicherung wiederherstellen",
"Restore all the default configurations": "Alle Standardkonfigurationen wiederherstellen",
"Restore data from a backup file": "Sicherung aus Datei wiederherstellen",
"Restore successful": "Wiederherstellung erfolgreich",
"Restore unsuccessful": "Wiederherstellung fehlgeschlagen",
"Salary": "Gehalt",
"Saturday": "Samstag",
"Save": "Speichern",
"Scroll for more": "Scrollen für mehr",
"Search or add new tag...": "Tag suchen oder hinzufügen...",
"Search or create tags": "Tags suchen oder erstellen",
"Search records...": "Einträge suchen...",
"Select the app language": "Wählen Sie eine Sprache",
"Select the app theme color": "Auswahl der App-Farben",
"Select the app theme style": "Auswahl des App-Stils",
"Select the category": "Kategorie auswählen",
"Select the date format": "Datumsformat auswählen",
"Select the decimal separator": "Wählen Sie das Dezimaltrennzeichen",
"Select the first day of the week": "Ersten Wochentag auswählen",
"Select the grouping separator": "Gruppierungstrennzeichen auswählen",
"Select the keyboard layout for amount input": "Tastaturlayout für Betragseingabe auswählen",
"Select the number of decimal digits": "Anzahl der Dezimalstellen auswählen",
"Send a feedback": "Feedback senden",
"Send us a feedback": "Ein Feedback senden",
"Settings": "Einstellungen",
"Share the backup file": "Backup-Datei teilen",
"Share the database file": "Datenbankdatei teilen",
"Show active categories": "Zeige aktive Kategorien",
"Show all rows": "Zeige alle Zeilen",
"Show archived categories": "Zeige archivierte Kategorien",
"Show at most one row": "Zeige bis zu einer Zeile",
"Show at most three rows": "Zeige bis zu drei Zeilen",
"Show at most two rows": "Zeige bis zu zwei Zeilen",
"Show categories with their own colors instead of the default palette": "Kategorien mit eigenen Farben statt der Standardpalette anzeigen",
"Show or hide tags in the record list": "Tags in der Einträgsliste anzeigen oder ausblenden",
"Show records that have all selected tags": "Einträge anzeigen, die alle ausgewählten Tags haben",
"Show records that have any of the selected tags": "Einträge anzeigen, die einen der ausgewählten Tags haben",
"Show records' notes on the homepage": "Zeige die Notizen eines Eintrags in der Homepage",
"Shows records per": "Zeigt Einträge pro",
"Statistics": "Statistik",
"Store the Backup on disk": "Backup auf der Festplatte speichern",
"Suggested tags": "Vorgeschlagene Tags",
"Sunday": "Sonntag",
"System": "System",
"Tag name": "Tag-Name",
"Tags": "Tags",
"Tags must be a single word without commas.": "Tags müssen ein einzelnes Wort ohne Kommas sein.",
"The data from the backup file are now restored.": "Die Sicherung wurde jetzt wieder hergestellt.",
"Theme style": "Systemstil",
"Transport": "Verkehr",
"Try searching or create a new tag": "Versuchen Sie zu suchen oder erstellen Sie einen neuen Tag",
"Unable to create a backup: please, delete manually the old backup": "Backup konnte nicht erstellt werden: Bitte löschen Sie das alte Backup manuell",
"Unarchive": "Dearchivieren",
"Upgrade to": "Upgrade auf",
"Upgrade to Pro": "Upgrade auf Pro",
"Use Category Colors in Pie Chart": "Nutze Farben der Kategorien im Kreisdiagramm",
"View or delete recurrent records": "Wiederkehrende Einträge ansehen oder löschen",
"Visual settings and more": "Visuelle Einstellungen und mehr",
"Visualise tags in the main page": "Tags auf der Hauptseite anzeigen",
"Weekly": "Wöchentlich",
"What should the 'Overview widget' summarize?": "Was soll die Übersicht zusammenfassen?",
"When typing `comma`, it types `dot` instead": "Beim Tippen von `Komma` wird stattdessen `dot` geschrieben",
"When typing `dot`, it types `comma` instead": "Beim Tippen von `Punkt`, wird stattdessen `Komma` geschrieben",
"Year": "Jahr",
"Yes": "Ja",
"You need to set a category first. Go to Category tab and add a new category.": "Sie müssen zuerst eine Kategorie festlegen. Gehen Sie zum Tab 'Kategorie' und fügen Sie eine neue Kategorie hinzu.",
"You spent": "Sie haben ausgegeben",
"Your income is": "Ihr Einkommen beträgt",
"apostrophe": "Apostroph",
"comma": "Komma",
"dot": "Punkt",
"none": "keine",
"space": "Leerzeichen",
"underscore": "Unterstrich",
"Auto decimal input": "Automatische Dezimaleingabe",
"Typing 5 becomes %s5": "Eingabe 5 wird %s5",
"Custom starting day of the month": "Benutzerdefinierter Monatsanfangstag",
"Define the starting day of the month for records that show in the app homepage": "Legen Sie den Startag des Monats für Einträge auf der App-Startseite fest",
"Generate and display upcoming recurrent records (they will be included in statistics)": "Zukünftige wiederkehrende Einträge generieren und anzeigen (sie werden in der Statistik berücksichtigt)",
"Hide cumulative balance line": "Kumulative Bilanzkurve ausblenden",
"No entries found": "Keine Einträge gefunden",
"Number & Formatting": "Zahlen und Formatierung",
"Records": "Einträge",
"Show cumulative balance line": "Kumulative Bilanzkurve anzeigen",
"Show future recurrent records": "Zukünftige wiederkehrende Einträge anzeigen",
"Switch to bar chart": "Zu Balkendiagramm wechseln",
"Switch to net savings view": "Zu Nettoersparnis-Ansicht wechseln",
"Switch to pie chart": "Zu Kreisdiagramm wechseln",
"Switch to separate income and expense bars": "Einnahmen- und Ausgabenbalken trennen",
"Tags (%d)": "Tags (%d)",
"You overspent": "Sie haben mehr ausgegeben als eingenommen"
}
================================================
FILE: assets/locales/el.json
================================================
{
"%s selected": "%s επιλεγμένα",
"Add a new category": "Πρόσθεσε μία νέα κατηγορία",
"Add a new record": "Πρόσθεσε μία νέα καταχώρηση",
"Add a note": "Πρόσθεσε μία σημείωση",
"Add recurrent expenses": "Πρόσθεσε επαναλαμβανόμενα έξοδα",
"Add selected tags (%s)": "Πρόσθεσε επιλεγμένες ετικέτες (%s)",
"Add tags": "Πρόσθεσε ετικέτες",
"Additional Settings": "Περισσότερες Ρυθμίσεις",
"All": "Όλα",
"All categories": "Όλες οι κατηγορίες",
"All records": "Όλες οι καταχωρήσεις",
"All tags": "Όλες οι ετικέτες",
"All the data has been deleted": "Όλα τα δεδομένα έχουν διαγραφεί",
"Amount": "Ποσό",
"Amount input keyboard type": "Τύπος πληκτρολογίου για εισαγωγή ποσού",
"App protected by PIN or biometric check": "Η εφαρμογή προστατεύεται με PIN ή βιομετρικό έλεγχο",
"Appearance": "Εμφάνιση",
"Apply Filters": "Εφάρμοσε φίλτρα",
"Archive": "Αρχειοθέτησε",
"Archived Categories": "Αρχειοθετημένες Κατηγορίες",
"Archiving the category you will NOT remove the associated records": "Αρχειοθετώντας την κατηγορία ΔΕΝ θα αφαιρεθούν οι σχετικές εγγραφές",
"Are you sure you want to delete these %s tags?": "Είσαι σίγουρος/η ότι θέλεις να διαγράψεις αυτές τις %s ετικέτες;",
"Are you sure you want to delete this tag?": "Είσαι σίγουρος/η ότι θέλεις να διαγράψεις αυτήν την ετικέτα;",
"Authenticate to access the app": "Επαλήθευσε την ταυτότητά σου για πρόσβαση στην εφαρμογή",
"Auto decimal input": "Αυτόματη εισαγωγή δεκαδικών ψηφίων",
"Automatic backup retention": "Διατήρηση αυτόματων αντιγράφων ασφαλείας",
"Available Tags": "Διαθέσιμες Ετικέτες",
"Available on Oinkoin Pro": "Διαθέσιμο στο Oinkoin Pro",
"Average": "Μέσος όρος",
"Average of %s": "Μέσος όρος από %s",
"Average of %s a day": "Μέσος όρος από %s σε μια μέρα",
"Average of %s a month": "Μέσος όρος από %s σε ένα μήνα",
"Average of %s a year": "Μέσος όρος από %s σε ένα χρόνο",
"Backup": "Αντίγραφα ασφαλείας",
"Backup encryption": "Κρυπτογράφηση αντιγράφων ασφαλείας",
"Backup/Restore the application data": "Δημιουργία/Επαναφορά αντιγράφου ασφαλείας δεδομένων εφαρμογής",
"Balance": "Υπόλοιπο",
"Can't decrypt without a password": "Δεν είναι δυνατή η αποκρυπτογράφηση χωρίς κωδικό πρόσβασης",
"Cancel": "Ακύρωση",
"Categories": "Κατηγορίες",
"Categories vs Tags": "Κατηγορίες vs Ετικέτες",
"Category name": "Όνομα κατηγορίας",
"Choose a color": "Διάλεξε ένα χρώμα",
"Clear All Filters": "Κατάργησε όλα τα φίλτρα",
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": "Πατώντας το κουμπί παρακάτω μπορείς να μας στείλεις email με σχόλια. Η γνώμη σου είναι πολύτιμη και θα μας βοηθήσει να βελτιωθούμε!",
"Color": "Χρώμα",
"Colors": "Χρώματα",
"Create backup and change settings": "Δημιούργησε αντίγραφο ασφαλείας και άλλαξε τις ρυθμίσεις",
"Critical action": "Κρίσιμη ενέργεια",
"Custom starting day of the month": "Προσαρμοσμένη ημέρα έναρξης του μήνα",
"Customization": "Προσαρμογή",
"DOWNLOAD IT NOW!": "ΚΑΤΕΒΑΣΕ ΤΟ ΤΩΡΑ!",
"Dark": "Σκοτεινό",
"Data is deleted": "Τα δεδομένα έχουν διαγραφεί",
"Date Format": "Μορφή ημερομηνίας",
"Date Range": "Εύρος ημερομηνιών",
"Day": "Μέρα",
"Decimal digits": "Δεκαδικά ψηφία",
"Decimal separator": "Διαχωριστικό δεκαδικών",
"Default": "Προεπιλογή",
"Default (System)": "Προεπιλογή (Σύστημα)",
"Define the records to show in the app homepage": "Όρισε ποιες εγγραφές θα εμφανίζονται στην αρχική σελίδα της εφαρμογής.",
"Define the starting day of the month for records that show in the app homepage": "Όρισε την ημέρα έναρξης του μήνα για τις εγγραφές που εμφανίζονται στην αρχική σελίδα της εφαρμογής",
"Define what to summarize": "Όρισε τι θα περιλαμβάνει η σύνοψη",
"Delete": "Διαγραφή",
"Delete all the data": "Διέγραψε όλα τα δεδομένα",
"Delete tags": "Διέγραψε ετικέτες",
"Deleting the category you will remove all the associated records": "Διαγράφοντας την κατηγορία, θα διαγραφούν όλες οι σχετικές εγγραφές",
"Destination folder": "Φάκελος προορισμού",
"Displayed records": "Εμφανιζόμενες εγγραφές",
"Do you really want to archive the category?": "Θέλεις σίγουρα να αρχειοθετήσεις την κατηγορία;",
"Do you really want to delete all the data?": "Θέλεις σίγουρα να διαγράψεις όλα τα δεδομένα;",
"Do you really want to delete the category?": "Θέλεις σίγουρα να διαγράψεις την κατηγορία;",
"Do you really want to delete this record?": "Θέλεις σίγουρα να διαγράψεις αυτή την εγγραφή;",
"Do you really want to delete this recurrent record?": "Θέλεις σίγουρα να διαγράψεις αυτή την επαναλαμβανόμενη εγγραφή;",
"Do you really want to unarchive the category?": "Θέλεις σίγουρα να καταργήσεις την αρχειοθέτηση της κατηγορίας;",
"Don't show": "Μην το εμφανίζεις",
"Edit Tag": "Επεξεργασία Ετικέτας",
"Edit category": "Επεξεργασία κατηγορίας",
"Edit record": "Επεξεργασία Εγγραφής",
"Edit tag": "Επεξεργασία ετικέτας",
"Enable automatic backup": "Ενεργοποίηση αυτόματου αντιγράφου ασφαλείας",
"Enable if you want to have encrypted backups": "Ενεργοποίησέ το αν θέλεις να έχεις κρυπτογραφημένα αντίγραφα ασφαλείας",
"Enable record's name suggestions": "Ενεργοποίησε προτάσεις ονόματος εγγραφής",
"Enable to automatically backup at every access": "Ενεργοποίησε για αυτόματη δημιουργία αντιγράφου ασφαλείας σε κάθε άνοιγμα της εφαρμογής",
"End Date (optional)": "Ημερομηνία λήξης (προαιρετική)",
"Enter an encryption password": "Εισήγαγε έναν κωδικό κρυπτογράφησης",
"Enter decryption password": "Εισήγαγε τον κωδικό αποκρυπτογράφησης",
"Enter your password here": "Εισήγαγε εδώ τον κωδικό σου",
"Every day": "Κάθε μέρα",
"Every four months": "Κάθε τέσσερις μήνες",
"Every four weeks": "Κάθε τέσσερις εβδομάδες",
"Every month": "Κάθε μήνα",
"Every three months": "Κάθε τρεις μήνες",
"Every two weeks": "Κάθε δύο εβδομάδες",
"Every week": "Κάθε εβδομάδα",
"Every year": "Κάθε χρόνο",
"Expense Categories": "Κατηγορίες εξόδων",
"Expenses": "Έξοδα",
"Export Backup": "Εξαγωγή αντιγράφου ασφαλείας",
"Export CSV": "Εξαγωγή CSV",
"Export Database": "Εξαγωγή βάσης δεδομένων",
"Feedback": "Σχόλια",
"File will have a unique name": "Το αρχείο θα έχει μοναδικό όνομα",
"Filter Logic": "Λογική Φίλτρων",
"Filter by Categories": "Φιλτράρισμα ανά Κατηγορίες",
"Filter by Tags": "Φιλτράρισμα ανά Ετικέτες",
"Filter records": "Φιλτράρισμα εγγραφών",
"Filter records by year or custom date range": "Φιλτράρισε τις εγγραφές ανά έτος ή προσαρμοσμένο εύρος ημερομηνιών",
"Filters": "Φίλτρα",
"First Day of Week": "Πρώτη ημέρα της εβδομάδας",
"Food": "Φαγητό",
"Full category icon pack and color picker": "Πλήρες πακέτο εικονιδίων κατηγοριών και επιλογέας χρώματος",
"Generate and display upcoming recurrent records (they will be included in statistics)": "Δημιούργησε και εμφάνισε τις επερχόμενες επαναλαμβανόμενες εγγραφές (θα περιλαμβάνονται στα στατιστικά)",
"Got problems? Check out the logs": "Έχεις πρόβλημα; Δες τα αρχεία καταγραφής",
"Grouping separator": "Διαχωριστικό ομαδοποίησης",
"Hide cumulative balance line": "Απόκρυψη γραμμής σωρευτικού υπολοίπου",
"Home": "Αρχική",
"Homepage settings": "Ρυθμίσεις αρχικής σελίδας",
"Homepage time interval": "Χρονικό διάστημα αρχικής σελίδας",
"House": "Σπίτι",
"How long do you want to keep backups": "Για πόσο θέλεις να διατηρείς τα αντίγραφα ασφαλείας;",
"How many categories/tags to be displayed": "Πόσες κατηγορίες/ετικέτες να εμφανίζονται",
"Icon": "Εικονίδιο",
"If enabled, you get suggestions when typing the record's name": "Αν είναι ενεργό, θα λαμβάνεις προτάσεις όταν πληκτρολογείς το όνομα της εγγραφής",
"Include version and date in the name": "Συμπερίλαβε την έκδοση και την ημερομηνία στο όνομα",
"Income": "Έσοδα",
"Income Categories": "Κατηγορίες εσόδων",
"Info": "Πληροφορίες",
"It appears the file has been encrypted. Enter the password:": "Φαίνεται ότι το αρχείο είναι κρυπτογραφημένο. Εισήγαγε τον κωδικό πρόσβασης:",
"Language": "Γλώσσα",
"Last Used": "Τελευταία χρήση",
"Last backup: ": "Τελευταίο αντίγραφο ασφαλείας: ",
"Light": "Φωτεινό",
"Limit records by categories": "Περιορισμός εγγραφών ανά κατηγορίες",
"Load": "Φόρτωσε",
"Localization": "Τοπικοποίηση",
"Logs": "Αρχεία καταγραφής",
"Make it default": "Όρισε ως προεπιλογή",
"Make sure you have the latest version of the app. If so, the backup file may be corrupted.": "Βεβαιώσου ότι έχεις την πιο πρόσφατη έκδοση της εφαρμογής. Αν ναι, το αρχείο αντιγράφου ασφαλείας μπορεί να είναι κατεστραμμένο.",
"Manage your existing tags": "Διαχειρίσου τις υπάρχουσες ετικέτες",
"Median of %s": "Διάμεσος του %s",
"Median of %s a day": "Διάμεσος του %s ανά ημέρα",
"Median of %s a month": "Διάμεσος του %s ανά μήνα",
"Median of %s a year": "Διάμεσος του %s ανά έτος",
"Monday": "Δευτέρα",
"Month": "Μήνας",
"Monthly": "Μηνιαία",
"Monthly Image": "Μηνιαία εικόνα",
"Most Used": "Πιο συχνά χρησιμοποιούμενο",
"Name": "Όνομα",
"Name (Alphabetically)": "Όνομα (αλφαβητικά)",
"Never delete": "Ποτέ",
"No": "Όχι",
"No Category is set yet.": "Δεν έχει οριστεί ακόμη κατηγορία.",
"No categories yet.": "Δεν υπάρχουν ακόμη κατηγορίες.",
"No entries found": "Δεν βρέθηκαν εγγραφές",
"No entries to show.": "Δεν υπάρχουν εγγραφές για εμφάνιση.",
"No entries yet.": "Δεν υπάρχουν ακόμη εγγραφές.",
"No recurrent records yet.": "Δεν υπάρχουν ακόμη επαναλαμβανόμενες εγγραφές.",
"No tags found": "Δεν βρέθηκαν ετικέτες",
"Not a valid format (use for example: %s)": "Μη έγκυρη μορφή (χρησιμοποίησε π.χ.: %s)",
"Not repeat": "Να μην επαναλαμβάνεται",
"Not set": "Δεν έχει οριστεί",
"Number & Formatting": "Αριθμοί & Μορφοποίηση",
"Number keyboard": "Αριθμητικό πληκτρολόγιο",
"Number of categories/tags in Pie Chart": "Αριθμός κατηγοριών/ετικετών στο κυκλικό διάγραμμα",
"Number of rows to display": "Αριθμός γραμμών προς εμφάνιση",
"OK": "OK",
"Oinkoin Pro": "Oinkoin Pro",
"Once set, you can't see the password": "Αφού οριστεί, δεν μπορείς να δεις τον κωδικό",
"Order by": "Ταξινόμηση κατά",
"Original Order": "Αρχική Σειρά",
"Others": "Άλλα",
"Overwrite the key `comma`": "Αντικατάσταση του πλήκτρου `comma`",
"Overwrite the key `dot`": "Αντικατάσταση του πλήκτρου `dot`",
"Password": "Κωδικός πρόσβασης",
"Phone keyboard (with math symbols)": "Πληκτρολόγιο τηλεφώνου (με μαθηματικά σύμβολα)",
"Please enter a value": "Παρακαλώ εισήγαγε μια τιμή",
"Please enter the category name": "Παρακαλώ εισήγαγε το όνομα της κατηγορίας",
"Privacy policy and credits": "Πολιτική απορρήτου και ευχαριστίες",
"Protect access to the app": "Προστάτεψε την πρόσβαση στην εφαρμογή",
"Record name": "Όνομα εγγραφής",
"Records": "Εγγραφές",
"Records matching categories OR tags": "Εγγραφές που ταιριάζουν με κατηγορίες Ή ετικέτες",
"Records must match categories AND tags": "Οι εγγραφές πρέπει να ταιριάζουν με κατηγορίες ΚΑΙ ετικέτες",
"Records of the current month": "Εγγραφές του τρέχοντος μήνα",
"Records of the current week": "Εγγραφές της τρέχουσας εβδομάδας",
"Records of the current year": "Εγγραφές του τρέχοντος έτους",
"Recurrent Records": "Επαναλαμβανόμενες εγγραφές",
"Require App restart": "Απαιτείται επανεκκίνηση της εφαρμογής",
"Reset to default dates": "Επαναφορά στις προεπιλεγμένες ημερομηνίες",
"Restore Backup": "Επαναφορά αντιγράφου ασφαλείας",
"Restore all the default configurations": "Επαναφορά όλων των προεπιλεγμένων ρυθμίσεων",
"Restore data from a backup file": "Επαναφορά δεδομένων από αρχείο αντιγράφου ασφαλείας",
"Restore successful": "Η επαναφορά ολοκληρώθηκε",
"Restore unsuccessful": "Η επαναφορά απέτυχε",
"Salary": "Μισθός",
"Saturday": "Σάββατο",
"Save": "Αποθήκευση",
"Scroll for more": "Κάνε κύλιση για περισσότερα",
"Search or add new tag...": "Αναζήτησε ή πρόσθεσε νέα ετικέτα...",
"Search or create tags": "Αναζήτηση ή δημιουργία ετικετών",
"Search records...": "Αναζήτηση εγγραφών...",
"Select the app language": "Επίλεξε τη γλώσσα της εφαρμογής",
"Select the app theme color": "Επίλεξε το χρώμα θέματος της εφαρμογής",
"Select the app theme style": "Επίλεξε το στυλ θέματος της εφαρμογής",
"Select the category": "Επίλεξε κατηγορία",
"Select the date format": "Επίλεξε μορφή ημερομηνίας",
"Select the decimal separator": "Επίλεξε δεκαδικό διαχωριστή",
"Select the first day of the week": "Επίλεξε την πρώτη ημέρα της εβδομάδας",
"Select the grouping separator": "Επίλεξε διαχωριστικό ομαδοποίησης",
"Select the keyboard layout for amount input": "Επίλεξε διάταξη πληκτρολογίου για εισαγωγή ποσού",
"Select the number of decimal digits": "Επίλεξε τον αριθμό δεκαδικών ψηφίων",
"Send a feedback": "Στείλε σχόλια",
"Send us a feedback": "Στείλε μας σχόλια",
"Settings": "Ρυθμίσεις",
"Share the backup file": "Κοινοποίηση αρχείου αντιγράφου ασφαλείας",
"Share the database file": "Κοινοποίηση αρχείου βάσης δεδομένων",
"Show active categories": "Εμφάνιση ενεργών κατηγοριών",
gitextract_kx9s49de/
├── .claude/
│ └── skills/
│ └── translate/
│ └── SKILL.md
├── .githooks/
│ └── pre-commit
├── .github/
│ ├── FUNDING.yml
│ └── workflows/
│ ├── build-alpha-arm64.yml
│ ├── manual-build.yml
│ ├── on-release.yml
│ └── release-alpha.yml
├── .gitignore
├── .gitmodules
├── .metadata
├── .vscode/
│ └── launch.json
├── LICENSE
├── README.md
├── analysis_options.yaml
├── android/
│ ├── .gitignore
│ ├── app/
│ │ ├── build.gradle
│ │ └── src/
│ │ ├── alpha/
│ │ │ └── res/
│ │ │ └── mipmap-anydpi-v26/
│ │ │ └── ic_launcher.xml
│ │ ├── debug/
│ │ │ └── AndroidManifest.xml
│ │ ├── main/
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── kotlin/
│ │ │ │ └── com/
│ │ │ │ └── example/
│ │ │ │ └── piggybank/
│ │ │ │ └── MainActivity.kt
│ │ │ └── res/
│ │ │ ├── drawable/
│ │ │ │ └── launch_background.xml
│ │ │ ├── mipmap-anydpi-v26/
│ │ │ │ └── ic_launcher.xml
│ │ │ ├── values/
│ │ │ │ └── styles.xml
│ │ │ └── xml/
│ │ │ └── locales_config.xml
│ │ └── profile/
│ │ └── AndroidManifest.xml
│ ├── build.gradle
│ ├── gradle/
│ │ └── wrapper/
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── settings.gradle
│ └── settings_aar.gradle
├── appium/
│ ├── .gitattributes
│ ├── .gitignore
│ ├── app/
│ │ ├── build.gradle
│ │ └── src/
│ │ └── test/
│ │ └── java/
│ │ └── com/
│ │ └── github/
│ │ └── emavgl/
│ │ └── oinkoin/
│ │ └── tests/
│ │ └── appium/
│ │ ├── BaseTest.java
│ │ ├── HomePageTest.java
│ │ ├── NavigationBarTest.java
│ │ ├── pages/
│ │ │ ├── BasePage.java
│ │ │ ├── CategoriesPage.java
│ │ │ ├── CategorySelectionPage.java
│ │ │ ├── EditRecordPage.java
│ │ │ ├── HomePage.java
│ │ │ └── SettingsPage.java
│ │ └── utils/
│ │ ├── CategoryType.java
│ │ ├── Constants.java
│ │ ├── RecordData.java
│ │ ├── RepeatOption.java
│ │ └── Utils.java
│ ├── gradle/
│ │ └── wrapper/
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── assets/
│ └── locales/
│ ├── ar.json
│ ├── ca.json
│ ├── da.json
│ ├── de.json
│ ├── el.json
│ ├── en-GB.json
│ ├── en-US.json
│ ├── es.json
│ ├── fr.json
│ ├── hr.json
│ ├── it.json
│ ├── ja.json
│ ├── or-IN.json
│ ├── pl.json
│ ├── pt-BR.json
│ ├── pt-PT.json
│ ├── ru.json
│ ├── ta-IN.json
│ ├── tr.json
│ ├── uk-UA.json
│ ├── vec-IT.json
│ └── zh-CN.json
├── build.sh
├── build_linux.sh
├── bump_new_version.py
├── create_release_blog_post.py
├── devtools_options.yaml
├── distribute_options.yaml
├── ios/
│ ├── Flutter/
│ │ └── ephemeral/
│ │ ├── flutter_lldb_helper.py
│ │ └── flutter_lldbinit
│ └── PLACEHOLDER
├── lib/
│ ├── categories/
│ │ ├── categories-grid.dart
│ │ ├── categories-list.dart
│ │ ├── categories-tab-page-edit.dart
│ │ ├── categories-tab-page-view.dart
│ │ ├── category-sort-option.dart
│ │ └── edit-category-page.dart
│ ├── components/
│ │ ├── category_icon_circle.dart
│ │ ├── tag_chip.dart
│ │ └── year-picker.dart
│ ├── generated_plugin_registrant.dart
│ ├── helpers/
│ │ ├── alert-dialog-builder.dart
│ │ ├── color-utils.dart
│ │ ├── date_picker_utils.dart
│ │ ├── datetime-utility-functions.dart
│ │ ├── first_day_of_week_localizations.dart
│ │ ├── records-generator.dart
│ │ └── records-utility-functions.dart
│ ├── i18n/
│ │ └── i18n_helper.dart
│ ├── i18n.dart
│ ├── main.dart
│ ├── models/
│ │ ├── backup.dart
│ │ ├── category-icons.dart
│ │ ├── category-type.dart
│ │ ├── category.dart
│ │ ├── model.dart
│ │ ├── record-tag-association.dart
│ │ ├── record.dart
│ │ ├── records-per-category.dart
│ │ ├── records-per-day.dart
│ │ ├── records-summary-by-category.dart
│ │ ├── recurrent-period.dart
│ │ └── recurrent-record-pattern.dart
│ ├── premium/
│ │ ├── splash-screen.dart
│ │ └── util-widgets.dart
│ ├── records/
│ │ ├── components/
│ │ │ ├── days-summary-box-card.dart
│ │ │ ├── filter_modal_content.dart
│ │ │ ├── records-day-list.dart
│ │ │ ├── records-per-day-card.dart
│ │ │ ├── styled_action_buttons.dart
│ │ │ ├── styled_popup_menu_button.dart
│ │ │ ├── tab_records_app_bar.dart
│ │ │ ├── tab_records_date_picker.dart
│ │ │ ├── tab_records_search_app_bar.dart
│ │ │ └── tag_selection_dialog.dart
│ │ ├── controllers/
│ │ │ └── tab_records_controller.dart
│ │ ├── edit-record-page.dart
│ │ ├── formatter/
│ │ │ ├── auto_decimal_shift_formatter.dart
│ │ │ ├── calculator-normalizer.dart
│ │ │ └── group-separator-formatter.dart
│ │ └── records-page.dart
│ ├── recurrent_record_patterns/
│ │ └── patterns-page-view.dart
│ ├── services/
│ │ ├── backup-service.dart
│ │ ├── csv-service.dart
│ │ ├── database/
│ │ │ ├── database-interface.dart
│ │ │ ├── exceptions.dart
│ │ │ ├── sqlite-database.dart
│ │ │ └── sqlite-migration-service.dart
│ │ ├── locale-service.dart
│ │ ├── logger.dart
│ │ ├── platform-file-service.dart
│ │ ├── recurrent-record-service.dart
│ │ └── service-config.dart
│ ├── settings/
│ │ ├── backup-page.dart
│ │ ├── backup-restore-dialogs.dart
│ │ ├── backup-retention-period.dart
│ │ ├── clickable-customization-item.dart
│ │ ├── components/
│ │ │ └── setting-separator.dart
│ │ ├── constants/
│ │ │ ├── homepage-time-interval.dart
│ │ │ ├── overview-time-interval.dart
│ │ │ ├── preferences-defaults-values.dart
│ │ │ ├── preferences-keys.dart
│ │ │ └── preferences-options.dart
│ │ ├── customization-page.dart
│ │ ├── dropdown-customization-item.dart
│ │ ├── feedback-page.dart
│ │ ├── preferences-utils.dart
│ │ ├── settings-item.dart
│ │ ├── settings-page.dart
│ │ ├── style.dart
│ │ ├── switch-customization-item.dart
│ │ └── text-input-customization-item.dart
│ ├── shell.dart
│ ├── statistics/
│ │ ├── aggregated-list-view.dart
│ │ ├── balance-chart-models.dart
│ │ ├── balance-comparison-chart.dart
│ │ ├── balance-tab-page.dart
│ │ ├── bar-chart-card.dart
│ │ ├── base-statistics-page.dart
│ │ ├── categories-pie-chart.dart
│ │ ├── category-tag-balance-page.dart
│ │ ├── category-tag-records-page.dart
│ │ ├── group-by-dropdown.dart
│ │ ├── overview-card.dart
│ │ ├── record-filters.dart
│ │ ├── statistics-calculator.dart
│ │ ├── statistics-models.dart
│ │ ├── statistics-page.dart
│ │ ├── statistics-summary-card.dart
│ │ ├── statistics-tab-page.dart
│ │ ├── statistics-utils.dart
│ │ ├── summary-models.dart
│ │ ├── summary-rows.dart
│ │ ├── tags-pie-chart.dart
│ │ └── unified-balance-card.dart
│ ├── style.dart
│ ├── tags/
│ │ └── tags-page-view.dart
│ └── utils/
│ └── constants.dart
├── linux/
│ ├── .gitignore
│ ├── CMakeLists.txt
│ ├── com.github.emavgl.oinkoin.desktop
│ ├── flutter/
│ │ ├── CMakeLists.txt
│ │ ├── generated_plugin_registrant.cc
│ │ ├── generated_plugin_registrant.h
│ │ └── generated_plugins.cmake
│ ├── packaging/
│ │ ├── appimage/
│ │ │ └── make_config.yaml
│ │ ├── deb/
│ │ │ └── make_config.yaml
│ │ └── rpm/
│ │ └── make_config.yaml
│ └── runner/
│ ├── CMakeLists.txt
│ ├── main.cc
│ ├── my_application.cc
│ └── my_application.h
├── macos/
│ ├── Flutter/
│ │ └── GeneratedPluginRegistrant.swift
│ └── PLACEHOLDER
├── metadata/
│ ├── ca/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── en-US/
│ │ ├── changelogs/
│ │ │ ├── 6008.txt
│ │ │ ├── 6009.txt
│ │ │ ├── 6016.txt
│ │ │ ├── 6017.txt
│ │ │ ├── 6018.txt
│ │ │ ├── 6019.txt
│ │ │ ├── 6020.txt
│ │ │ ├── 6021.txt
│ │ │ ├── 6022.txt
│ │ │ ├── 6023.txt
│ │ │ ├── 6024.txt
│ │ │ ├── 6025.txt
│ │ │ ├── 6026.txt
│ │ │ ├── 6027.txt
│ │ │ ├── 6028.txt
│ │ │ ├── 6029.txt
│ │ │ ├── 6030.txt
│ │ │ ├── 6031.txt
│ │ │ ├── 6032.txt
│ │ │ ├── 6033.txt
│ │ │ ├── 6034.txt
│ │ │ ├── 6035.txt
│ │ │ ├── 6036.txt
│ │ │ ├── 6037.txt
│ │ │ ├── 6038.txt
│ │ │ ├── 6039.txt
│ │ │ ├── 6040.txt
│ │ │ ├── 6041.txt
│ │ │ ├── 6042.txt
│ │ │ ├── 6043.txt
│ │ │ ├── 6044.txt
│ │ │ ├── 6045.txt
│ │ │ ├── 6046.txt
│ │ │ ├── 6047.txt
│ │ │ ├── 6048.txt
│ │ │ ├── 6049.txt
│ │ │ ├── 6050.txt
│ │ │ ├── 6051.txt
│ │ │ ├── 6052.txt
│ │ │ ├── 6053.txt
│ │ │ ├── 6054.txt
│ │ │ ├── 6055.txt
│ │ │ ├── 6056.txt
│ │ │ ├── 6057.txt
│ │ │ ├── 6058.txt
│ │ │ ├── 6059.txt
│ │ │ ├── 6060.txt
│ │ │ ├── 6061.txt
│ │ │ ├── 6062.txt
│ │ │ ├── 6063.txt
│ │ │ ├── 6064.txt
│ │ │ ├── 6065.txt
│ │ │ ├── 6066.txt
│ │ │ ├── 6067.txt
│ │ │ ├── 6068.txt
│ │ │ ├── 6069.txt
│ │ │ ├── 6070.txt
│ │ │ ├── 6071.txt
│ │ │ ├── 6072.txt
│ │ │ ├── 6073.txt
│ │ │ ├── 6074.txt
│ │ │ ├── 6075.txt
│ │ │ ├── 6076.txt
│ │ │ ├── 6077.txt
│ │ │ ├── 6078.txt
│ │ │ ├── 6079.txt
│ │ │ ├── 6080.txt
│ │ │ ├── 6081.txt
│ │ │ ├── 6082.txt
│ │ │ ├── 6083.txt
│ │ │ ├── 6084.txt
│ │ │ ├── 6085.txt
│ │ │ ├── 6086.txt
│ │ │ ├── 6087.txt
│ │ │ ├── 6088.txt
│ │ │ ├── 6089.txt
│ │ │ ├── 6090.txt
│ │ │ ├── 6091.txt
│ │ │ ├── 6092.txt
│ │ │ ├── 6093.txt
│ │ │ ├── 6094.txt
│ │ │ ├── 7095.txt
│ │ │ ├── 7096.txt
│ │ │ ├── 7097.txt
│ │ │ ├── 7098.txt
│ │ │ ├── 7099.txt
│ │ │ ├── 7100.txt
│ │ │ ├── 7101.txt
│ │ │ ├── 7102.txt
│ │ │ ├── 7103.txt
│ │ │ ├── 7104.txt
│ │ │ ├── 7105.txt
│ │ │ ├── 7106.txt
│ │ │ ├── 7107.txt
│ │ │ ├── 7108.txt
│ │ │ ├── 7109.txt
│ │ │ ├── 7110.txt
│ │ │ ├── 7111.txt
│ │ │ ├── 7112.txt
│ │ │ ├── 7113.txt
│ │ │ ├── 7114.txt
│ │ │ ├── 7115.txt
│ │ │ └── 7116.txt
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── ja/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ └── ru/
│ ├── full_description.txt
│ └── short_description.txt
├── privacy-policy.md
├── pubspec.yaml
├── scripts/
│ ├── oinkoin_from_csv_importer.py
│ ├── update-submodules.sh
│ └── update_en_strings.py
├── test/
│ ├── backup/
│ │ ├── README.md
│ │ ├── backup_service_test.dart
│ │ ├── backup_service_test.mocks.dart
│ │ ├── database_interface.mocks.dart
│ │ ├── import_tag_association_bug_test.dart
│ │ ├── import_tag_association_bug_test.mocks.dart
│ │ ├── user_data_import_verification_test.dart
│ │ └── user_data_import_verification_test.mocks.dart
│ ├── backup_import_tag_bug_test.dart
│ ├── chart_ticks_test.dart
│ ├── compute_number_of_intervals_test.dart
│ ├── csv_service_test.dart
│ ├── datetime_utility_functions_locale_test.dart
│ ├── datetime_utility_functions_test.dart
│ ├── formatter/
│ │ ├── auto_decimal_shift_formatter_test.dart
│ │ └── formatter_integration_test.dart
│ ├── future_records_integration_test.dart
│ ├── future_recurrent_records_test.dart
│ ├── helpers/
│ │ └── test_database.dart
│ ├── locale_debug_test.dart
│ ├── models/
│ │ ├── category.dart
│ │ ├── record.dart
│ │ └── recurrent_pattern.dart
│ ├── overview_card_calculations_test.dart
│ ├── record_filters_test.dart
│ ├── recurrent_pattern_tags_integration_test.dart
│ ├── recurrent_record_test.dart
│ ├── show_future_records_preference_test.dart
│ ├── statistics_drilldown_label_test.dart
│ ├── tab_records_controller_test.dart
│ ├── tag_management_test.dart
│ └── test_database.dart
└── website/
├── .gitignore
├── DEPLOYMENT.md
├── QUICKSTART.md
├── README.md
├── astro.config.mjs
├── package.json
├── public/
│ ├── .assetsignore
│ └── robots.txt
├── src/
│ ├── components/
│ │ ├── Download.astro
│ │ ├── Features.astro
│ │ ├── Footer.astro
│ │ ├── Hero.astro
│ │ ├── NavBar.astro
│ │ └── Screenshots.astro
│ ├── content/
│ │ ├── blog/
│ │ │ ├── linux-beta.md
│ │ │ ├── release-1-1-10.md
│ │ │ ├── release-1-1-7.md
│ │ │ ├── release-1-1-8.md
│ │ │ ├── release-1-1-9.md
│ │ │ ├── release-1-2-0.md
│ │ │ ├── release-1-2-1.md
│ │ │ ├── release-1-3-0.md
│ │ │ ├── release-1-3-1.md
│ │ │ ├── release-1-3-2.md
│ │ │ ├── release-1-3-3.md
│ │ │ ├── release-1-4-0.md
│ │ │ ├── release-1-4-1.md
│ │ │ ├── release-1-4-2.md
│ │ │ ├── release-1-5-0.md
│ │ │ └── welcome.md
│ │ └── config.ts
│ ├── env.d.ts
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ ├── blog/
│ │ ├── [...slug].astro
│ │ └── index.astro
│ ├── index.astro
│ └── safety.astro
├── tailwind.config.mjs
├── tsconfig.json
└── wrangler.jsonc
SYMBOL INDEX (1108 symbols across 157 files)
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/BaseTest.java
class BaseTest (line 13) | public class BaseTest {
method setUp (line 16) | @BeforeSuite
method getAppiumServerUrl (line 33) | private URL getAppiumServerUrl() {
method tearDown (line 41) | @AfterSuite
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/HomePageTest.java
class HomePageTest (line 16) | public class HomePageTest extends BaseTest {
method shouldDisplayCorrectTextForSelectedMonth (line 18) | @Test
method shouldDisplayCorrectTextForSelectedYear (line 28) | @Test
method shouldDisplayCorrectTextForCustomDateRange (line 38) | @Test
method addExpenseRecord (line 50) | @Test
method addIncomeRecord (line 71) | @Test
method deleteRecord (line 92) | @Test
method shouldDisplayRecordsForSelectedMonthOnly (line 112) | @Test
method shouldDisplayRecordsForSelectedYearOnly (line 149) | @Test
method shouldDisplayRecordsForCustomDateRangeOnly (line 185) | @Test
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/NavigationBarTest.java
class NavigationBarTest (line 10) | public class NavigationBarTest extends BaseTest {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/BasePage.java
class BasePage (line 10) | public abstract class BasePage {
method BasePage (line 27) | public BasePage(AppiumDriver driver) {
method isDisplayed (line 32) | public boolean isDisplayed(WebElement webElement) {
method openHomeTab (line 40) | public void openHomeTab() {
method openCategoriesTab (line 47) | public void openCategoriesTab() {
method openSettingsTab (line 54) | public void openSettingsTab() {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategoriesPage.java
class CategoriesPage (line 3) | public class CategoriesPage {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategorySelectionPage.java
class CategorySelectionPage (line 10) | public class CategorySelectionPage extends BasePage {
method CategorySelectionPage (line 18) | public CategorySelectionPage(AppiumDriver driver) {
method selectExpensesTab (line 22) | public void selectExpensesTab() {
method selectIncomeTab (line 26) | public void selectIncomeTab() {
method selectCategory (line 30) | public void selectCategory(CategoryType categoryType, String categoryN...
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/EditRecordPage.java
class EditRecordPage (line 18) | public class EditRecordPage extends BasePage {
method EditRecordPage (line 46) | public EditRecordPage(AppiumDriver driver) {
method getCategoryType (line 50) | public CategoryType getCategoryType() {
method getAmount (line 55) | public double getAmount() {
method setAmount (line 59) | public void setAmount(double amount) {
method getRecordName (line 65) | public String getRecordName() {
method setRecordName (line 69) | public void setRecordName(String name) {
method getCategory (line 75) | public String getCategory() {
method getDate (line 79) | public LocalDate getDate() {
method setDate (line 83) | public void setDate(LocalDate date) {
method getRepeatOption (line 95) | public RepeatOption getRepeatOption() {
method setRepeatOption (line 99) | public void setRepeatOption(RepeatOption repeatOption) {
method getNote (line 106) | public String getNote() {
method setNote (line 110) | public void setNote(String note) {
method saveRecord (line 116) | public void saveRecord() {
method back (line 120) | public void back() {
method delete (line 124) | public void delete() {
method addRecord (line 129) | public void addRecord(RecordData recordData) {
method getRecord (line 139) | public RecordData getRecord() {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/HomePage.java
class HomePage (line 20) | public class HomePage extends BasePage {
method HomePage (line 35) | public HomePage(AppiumDriver driver) {
method dateRangeText (line 39) | public String dateRangeText() {
method showRecordsPer (line 43) | public void showRecordsPer(String option, String value) {
method showRecordsPerMonth (line 51) | public void showRecordsPerMonth(Month month) {
method showRecordsPerYear (line 56) | public void showRecordsPerYear(Year year) {
method showRecordPerDateRange (line 60) | public void showRecordPerDateRange(LocalDate startDate, LocalDate endD...
method setDateRange (line 70) | private void setDateRange(LocalDate startDate, LocalDate endDate) {
method setDateField (line 75) | private void setDateField(int fieldIndex, LocalDate date) {
method addRecord (line 84) | public void addRecord(RecordData recordData) {
method isRecordDisplayedInCurrentView (line 92) | public boolean isRecordDisplayedInCurrentView(String name, CategoryTyp...
method openRecord (line 97) | public void openRecord(String name, CategoryType categoryType, double ...
method generateRecordAccessibilityId (line 110) | private String generateRecordAccessibilityId(String name, CategoryType...
method getRecord (line 121) | public RecordData getRecord(String name, CategoryType categoryType, do...
method deleteRecord (line 126) | public void deleteRecord(String name, CategoryType categoryType, doubl...
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/SettingsPage.java
class SettingsPage (line 3) | public class SettingsPage {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/CategoryType.java
type CategoryType (line 3) | public enum CategoryType {
method CategoryType (line 9) | CategoryType(String displayName) {
method getDisplayName (line 13) | public String getDisplayName() {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Constants.java
class Constants (line 3) | public class Constants {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/RepeatOption.java
type RepeatOption (line 3) | public enum RepeatOption {
method RepeatOption (line 15) | RepeatOption(String displayName) {
method getDisplayName (line 19) | public String getDisplayName() {
FILE: appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Utils.java
class Utils (line 6) | public class Utils {
method capitalizeFirstLetter (line 7) | public static String capitalizeFirstLetter(String input) {
method formatRangeDateText (line 11) | public static String formatRangeDateText(LocalDate startDate, LocalDat...
method extractDate (line 20) | public static LocalDate extractDate(String input) {
method extractRepeatOption (line 27) | public static RepeatOption extractRepeatOption(String input) {
FILE: bump_new_version.py
function update_linux_package_version (line 6) | def update_linux_package_version(new_version_name, config_file_path):
function update_flutter_version_and_copy_changelog (line 23) | def update_flutter_version_and_copy_changelog(new_version_name, changelo...
FILE: create_release_blog_post.py
function create_blog_post (line 10) | def create_blog_post(version_name, changelog_content):
FILE: ios/Flutter/ephemeral/flutter_lldb_helper.py
function handle_new_rx_page (line 7) | def handle_new_rx_page(frame: lldb.SBFrame, bp_loc, extra_args, intern_d...
function __lldb_init_module (line 24) | def __lldb_init_module(debugger: lldb.SBDebugger, _):
FILE: lib/categories/categories-grid.dart
class CategoriesGrid (line 9) | class CategoriesGrid extends StatefulWidget {
method createState (line 21) | CategoriesGridState createState()
class CategoriesGridState (line 24) | class CategoriesGridState extends State<CategoriesGrid> {
method dispose (line 31) | void dispose()
method initState (line 37) | void initState()
method didUpdateWidget (line 46) | void didUpdateWidget(covariant CategoriesGrid oldWidget)
method _buildCategory (line 58) | Widget _buildCategory(Category category)
method _buildCategories (line 104) | Widget _buildCategories()
method build (line 139) | Widget build(BuildContext context)
FILE: lib/categories/categories-list.dart
class CategoriesList (line 8) | class CategoriesList extends StatefulWidget {
method createState (line 18) | CategoriesListState createState()
class CategoriesListState (line 21) | class CategoriesListState extends State<CategoriesList> {
method initState (line 23) | void initState()
method _buildCategories (line 29) | Widget _buildCategories()
method _buildCategory (line 41) | Widget _buildCategory(Category category)
method build (line 67) | Widget build(BuildContext context)
FILE: lib/categories/categories-tab-page-edit.dart
class TabCategories (line 12) | class TabCategories extends StatefulWidget {
method createState (line 21) | TabCategoriesState createState()
class TabCategoriesState (line 24) | class TabCategoriesState extends State<TabCategories>
method initState (line 41) | void initState()
method _handleTabChange (line 49) | void _handleTabChange()
method dispose (line 60) | void dispose()
method _fetchCategories (line 66) | Future<void> _fetchCategories()
method _initializeSortPreference (line 75) | Future<void> _initializeSortPreference()
method storeOnUserPreferences (line 91) | Future<void> storeOnUserPreferences()
method _applySort (line 103) | void _applySort(SortOption sortOption)
method _showSortOptions (line 120) | void _showSortOptions()
method _sortByLastUsed (line 259) | void _sortByLastUsed()
method _sortByMostUsed (line 277) | void _sortByMostUsed()
method _sortAlphabetically (line 284) | void _sortAlphabetically()
method build (line 310) | Widget build(BuildContext context)
FILE: lib/categories/categories-tab-page-view.dart
class CategoryTabPageView (line 11) | class CategoryTabPageView extends StatefulWidget {
method createState (line 16) | CategoryTabPageViewState createState()
class CategoryTabPageViewState (line 19) | class CategoryTabPageViewState extends State<CategoryTabPageView> {
method initState (line 28) | void initState()
method _fetchCategories (line 35) | Future<void> _fetchCategories()
method _initializeSortPreference (line 45) | Future<void> _initializeSortPreference()
method storeOnUserPreferences (line 61) | Future<void> storeOnUserPreferences()
method _applySort (line 73) | void _applySort(SortOption sortOption)
method _showSortOptions (line 90) | void _showSortOptions()
method _sortByLastUsed (line 229) | void _sortByLastUsed()
method _sortByMostUsed (line 247) | void _sortByMostUsed()
method _sortAlphabetically (line 254) | void _sortAlphabetically()
method onCategoriesReorder (line 266) | Future<void> onCategoriesReorder(List<Category?> reorderedCategories)
method build (line 293) | Widget build(BuildContext context)
FILE: lib/categories/category-sort-option.dart
type SortOption (line 1) | enum SortOption { original, lastUsed, mostUsed, alphabetical }
FILE: lib/categories/edit-category-page.dart
class EditCategoryPage (line 17) | class EditCategoryPage extends StatefulWidget {
method createState (line 29) | EditCategoryPageState createState()
class EditCategoryPageState (line 33) | class EditCategoryPageState extends State<EditCategoryPage> {
method initCategory (line 53) | Category initCategory()
method initState (line 68) | void initState()
method _getPageSeparatorLabel (line 92) | Widget _getPageSeparatorLabel(String labelText)
method _getIconsGrid (line 111) | Widget _getIconsGrid()
method _buildColorList (line 231) | Widget _buildColorList()
method _createColorsList (line 269) | Widget _createColorsList()
method _createNoColorCircle (line 283) | Widget _createNoColorCircle()
method _createCategoryCirclePreview (line 328) | Widget _createCategoryCirclePreview()
method _createColorPickerCircle (line 363) | Widget _createColorPickerCircle()
method _getTextField (line 454) | Widget _getTextField()
method _getAppBar (line 485) | Widget _getAppBar()
method _getPickColorCard (line 583) | Widget _getPickColorCard()
method _getIconPickerCard (line 600) | Widget _getIconPickerCard()
method _getPreviewAndTitleCard (line 616) | Widget _getPreviewAndTitleCard()
method build (line 657) | Widget build(BuildContext context)
FILE: lib/components/category_icon_circle.dart
class CategoryIconCircle (line 5) | class CategoryIconCircle extends StatelessWidget {
method _buildMainIcon (line 25) | Widget _buildMainIcon(
method _buildOverlayIcon (line 53) | Widget _buildOverlayIcon(
method _buildLeadingIcon (line 74) | Widget _buildLeadingIcon(BuildContext context, {IconData? overlayIcon})
method build (line 93) | Widget build(BuildContext context)
FILE: lib/components/tag_chip.dart
class TagChip (line 3) | class TagChip extends StatelessWidget {
method build (line 22) | Widget build(BuildContext context)
FILE: lib/components/year-picker.dart
function showYearPicker (line 74) | Future<DateTime?> showYearPicker({
function dateOnly (line 147) | DateTime dateOnly(DateTime date)
class _DatePickerDialog (line 151) | class _DatePickerDialog extends StatefulWidget {
method createState (line 220) | _DatePickerDialogState createState()
class _DatePickerDialogState (line 223) | class _DatePickerDialogState extends State<_DatePickerDialog> {
method initState (line 232) | void initState()
method _handleOk (line 239) | void _handleOk()
method _handleCancel (line 251) | void _handleCancel()
method _handleDateChanged (line 255) | void _handleDateChanged(DateTime date)
method _dialogSize (line 259) | Size? _dialogSize(BuildContext context)
method build (line 289) | Widget build(BuildContext context)
class DatePickerHeader (line 416) | class DatePickerHeader extends StatelessWidget {
method build (line 473) | Widget build(BuildContext context)
class CustomYearPicker (line 578) | class CustomYearPicker extends StatefulWidget {
method createState (line 617) | YearPickerState createState()
class YearPickerState (line 620) | class YearPickerState extends State<CustomYearPicker> {
method initState (line 627) | void initState()
method _buildYearItem (line 641) | Widget _buildYearItem(BuildContext context, int index)
method build (line 727) | Widget build(BuildContext context)
class _YearPickerGridDelegate (line 746) | class _YearPickerGridDelegate extends SliverGridDelegate {
method getLayout (line 750) | SliverGridLayout getLayout(SliverConstraints constraints)
method shouldRelayout (line 765) | bool shouldRelayout(_YearPickerGridDelegate oldDelegate)
FILE: lib/generated_plugin_registrant.dart
function registerPlugins (line 14) | void registerPlugins(Registrar registrar)
FILE: lib/helpers/alert-dialog-builder.dart
class AlertDialogBuilder (line 4) | class AlertDialogBuilder {
method addTitle (line 20) | AlertDialogBuilder addTitle(String title)
method addSubtitle (line 25) | AlertDialogBuilder addSubtitle(String subtitle)
method addTrueButtonName (line 30) | AlertDialogBuilder addTrueButtonName(String trueButtonName)
method addFalseButtonName (line 35) | AlertDialogBuilder addFalseButtonName(String falseButtonName)
method build (line 40) | AlertDialog build(BuildContext context)
FILE: lib/helpers/color-utils.dart
function serializeColorToString (line 5) | String serializeColorToString(Color color)
function colorComponentToInteger (line 15) | int colorComponentToInteger(double colorComponent)
FILE: lib/helpers/date_picker_utils.dart
class DatePickerUtils (line 5) | class DatePickerUtils {
method buildDatePickerWithFirstDayOfWeek (line 10) | Widget buildDatePickerWithFirstDayOfWeek(
FILE: lib/helpers/datetime-utility-functions.dart
function addDuration (line 15) | DateTime addDuration(DateTime start, Duration duration)
function getEndOfMonth (line 28) | DateTime getEndOfMonth(int year, int month)
function getDateRangeStr (line 35) | String getDateRangeStr(DateTime start, DateTime end)
function getMonthStr (line 64) | String getMonthStr(DateTime dateTime)
function getYearStr (line 71) | String getYearStr(DateTime dateTime)
function getWeekStr (line 75) | String getWeekStr(DateTime dateTime)
function getFirstDayOfWeekIndex (line 91) | int getFirstDayOfWeekIndex()
function _getLastDayOfWeek (line 120) | int _getLastDayOfWeek(int firstDayOfWeek)
function _calculateDaysOffset (line 126) | int _calculateDaysOffset(int fromWeekday, int toWeekday, {bool forward =...
function getStartOfWeek (line 138) | DateTime getStartOfWeek(DateTime date)
function getEndOfWeek (line 144) | DateTime getEndOfWeek(DateTime date)
function getDateStr (line 152) | String getDateStr(DateTime? dateTime, {AggregationMethod? aggregationMet...
function extractMonthString (line 187) | String extractMonthString(DateTime dateTime)
function extractYearString (line 192) | String extractYearString(DateTime dateTime)
function extractWeekdayString (line 197) | String extractWeekdayString(DateTime dateTime)
function isFullMonth (line 202) | bool isFullMonth(DateTime from, DateTime to)
function isFullYear (line 207) | bool isFullYear(DateTime from, DateTime to)
function isFullWeek (line 213) | bool isFullWeek(DateTime intervalFrom, DateTime intervalTo)
function createTzDateTime (line 222) | tz.TZDateTime createTzDateTime(DateTime utcDateTime, String timeZoneName)
function getLocation (line 227) | tz.Location getLocation(String timeZoneName)
function lastDayOf (line 240) | int lastDayOf(int year, int month)
function calculateMonthCycle (line 258) | List<DateTime> calculateMonthCycle(DateTime referenceDate, int startDay)
function calculateInterval (line 290) | List<DateTime> calculateInterval(
FILE: lib/helpers/first_day_of_week_localizations.dart
class FirstDayOfWeekLocalizationsDelegate (line 5) | class FirstDayOfWeekLocalizationsDelegate extends LocalizationsDelegate<...
method isSupported (line 12) | bool isSupported(Locale locale)
method load (line 15) | Future<MaterialLocalizations> load(Locale locale)
method shouldReload (line 42) | bool shouldReload(FirstDayOfWeekLocalizationsDelegate old)
class FirstDayOfWeekLocalizations (line 47) | class FirstDayOfWeekLocalizations extends DefaultMaterialLocalizations {
method aboutListTileTitle (line 119) | String aboutListTileTitle(String applicationName)
method formatCompactDate (line 120) | String formatCompactDate(DateTime date)
method formatDecimal (line 121) | String formatDecimal(int number)
method formatFullDate (line 122) | String formatFullDate(DateTime date)
method formatHour (line 123) | String formatHour(TimeOfDay timeOfDay, {bool alwaysUse24HourFormat = f...
method formatMediumDate (line 124) | String formatMediumDate(DateTime date)
method formatMinute (line 125) | String formatMinute(TimeOfDay timeOfDay)
method formatMonthYear (line 126) | String formatMonthYear(DateTime date)
method formatShortDate (line 127) | String formatShortDate(DateTime date)
method formatShortMonthDay (line 128) | String formatShortMonthDay(DateTime date)
method formatTimeOfDay (line 129) | String formatTimeOfDay(TimeOfDay timeOfDay, {bool alwaysUse24HourForma...
method formatYear (line 130) | String formatYear(DateTime date)
method pageRowsInfoTitle (line 131) | String pageRowsInfoTitle(int firstRow, int lastRow, int rowCount, bool...
method parseCompactDate (line 132) | DateTime? parseCompactDate(String? inputString)
method tabLabel (line 133) | String tabLabel({required int tabIndex, required int tabCount})
FILE: lib/helpers/records-generator.dart
class RecordsGenerator (line 5) | class RecordsGenerator {
method getRandomRecord (line 27) | Record getRandomRecord(recordDate)
method getRandomMovements (line 40) | List<Record> getRandomMovements(movementDate, {quantity = 100})
method _getRandomSubset (line 53) | List<Object> _getRandomSubset(List<Object> choices, {minimum = 0})
method _getRandomElement (line 67) | Object _getRandomElement(List<Object> choices)
FILE: lib/helpers/records-utility-functions.dart
function groupRecordsByDay (line 20) | List<RecordsPerDay> groupRecordsByDay(List<Record?> records)
function getGroupingSeparator (line 53) | String getGroupingSeparator()
function getDecimalSeparator (line 58) | String getDecimalSeparator()
function getOverwriteDotValue (line 63) | bool getOverwriteDotValue()
function getOverwriteCommaValue (line 69) | bool getOverwriteCommaValue()
function getNumberDecimalDigits (line 75) | int getNumberDecimalDigits()
function getAmountInputAutoDecimalShift (line 82) | bool getAmountInputAutoDecimalShift()
function getCurrencyLocale (line 90) | Locale getCurrencyLocale()
function usesWesternArabicNumerals (line 94) | bool usesWesternArabicNumerals(Locale locale)
function getNumberFormatWithCustomizations (line 103) | NumberFormat getNumberFormatWithCustomizations(
function setNumberFormatCache (line 176) | void setNumberFormatCache()
function getCurrencyValueString (line 184) | String getCurrencyValueString(double? value, {turnOffGrouping = false})
function tryParseCurrencyString (line 203) | double? tryParseCurrencyString(String toParse)
function stripUnknownPatternCharacters (line 222) | String stripUnknownPatternCharacters(String toParse)
function getBackgroundImage (line 238) | AssetImage getBackgroundImage(int monthIndex)
function getAllRecords (line 253) | Future<List<Record?>> getAllRecords(DatabaseInterface database)
function getDateTimeFirstRecord (line 257) | Future<DateTime?> getDateTimeFirstRecord(DatabaseInterface database)
function getRecordsByInterval (line 261) | Future<List<Record?>> getRecordsByInterval(
function getRecordsByMonth (line 266) | Future<List<Record?>> getRecordsByMonth(
function getRecordsByYear (line 275) | Future<List<Record?>> getRecordsByYear(
function getHomepageTimeIntervalEnumSetting (line 284) | HomepageTimeInterval getHomepageTimeIntervalEnumSetting()
function getHomepageOverviewWidgetTimeIntervalEnumSetting (line 290) | OverviewTimeInterval getHomepageOverviewWidgetTimeIntervalEnumSetting()
function getHomepageRecordsMonthStartDay (line 297) | int getHomepageRecordsMonthStartDay()
function getShortDateStr (line 303) | String getShortDateStr(DateTime date)
function getHeaderFromHomepageTimeInterval (line 307) | String getHeaderFromHomepageTimeInterval(HomepageTimeInterval timeInterval)
function getTimeIntervalFromHomepageTimeInterval (line 321) | Future<List<DateTime>> getTimeIntervalFromHomepageTimeInterval(
function mapOverviewTimeIntervalToHomepageTimeInterval (line 338) | HomepageTimeInterval mapOverviewTimeIntervalToHomepageTimeInterval(
function getRecordsByHomepageTimeInterval (line 352) | Future<List<Record?>> getRecordsByHomepageTimeInterval(
FILE: lib/i18n.dart
class MyI18n (line 5) | class MyI18n {
method loadTranslations (line 8) | Future<void> loadTranslations()
method replaceTranslations (line 12) | void replaceTranslations(String replaceFrom, String replaceTo)
function plural (line 24) | String plural(value)
function fill (line 25) | String fill(List<Object> params)
FILE: lib/i18n/i18n_helper.dart
class Importer (line 6) | abstract class Importer {
method _load (line 9) | Map<String, String> _load(String source)
method fromAssetFile (line 11) | Future<Map<String, Map<String, String>>> fromAssetFile(
method fromAssetDirectory (line 16) | Future<Map<String, Map<String, String>>> fromAssetDirectory(
method fromString (line 38) | Future<Map<String, Map<String, String>>> fromString(
class JSONImporter (line 44) | class JSONImporter extends Importer {
method _load (line 49) | Map<String, String> _load(String source)
FILE: lib/main.dart
function main (line 25) | main()
class MyApp (line 89) | class MyApp extends StatelessWidget {
method build (line 104) | Widget build(BuildContext context)
class AppCore (line 121) | class AppCore extends StatelessWidget {
method build (line 134) | Widget build(BuildContext context)
function _defaultOnNavigationNotification (line 150) | bool _defaultOnNavigationNotification(NavigationNotification _)
FILE: lib/models/backup.dart
class Backup (line 9) | class Backup extends Model {
method toMap (line 25) | Map<String, dynamic> toMap()
method fromMap (line 43) | Backup fromMap(Map<String, dynamic> map)
method nonEmptyStringValue (line 103) | String? nonEmptyStringValue(Map<String, dynamic> map, String key)
FILE: lib/models/category-icons.dart
class CategoryIcons (line 4) | class CategoryIcons {
FILE: lib/models/category-type.dart
type CategoryType (line 1) | enum CategoryType {
FILE: lib/models/category.dart
class Category (line 9) | class Category extends Model {
method toMap (line 71) | Map<String, dynamic> toMap()
method fromMap (line 92) | Category fromMap(Map<String, dynamic> map)
FILE: lib/models/model.dart
class Model (line 1) | abstract class Model {
method fromMap (line 5) | fromMap()
method toJson (line 7) | Map toJson()
method fromJson (line 8) | Map fromJson()
FILE: lib/models/record-tag-association.dart
class RecordTagAssociation (line 3) | class RecordTagAssociation extends Model {
method toMap (line 13) | Map<String, dynamic> toMap()
method fromMap (line 20) | RecordTagAssociation fromMap(Map<String, dynamic> map)
FILE: lib/models/record.dart
class Record (line 8) | class Record extends Model {
method fromMap (line 47) | Record fromMap(Map<String, dynamic> map)
method toMap (line 72) | Map<String, dynamic> toMap()
method toCsvMap (line 87) | Map<String, dynamic> toCsvMap()
FILE: lib/models/records-per-category.dart
class RecordsPerCategory (line 4) | class RecordsPerCategory {
method addMovement (line 40) | void addMovement(Record movement)
method fromMap (line 44) | RecordsPerCategory fromMap(Map<String, dynamic> map)
FILE: lib/models/records-per-day.dart
class RecordsPerDay (line 4) | class RecordsPerDay {
method addMovement (line 47) | void addMovement(Record movement)
FILE: lib/models/records-summary-by-category.dart
class RecordsSummaryPerCategory (line 3) | class RecordsSummaryPerCategory {
method fromMap (line 12) | RecordsSummaryPerCategory fromMap(Map<String, dynamic> map)
FILE: lib/models/recurrent-period.dart
type RecurrentPeriod (line 3) | enum RecurrentPeriod {
function recurrentPeriodString (line 14) | String recurrentPeriodString(RecurrentPeriod? r)
FILE: lib/models/recurrent-record-pattern.dart
class RecurrentRecordPattern (line 9) | class RecurrentRecordPattern {
method toMap (line 52) | Map<String, dynamic> toMap()
method fromMap (line 71) | RecurrentRecordPattern fromMap(Map<String, dynamic> map)
FILE: lib/premium/splash-screen.dart
class PremiumSplashScreen (line 5) | class PremiumSplashScreen extends StatelessWidget {
method build (line 16) | Widget build(BuildContext context)
FILE: lib/premium/util-widgets.dart
function getProLabel (line 3) | Widget getProLabel({labelFontSize = 10.0})
FILE: lib/records/components/days-summary-box-card.dart
class DaysSummaryBox (line 7) | class DaysSummaryBox extends StatefulWidget {
method createState (line 16) | DaysSummaryBoxState createState()
class DaysSummaryBoxState (line 19) | class DaysSummaryBoxState extends State<DaysSummaryBox> {
method totalIncome (line 23) | double totalIncome()
method totalExpenses (line 30) | double totalExpenses()
method totalBalance (line 37) | double totalBalance()
method build (line 42) | Widget build(BuildContext context)
FILE: lib/records/components/filter_modal_content.dart
class FilterModalContent (line 8) | class FilterModalContent extends StatefulWidget {
method createState (line 31) | State<FilterModalContent> createState()
class _FilterModalContentState (line 34) | class _FilterModalContentState extends State<FilterModalContent>
method initState (line 51) | void initState()
method dispose (line 83) | void dispose()
method _onScroll (line 89) | void _onScroll()
method _onApplyFilters (line 111) | void _onApplyFilters()
method _onClearAllFilters (line 117) | void _onClearAllFilters()
method _getCategoriesByType (line 122) | List<Category?> _getCategoriesByType(CategoryType? type)
method _buildCategorySection (line 128) | Widget _buildCategorySection(String title, List<Category?> categories,
method build (line 175) | Widget build(BuildContext context)
method _buildLogicExplanation (line 496) | Widget _buildLogicExplanation()
method _parseMarkdownText (line 531) | List<TextSpan> _parseMarkdownText(String text)
FILE: lib/records/components/records-day-list.dart
class RecordsDayList (line 8) | class RecordsDayList extends StatefulWidget {
method createState (line 25) | State<RecordsDayList> createState()
class _RecordsDayListState (line 28) | class _RecordsDayListState extends State<RecordsDayList> {
method initState (line 34) | void initState()
method didUpdateWidget (line 40) | void didUpdateWidget(RecordsDayList oldWidget)
method _updateDaysShown (line 48) | void _updateDaysShown()
method _loadMore (line 54) | void _loadMore()
method build (line 68) | Widget build(BuildContext context)
FILE: lib/records/components/records-per-day-card.dart
class RecordsPerDayCard (line 13) | class RecordsPerDayCard extends StatefulWidget {
method createState (line 26) | MovementGroupState createState()
class MovementGroupState (line 29) | class MovementGroupState extends State<RecordsPerDayCard>
method initState (line 42) | void initState()
method _loadPreferences (line 47) | void _loadPreferences()
method _buildMovements (line 56) | Widget _buildMovements()
method _buildMovementRow (line 77) | Widget _buildMovementRow(Record movement)
method _buildTagChipsRow (line 151) | Widget _buildTagChipsRow(Set<String> tags)
method build (line 178) | Widget build(BuildContext context)
FILE: lib/records/components/styled_action_buttons.dart
class StyledActionButton (line 3) | class StyledActionButton extends StatelessWidget {
method build (line 20) | Widget build(BuildContext context)
FILE: lib/records/components/styled_popup_menu_button.dart
class StyledPopupMenuButton (line 4) | class StyledPopupMenuButton extends StatelessWidget {
method build (line 15) | Widget build(BuildContext context)
method _buildPopupMenuItems (line 46) | List<PopupMenuItem<int>> _buildPopupMenuItems(BuildContext context)
FILE: lib/records/components/tab_records_app_bar.dart
class TabRecordsAppBar (line 8) | class TabRecordsAppBar extends StatelessWidget {
method build (line 27) | Widget build(BuildContext context)
method _buildActions (line 56) | List<Widget> _buildActions()
method _buildTitle (line 85) | Widget _buildTitle(
method _buildShiftButton (line 109) | Widget _buildShiftButton(IconData icon, int direction)
method _buildBackground (line 122) | Widget _buildBackground()
method _getTitlePadding (line 139) | EdgeInsets _getTitlePadding(
FILE: lib/records/components/tab_records_date_picker.dart
class TabRecordsDatePicker (line 14) | class TabRecordsDatePicker extends StatelessWidget {
method build (line 25) | Widget build(BuildContext context)
method _buildDialogOption (line 77) | Widget _buildDialogOption(
method _pickMonth (line 109) | Future<void> _pickMonth(BuildContext context)
method _pickYear (line 128) | Future<void> _pickYear(BuildContext context)
method _pickDateRange (line 150) | Future<void> _pickDateRange(BuildContext context)
method updateAndClose (line 193) | void updateAndClose(BuildContext context, DateTime from, DateTime to,
method _resetToDefault (line 204) | Future<void> _resetToDefault(BuildContext context)
method _goToPremiumSplashScreen (line 214) | Future<void> _goToPremiumSplashScreen(BuildContext context)
FILE: lib/records/components/tab_records_search_app_bar.dart
class TabRecordsSearchAppBar (line 8) | class TabRecordsSearchAppBar extends StatelessWidget
method build (line 33) | Widget build(BuildContext context)
method _buildBackButton (line 49) | Widget _buildBackButton()
method _buildActions (line 57) | List<Widget> _buildActions()
method _buildSearchTextField (line 80) | PreferredSize _buildSearchTextField(BuildContext context)
method _buildFilterButton (line 160) | Widget _buildFilterButton(double scaleFactor, BuildContext context)
FILE: lib/records/components/tag_selection_dialog.dart
class TagSelectionDialog (line 8) | class TagSelectionDialog extends StatefulWidget {
method createState (line 15) | _TagSelectionDialogState createState()
class _TagSelectionDialogState (line 18) | class _TagSelectionDialogState extends State<TagSelectionDialog>
method initState (line 29) | void initState()
method dispose (line 48) | void dispose()
method _loadAllTags (line 54) | Future<void> _loadAllTags()
method _filterTags (line 64) | void _filterTags(String searchText)
method _toggleTagSelection (line 73) | void _toggleTagSelection(String tag)
method build (line 90) | Widget build(BuildContext context)
method _buildSearchField (line 222) | Widget _buildSearchField(ColorScheme colorScheme)
method _buildTagsGrid (line 315) | Widget _buildTagsGrid(ColorScheme colorScheme)
method _buildEmptyState (line 331) | Widget _buildEmptyState(ColorScheme colorScheme, TextTheme textTheme)
method _addTagFromInput (line 362) | void _addTagFromInput(String value)
FILE: lib/records/controllers/tab_records_controller.dart
class TabRecordsController (line 30) | class TabRecordsController {
method initialize (line 60) | Future<void> initialize()
method onResume (line 65) | Future<void> onResume()
method onTabChange (line 70) | Future<void> onTabChange()
method dispose (line 75) | void dispose()
method _onSearchChanged (line 80) | void _onSearchChanged()
method startSearch (line 82) | void startSearch()
method stopSearch (line 91) | void stopSearch()
method filterRecords (line 100) | void filterRecords()
method _matchesSmartSearch (line 166) | bool _matchesSmartSearch(String? text, String query)
method updateRecurrentRecordsAndFetchRecords (line 182) | Future<void> updateRecurrentRecordsAndFetchRecords()
method _extractTags (line 280) | void _extractTags(List<Record?> records)
method _extractCategories (line 290) | void _extractCategories(List<Record?> records)
method _fetchCategories (line 300) | Future<void> _fetchCategories()
method navigateToAddNewRecord (line 306) | Future<void> navigateToAddNewRecord(BuildContext context)
method navigateToStatisticsPage (line 324) | void navigateToStatisticsPage(BuildContext context)
method handleMenuAction (line 347) | Future<void> handleMenuAction(BuildContext context, int index)
method showFilterModal (line 353) | Future<void> showFilterModal(BuildContext context)
method _isThereSomeCategory (line 386) | Future<bool> _isThereSomeCategory()
method _showNoCategoryDialog (line 391) | Future<void> _showNoCategoryDialog(BuildContext context)
method _exportToCSV (line 405) | Future<void> _exportToCSV()
method runAutomaticBackup (line 418) | void runAutomaticBackup(BuildContext? context)
method updateCustomInterval (line 439) | void updateCustomInterval(DateTime from, DateTime to, String newHeader)
method resetHomepageInterval (line 447) | void resetHomepageInterval()
method shiftInterval (line 462) | Future<void> shiftInterval(int shift)
method getHeaderFontSize (line 503) | double getHeaderFontSize()
method getHeaderPaddingBottom (line 504) | double getHeaderPaddingBottom()
method canShiftBack (line 506) | bool canShiftBack()
method canShiftForward (line 508) | bool canShiftForward()
FILE: lib/records/edit-record-page.dart
class EditRecordPage (line 34) | class EditRecordPage extends StatefulWidget {
method createState (line 49) | EditRecordPageState createState()
class EditRecordPageState (line 53) | class EditRecordPageState extends State<EditRecordPage> {
method isMathExpression (line 118) | bool isMathExpression(String text)
method tryParseMathExpr (line 128) | String? tryParseMathExpr(String text)
method solveMathExpressionAndUpdateText (line 143) | void solveMathExpressionAndUpdateText()
method getAmountInputKeyboardType (line 166) | TextInputType getAmountInputKeyboardType()
method initState (line 179) | void initState()
method dispose (line 283) | void dispose()
method _createAddNoteCard (line 289) | Widget _createAddNoteCard()
method _createTitleCard (line 326) | Widget _createTitleCard()
method _createCategoryCard (line 382) | Widget _createCategoryCard()
method _createDateAndRepeatCard (line 439) | Widget _createDateAndRepeatCard()
method _createAmountCard (line 736) | Widget _createAmountCard()
method changeRecordValue (line 836) | void changeRecordValue(String text)
method _loadSuggestedTags (line 857) | Future<void> _loadSuggestedTags()
method _openTagSelectionDialog (line 908) | void _openTagSelectionDialog()
method _getAppBar (line 930) | AppBar _getAppBar()
method _getForm (line 981) | Widget _getForm()
method _createTagsSection (line 1003) | Widget _createTagsSection()
method _createSelectedTagsChips (line 1031) | Widget _createSelectedTagsChips()
method _createSuggestedTagsChips (line 1066) | Widget _createSuggestedTagsChips()
method build (line 1106) | Widget build(BuildContext context)
FILE: lib/records/formatter/auto_decimal_shift_formatter.dart
class AutoDecimalShiftFormatter (line 20) | class AutoDecimalShiftFormatter extends TextInputFormatter {
method _isOp (line 36) | bool _isOp(String c)
method _onlyDigits (line 40) | String _onlyDigits(String s)
method _formatDigits (line 49) | String _formatDigits(String digits)
method _formatNumberToken (line 74) | String _formatNumberToken(String token)
method formatEditUpdate (line 90) | TextEditingValue formatEditUpdate(
class LeadingZeroIntegerTrimmerFormatter (line 171) | class LeadingZeroIntegerTrimmerFormatter extends TextInputFormatter {
method formatEditUpdate (line 184) | TextEditingValue formatEditUpdate(
FILE: lib/records/formatter/calculator-normalizer.dart
class CalculatorNormalizer (line 4) | class CalculatorNormalizer extends TextInputFormatter {
method formatEditUpdate (line 24) | TextEditingValue formatEditUpdate(
FILE: lib/records/formatter/group-separator-formatter.dart
class GroupSeparatorFormatter (line 5) | class GroupSeparatorFormatter extends TextInputFormatter {
method formatEditUpdate (line 22) | TextEditingValue formatEditUpdate(
method _calculateOffset (line 69) | int _calculateOffset(TextEditingValue newValue, String formatted)
FILE: lib/records/records-page.dart
class TabRecords (line 14) | class TabRecords extends StatefulWidget {
method createState (line 21) | TabRecordsState createState()
class TabRecordsState (line 24) | class TabRecordsState extends State<TabRecords> {
method initState (line 31) | void initState()
method _handleOnResume (line 47) | void _handleOnResume(AppLifecycleState value)
method dispose (line 54) | void dispose()
method didChangeDependencies (line 61) | void didChangeDependencies()
method build (line 67) | Widget build(BuildContext context)
method _buildBody (line 75) | Widget _buildBody()
method _buildSlivers (line 121) | List<Widget> _buildSlivers()
method _buildMainSliverAppBar (line 139) | Widget _buildMainSliverAppBar()
method _buildAppBar (line 151) | TabRecordsSearchAppBar? _buildAppBar()
method _buildSummarySection (line 166) | Widget _buildSummarySection()
method _buildEmptyState (line 177) | Widget _buildEmptyState()
method _buildFloatingActionButton (line 193) | Widget _buildFloatingActionButton()
method _showDatePicker (line 204) | Future<void> _showDatePicker()
FILE: lib/recurrent_record_patterns/patterns-page-view.dart
class PatternsPageView (line 13) | class PatternsPageView extends StatefulWidget {
method createState (line 15) | PatternsPageViewState createState()
class PatternsPageViewState (line 18) | class PatternsPageViewState extends State<PatternsPageView> {
method initState (line 23) | void initState()
method _recurrenceSubtitle (line 42) | String _recurrenceSubtitle(RecurrentRecordPattern pattern)
method _buildRecurrentPatternRow (line 59) | Widget _buildRecurrentPatternRow(RecurrentRecordPattern pattern)
method _groupPatternsByPeriod (line 100) | Map<RecurrentPeriod, List<RecurrentRecordPattern>> _groupPatternsByPer...
method _calculateGroupSum (line 134) | double _calculateGroupSum(List<RecurrentRecordPattern> patterns)
method _buildGroupHeader (line 138) | Widget _buildGroupHeader(RecurrentPeriod period, double sum)
method buildRecurrentRecordPatternsList (line 157) | Widget buildRecurrentRecordPatternsList()
method build (line 218) | Widget build(BuildContext context)
FILE: lib/services/backup-service.dart
class BackupService (line 26) | class BackupService {
method getDefaultBackupDirectory (line 44) | Future<String> getDefaultBackupDirectory()
method generateBackupFileName (line 56) | Future<String> generateBackupFileName()
method getDefaultFileName (line 73) | Future<String> getDefaultFileName()
method createJsonBackupFile (line 83) | Future<File> createJsonBackupFile({
method shouldCreateAutomaticBackup (line 142) | Future<bool> shouldCreateAutomaticBackup()
method createAutomaticBackup (line 181) | Future<bool> createAutomaticBackup()
method removeOldAutomaticBackups (line 219) | Future<bool> removeOldAutomaticBackups()
method importDataFromBackupFile (line 245) | Future<bool> importDataFromBackupFile(File inputFile,
method encryptData (line 307) | String encryptData(String data, String password)
method hashPassword (line 321) | String hashPassword(String password)
method isEncrypted (line 330) | Future<bool> isEncrypted(File inputFile)
method decryptData (line 347) | String decryptData(String data, String password)
method removeOldBackups (line 366) | Future<bool> removeOldBackups(
method getStringDateLatestBackup (line 402) | Future<String?> getStringDateLatestBackup()
method getDateLatestBackup (line 415) | Future<DateTime?> getDateLatestBackup()
FILE: lib/services/csv-service.dart
class CSVExporter (line 5) | class CSVExporter {
method createCSVFromRecordList (line 9) | createCSVFromRecordList(List<Record?> records)
FILE: lib/services/database/database-interface.dart
class DatabaseInterface (line 9) | abstract class DatabaseInterface {
method getAllCategories (line 14) | Future<List<Category?>> getAllCategories()
method getCategoriesByType (line 15) | Future<List<Category?>> getCategoriesByType(CategoryType categoryType)
method getCategory (line 16) | Future<Category?> getCategory(String categoryName, CategoryType catego...
method addCategory (line 17) | Future<int> addCategory(Category? category)
method updateCategory (line 18) | Future<int> updateCategory(String? existingCategoryName,
method deleteCategory (line 20) | Future<void> deleteCategory(String? name, CategoryType? categoryType)
method archiveCategory (line 21) | Future<void> archiveCategory(
method resetCategoryOrderIndexes (line 23) | Future<void> resetCategoryOrderIndexes(List<Category> orderedCategories)
method getRecordById (line 26) | Future<Record?> getRecordById(int id)
method deleteRecordById (line 27) | Future<void> deleteRecordById(int? id)
method addRecord (line 28) | Future<int> addRecord(Record? record)
method addRecordsInBatch (line 29) | Future<void> addRecordsInBatch(List<Record?> records)
method updateRecordById (line 30) | Future<int?> updateRecordById(int? recordId, Record? newRecord)
method getDateTimeFirstRecord (line 31) | Future<DateTime?> getDateTimeFirstRecord()
method getAllRecords (line 32) | Future<List<Record?>> getAllRecords()
method getAllRecordsInInterval (line 33) | Future<List<Record?>> getAllRecordsInInterval(DateTime? from, DateTime...
method getMatchingRecord (line 34) | Future<Record?> getMatchingRecord(Record? record)
method deleteFutureRecordsByPatternId (line 35) | Future<void> deleteFutureRecordsByPatternId(
method suggestedRecordTitles (line 37) | Future<List<String>> suggestedRecordTitles(
method getTagsForRecord (line 39) | Future<List<String>> getTagsForRecord(int recordId)
method getAllTags (line 40) | Future<Set<String>> getAllTags()
method getRecentlyUsedTags (line 41) | Future<Set<String>> getRecentlyUsedTags()
method getMostUsedTagsForCategory (line 42) | Future<Set<String>> getMostUsedTagsForCategory(
method getAggregatedRecordsByTagInInterval (line 44) | Future<List<Map<String, dynamic>>> getAggregatedRecordsByTagInInterval(
method getAllRecordTagAssociations (line 48) | Future<List<RecordTagAssociation>> getAllRecordTagAssociations()
method renameTag (line 49) | Future<void> renameTag(String old, String newTag)
method deleteTag (line 50) | Future<void> deleteTag(String tagToDelete)
method getRecurrentRecordPatterns (line 53) | Future<List<RecurrentRecordPattern>> getRecurrentRecordPatterns()
method getRecurrentRecordPattern (line 54) | Future<RecurrentRecordPattern?> getRecurrentRecordPattern(
method addRecurrentRecordPattern (line 56) | Future<void> addRecurrentRecordPattern(RecurrentRecordPattern recordPa...
method deleteRecurrentRecordPatternById (line 57) | Future<void> deleteRecurrentRecordPatternById(String? recurrentPatternId)
method updateRecordPatternById (line 58) | Future<void> updateRecordPatternById(
method deleteDatabase (line 62) | Future<void> deleteDatabase()
FILE: lib/services/database/exceptions.dart
class NotFoundException (line 1) | class NotFoundException implements Exception {
class ElementAlreadyExists (line 6) | class ElementAlreadyExists implements Exception {
FILE: lib/services/database/sqlite-database.dart
class SqliteDatabase (line 24) | class SqliteDatabase implements DatabaseInterface {
method setDatabaseForTesting (line 37) | void setDatabaseForTesting(Database? db)
method init (line 49) | Future<Database> init()
method getAllCategories (line 101) | Future<List<Category>> getAllCategories()
method getCategory (line 110) | Future<Category?> getCategory(
method addCategory (line 122) | Future<int> addCategory(Category? category)
method deleteCategory (line 145) | Future<void> deleteCategory(
method updateCategory (line 168) | Future<int> updateCategory(String? existingCategoryName,
method addRecord (line 186) | Future<int> addRecord(Record? record)
method addRecordsInBatch (line 216) | Future<void> addRecordsInBatch(List<Record?> records)
method getMatchingRecord (line 309) | Future<Record?> getMatchingRecord(Record? record)
method getAllRecords (line 345) | Future<List<Record>> getAllRecords()
method suggestedRecordTitles (line 370) | Future<List<String>> suggestedRecordTitles(
method getTagsForRecord (line 384) | Future<List<String>> getTagsForRecord(int recordId)
method getAllTags (line 396) | Future<Set<String>> getAllTags()
method getAllRecordTagAssociations (line 408) | Future<List<RecordTagAssociation>> getAllRecordTagAssociations()
method getMostUsedTagsForCategory (line 425) | Future<Set<String>> getMostUsedTagsForCategory(
method getAllRecordsInInterval (line 443) | Future<List<Record>> getAllRecordsInInterval(
method getAggregatedRecordsByTagInInterval (line 494) | Future<List<Map<String, dynamic>>> getAggregatedRecordsByTagInInterval(
method deleteDatabase (line 518) | Future<void> deleteDatabase()
method getCategoriesByType (line 535) | Future<List<Category>> getCategoriesByType(CategoryType categoryType)
method getRecordById (line 544) | Future<Record?> getRecordById(int id)
method updateRecordById (line 575) | Future<int> updateRecordById(int? movementId, Record? newMovement)
method deleteRecordById (line 602) | Future<void> deleteRecordById(int? id)
method deleteFutureRecordsByPatternId (line 609) | Future<void> deleteFutureRecordsByPatternId(
method getRecurrentRecordPatterns (line 620) | Future<List<RecurrentRecordPattern>> getRecurrentRecordPatterns()
method getRecurrentRecordPattern (line 637) | Future<RecurrentRecordPattern?> getRecurrentRecordPattern(
method addRecurrentRecordPattern (line 656) | Future<int> addRecurrentRecordPattern(
method deleteRecurrentRecordPatternById (line 665) | Future<void> deleteRecurrentRecordPatternById(
method updateRecordPatternById (line 673) | Future<int> updateRecordPatternById(
method getDateTimeFirstRecord (line 682) | Future<DateTime?> getDateTimeFirstRecord()
method archiveCategory (line 700) | Future<void> archiveCategory(
method resetCategoryOrderIndexes (line 717) | Future<void> resetCategoryOrderIndexes(
method getRecentlyUsedTags (line 737) | Future<Set<String>> getRecentlyUsedTags()
method renameTag (line 751) | Future<void> renameTag(String oldTagName, String newTagName)
method deleteTag (line 783) | Future<void> deleteTag(String tagName)
FILE: lib/services/database/sqlite-migration-service.dart
class SqliteMigrationService (line 9) | class SqliteMigrationService {
method _createCategoriesTable (line 14) | void _createCategoriesTable(Batch batch)
method _createRecordsTable (line 32) | void _createRecordsTable(Batch batch)
method _createRecordsTagsTable (line 49) | void _createRecordsTagsTable(Batch batch)
method _createRecurrentRecordPatternsTable (line 60) | void _createRecurrentRecordPatternsTable(Batch batch)
method _createAddRecordTrigger (line 82) | void _createAddRecordTrigger(Batch batch)
method _createUpdateRecordTrigger (line 101) | void _createUpdateRecordTrigger(Batch batch)
method _createDeleteRecordTrigger (line 130) | void _createDeleteRecordTrigger(Batch batch)
method _createDeleteRecordTagsTrigger (line 148) | void _createDeleteRecordTagsTrigger(Batch batch)
method getDefaultCategories (line 161) | List<Category> getDefaultCategories()
method safeAlterTable (line 182) | Future<void> safeAlterTable(
method _migrateTo6 (line 197) | void _migrateTo6(Database db)
method _migrateTo7 (line 210) | void _migrateTo7(Database db)
method _migrateTo8 (line 255) | void _migrateTo8(Database db)
method _migrateTo9 (line 260) | void _migrateTo9(Database db)
method _migrateTo10 (line 264) | void _migrateTo10(Database db)
method skip (line 271) | void skip(Database db)
method _migrateTo13 (line 275) | void _migrateTo13(Database db)
method _migrateTo16 (line 301) | Future<void> _migrateTo16(Database db)
method _migrateTo17 (line 336) | Future<void> _migrateTo17(Database db)
method onUpgrade (line 357) | void onUpgrade(Database db, int oldVersion, int newVersion)
method onCreate (line 371) | void onCreate(Database db, int version)
FILE: lib/services/locale-service.dart
class LocaleService (line 12) | class LocaleService {
method getUserPreferredLocales (line 39) | List<Locale> getUserPreferredLocales()
method resolveCurrencyLocale (line 43) | Locale resolveCurrencyLocale()
method resolveLanguageLocale (line 52) | Locale resolveLanguageLocale()
method getLocaleFromUserPreferences (line 68) | Locale? getLocaleFromUserPreferences()
method getLocaleFromDeviceSettings (line 108) | Locale? getLocaleFromDeviceSettings()
method setCurrencyLocale (line 128) | void setCurrencyLocale(Locale toSet)
method checkForSettingInconsistency (line 142) | void checkForSettingInconsistency(Locale toSet)
FILE: lib/services/logger.dart
class Logger (line 49) | class Logger {
method info (line 68) | void info(String message)
method debug (line 73) | void debug(String message)
method warning (line 78) | void warning(String message)
method error (line 83) | void error(String message)
method critical (line 88) | void critical(String message)
method handle (line 93) | void handle(Object exception, StackTrace stackTrace, String message)
method _formatMessage (line 98) | String _formatMessage(String message)
class LogScreen (line 107) | class LogScreen extends StatefulWidget {
method createState (line 111) | State<LogScreen> createState()
class _LogScreenState (line 114) | class _LogScreenState extends State<LogScreen> {
method build (line 116) | Widget build(BuildContext context)
FILE: lib/services/platform-file-service.dart
class PlatformFileService (line 9) | class PlatformFileService {
method shareOrSaveFile (line 20) | Future<bool> shareOrSaveFile({
method _saveFileAs (line 41) | Future<bool> _saveFileAs(File sourceFile, String? suggestedName)
method _shareFile (line 73) | Future<bool> _shareFile(File file)
method _getTypeGroup (line 88) | XTypeGroup _getTypeGroup(String extension)
FILE: lib/services/recurrent-record-service.dart
class RecurrentRecordService (line 11) | class RecurrentRecordService {
method generateRecurrentRecordsFromDateTime (line 17) | List<Record> generateRecurrentRecordsFromDateTime(
method addRecordsByPeriod (line 67) | void addRecordsByPeriod(int periodValue, {bool isMonth = false})
method updateRecurrentRecords (line 193) | Future<List<Record>> updateRecurrentRecords(DateTime endDate)
FILE: lib/services/service-config.dart
class ServiceConfig (line 9) | class ServiceConfig {
FILE: lib/settings/backup-page.dart
class BackupPage (line 23) | class BackupPage extends StatefulWidget {
method createState (line 25) | BackupPageState createState()
class BackupPageState (line 28) | class BackupPageState extends State<BackupPage> {
method getKeyFromObject (line 29) | String getKeyFromObject<T>(Map<String, T> originalMap, T? searchValue,
method initializePreferences (line 41) | Future<void> initializePreferences()
method showPasswordInputDialog (line 176) | Future<String?> showPasswordInputDialog(BuildContext context)
method build (line 236) | Widget build(BuildContext context)
FILE: lib/settings/backup-restore-dialogs.dart
class BackupRestoreDialog (line 12) | class BackupRestoreDialog {
method showRestoreBackupDialog (line 13) | Future<String?> showRestoreBackupDialog(BuildContext context)
method importFromBackupFile (line 56) | Future<void> importFromBackupFile(BuildContext context)
method showBackupRestoreDialog (line 108) | Future<void> showBackupRestoreDialog(
FILE: lib/settings/backup-retention-period.dart
type BackupRetentionPeriod (line 2) | enum BackupRetentionPeriod { ALWAYS, WEEK, MONTH }
FILE: lib/settings/clickable-customization-item.dart
class ClickableCustomizationItem (line 5) | class ClickableCustomizationItem<T> extends StatelessWidget {
method buildHeader (line 13) | Widget buildHeader()
method build (line 26) | Widget build(BuildContext context)
FILE: lib/settings/components/setting-separator.dart
class SettingSeparator (line 3) | class SettingSeparator extends StatelessWidget {
method build (line 9) | Widget build(BuildContext context)
FILE: lib/settings/constants/homepage-time-interval.dart
type HomepageTimeInterval (line 1) | enum HomepageTimeInterval { CurrentMonth, CurrentYear, All, CurrentWeek }
FILE: lib/settings/constants/overview-time-interval.dart
type OverviewTimeInterval (line 1) | enum OverviewTimeInterval { DisplayedRecords, FixCurrentMonth, FixCurren...
FILE: lib/settings/constants/preferences-defaults-values.dart
class PreferencesDefaultValues (line 10) | class PreferencesDefaultValues {
method getLocaleGroupingSeparator (line 42) | String getLocaleGroupingSeparator()
method getLocaleDecimalSeparator (line 53) | String getLocaleDecimalSeparator()
method getOverwriteDotValueWithCommaDefaultValue (line 64) | bool getOverwriteDotValueWithCommaDefaultValue()
method getOverwriteCommaValueWithDotDefaultValue (line 68) | bool getOverwriteCommaValueWithDotDefaultValue()
FILE: lib/settings/constants/preferences-keys.dart
class PreferencesKeys (line 1) | class PreferencesKeys {
FILE: lib/settings/constants/preferences-options.dart
class PreferencesOptions (line 7) | class PreferencesOptions {
FILE: lib/settings/customization-page.dart
class CustomizationPage (line 16) | class CustomizationPage extends StatefulWidget {
method createState (line 18) | CustomizationPageState createState()
class CustomizationPageState (line 21) | class CustomizationPageState extends State<CustomizationPage> {
method getKeyFromObject (line 24) | String getKeyFromObject<T>(Map<String, T> originalMap, T? searchValue,
method getPreferenceValue (line 33) | T getPreferenceValue<T>(String key, T defaultValue)
method initializePreferences (line 46) | Future<void> initializePreferences()
method fetchAllThePreferences (line 51) | Future<void> fetchAllThePreferences()
method fetchAppLockPreferences (line 65) | Future<void> fetchAppLockPreferences()
method fetchThemePreferences (line 77) | Future<void> fetchThemePreferences()
method fetchLanguagePreferences (line 93) | Future<void> fetchLanguagePreferences()
method fetchWeekSettingsPreferences (line 101) | Future<void> fetchWeekSettingsPreferences()
method fetchDateFormatPreferences (line 109) | Future<void> fetchDateFormatPreferences()
method fetchNumberFormattingPreferences (line 117) | Future<void> fetchNumberFormattingPreferences()
method fetchHomepagePreferences (line 163) | Future<void> fetchHomepagePreferences()
method fetchMiscPreferences (line 197) | Future<void> fetchMiscPreferences()
method fetchStatisticsPreferences (line 211) | Future<void> fetchStatisticsPreferences()
method invalidateNumberPatternCache (line 261) | void invalidateNumberPatternCache()
method invalidateOverwritePreferences (line 266) | void invalidateOverwritePreferences()
method build (line 280) | Widget build(BuildContext context)
FILE: lib/settings/dropdown-customization-item.dart
class DropdownCustomizationItem (line 6) | class DropdownCustomizationItem<T> extends StatefulWidget {
method createState (line 23) | DropdownCustomizationItemState<T> createState()
class UnsupportedTypeException (line 27) | class UnsupportedTypeException implements Exception {
method toString (line 33) | String toString()
class DropdownCustomizationItemState (line 38) | class DropdownCustomizationItemState<T>
method initState (line 45) | void initState()
method setSharedConfig (line 50) | void setSharedConfig(T dropdownValue)
method showSelectionDialog (line 69) | void showSelectionDialog(BuildContext context)
method build (line 161) | Widget build(BuildContext context)
FILE: lib/settings/feedback-page.dart
class FeedbackPage (line 8) | class FeedbackPage extends StatelessWidget {
method build (line 52) | Widget build(BuildContext context)
FILE: lib/settings/preferences-utils.dart
class PreferencesUtils (line 5) | class PreferencesUtils {
method getOrDefault (line 6) | T? getOrDefault<T>(SharedPreferences prefs, String key)
FILE: lib/settings/settings-item.dart
class SettingsItem (line 4) | class SettingsItem extends StatelessWidget {
method build (line 20) | Widget build(BuildContext context)
FILE: lib/settings/settings-page.dart
class TabSettings (line 25) | class TabSettings extends StatelessWidget {
method _launchURL (line 109) | Future<void> _launchURL(BuildContext context, String url)
method build (line 191) | Widget build(BuildContext context)
FILE: lib/settings/switch-customization-item.dart
class SwitchCustomizationItem (line 7) | class SwitchCustomizationItem<T> extends StatefulWidget {
method createState (line 26) | SwitchCustomizationItemState<T> createState()
class UnsupportedTypeException (line 30) | class UnsupportedTypeException implements Exception {
method toString (line 36) | String toString()
class SwitchCustomizationItemState (line 41) | class SwitchCustomizationItemState<T> extends State<SwitchCustomizationI...
method initState (line 47) | void initState()
method build (line 68) | Widget build(BuildContext context)
FILE: lib/settings/text-input-customization-item.dart
class TextInputCustomizationItem (line 7) | class TextInputCustomizationItem extends StatefulWidget {
method createState (line 25) | _TextInputCustomizationItemState createState()
class _TextInputCustomizationItemState (line 29) | class _TextInputCustomizationItemState
method initState (line 34) | void initState()
method showInputDialog (line 39) | void showInputDialog(BuildContext context)
method setSharedConfig (line 88) | void setSharedConfig(String value)
method build (line 96) | Widget build(BuildContext context)
FILE: lib/shell.dart
class Shell (line 16) | class Shell extends StatefulWidget {
method createState (line 18) | ShellState createState()
class ShellState (line 21) | class ShellState extends State<Shell> {
method _authenticate (line 36) | Future<bool> _authenticate()
method initState (line 61) | void initState()
method build (line 67) | Widget build(BuildContext context)
method _buildMainUI (line 114) | Widget _buildMainUI(BuildContext context)
FILE: lib/statistics/aggregated-list-view.dart
class AggregatedListView (line 3) | class AggregatedListView<T> extends StatelessWidget {
method build (line 14) | Widget build(BuildContext context)
FILE: lib/statistics/balance-chart-models.dart
class ComparisonData (line 11) | class ComparisonData {
class ComparisonDataAggregator (line 28) | class ComparisonDataAggregator {
method aggregate (line 34) | Map<String, ComparisonData> aggregate(
method _calculateCumulativeSavings (line 71) | void _calculateCumulativeSavings(Map<String, ComparisonData> data)
class BalanceChartTickGenerator (line 85) | class BalanceChartTickGenerator {
method createYTicks (line 91) | List<charts.TickSpec<num>> createYTicks(Map<String, ComparisonData> data)
method createXTicks (line 120) | List<charts.TickSpec<String>> createXTicks(ChartDateRangeConfig config)
class BalanceChartSeriesFactory (line 127) | class BalanceChartSeriesFactory {
method createSeries (line 137) | List<charts.Series<ComparisonData, String>> createSeries(
method _createExpensesSeries (line 160) | charts.Series<ComparisonData, String> _createExpensesSeries(
method _createIncomeSeries (line 175) | charts.Series<ComparisonData, String> _createIncomeSeries(
method _createNetSavingsSeries (line 190) | charts.Series<ComparisonData, String> _createNetSavingsSeries(
method _createCumulativeSeries (line 208) | charts.Series<ComparisonData, String> _createCumulativeSeries(
method _getSelectedColor (line 220) | charts.Color _getSelectedColor(bool isSelected, charts.Color baseColor)
FILE: lib/statistics/balance-comparison-chart.dart
class BalanceComparisonChart (line 10) | class BalanceComparisonChart extends StatelessWidget {
method build (line 29) | Widget build(BuildContext context)
method _createBehaviors (line 85) | List<charts.ChartBehavior<String>> _createBehaviors(
FILE: lib/statistics/balance-tab-page.dart
class BalanceTabPage (line 11) | class BalanceTabPage extends StatefulWidget {
method createState (line 36) | BalanceTabPageState createState()
class BalanceTabPageState (line 39) | class BalanceTabPageState extends State<BalanceTabPage> {
method initState (line 47) | void initState()
method didUpdateWidget (line 56) | void didUpdateWidget(BalanceTabPage oldWidget)
method _buildNoRecordSlivers (line 65) | List<Widget> _buildNoRecordSlivers()
method _buildContentSlivers (line 88) | List<Widget> _buildContentSlivers()
method build (line 233) | Widget build(BuildContext context)
FILE: lib/statistics/bar-chart-card.dart
class BarChartCard (line 14) | class BarChartCard extends StatefulWidget {
method createState (line 25) | _BarChartCardState createState()
class _BarChartCardState (line 28) | class _BarChartCardState extends State<BarChartCard> {
method initState (line 41) | void initState()
method didUpdateWidget (line 47) | void didUpdateWidget(BarChartCard oldWidget)
method _initializeData (line 63) | void _initializeData()
method _updateSelectedIndexFromDate (line 96) | void _updateSelectedIndexFromDate()
method _onSelectionChanged (line 112) | void _onSelectionChanged(charts.SelectionModel model)
method _prepareData (line 139) | List<StringSeriesRecord> _prepareData(List<Record?> records, DateTime ...
method _generateDataKey (line 185) | String _generateDataKey(
method _createSeriesList (line 206) | List<charts.Series<StringSeriesRecord, String>> _createSeriesList()
method _getWeekLabel (line 235) | String _getWeekLabel(DateTime date)
method _buildLineChart (line 250) | Widget _buildLineChart(BuildContext context)
method _buildCard (line 306) | Widget _buildCard(BuildContext context)
method build (line 319) | Widget build(BuildContext context)
method _createYTicks (line 324) | List<charts.TickSpec<num>> _createYTicks(List<DateTimeSeriesRecord> re...
FILE: lib/statistics/base-statistics-page.dart
class BaseStatisticsPage (line 20) | abstract class BaseStatisticsPage extends StatefulWidget {
class BaseStatisticsPageState (line 49) | abstract class BaseStatisticsPageState<T extends BaseStatisticsPage>
method initState (line 58) | void initState()
method didUpdateWidget (line 68) | void didUpdateWidget(T oldWidget)
method getFilteredRecordsForList (line 79) | List<Record?> getFilteredRecordsForList()
method buildChartWidget (line 102) | Widget buildChartWidget()
method buildSummaryCard (line 105) | Widget buildSummaryCard()
method onChartSelectionChanged (line 108) | void onChartSelectionChanged(
method onGroupByTypeChanged (line 112) | void onGroupByTypeChanged(GroupByType newType)
method buildNoRecordPage (line 123) | Widget buildNoRecordPage()
method buildContentSlivers (line 142) | List<Widget> buildContentSlivers()
method build (line 203) | Widget build(BuildContext context)
FILE: lib/statistics/categories-pie-chart.dart
class LinearRecord (line 13) | class LinearRecord {
class ChartData (line 20) | class ChartData {
class CategoriesPieChart (line 27) | class CategoriesPieChart extends StatefulWidget {
method createState (line 35) | _CategoriesPieChartState createState()
class _CategoriesPieChartState (line 38) | class _CategoriesPieChartState extends State<CategoriesPieChart> {
method initState (line 53) | void initState()
method didUpdateWidget (line 60) | void didUpdateWidget(CategoriesPieChart oldWidget)
method _initializeData (line 72) | void _initializeData()
method _updateSeriesList (line 86) | void _updateSeriesList()
method _prepareData (line 108) | ChartData _prepareData(List<Record?> records)
method _selectCategory (line 210) | void _selectCategory(String? categoryName)
method _onSelectionChanged (line 242) | void _onSelectionChanged(charts.SelectionModel model)
method _isTopCategory (line 252) | bool _isTopCategory(String name)
method _buildPieChart (line 258) | Widget _buildPieChart(BuildContext context)
method _buildLegend (line 272) | Widget _buildLegend()
method _buildCard (line 335) | Widget _buildCard(BuildContext context)
method build (line 364) | Widget build(BuildContext context)
FILE: lib/statistics/category-tag-balance-page.dart
class CategoryTagBalancePage (line 8) | class CategoryTagBalancePage extends StatefulWidget {
method createState (line 28) | _CategoryTagBalancePageState createState()
class _CategoryTagBalancePageState (line 31) | class _CategoryTagBalancePageState extends State<CategoryTagBalancePage> {
method initState (line 37) | void initState()
method build (line 53) | Widget build(BuildContext context)
FILE: lib/statistics/category-tag-records-page.dart
class CategoryTagRecordsPage (line 8) | class CategoryTagRecordsPage extends StatefulWidget {
method createState (line 30) | _CategoryTagRecordsPageState createState()
class _CategoryTagRecordsPageState (line 33) | class _CategoryTagRecordsPageState extends State<CategoryTagRecordsPage> {
method initState (line 39) | void initState()
method build (line 48) | Widget build(BuildContext context)
FILE: lib/statistics/group-by-dropdown.dart
class GroupByDropdown (line 11) | class GroupByDropdown extends StatelessWidget {
method build (line 38) | Widget build(BuildContext context)
method addSeparator (line 50) | void addSeparator()
method addRecordsToggle (line 62) | void addRecordsToggle()
method addCategoriesToggle (line 71) | void addCategoriesToggle()
method addTagsToggle (line 80) | void addTagsToggle()
method _getFilteredRecords (line 108) | List<Record?> _getFilteredRecords()
method _buildToggle (line 119) | Widget _buildToggle({
method _buildTagToggles (line 138) | Widget _buildTagToggles({
FILE: lib/statistics/overview-card.dart
class OverviewCardAction (line 10) | class OverviewCardAction {
class OverviewCard (line 24) | class OverviewCard extends StatelessWidget {
method build (line 81) | Widget build(BuildContext context)
FILE: lib/statistics/record-filters.dart
class RecordFilters (line 10) | class RecordFilters {
method byDate (line 17) | List<Record?> byDate(
method byCategory (line 40) | List<Record?> byCategory(
method byTag (line 72) | List<Record?> byTag(
method withTags (line 100) | List<Record?> withTags(List<Record?> records)
method byMultipleCriteria (line 110) | List<Record?> byMultipleCriteria(
method forTagAggregation (line 142) | List<Record?> forTagAggregation(
FILE: lib/statistics/statistics-calculator.dart
class StatisticsCalculator (line 9) | class StatisticsCalculator {
method calculateDailyAverage (line 23) | double calculateDailyAverage(
method calculateDailyMedian (line 58) | double calculateDailyMedian(
method calculateAverage (line 102) | double calculateAverage(
method calculateMedian (line 136) | double calculateMedian(
method _getPeriodValues (line 170) | List<double> _getPeriodValues(
method dateKey (line 181) | String dateKey(DateTime dt)
FILE: lib/statistics/statistics-models.dart
class DateTimeSeriesRecord (line 3) | class DateTimeSeriesRecord {
class StringSeriesRecord (line 10) | class StringSeriesRecord {
type AggregationMethod (line 29) | enum AggregationMethod { DAY, WEEK, MONTH, YEAR, NOT_AGGREGATED }
type GroupByType (line 31) | enum GroupByType { category, tag, records }
FILE: lib/statistics/statistics-page.dart
class StatisticsPage (line 9) | class StatisticsPage extends StatefulWidget {
method createState (line 16) | _StatisticsPageState createState()
class _StatisticsPageState (line 19) | class _StatisticsPageState extends State<StatisticsPage>
method initState (line 26) | void initState()
method dispose (line 33) | void dispose()
method _handleTabSelection (line 39) | void _handleTabSelection()
method build (line 49) | Widget build(BuildContext context)
FILE: lib/statistics/statistics-summary-card.dart
class StatisticsSummaryCard (line 22) | class StatisticsSummaryCard extends StatefulWidget {
method createState (line 57) | _StatisticsSummaryCardState createState()
class _StatisticsSummaryCardState (line 60) | class _StatisticsSummaryCardState extends State<StatisticsSummaryCard> {
method build (line 65) | Widget build(BuildContext context)
method _buildSummaryList (line 87) | Widget _buildSummaryList()
method _buildCategoriesSummaryList (line 99) | Widget _buildCategoriesSummaryList()
method _navigateToAllCategories (line 145) | void _navigateToAllCategories()
method _aggregateCategoriesByType (line 176) | Map<CategoryType, List<CategorySumTuple>> _aggregateCategoriesByType()
method _aggregateCategories (line 199) | Map<String, CategorySumTuple> _aggregateCategories(List<Record?> records)
method _countNonEmptySections (line 218) | int _countNonEmptySections(
method _getFilteredRecords (line 227) | List<Record?> _getFilteredRecords()
method _buildCategoryTypeSection (line 238) | Widget _buildCategoryTypeSection({
method _buildSectionHeader (line 278) | Widget _buildSectionHeader({
method _toggleSection (line 315) | void _toggleSection(String title)
method _buildTagsSummaryList (line 326) | Widget _buildTagsSummaryList()
method _navigateToAllTags (line 399) | void _navigateToAllTags()
method _getFilteredRecordsForTags (line 430) | List<Record?> _getFilteredRecordsForTags()
method _aggregateTags (line 441) | Map<String, double> _aggregateTags(List<Record?> records)
FILE: lib/statistics/statistics-tab-page.dart
class StatisticsTabPage (line 15) | class StatisticsTabPage extends StatefulWidget {
method createState (line 40) | StatisticsTabPageState createState()
class StatisticsTabPageState (line 43) | class StatisticsTabPageState extends State<StatisticsTabPage> {
method initState (line 54) | void initState()
method didUpdateWidget (line 64) | void didUpdateWidget(StatisticsTabPage oldWidget)
method _buildNoRecordSlivers (line 76) | List<Widget> _buildNoRecordSlivers()
method _buildContentSlivers (line 99) | List<Widget> _buildContentSlivers()
method build (line 315) | Widget build(BuildContext context)
FILE: lib/statistics/statistics-utils.dart
function computeNumberOfMonthsBetweenTwoDates (line 11) | double computeNumberOfMonthsBetweenTwoDates(DateTime from, DateTime to)
function computeNumberOfYearsBetweenTwoDates (line 18) | double computeNumberOfYearsBetweenTwoDates(DateTime from, DateTime to)
function computeNumberOfDays (line 25) | int computeNumberOfDays(DateTime from, DateTime to)
function computeNumberOfIntervals (line 30) | int computeNumberOfIntervals(
function computeAverage (line 82) | double? computeAverage(DateTime from, DateTime to,
function truncateDateTime (line 89) | DateTime truncateDateTime(
function aggregateRecordsByDate (line 125) | List<DateTimeSeriesRecord> aggregateRecordsByDate(
function aggregateRecordsByDateAndCategory (line 147) | List<Record?> aggregateRecordsByDateAndCategory(
function aggregateRecordsByDateAndTag (line 180) | List<Record?> aggregateRecordsByDateAndTag(
function getColorSortValue (line 220) | int getColorSortValue(Color color)
function getEndOfInterval (line 227) | DateTime getEndOfInterval(
function getAggregationMethodGivenTheTimeRange (line 260) | AggregationMethod getAggregationMethodGivenTheTimeRange(
class ChartDateRangeConfig (line 277) | class ChartDateRangeConfig {
method getKey (line 354) | String getKey(DateTime date)
method advance (line 373) | DateTime advance(DateTime current)
method _getWeekLabel (line 389) | String _getWeekLabel(DateTime date)
class ChartTickGenerator (line 402) | class ChartTickGenerator {
method generateDayTicks (line 405) | List<String> generateDayTicks(DateTime start, DateTime end)
method generateTicks (line 435) | List<String> generateTicks(ChartDateRangeConfig config)
method _generateWeekTicks (line 460) | List<String> _generateWeekTicks(DateTime start, DateTime end)
method _generateMonthTicks (line 474) | List<String> _generateMonthTicks(DateTime start, DateTime end)
method _generateYearTicks (line 484) | List<String> _generateYearTicks(DateTime start, DateTime end)
FILE: lib/statistics/summary-models.dart
class SumTuple (line 3) | class SumTuple<T> {
class TagSumTuple (line 9) | class TagSumTuple extends SumTuple<String> {
class CategorySumTuple (line 13) | class CategorySumTuple extends SumTuple<Category> {
FILE: lib/statistics/summary-rows.dart
class SummaryRow (line 17) | abstract class SummaryRow extends StatelessWidget {
method build (line 46) | Widget build(BuildContext context)
method buildLeading (line 104) | Widget buildLeading(BuildContext context)
method onTap (line 107) | void onTap(BuildContext context)
method filterRecordsByDate (line 110) | List<Record?> filterRecordsByDate(List<Record?> recordsToFilter)
class CategorySummaryRow (line 117) | class CategorySummaryRow extends SummaryRow {
method buildLeading (line 145) | Widget buildLeading(BuildContext context)
method onTap (line 155) | void onTap(BuildContext context)
class TagSummaryRow (line 200) | class TagSummaryRow extends SummaryRow {
method buildLeading (line 229) | Widget buildLeading(BuildContext context)
method onTap (line 242) | void onTap(BuildContext context)
class ViewAllSummaryRow (line 299) | class ViewAllSummaryRow extends SummaryRow {
method buildLeading (line 318) | Widget buildLeading(BuildContext context)
method onTap (line 327) | void onTap(BuildContext context)
FILE: lib/statistics/tags-pie-chart.dart
class LinearTagRecord (line 11) | class LinearTagRecord {
class TagsPieChart (line 18) | class TagsPieChart extends StatefulWidget {
method createState (line 26) | _TagsPieChartState createState()
class _TagsPieChartState (line 29) | class _TagsPieChartState extends State<TagsPieChart> {
method initState (line 43) | void initState()
method didUpdateWidget (line 50) | void didUpdateWidget(TagsPieChart oldWidget)
method _initializeData (line 62) | void _initializeData()
method _updateSeriesList (line 76) | void _updateSeriesList()
method _prepareData (line 96) | TagChartData _prepareData(List<Record?> records)
method _selectTag (line 150) | void _selectTag(String? tagName)
method _onSelectionChanged (line 184) | void _onSelectionChanged(charts.SelectionModel model)
method _isTopTag (line 194) | bool _isTopTag(String name)
method _buildPieChart (line 198) | Widget _buildPieChart(BuildContext context)
method _buildLegend (line 212) | Widget _buildLegend()
method _buildCard (line 280) | Widget _buildCard(BuildContext context)
method build (line 308) | Widget build(BuildContext context)
class TagChartData (line 313) | class TagChartData {
FILE: lib/statistics/unified-balance-card.dart
class UnifiedBalanceCard (line 20) | class UnifiedBalanceCard extends StatefulWidget {
method createState (line 38) | _UnifiedBalanceCardState createState()
class _UnifiedBalanceCardState (line 41) | class _UnifiedBalanceCardState extends State<UnifiedBalanceCard> {
method initState (line 52) | void initState()
method didUpdateWidget (line 58) | void didUpdateWidget(UnifiedBalanceCard oldWidget)
method _shouldReinitializeData (line 72) | bool _shouldReinitializeData(UnifiedBalanceCard oldWidget)
method _initializeData (line 79) | void _initializeData()
method _updateSelectionFromDate (line 93) | void _updateSelectionFromDate()
method _onSelectionChanged (line 104) | void _onSelectionChanged(charts.SelectionModel<dynamic> model)
method _clearSelection (line 133) | void _clearSelection()
method _toggleViewMode (line 138) | void _toggleViewMode()
method _toggleCumulativeLine (line 145) | void _toggleCumulativeLine()
method _getFilteredRecords (line 152) | List<Record?> _getFilteredRecords()
method build (line 166) | Widget build(BuildContext context)
FILE: lib/style.dart
class MaterialThemeInstance (line 13) | class MaterialThemeInstance {
method getDefaultColorScheme (line 20) | getDefaultColorScheme(Brightness brightness)
method getColorScheme (line 26) | Future<ColorScheme> getColorScheme(Brightness brightness)
method getMaterialThemeData (line 61) | getMaterialThemeData(Brightness brightness)
method getThemeMode (line 70) | Future<ThemeMode> getThemeMode()
method getLightTheme (line 78) | Future<ThemeData> getLightTheme()
method getDarkTheme (line 85) | Future<ThemeData> getDarkTheme()
FILE: lib/tags/tags-page-view.dart
class TagsPageView (line 6) | class TagsPageView extends StatefulWidget {
method createState (line 8) | TagsPageViewState createState()
class TagsPageViewState (line 11) | class TagsPageViewState extends State<TagsPageView> {
method initState (line 18) | void initState()
method _toggleSelection (line 30) | void _toggleSelection(String tag)
method _clearSelection (line 44) | void _clearSelection()
method _editSelectedTag (line 51) | void _editSelectedTag()
method _deleteSelectedTags (line 58) | void _deleteSelectedTags()
method _performDelete (line 88) | void _performDelete()
method _showEditTagDialog (line 96) | void _showEditTagDialog(String currentTag)
method _performEdit (line 133) | void _performEdit(String oldTag, String newTag)
method build (line 142) | Widget build(BuildContext context)
method _buildNormalAppBar (line 149) | PreferredSizeWidget _buildNormalAppBar()
method _buildSelectionAppBar (line 155) | PreferredSizeWidget _buildSelectionAppBar()
method buildTagsList (line 178) | Widget buildTagsList()
FILE: lib/utils/constants.dart
class DateTimeConstants (line 1) | class DateTimeConstants {
FILE: linux/flutter/generated_plugin_registrant.cc
function fl_register_plugins (line 15) | void fl_register_plugins(FlPluginRegistry* registry) {
FILE: linux/runner/main.cc
function main (line 3) | int main(int argc, char** argv) {
FILE: linux/runner/my_application.cc
type _MyApplication (line 10) | struct _MyApplication {
function first_frame_cb (line 18) | static void first_frame_cb(MyApplication* self, FlView* view) {
function my_application_activate (line 23) | static void my_application_activate(GApplication* application) {
function gboolean (line 114) | static gboolean my_application_local_command_line(GApplication* applicat...
function my_application_startup (line 135) | static void my_application_startup(GApplication* application) {
function my_application_shutdown (line 144) | static void my_application_shutdown(GApplication* application) {
function my_application_dispose (line 153) | static void my_application_dispose(GObject* object) {
function my_application_class_init (line 159) | static void my_application_class_init(MyApplicationClass* klass) {
function my_application_init (line 168) | static void my_application_init(MyApplication* self) {}
function MyApplication (line 170) | MyApplication* my_application_new() {
FILE: scripts/oinkoin_from_csv_importer.py
function parse_money (line 11) | def parse_money(value):
function _parse_date_string (line 40) | def _parse_date_string(val_str):
function parse_to_ms (line 52) | def parse_to_ms(date_val):
function generate_oinkoin_color (line 65) | def generate_oinkoin_color():
function print_dual_preview (line 68) | def print_dual_preview(mapping, sample_row):
function start_interactive_session (line 123) | def start_interactive_session(csv_path):
FILE: scripts/update_en_strings.py
function extract_i18n_strings (line 6) | def extract_i18n_strings(file_path):
function scan_directory_for_i18n (line 26) | def scan_directory_for_i18n(directory):
function write_to_json (line 41) | def write_to_json(file_path, i18n_strings):
function clean_locale_files (line 53) | def clean_locale_files(directory, reference_file):
function main (line 91) | def main():
FILE: test/backup/backup_service_test.dart
function main (line 22) | void main()
FILE: test/backup/backup_service_test.mocks.dart
class MockDatabaseInterface (line 34) | class MockDatabaseInterface extends _i1.Mock implements _i2.DatabaseInte...
method getAllCategories (line 40) | _i3.Future<List<_i4.Category?>> getAllCategories()
method getCategoriesByType (line 49) | _i3.Future<List<_i4.Category?>> getCategoriesByType(
method getCategory (line 60) | _i3.Future<_i4.Category?> getCategory(
method addCategory (line 76) | _i3.Future<int> addCategory(_i4.Category? category)
method updateCategory (line 85) | _i3.Future<int> updateCategory(
method deleteCategory (line 103) | _i3.Future<void> deleteCategory(
method archiveCategory (line 120) | _i3.Future<void> archiveCategory(
method resetCategoryOrderIndexes (line 139) | _i3.Future<void> resetCategoryOrderIndexes(
method getRecordById (line 151) | _i3.Future<_i6.Record?> getRecordById(int? id)
method deleteRecordById (line 160) | _i3.Future<void> deleteRecordById(int? id)
method addRecord (line 170) | _i3.Future<int> addRecord(_i6.Record? record)
method addRecordsInBatch (line 179) | _i3.Future<void> addRecordsInBatch(List<_i6.Record?>? records)
method updateRecordById (line 190) | _i3.Future<int?> updateRecordById(
method getDateTimeFirstRecord (line 206) | _i3.Future<DateTime?> getDateTimeFirstRecord()
method getAllRecords (line 215) | _i3.Future<List<_i6.Record?>> getAllRecords()
method getAllRecordsInInterval (line 224) | _i3.Future<List<_i6.Record?>> getAllRecordsInInterval(
method getMatchingRecord (line 240) | _i3.Future<_i6.Record?> getMatchingRecord(_i6.Record? record)
method deleteFutureRecordsByPatternId (line 250) | _i3.Future<void> deleteFutureRecordsByPatternId(
method suggestedRecordTitles (line 267) | _i3.Future<List<String>> suggestedRecordTitles(
method getTagsForRecord (line 283) | _i3.Future<List<String>> getTagsForRecord(int? recordId)
method getAllTags (line 293) | _i3.Future<Set<String>> getAllTags()
method getRecentlyUsedTags (line 302) | _i3.Future<Set<String>> getRecentlyUsedTags()
method getMostUsedTagsForCategory (line 311) | _i3.Future<Set<String>> getMostUsedTagsForCategory(
method getAggregatedRecordsByTagInInterval (line 327) | _i3.Future<List<Map<String, dynamic>>> getAggregatedRecordsByTagInInte...
method getAllRecordTagAssociations (line 344) | _i3.Future<List<_i7.RecordTagAssociation>> getAllRecordTagAssociations()
method renameTag (line 355) | _i3.Future<void> renameTag(
method deleteTag (line 372) | _i3.Future<void> deleteTag(String? tagToDelete)
method getRecurrentRecordPatterns (line 382) | _i3.Future<List<_i8.RecurrentRecordPattern>> getRecurrentRecordPatterns()
method getRecurrentRecordPattern (line 393) | _i3.Future<_i8.RecurrentRecordPattern?> getRecurrentRecordPattern(
method addRecurrentRecordPattern (line 404) | _i3.Future<void> addRecurrentRecordPattern(
method deleteRecurrentRecordPatternById (line 416) | _i3.Future<void> deleteRecurrentRecordPatternById(
method updateRecordPatternById (line 428) | _i3.Future<void> updateRecordPatternById(
method deleteDatabase (line 445) | _i3.Future<void> deleteDatabase()
FILE: test/backup/import_tag_association_bug_test.dart
function main (line 29) | void main()
FILE: test/backup/import_tag_association_bug_test.mocks.dart
class MockDatabaseInterface (line 34) | class MockDatabaseInterface extends _i1.Mock implements _i2.DatabaseInte...
method getAllCategories (line 40) | _i3.Future<List<_i4.Category?>> getAllCategories()
method getCategoriesByType (line 49) | _i3.Future<List<_i4.Category?>> getCategoriesByType(
method getCategory (line 60) | _i3.Future<_i4.Category?> getCategory(
method addCategory (line 76) | _i3.Future<int> addCategory(_i4.Category? category)
method updateCategory (line 85) | _i3.Future<int> updateCategory(
method deleteCategory (line 103) | _i3.Future<void> deleteCategory(
method archiveCategory (line 120) | _i3.Future<void> archiveCategory(
method resetCategoryOrderIndexes (line 139) | _i3.Future<void> resetCategoryOrderIndexes(
method getRecordById (line 151) | _i3.Future<_i6.Record?> getRecordById(int? id)
method deleteRecordById (line 160) | _i3.Future<void> deleteRecordById(int? id)
method addRecord (line 170) | _i3.Future<int> addRecord(_i6.Record? record)
method addRecordsInBatch (line 179) | _i3.Future<void> addRecordsInBatch(List<_i6.Record?>? records)
method updateRecordById (line 190) | _i3.Future<int?> updateRecordById(
method getDateTimeFirstRecord (line 206) | _i3.Future<DateTime?> getDateTimeFirstRecord()
method getAllRecords (line 215) | _i3.Future<List<_i6.Record?>> getAllRecords()
method getAllRecordsInInterval (line 224) | _i3.Future<List<_i6.Record?>> getAllRecordsInInterval(
method getMatchingRecord (line 240) | _i3.Future<_i6.Record?> getMatchingRecord(_i6.Record? record)
method deleteFutureRecordsByPatternId (line 250) | _i3.Future<void> deleteFutureRecordsByPatternId(
method suggestedRecordTitles (line 267) | _i3.Future<List<String>> suggestedRecordTitles(
method getTagsForRecord (line 283) | _i3.Future<List<String>> getTagsForRecord(int? recordId)
method getAllTags (line 293) | _i3.Future<Set<String>> getAllTags()
method getRecentlyUsedTags (line 302) | _i3.Future<Set<String>> getRecentlyUsedTags()
method getMostUsedTagsForCategory (line 311) | _i3.Future<Set<String>> getMostUsedTagsForCategory(
method getAggregatedRecordsByTagInInterval (line 327) | _i3.Future<List<Map<String, dynamic>>> getAggregatedRecordsByTagInInte...
method getAllRecordTagAssociations (line 344) | _i3.Future<List<_i7.RecordTagAssociation>> getAllRecordTagAssociations()
method renameTag (line 355) | _i3.Future<void> renameTag(
method deleteTag (line 372) | _i3.Future<void> deleteTag(String? tagToDelete)
method getRecurrentRecordPatterns (line 382) | _i3.Future<List<_i8.RecurrentRecordPattern>> getRecurrentRecordPatterns()
method getRecurrentRecordPattern (line 393) | _i3.Future<_i8.RecurrentRecordPattern?> getRecurrentRecordPattern(
method addRecurrentRecordPattern (line 404) | _i3.Future<void> addRecurrentRecordPattern(
method deleteRecurrentRecordPatternById (line 416) | _i3.Future<void> deleteRecurrentRecordPatternById(
method updateRecordPatternById (line 428) | _i3.Future<void> updateRecordPatternById(
method deleteDatabase (line 445) | _i3.Future<void> deleteDatabase()
FILE: test/backup/user_data_import_verification_test.dart
function main (line 27) | void main()
function createMockBackupData (line 32) | Map<String, dynamic> createMockBackupData()
function min (line 315) | int min(int a, int b)
FILE: test/backup/user_data_import_verification_test.mocks.dart
class MockDatabaseInterface (line 34) | class MockDatabaseInterface extends _i1.Mock implements _i2.DatabaseInte...
method getAllCategories (line 40) | _i3.Future<List<_i4.Category?>> getAllCategories()
method getCategoriesByType (line 49) | _i3.Future<List<_i4.Category?>> getCategoriesByType(
method getCategory (line 60) | _i3.Future<_i4.Category?> getCategory(
method addCategory (line 76) | _i3.Future<int> addCategory(_i4.Category? category)
method updateCategory (line 85) | _i3.Future<int> updateCategory(
method deleteCategory (line 103) | _i3.Future<void> deleteCategory(
method archiveCategory (line 120) | _i3.Future<void> archiveCategory(
method resetCategoryOrderIndexes (line 139) | _i3.Future<void> resetCategoryOrderIndexes(
method getRecordById (line 151) | _i3.Future<_i6.Record?> getRecordById(int? id)
method deleteRecordById (line 160) | _i3.Future<void> deleteRecordById(int? id)
method addRecord (line 170) | _i3.Future<int> addRecord(_i6.Record? record)
method addRecordsInBatch (line 179) | _i3.Future<void> addRecordsInBatch(List<_i6.Record?>? records)
method updateRecordById (line 190) | _i3.Future<int?> updateRecordById(
method getDateTimeFirstRecord (line 206) | _i3.Future<DateTime?> getDateTimeFirstRecord()
method getAllRecords (line 215) | _i3.Future<List<_i6.Record?>> getAllRecords()
method getAllRecordsInInterval (line 224) | _i3.Future<List<_i6.Record?>> getAllRecordsInInterval(
method getMatchingRecord (line 240) | _i3.Future<_i6.Record?> getMatchingRecord(_i6.Record? record)
method deleteFutureRecordsByPatternId (line 250) | _i3.Future<void> deleteFutureRecordsByPatternId(
method suggestedRecordTitles (line 267) | _i3.Future<List<String>> suggestedRecordTitles(
method getTagsForRecord (line 283) | _i3.Future<List<String>> getTagsForRecord(int? recordId)
method getAllTags (line 293) | _i3.Future<Set<String>> getAllTags()
method getRecentlyUsedTags (line 302) | _i3.Future<Set<String>> getRecentlyUsedTags()
method getMostUsedTagsForCategory (line 311) | _i3.Future<Set<String>> getMostUsedTagsForCategory(
method getAggregatedRecordsByTagInInterval (line 327) | _i3.Future<List<Map<String, dynamic>>> getAggregatedRecordsByTagInInte...
method getAllRecordTagAssociations (line 344) | _i3.Future<List<_i7.RecordTagAssociation>> getAllRecordTagAssociations()
method renameTag (line 355) | _i3.Future<void> renameTag(
method deleteTag (line 372) | _i3.Future<void> deleteTag(String? tagToDelete)
method getRecurrentRecordPatterns (line 382) | _i3.Future<List<_i8.RecurrentRecordPattern>> getRecurrentRecordPatterns()
method getRecurrentRecordPattern (line 393) | _i3.Future<_i8.RecurrentRecordPattern?> getRecurrentRecordPattern(
method addRecurrentRecordPattern (line 404) | _i3.Future<void> addRecurrentRecordPattern(
method deleteRecurrentRecordPatternById (line 416) | _i3.Future<void> deleteRecurrentRecordPatternById(
method updateRecordPatternById (line 428) | _i3.Future<void> updateRecordPatternById(
method deleteDatabase (line 445) | _i3.Future<void> deleteDatabase()
FILE: test/backup_import_tag_bug_test.dart
function main (line 34) | void main()
function simulateImport (line 49) | Future<void> simulateImport(Backup backup, DatabaseInterface database)
FILE: test/chart_ticks_test.dart
function main (line 5) | void main()
function isRecordInRange (line 268) | bool isRecordInRange(
FILE: test/compute_number_of_intervals_test.dart
function main (line 5) | void main()
FILE: test/csv_service_test.dart
function main (line 10) | void main()
FILE: test/datetime_utility_functions_locale_test.dart
function main (line 8) | void main()
FILE: test/datetime_utility_functions_test.dart
function main (line 10) | void main()
FILE: test/formatter/auto_decimal_shift_formatter_test.dart
function main (line 6) | void main()
FILE: test/formatter/formatter_integration_test.dart
function main (line 9) | void main()
function applyFormatters (line 12) | TextEditingValue applyFormatters(
FILE: test/future_records_integration_test.dart
function main (line 12) | void main()
FILE: test/future_recurrent_records_test.dart
function main (line 10) | void main()
FILE: test/helpers/test_database.dart
class TestDatabaseHelper (line 9) | class TestDatabaseHelper {
method setupTestDatabase (line 12) | Future<Database> setupTestDatabase()
FILE: test/locale_debug_test.dart
function main (line 5) | void main()
FILE: test/models/category.dart
function _createFullCategory (line 9) | Category _createFullCategory({
function main (line 32) | void main()
FILE: test/models/record.dart
function main (line 18) | void main()
FILE: test/models/recurrent_pattern.dart
function main (line 19) | void main()
FILE: test/overview_card_calculations_test.dart
function main (line 24) | void main()
function _createRecord (line 814) | Record _createRecord(double value, DateTime dateTime, [CategoryType? type])
FILE: test/record_filters_test.dart
function createRecord (line 30) | Record createRecord({
function main (line 46) | void main()
function createBerlinRecord (line 160) | Record createBerlinRecord(DateTime utcDate, String tzName)
FILE: test/recurrent_pattern_tags_integration_test.dart
function main (line 13) | void main()
FILE: test/recurrent_record_test.dart
function _assertRecordsMatchDates (line 11) | void _assertRecordsMatchDates(
function main (line 24) | void main()
FILE: test/show_future_records_preference_test.dart
function main (line 7) | void main()
FILE: test/statistics_drilldown_label_test.dart
function main (line 10) | void main()
FILE: test/tab_records_controller_test.dart
function main (line 19) | void main()
FILE: test/tag_management_test.dart
function main (line 10) | void main()
FILE: test/test_database.dart
function main (line 15) | Future main()
Condensed preview — 395 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,718K chars).
[
{
"path": ".claude/skills/translate/SKILL.md",
"chars": 3410,
"preview": "---\nname: translate\ndescription: Translates untranslated strings in a locale JSON file for the Oinkoin app. Use when the"
},
{
"path": ".githooks/pre-commit",
"chars": 72,
"preview": "#!/usr/bin/env bash\n\necho \"Running pre-commit git-hooks\"\ndart format lib"
},
{
"path": ".github/FUNDING.yml",
"chars": 656,
"preview": "# These are supported funding model platforms\n\ngithub: #\npatreon: # Replace with a single Patreon username\nopen_collecti"
},
{
"path": ".github/workflows/build-alpha-arm64.yml",
"chars": 1880,
"preview": "name: Build Alpha APK (arm64)\n\non: workflow_dispatch\n\njobs:\n build:\n name: Build Alpha APK for arm64\n runs-on: ub"
},
{
"path": ".github/workflows/manual-build.yml",
"chars": 5128,
"preview": "name: Build Apk manual workflow\n\non: workflow_dispatch\n\njobs:\n build:\n name: Build APK\n runs-on: ubuntu-latest\n\n "
},
{
"path": ".github/workflows/on-release.yml",
"chars": 8946,
"preview": "name: Build for Android and Linux\n\non:\n release:\n types: [prereleased]\n\njobs:\n validate-build:\n name: Validate A"
},
{
"path": ".github/workflows/release-alpha.yml",
"chars": 2595,
"preview": "name: Release internal channel\n\non:\n # Allow for manual triggering of the workflow\n workflow_dispatch:\n inputs:\n "
},
{
"path": ".gitignore",
"chars": 1718,
"preview": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\n\n# IntelliJ related\n*.iml\n*.ipr\n*.i"
},
{
"path": ".gitmodules",
"chars": 119,
"preview": "[submodule \"submodules/flutter\"]\n\tpath = submodules/flutter\n\turl = https://github.com/flutter/flutter\n\tbranch = stable\n"
},
{
"path": ".metadata",
"chars": 966,
"preview": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrade"
},
{
"path": ".vscode/launch.json",
"chars": 369,
"preview": "{\n // Use IntelliSense to learn about possible attributes.\n // Hover to view descriptions of existing attributes.\n"
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "README.md",
"chars": 7202,
"preview": "# Oinkoin - Money Tracker \n\n<div align=\"center\">\n <img src=\"https://play-lh.googleusercontent.com/LHL_KxBCAr-Ee5grPRGyu"
},
{
"path": "analysis_options.yaml",
"chars": 40,
"preview": "analyzer:\n exclude:\n - submodules/**"
},
{
"path": "android/.gitignore",
"chars": 110,
"preview": "gradle-wrapper.jar\n/.gradle\n/captures/\n/gradlew\n/gradlew.bat\n/local.properties\nGeneratedPluginRegistrant.java\n"
},
{
"path": "android/app/build.gradle",
"chars": 4003,
"preview": "plugins {\n id \"com.android.application\"\n id \"kotlin-android\"\n id \"dev.flutter.flutter-gradle-plugin\"\n}\n\ndef loc"
},
{
"path": "android/app/src/alpha/res/mipmap-anydpi-v26/ic_launcher.xml",
"chars": 328,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <bac"
},
{
"path": "android/app/src/debug/AndroidManifest.xml",
"chars": 289,
"preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<!-- Flutter needs it to communicate with the runn"
},
{
"path": "android/app/src/main/AndroidManifest.xml",
"chars": 2219,
"preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <!-- io.flutter.app.FlutterApplication is an a"
},
{
"path": "android/app/src/main/kotlin/com/example/piggybank/MainActivity.kt",
"chars": 279,
"preview": "package com.example.piggybank\n\nimport androidx.annotation.NonNull;\nimport io.flutter.embedding.android.FlutterFragmentAc"
},
{
"path": "android/app/src/main/res/drawable/launch_background.xml",
"chars": 535,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmln"
},
{
"path": "android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
"chars": 328,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <bac"
},
{
"path": "android/app/src/main/res/values/styles.xml",
"chars": 412,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <style name=\"LaunchTheme\" parent=\"@android:style/Theme.Black.NoTi"
},
{
"path": "android/app/src/main/res/xml/locales_config.xml",
"chars": 863,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<locale-config xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <l"
},
{
"path": "android/app/src/profile/AndroidManifest.xml",
"chars": 289,
"preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<!-- Flutter needs it to communicate with the runn"
},
{
"path": "android/build.gradle",
"chars": 901,
"preview": "buildscript {\n ext.kotlin_version = '2.2.21'\n repositories {\n google()\n mavenCentral()\n }\n\n de"
},
{
"path": "android/gradle/wrapper/gradle-wrapper.properties",
"chars": 233,
"preview": "#Fri Jun 23 08:50:38 CEST 2017\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER"
},
{
"path": "android/gradle.properties",
"chars": 103,
"preview": "org.gradle.jvmargs=-Xmx3536M\nandroid.enableR8=true\nandroid.useAndroidX=true\nandroid.enableJetifier=true"
},
{
"path": "android/settings.gradle",
"chars": 726,
"preview": "pluginManagement {\n def flutterSdkPath = {\n def properties = new Properties()\n file(\"local.properties\")"
},
{
"path": "android/settings_aar.gradle",
"chars": 15,
"preview": "include ':app'\n"
},
{
"path": "appium/.gitattributes",
"chars": 278,
"preview": "#\n# https://help.github.com/articles/dealing-with-line-endings/\n#\n# Linux start script should use lf\n/gradlew tex"
},
{
"path": "appium/.gitignore",
"chars": 103,
"preview": "# Ignore Gradle project-specific cache directory\n.gradle\n\n# Ignore Gradle build output directory\nbuild\n"
},
{
"path": "appium/app/build.gradle",
"chars": 313,
"preview": "plugins {\n id 'application'\n}\n\nrepositories {\n mavenCentral()\n}\n\ndependencies {\n implementation 'io.appium:java"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/BaseTest.java",
"chars": 1574,
"preview": "package com.github.emavgl.oinkoin.tests.appium;\n\nimport com.github.emavgl.oinkoin.tests.appium.utils.Constants;\nimport i"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/HomePageTest.java",
"chars": 8529,
"preview": "package com.github.emavgl.oinkoin.tests.appium;\n\nimport com.github.emavgl.oinkoin.tests.appium.pages.HomePage;\nimport co"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/NavigationBarTest.java",
"chars": 324,
"preview": "package com.github.emavgl.oinkoin.tests.appium;\n\nimport com.github.emavgl.oinkoin.tests.appium.pages.HomePage;\nimport io"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/BasePage.java",
"chars": 1743,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\nimport io.appium.java_client.AppiumDriver;\nimport io.appium.java_"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategoriesPage.java",
"chars": 87,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\npublic class CategoriesPage {\n}\n"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/CategorySelectionPage.java",
"chars": 1333,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\nimport com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/EditRecordPage.java",
"chars": 4474,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\nimport com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/HomePage.java",
"chars": 5123,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\nimport com.github.emavgl.oinkoin.tests.appium.utils.CategoryType;"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/pages/SettingsPage.java",
"chars": 85,
"preview": "package com.github.emavgl.oinkoin.tests.appium.pages;\n\npublic class SettingsPage {\n}\n"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/CategoryType.java",
"chars": 327,
"preview": "package com.github.emavgl.oinkoin.tests.appium.utils;\n\npublic enum CategoryType {\n EXPENSE(\"Expense\"),\n INCOME(\"In"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Constants.java",
"chars": 488,
"preview": "package com.github.emavgl.oinkoin.tests.appium.utils;\n\npublic class Constants {\n public static final String PLATFORM_"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/RecordData.java",
"chars": 391,
"preview": "package com.github.emavgl.oinkoin.tests.appium.utils;\n\nimport java.time.LocalDate;\n\npublic record RecordData(String name"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/RepeatOption.java",
"chars": 561,
"preview": "package com.github.emavgl.oinkoin.tests.appium.utils;\n\npublic enum RepeatOption {\n NOT_REPEAT(\"Not repeat\"),\n EVER"
},
{
"path": "appium/app/src/test/java/com/github/emavgl/oinkoin/tests/appium/utils/Utils.java",
"chars": 1567,
"preview": "package com.github.emavgl.oinkoin.tests.appium.utils;\n\nimport java.time.LocalDate;\nimport java.time.format.DateTimeForma"
},
{
"path": "appium/gradle/wrapper/gradle-wrapper.properties",
"chars": 253,
"preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributi"
},
{
"path": "appium/gradlew",
"chars": 8739,
"preview": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"Lice"
},
{
"path": "appium/gradlew.bat",
"chars": 2966,
"preview": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (th"
},
{
"path": "appium/settings.gradle",
"chars": 43,
"preview": "rootProject.name = 'appium'\ninclude('app')\n"
},
{
"path": "assets/locales/ar.json",
"chars": 14156,
"preview": "{\n \"%s selected\": \"%s محدد\",\n \"Add a new category\": \"أضف فئة جديدة\",\n \"Add a new record\": \"إضافة سِجِل جديد\",\n \"Add "
},
{
"path": "assets/locales/ca.json",
"chars": 14776,
"preview": "{\n \"%s selected\": \"%s seleccionats\",\n \"Add a new category\": \"Afegeix una nova categoria\",\n \"Add a new record\": \"Afege"
},
{
"path": "assets/locales/da.json",
"chars": 14818,
"preview": "{\n \"%s selected\": \"%s valgt\",\n \"Add a new category\": \"Tilføj en ny kategori\",\n \"Add a new record\": \"Tilføj en ny post"
},
{
"path": "assets/locales/de.json",
"chars": 15684,
"preview": "{\n \"%s selected\": \"%s ausgewählt\",\n \"Add a new category\": \"Eine neue Kategorie hinzufügen\",\n \"Add a new record\": \"Neu"
},
{
"path": "assets/locales/el.json",
"chars": 16481,
"preview": "{\n \"%s selected\": \"%s επιλεγμένα\",\n \"Add a new category\": \"Πρόσθεσε μία νέα κατηγορία\",\n \"Add a new record\": \"Πρόσθεσ"
},
{
"path": "assets/locales/en-GB.json",
"chars": 13426,
"preview": "{\n \"%s selected\": \"%s selected\",\n \"Add a new category\": \"Add a new category\",\n \"Add a new record\": \"Add a new record\""
},
{
"path": "assets/locales/en-US.json",
"chars": 14476,
"preview": "{\n \"%s selected\": \"%s selected\",\n \"Add a new category\": \"Add a new category\",\n \"Add a new record\": \"Add a new record\""
},
{
"path": "assets/locales/es.json",
"chars": 15919,
"preview": "{\n \"%s selected\": \"%s seleccionadas\",\n \"Add a new category\": \"Agregar una nueva categoría\",\n \"Add a new record\": \"Agr"
},
{
"path": "assets/locales/fr.json",
"chars": 16738,
"preview": "{\n \"%s selected\": \"%s sélectionné(s)\",\n \"Add a new category\": \"Ajouter une nouvelle catégorie\",\n \"Add a new record\": "
},
{
"path": "assets/locales/hr.json",
"chars": 15298,
"preview": "{\n \"%s selected\": \"Odabrano: %s\",\n \"Add a new category\": \"Dodaj novu kategoriju\",\n \"Add a new record\": \"Dodaj novi za"
},
{
"path": "assets/locales/it.json",
"chars": 15381,
"preview": "{\n \"%s selected\": \"%s selezionati\",\n \"Add a new category\": \"Salva la categoria\",\n \"Add a new record\": \"Aggiungi un nu"
},
{
"path": "assets/locales/ja.json",
"chars": 11363,
"preview": "{\n \"%s selected\": \"%s 件を選択\",\n \"Add a new category\": \"新しいカテゴリを追加\",\n \"Add a new record\": \"新しい記録を追加\",\n \"Add a note\": \"メ"
},
{
"path": "assets/locales/or-IN.json",
"chars": 14592,
"preview": "{\n \"Home\": \"ଗୃହ\",\n \"Categories\": \"ବର୍ଗ\",\n \"Every day\": \"ପ୍ରତିଦିନ\",\n \"Every month\": \"ପ୍ରତି ମାସ\",\n \"Every week\": \"ପ୍ର"
},
{
"path": "assets/locales/pl.json",
"chars": 15227,
"preview": "{\n \"%s selected\": \"%s zaznaczono\",\n \"Add a new category\": \"Dodaj nową kategorię\",\n \"Add a new record\": \"Dodaj nowy wp"
},
{
"path": "assets/locales/pt-BR.json",
"chars": 15168,
"preview": "{\n \"%s selected\": \"%s selecionada(s)\",\n \"Add a new category\": \"Adicionar uma nova categoria\",\n \"Add a new record\": \"A"
},
{
"path": "assets/locales/pt-PT.json",
"chars": 15552,
"preview": "{\n \"%s selected\": \"%s selecionados\",\n \"Add a new category\": \"Adicionar uma nova categoria\",\n \"Add a new record\": \"Adi"
},
{
"path": "assets/locales/ru.json",
"chars": 15190,
"preview": "{\n \"%s selected\": \"%s выбран(-о)\",\n \"Add a new category\": \"Добавить категорию\",\n \"Add a new record\": \"Добавить новую "
},
{
"path": "assets/locales/ta-IN.json",
"chars": 15734,
"preview": "{\n \"%s selected\": \"%s தேர்ந்தெடுக்கப்பட்டது\",\n \"Add a new category\": \"புதிய வகை சேர்க்க\",\n \"Add a new record\": \"புதிய"
},
{
"path": "assets/locales/tr.json",
"chars": 14935,
"preview": "{\n \"%s selected\": \"%s seçildi\",\n \"Add a new category\": \"Yeni bir kategori ekle\",\n \"Add a new record\": \"Yeni kayıt ekl"
},
{
"path": "assets/locales/uk-UA.json",
"chars": 15362,
"preview": "{\n \"%s selected\": \"%s вибрано\",\n \"Add a new category\": \"Додати нову категорію\",\n \"Add a new record\": \"Додати новий за"
},
{
"path": "assets/locales/vec-IT.json",
"chars": 15103,
"preview": "{\n \"%s selected\": \"%s sełesionài\",\n \"Add a new category\": \"Salva ła categorìa\",\n \"Add a new record\": \"Zonta un novo m"
},
{
"path": "assets/locales/zh-CN.json",
"chars": 10377,
"preview": "{\n \"%s selected\": \"已选择 %s 项\",\n \"Add a new category\": \"新建分类\",\n \"Add a new record\": \"添加新记录\",\n \"Add a note\": \"添加备注\",\n "
},
{
"path": "build.sh",
"chars": 837,
"preview": "flutter packages get\n\n# Clean temporary folder\nrm -rf ./tmp_build\nmkdir ./tmp_build\n\n# build dev apk\nflutter build apk -"
},
{
"path": "build_linux.sh",
"chars": 5457,
"preview": "#!/usr/bin/env bash\n\n# Oinkoin Linux Build Script\n# This script helps build Oinkoin for Linux distribution\n\nset -e\n\necho"
},
{
"path": "bump_new_version.py",
"chars": 3569,
"preview": "import re\nimport sys\nimport os\nimport shutil\n\ndef update_linux_package_version(new_version_name, config_file_path):\n "
},
{
"path": "create_release_blog_post.py",
"chars": 2185,
"preview": "#!/usr/bin/env python3\n\"\"\"\nScript to create a blog post for a new release on the Oinkoin website.\n\"\"\"\nimport os\nimport s"
},
{
"path": "devtools_options.yaml",
"chars": 184,
"preview": "description: This file stores settings for Dart & Flutter DevTools.\ndocumentation: https://docs.flutter.dev/tools/devtoo"
},
{
"path": "distribute_options.yaml",
"chars": 360,
"preview": "output: dist/\nreleases:\n - name: linux-release\n jobs:\n - name: release-linux-deb\n package:\n pla"
},
{
"path": "ios/Flutter/ephemeral/flutter_lldb_helper.py",
"chars": 1276,
"preview": "#\n# Generated file, do not edit.\n#\n\nimport lldb\n\ndef handle_new_rx_page(frame: lldb.SBFrame, bp_loc, extra_args, intern_"
},
{
"path": "ios/Flutter/ephemeral/flutter_lldbinit",
"chars": 108,
"preview": "#\n# Generated file, do not edit.\n#\n\ncommand script import --relative-to-command-file flutter_lldb_helper.py\n"
},
{
"path": "ios/PLACEHOLDER",
"chars": 0,
"preview": ""
},
{
"path": "lib/categories/categories-grid.dart",
"chars": 5069,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/recor"
},
{
"path": "lib/categories/categories-list.dart",
"chars": 2815,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/categ"
},
{
"path": "lib/categories/categories-tab-page-edit.dart",
"chars": 15743,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/categories/categories-list.dart';\nimport 'package:pigg"
},
{
"path": "lib/categories/categories-tab-page-view.dart",
"chars": 12120,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category-type.dart';\nimport 'package:piggybank/"
},
{
"path": "lib/categories/category-sort-option.dart",
"chars": 63,
"preview": "enum SortOption { original, lastUsed, mostUsed, alphabetical }\n"
},
{
"path": "lib/categories/edit-category-page.dart",
"chars": 23026,
"preview": "import 'package:emoji_picker_flutter/emoji_picker_flutter.dart' as emojipicker;\nimport 'package:flutter/material.dart';\n"
},
{
"path": "lib/components/category_icon_circle.dart",
"chars": 2798,
"preview": "import 'dart:core';\n\nimport 'package:flutter/material.dart';\n\nclass CategoryIconCircle extends StatelessWidget {\n final"
},
{
"path": "lib/components/tag_chip.dart",
"chars": 1373,
"preview": "import 'package:flutter/material.dart';\n\nclass TagChip extends StatelessWidget {\n final String labelText;\n final bool "
},
{
"path": "lib/components/year-picker.dart",
"chars": 26072,
"preview": "import 'dart:math';\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter/rendering.dart';\n\nconst int _yearPi"
},
{
"path": "lib/generated_plugin_registrant.dart",
"chars": 488,
"preview": "//\n// Generated file. Do not edit.\n//\n\n// ignore: unused_import\nimport 'dart:ui';\n\nimport 'package:shared_preferences_we"
},
{
"path": "lib/helpers/alert-dialog-builder.dart",
"chars": 1616,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\n\nclass AlertDialogBuilder {\n /// Utility "
},
{
"path": "lib/helpers/color-utils.dart",
"chars": 459,
"preview": "import 'dart:ui';\n\nimport 'package:flutter/material.dart';\n\nString serializeColorToString(Color color) {\n return colorC"
},
{
"path": "lib/helpers/date_picker_utils.dart",
"chars": 1092,
"preview": "import 'package:flutter/material.dart';\nimport 'package:flutter_localizations/flutter_localizations.dart';\nimport 'first"
},
{
"path": "lib/helpers/datetime-utility-functions.dart",
"chars": 11628,
"preview": "import 'dart:ui';\n\nimport 'package:i18n_extension/i18n_extension.dart';\nimport 'package:intl/intl.dart';\nimport 'package"
},
{
"path": "lib/helpers/first_day_of_week_localizations.dart",
"chars": 8097,
"preview": "// lib/helpers/first_day_of_week_localizations.dart\n\nimport 'package:flutter/material.dart';\n\nclass FirstDayOfWeekLocali"
},
{
"path": "lib/helpers/records-generator.dart",
"chars": 2065,
"preview": "import 'dart:math';\nimport 'package:piggybank/models/record.dart';\nimport 'package:piggybank/models/category.dart';\n\ncla"
},
{
"path": "lib/helpers/records-utility-functions.dart",
"chars": 13215,
"preview": "import 'dart:collection';\n\nimport 'package:flutter/cupertino.dart';\nimport 'package:intl/intl.dart';\nimport 'package:int"
},
{
"path": "lib/i18n/i18n_helper.dart",
"chars": 1482,
"preview": "import 'dart:collection';\nimport 'dart:convert';\n\nimport 'package:flutter/services.dart' show rootBundle, AssetManifest;"
},
{
"path": "lib/i18n.dart",
"chars": 894,
"preview": "import 'package:i18n_extension/i18n_extension.dart';\n\nimport 'i18n/i18n_helper.dart';\n\nclass MyI18n {\n static Translati"
},
{
"path": "lib/main.dart",
"chars": 5682,
"preview": "import 'dart:io';\nimport 'dart:ui';\n\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nim"
},
{
"path": "lib/models/backup.dart",
"chars": 4350,
"preview": "import 'package:piggybank/models/category-type.dart';\nimport 'package:piggybank/models/record-tag-association.dart';\nimp"
},
{
"path": "lib/models/category-icons.dart",
"chars": 5781,
"preview": "import 'package:flutter/cupertino.dart';\nimport 'package:font_awesome_flutter/font_awesome_flutter.dart';\n\nclass Categor"
},
{
"path": "lib/models/category-type.dart",
"chars": 43,
"preview": "enum CategoryType {\n expense,\n income,\n}\n"
},
{
"path": "lib/models/category.dart",
"chars": 4245,
"preview": "import 'package:flutter/material.dart';\nimport 'package:font_awesome_flutter/font_awesome_flutter.dart';\nimport 'package"
},
{
"path": "lib/models/model.dart",
"chars": 287,
"preview": "abstract class Model {\n /// All the Models that have to be stored in the SQLite3 database have to implement\n /// the f"
},
{
"path": "lib/models/record-tag-association.dart",
"chars": 545,
"preview": "import 'package:piggybank/models/model.dart';\n\nclass RecordTagAssociation extends Model {\n final int recordId;\n final "
},
{
"path": "lib/models/record.dart",
"chars": 3003,
"preview": "import 'package:piggybank/models/category.dart';\nimport 'package:piggybank/models/model.dart';\nimport 'package:piggybank"
},
{
"path": "lib/models/records-per-category.dart",
"chars": 1093,
"preview": "import 'package:piggybank/models/category.dart';\r\nimport 'package:piggybank/models/record.dart';\r\n\r\nclass RecordsPerCate"
},
{
"path": "lib/models/records-per-day.dart",
"chars": 1247,
"preview": "import 'package:piggybank/models/category-type.dart';\nimport 'package:piggybank/models/record.dart';\n\nclass RecordsPerDa"
},
{
"path": "lib/models/records-summary-by-category.dart",
"chars": 422,
"preview": "import 'package:piggybank/models/category.dart';\r\n\r\nclass RecordsSummaryPerCategory {\r\n double? _amount;\r\n Category? _"
},
{
"path": "lib/models/recurrent-period.dart",
"chars": 867,
"preview": "import 'package:i18n_extension/default.i18n.dart';\n\nenum RecurrentPeriod {\n EveryDay,\n EveryWeek,\n EveryMonth,\n Ever"
},
{
"path": "lib/models/recurrent-record-pattern.dart",
"chars": 3528,
"preview": "import 'package:piggybank/models/category.dart';\nimport 'package:piggybank/models/record.dart';\nimport 'package:piggyban"
},
{
"path": "lib/premium/splash-screen.dart",
"chars": 7213,
"preview": "import 'package:flutter/material.dart';\nimport 'package:url_launcher/url_launcher.dart';\nimport 'package:piggybank/i18n."
},
{
"path": "lib/premium/util-widgets.dart",
"chars": 277,
"preview": "import 'package:flutter/material.dart';\n\nWidget getProLabel({labelFontSize = 10.0}) {\n return Container(\n color: Col"
},
{
"path": "lib/records/components/days-summary-box-card.dart",
"chars": 3998,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/helpers/records-utility-functions.dart';\nimport 'packa"
},
{
"path": "lib/records/components/filter_modal_content.dart",
"chars": 20178,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/components/tag_chip.dart';\nimport 'package:piggybank/i"
},
{
"path": "lib/records/components/records-day-list.dart",
"chars": 3023,
"preview": "import 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:piggybank/helpers/recor"
},
{
"path": "lib/records/components/records-per-day-card.dart",
"chars": 8747,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/helpers/datetime-utility-functions.dart';\nimport 'pack"
},
{
"path": "lib/records/components/styled_action_buttons.dart",
"chars": 1142,
"preview": "import 'package:flutter/material.dart';\n\nclass StyledActionButton extends StatelessWidget {\n final IconData icon;\n fin"
},
{
"path": "lib/records/components/styled_popup_menu_button.dart",
"chars": 1596,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\n\nclass StyledPopupMenuButton extends State"
},
{
"path": "lib/records/components/tab_records_app_bar.dart",
"chars": 4558,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/records/components/styled_popup_menu_button.dart';\n\nim"
},
{
"path": "lib/records/components/tab_records_date_picker.dart",
"chars": 7158,
"preview": "import 'package:flutter/material.dart';\nimport 'package:font_awesome_flutter/font_awesome_flutter.dart';\nimport 'package"
},
{
"path": "lib/records/components/tab_records_search_app_bar.dart",
"chars": 6172,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/records/componen"
},
{
"path": "lib/records/components/tag_selection_dialog.dart",
"chars": 13030,
"preview": "import 'package:flutter/material.dart';\nimport 'package:flutter_typeahead/flutter_typeahead.dart';\nimport 'package:piggy"
},
{
"path": "lib/records/controllers/tab_records_controller.dart",
"chars": 17996,
"preview": "import 'dart:developer';\nimport 'dart:io';\n\nimport 'package:collection/collection.dart';\nimport 'package:flutter/materia"
},
{
"path": "lib/records/edit-record-page.dart",
"chars": 46652,
"preview": "// file: edit-record-page.dart\n\nimport 'dart:io';\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter/servi"
},
{
"path": "lib/records/formatter/auto_decimal_shift_formatter.dart",
"chars": 6943,
"preview": "import 'package:flutter/services.dart';\n\n/// Automatically shifts digits to create decimal numbers based on the configur"
},
{
"path": "lib/records/formatter/calculator-normalizer.dart",
"chars": 1816,
"preview": "import 'package:flutter/services.dart';\n\n/// A pre-processor that standardizes user input into a math-ready format.\nclas"
},
{
"path": "lib/records/formatter/group-separator-formatter.dart",
"chars": 3557,
"preview": "import 'package:flutter/services.dart';\n\n/// A post-processor and decorator responsible for visual presentation\n/// and "
},
{
"path": "lib/records/records-page.dart",
"chars": 6391,
"preview": "import 'dart:core';\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter/scheduler.dart';\nimport 'package:pi"
},
{
"path": "lib/recurrent_record_patterns/patterns-page-view.dart",
"chars": 8042,
"preview": "import 'package:flutter/material.dart';\nimport 'package:intl/intl.dart';\nimport 'package:piggybank/helpers/records-utili"
},
{
"path": "lib/services/backup-service.dart",
"chars": 17537,
"preview": "import 'dart:convert';\nimport 'dart:developer';\nimport 'dart:io';\nimport 'dart:typed_data';\n\nimport 'package:i18n_extens"
},
{
"path": "lib/services/csv-service.dart",
"chars": 1226,
"preview": "import 'package:csv/csv.dart';\nimport 'package:piggybank/models/record.dart';\nimport 'logger.dart';\n\nclass CSVExporter {"
},
{
"path": "lib/services/database/database-interface.dart",
"chars": 2891,
"preview": "import 'dart:async';\n\nimport 'package:piggybank/models/category-type.dart';\nimport 'package:piggybank/models/category.da"
},
{
"path": "lib/services/database/exceptions.dart",
"chars": 209,
"preview": "class NotFoundException implements Exception {\n String? cause;\n NotFoundException({this.cause});\n}\n\nclass ElementAlrea"
},
{
"path": "lib/services/database/sqlite-database.dart",
"chars": 27540,
"preview": "import 'dart:async';\nimport 'dart:io';\n\nimport 'package:flutter/foundation.dart' show visibleForTesting;\nimport 'package"
},
{
"path": "lib/services/database/sqlite-migration-service.dart",
"chars": 13334,
"preview": "import 'package:font_awesome_flutter/font_awesome_flutter.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:s"
},
{
"path": "lib/services/locale-service.dart",
"chars": 6095,
"preview": "import 'dart:ui';\n\nimport 'package:i18n_extension/i18n_extension.dart';\nimport 'package:piggybank/helpers/records-utilit"
},
{
"path": "lib/services/logger.dart",
"chars": 3753,
"preview": "import 'package:flutter/material.dart';\nimport 'package:talker_flutter/talker_flutter.dart';\n\n/// Global Talker instance"
},
{
"path": "lib/services/platform-file-service.dart",
"chars": 3260,
"preview": "import 'dart:io';\nimport 'package:file_selector/file_selector.dart';\nimport 'package:flutter/foundation.dart';\nimport 'p"
},
{
"path": "lib/services/recurrent-record-service.dart",
"chars": 9322,
"preview": "import 'package:piggybank/helpers/datetime-utility-functions.dart';\nimport 'package:piggybank/models/record.dart';\nimpor"
},
{
"path": "lib/services/service-config.dart",
"chars": 864,
"preview": "import 'dart:ui';\n\nimport 'package:intl/intl.dart';\nimport 'package:shared_preferences/shared_preferences.dart';\n\nimport"
},
{
"path": "lib/settings/backup-page.dart",
"chars": 13780,
"preview": "import 'dart:developer';\nimport 'dart:io';\n\nimport 'package:flutter/material.dart';\nimport 'package:path/path.dart';\nimp"
},
{
"path": "lib/settings/backup-restore-dialogs.dart",
"chars": 4049,
"preview": "import 'dart:developer';\nimport 'dart:io';\n\nimport 'package:file_picker/file_picker.dart';\nimport 'package:flutter/mater"
},
{
"path": "lib/settings/backup-retention-period.dart",
"chars": 100,
"preview": "// ALWAYS -> keep all the backups, do not delete\nenum BackupRetentionPeriod { ALWAYS, WEEK, MONTH }\n"
},
{
"path": "lib/settings/clickable-customization-item.dart",
"chars": 800,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/settings/style.dart';\n\n\nclass ClickableCustomizationIt"
},
{
"path": "lib/settings/components/setting-separator.dart",
"chars": 846,
"preview": "import 'package:flutter/material.dart';\n\nclass SettingSeparator extends StatelessWidget {\n final String title;\n\n const"
},
{
"path": "lib/settings/constants/homepage-time-interval.dart",
"chars": 74,
"preview": "enum HomepageTimeInterval { CurrentMonth, CurrentYear, All, CurrentWeek }\n"
},
{
"path": "lib/settings/constants/overview-time-interval.dart",
"chars": 95,
"preview": "enum OverviewTimeInterval { DisplayedRecords, FixCurrentMonth, FixCurrentYear, FixAllRecords }\n"
},
{
"path": "lib/settings/constants/preferences-defaults-values.dart",
"chars": 3693,
"preview": "import 'package:intl/intl.dart';\nimport 'package:piggybank/settings/constants/overview-time-interval.dart';\nimport 'pack"
},
{
"path": "lib/settings/constants/preferences-keys.dart",
"chars": 2028,
"preview": "class PreferencesKeys {\n\n // Theme\n static const themeColor = 'themeColor';\n static const themeMode = 'themeMode';\n\n "
},
{
"path": "lib/settings/constants/preferences-options.dart",
"chars": 3655,
"preview": "import 'package:piggybank/i18n.dart';\nimport 'package:piggybank/settings/constants/overview-time-interval.dart';\n\nimport"
},
{
"path": "lib/settings/customization-page.dart",
"chars": 23784,
"preview": "import 'package:flutter/material.dart';\nimport 'package:local_auth/local_auth.dart';\nimport 'package:piggybank/i18n.dart"
},
{
"path": "lib/settings/dropdown-customization-item.dart",
"chars": 6067,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/settings/style.dart';\n\nimport '../services/service-con"
},
{
"path": "lib/settings/feedback-page.dart",
"chars": 3197,
"preview": "import 'dart:io';\n\nimport 'package:flutter/material.dart';\nimport 'package:piggybank/services/service-config.dart';\nimpo"
},
{
"path": "lib/settings/preferences-utils.dart",
"chars": 545,
"preview": "import 'package:shared_preferences/shared_preferences.dart';\n\nimport 'constants/preferences-defaults-values.dart';\n\nclas"
},
{
"path": "lib/settings/settings-item.dart",
"chars": 949,
"preview": "import 'package:flutter/material.dart';\r\nimport 'package:piggybank/settings/style.dart';\r\n\r\nclass SettingsItem extends S"
},
{
"path": "lib/settings/settings-page.dart",
"chars": 11118,
"preview": "import 'dart:io';\r\n\r\nimport 'package:flutter/material.dart';\r\nimport 'package:piggybank/helpers/alert-dialog-builder.dar"
},
{
"path": "lib/settings/style.dart",
"chars": 255,
"preview": "import 'package:flutter/material.dart';\n\nconst double titleFontSize = 16;\nconst double subTitleFontSize = 14;\n\nconst Tex"
},
{
"path": "lib/settings/switch-customization-item.dart",
"chars": 2303,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/premium/util-widgets.dart';\nimport 'package:piggybank/"
},
{
"path": "lib/settings/text-input-customization-item.dart",
"chars": 3396,
"preview": "import 'package:flutter/material.dart';\nimport 'package:i18n_extension/default.i18n.dart';\nimport 'package:piggybank/set"
},
{
"path": "lib/shell.dart",
"chars": 8203,
"preview": "import 'dart:io';\n\nimport 'package:flutter/material.dart';\nimport 'package:flutter/services.dart'; // For PlatformExcept"
},
{
"path": "lib/statistics/aggregated-list-view.dart",
"chars": 737,
"preview": "import 'package:flutter/material.dart';\n\nclass AggregatedListView<T> extends StatelessWidget {\n final List<T> items;\n "
},
{
"path": "lib/statistics/balance-chart-models.dart",
"chars": 7056,
"preview": "import 'dart:math';\nimport 'package:community_charts_flutter/community_charts_flutter.dart'\n as charts;\nimport 'packa"
},
{
"path": "lib/statistics/balance-comparison-chart.dart",
"chars": 3397,
"preview": "import 'package:community_charts_flutter/community_charts_flutter.dart'\n as charts;\nimport 'package:flutter/material."
},
{
"path": "lib/statistics/balance-tab-page.dart",
"chars": 7743,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/models/record.da"
},
{
"path": "lib/statistics/bar-chart-card.dart",
"chars": 11915,
"preview": "import 'dart:math';\n\nimport 'package:community_charts_flutter/community_charts_flutter.dart'\n as charts;\nimport 'pack"
},
{
"path": "lib/statistics/base-statistics-page.dart",
"chars": 5997,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/models/record.da"
},
{
"path": "lib/statistics/categories-pie-chart.dart",
"chars": 13089,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/model"
},
{
"path": "lib/statistics/category-tag-balance-page.dart",
"chars": 2736,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/model"
},
{
"path": "lib/statistics/category-tag-records-page.dart",
"chars": 2756,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/model"
},
{
"path": "lib/statistics/group-by-dropdown.dart",
"chars": 4989,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/models/record.da"
},
{
"path": "lib/statistics/overview-card.dart",
"chars": 7692,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/record.dart';\nimport 'package:piggybank/models/"
},
{
"path": "lib/statistics/record-filters.dart",
"chars": 4839,
"preview": "import 'package:piggybank/models/record.dart';\nimport 'package:piggybank/statistics/statistics-models.dart';\nimport 'pac"
},
{
"path": "lib/statistics/statistics-calculator.dart",
"chars": 7030,
"preview": "import 'package:piggybank/models/record.dart';\nimport 'package:piggybank/statistics/statistics-models.dart';\nimport 'pac"
},
{
"path": "lib/statistics/statistics-models.dart",
"chars": 747,
"preview": "import 'package:intl/intl.dart';\n\nclass DateTimeSeriesRecord {\n DateTime? time;\n double value;\n\n DateTimeSeriesRecord"
},
{
"path": "lib/statistics/statistics-page.dart",
"chars": 3880,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/helpers/datetime-utility-functions.dart';\nimport 'pack"
},
{
"path": "lib/statistics/statistics-summary-card.dart",
"chars": 15012,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/models/record.da"
},
{
"path": "lib/statistics/statistics-tab-page.dart",
"chars": 10854,
"preview": "import 'package:flutter/material.dart';\r\nimport 'package:piggybank/i18n.dart';\r\nimport 'package:piggybank/models/record."
},
{
"path": "lib/statistics/statistics-utils.dart",
"chars": 17607,
"preview": "import 'dart:math';\nimport 'dart:ui';\n\nimport \"package:collection/collection.dart\";\nimport 'package:intl/intl.dart';\nimp"
},
{
"path": "lib/statistics/summary-models.dart",
"chars": 370,
"preview": "import '../models/category.dart';\n\nclass SumTuple<T> {\n final T key;\n final double value;\n SumTuple(this.key, this.va"
},
{
"path": "lib/statistics/summary-rows.dart",
"chars": 9638,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/category.dart';\nimport 'package:piggybank/model"
},
{
"path": "lib/statistics/tags-pie-chart.dart",
"chars": 10545,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/models/record.dart';\nimport 'package:community_charts_"
},
{
"path": "lib/statistics/unified-balance-card.dart",
"chars": 6147,
"preview": "import 'package:flutter/material.dart';\nimport 'package:community_charts_flutter/community_charts_flutter.dart'\n as c"
},
{
"path": "lib/style.dart",
"chars": 2919,
"preview": "import 'dart:developer';\n\nimport 'package:flutter/material.dart';\nimport 'package:piggybank/settings/constants/preferenc"
},
{
"path": "lib/tags/tags-page-view.dart",
"chars": 6507,
"preview": "import 'package:flutter/material.dart';\nimport 'package:piggybank/i18n.dart';\nimport 'package:piggybank/services/databas"
},
{
"path": "lib/utils/constants.dart",
"chars": 209,
"preview": "class DateTimeConstants {\n /// The duration to reach the final second of a day from midnight (23:59:59).\n static const"
},
{
"path": "linux/.gitignore",
"chars": 18,
"preview": "flutter/ephemeral\n"
},
{
"path": "linux/CMakeLists.txt",
"chars": 5160,
"preview": "# Project-level configuration.\ncmake_minimum_required(VERSION 3.13)\nproject(runner LANGUAGES CXX)\n\n# The name of the exe"
},
{
"path": "linux/com.github.emavgl.oinkoin.desktop",
"chars": 311,
"preview": "[Desktop Entry]\nVersion=1.0\nType=Application\nName=Oinkoin\nGenericName=Expense Tracker\nComment=Track your expenses and ma"
},
{
"path": "linux/flutter/CMakeLists.txt",
"chars": 2815,
"preview": "# This file controls Flutter-level build steps. It should not be edited.\ncmake_minimum_required(VERSION 3.10)\n\nset(EPHEM"
},
{
"path": "linux/flutter/generated_plugin_registrant.cc",
"chars": 1549,
"preview": "//\n// Generated file. Do not edit.\n//\n\n// clang-format off\n\n#include \"generated_plugin_registrant.h\"\n\n#include <emoji_p"
},
{
"path": "linux/flutter/generated_plugin_registrant.h",
"chars": 303,
"preview": "//\n// Generated file. Do not edit.\n//\n\n// clang-format off\n\n#ifndef GENERATED_PLUGIN_REGISTRANT_\n#define GENERATED_PLUG"
},
{
"path": "linux/flutter/generated_plugins.cmake",
"chars": 839,
"preview": "#\n# Generated file, do not edit.\n#\n\nlist(APPEND FLUTTER_PLUGIN_LIST\n emoji_picker_flutter\n file_selector_linux\n flutt"
},
{
"path": "linux/packaging/appimage/make_config.yaml",
"chars": 793,
"preview": "display_name: Oinkoin\npackage_name: oinkoin\nexecutable: piggybank\nversion: 1.1.6\n\nmaintainer:\n name: Oinkoin Team\n ema"
},
{
"path": "linux/packaging/deb/make_config.yaml",
"chars": 665,
"preview": "display_name: Oinkoin\npackage_name: oinkoin\nversion: 1.1.6\n\nmaintainer:\n name: Oinkoin Team\n email: support@oinkoin.co"
},
{
"path": "linux/packaging/rpm/make_config.yaml",
"chars": 634,
"preview": "display_name: Oinkoin\npackage_name: oinkoin\nversion: 1.1.6\n\nmaintainer:\n name: Oinkoin Team\n email: support@oinkoin.co"
},
{
"path": "linux/runner/CMakeLists.txt",
"chars": 974,
"preview": "cmake_minimum_required(VERSION 3.13)\nproject(runner LANGUAGES CXX)\n\n# Define the application target. To change its name,"
}
]
// ... and 195 more files (download for full content)
About this extraction
This page contains the full source code of the emavgl/oinkoin GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 395 files (1.5 MB), approximately 389.8k tokens, and a symbol index with 1108 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.