├── .directory ├── .fvmrc ├── .github ├── FUNDING.yml └── workflows │ ├── flutter_build_release.yml │ └── netlify_web_deploy.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── .vscode └── settings.json ├── CHANGELOG.md ├── CNAME ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── inner_breeze │ │ │ │ └── MainActivity.kt │ │ ├── play_store_512.png │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── icons │ ├── github.svg │ ├── telegram.svg │ └── twitter.svg ├── images │ ├── angel.jpg │ ├── begin.jpg │ └── logo.png └── sounds │ ├── bell.ogg │ ├── breath-in.ogg │ └── breath-out.ogg ├── lib ├── i18n │ ├── de_DE.json │ ├── en_US.json │ ├── es_ES.json │ ├── fr_FR.json │ ├── id_ID.json │ ├── it_IT.json │ ├── pl_PL.json │ ├── ru_RU.json │ └── zh_CN.json ├── layouts │ └── guide_page_layout.dart ├── main.dart ├── models │ ├── preferences.dart │ ├── session.dart │ └── user.dart ├── providers │ └── user_provider.dart ├── router │ ├── exercise_router.dart │ ├── guide_router.dart │ └── router.dart ├── screens │ ├── breathing_settings_screen.dart │ ├── exercise │ │ ├── exercise_step1.dart │ │ ├── exercise_step2.dart │ │ └── exercise_step3.dart │ ├── guide │ │ ├── guide_language_screen.dart │ │ ├── guide_method_screen.dart │ │ ├── guide_step1.dart │ │ ├── guide_step2.dart │ │ ├── guide_step3.dart │ │ └── guide_welcome_screen.dart │ ├── progress_screen.dart │ ├── results_screen.dart │ ├── settings_screen.dart │ ├── splash_screen.dart │ └── title_screen.dart ├── shared │ └── breeze_style.dart ├── utils │ ├── audio_player_service.dart │ ├── breathing_utils.dart │ └── platform_checker.dart └── widgets │ ├── animated_circle.dart │ ├── breathing_configuration.dart │ ├── breeze_app_bar.dart │ ├── breeze_bottom_nav.dart │ ├── centered_max_width_widget.dart │ ├── graph_view.dart │ ├── language_selector.dart │ ├── session_list_view.dart │ ├── stop_session.dart │ └── stopwatch.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── metadata ├── en-US │ ├── changelogs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 3.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 34.txt │ │ ├── 35.txt │ │ ├── 36.txt │ │ ├── 37.txt │ │ ├── 38.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── desktopScreenshots │ │ │ ├── screenshot-1.jpg │ │ │ ├── screenshot-2.jpg │ │ │ ├── screenshot-3.jpg │ │ │ ├── screenshot-4.jpg │ │ │ ├── screenshot-5.jpg │ │ │ └── screenshot-6.jpg │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── screenshot-1.jpg │ │ │ ├── screenshot-2.jpg │ │ │ ├── screenshot-3.jpg │ │ │ ├── screenshot-4.jpg │ │ │ ├── screenshot-5.jpg │ │ │ ├── screenshot-6.jpg │ │ │ └── screenshot-7.jpg │ ├── short_description.txt │ └── title.txt ├── io.naox.InnerBreeze.metainfo.xml └── ru-RU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── pubspec.lock ├── pubspec.yaml ├── shell.nix ├── snap ├── gui │ ├── io.naox.InnerBreeze.desktop │ ├── io.naox.InnerBreeze.png │ └── io.naox.InnerBreeze.svg └── snapcraft.yaml ├── test └── widget_test.dart ├── update_metadata.sh └── web ├── favicon.ico ├── flutter_bootsrap.js ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.directory: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Icon=/home/wao/lyra/proj/inner_breeze/assets/images/logo.png 3 | -------------------------------------------------------------------------------- /.fvmrc: -------------------------------------------------------------------------------- 1 | { 2 | "flutter": "3.24.3" 3 | } -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/flutter_build_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.github/workflows/flutter_build_release.yml -------------------------------------------------------------------------------- /.github/workflows/netlify_web_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.github/workflows/netlify_web_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | v1.inbreeze.xyz 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/inner_breeze/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/kotlin/com/example/inner_breeze/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/play_store_512.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/icons/github.svg -------------------------------------------------------------------------------- /assets/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/icons/telegram.svg -------------------------------------------------------------------------------- /assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/icons/twitter.svg -------------------------------------------------------------------------------- /assets/images/angel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/images/angel.jpg -------------------------------------------------------------------------------- /assets/images/begin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/images/begin.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/sounds/bell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/sounds/bell.ogg -------------------------------------------------------------------------------- /assets/sounds/breath-in.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/sounds/breath-in.ogg -------------------------------------------------------------------------------- /assets/sounds/breath-out.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/assets/sounds/breath-out.ogg -------------------------------------------------------------------------------- /lib/i18n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/de_DE.json -------------------------------------------------------------------------------- /lib/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/en_US.json -------------------------------------------------------------------------------- /lib/i18n/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/es_ES.json -------------------------------------------------------------------------------- /lib/i18n/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/fr_FR.json -------------------------------------------------------------------------------- /lib/i18n/id_ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/id_ID.json -------------------------------------------------------------------------------- /lib/i18n/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/it_IT.json -------------------------------------------------------------------------------- /lib/i18n/pl_PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/pl_PL.json -------------------------------------------------------------------------------- /lib/i18n/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/ru_RU.json -------------------------------------------------------------------------------- /lib/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/i18n/zh_CN.json -------------------------------------------------------------------------------- /lib/layouts/guide_page_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/layouts/guide_page_layout.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/models/preferences.dart -------------------------------------------------------------------------------- /lib/models/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/models/session.dart -------------------------------------------------------------------------------- /lib/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/models/user.dart -------------------------------------------------------------------------------- /lib/providers/user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/providers/user_provider.dart -------------------------------------------------------------------------------- /lib/router/exercise_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/router/exercise_router.dart -------------------------------------------------------------------------------- /lib/router/guide_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/router/guide_router.dart -------------------------------------------------------------------------------- /lib/router/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/router/router.dart -------------------------------------------------------------------------------- /lib/screens/breathing_settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/breathing_settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/exercise/exercise_step1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/exercise/exercise_step1.dart -------------------------------------------------------------------------------- /lib/screens/exercise/exercise_step2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/exercise/exercise_step2.dart -------------------------------------------------------------------------------- /lib/screens/exercise/exercise_step3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/exercise/exercise_step3.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_language_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_language_screen.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_method_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_method_screen.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_step1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_step1.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_step2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_step2.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_step3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_step3.dart -------------------------------------------------------------------------------- /lib/screens/guide/guide_welcome_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/guide/guide_welcome_screen.dart -------------------------------------------------------------------------------- /lib/screens/progress_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/progress_screen.dart -------------------------------------------------------------------------------- /lib/screens/results_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/results_screen.dart -------------------------------------------------------------------------------- /lib/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/splash_screen.dart -------------------------------------------------------------------------------- /lib/screens/title_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/screens/title_screen.dart -------------------------------------------------------------------------------- /lib/shared/breeze_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/shared/breeze_style.dart -------------------------------------------------------------------------------- /lib/utils/audio_player_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/utils/audio_player_service.dart -------------------------------------------------------------------------------- /lib/utils/breathing_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/utils/breathing_utils.dart -------------------------------------------------------------------------------- /lib/utils/platform_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/utils/platform_checker.dart -------------------------------------------------------------------------------- /lib/widgets/animated_circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/animated_circle.dart -------------------------------------------------------------------------------- /lib/widgets/breathing_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/breathing_configuration.dart -------------------------------------------------------------------------------- /lib/widgets/breeze_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/breeze_app_bar.dart -------------------------------------------------------------------------------- /lib/widgets/breeze_bottom_nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/breeze_bottom_nav.dart -------------------------------------------------------------------------------- /lib/widgets/centered_max_width_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/centered_max_width_widget.dart -------------------------------------------------------------------------------- /lib/widgets/graph_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/graph_view.dart -------------------------------------------------------------------------------- /lib/widgets/language_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/language_selector.dart -------------------------------------------------------------------------------- /lib/widgets/session_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/session_list_view.dart -------------------------------------------------------------------------------- /lib/widgets/stop_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/stop_session.dart -------------------------------------------------------------------------------- /lib/widgets/stopwatch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/lib/widgets/stopwatch.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /metadata/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | * First release of the application. 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- 1 | * Fix audio issue on desktop 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/11.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/12.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- 1 | * Added ability to edit progress results 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/16.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/17.txt: -------------------------------------------------------------------------------- 1 | * Improve audio player 2 | * Added gong at last breath 3 | 4 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | * Fix breathing configuration 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/19.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/2.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | * Fix breathing bug 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/21.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- 1 | * Added snap build 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/23.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- 1 | * Optimize metadata for desktop release 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/25.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/26.txt: -------------------------------------------------------------------------------- 1 | * Update spanish translations thanks to @anhdres 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/27.txt: -------------------------------------------------------------------------------- 1 | * Slight improvements in progress view 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/28.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/29.txt: -------------------------------------------------------------------------------- 1 | * Improve bar chart 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/30.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/31.txt: -------------------------------------------------------------------------------- 1 | * Improve tempo slider 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | * Fix flathub build 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/33.txt: -------------------------------------------------------------------------------- 1 | * Bug fixes 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/34.txt: -------------------------------------------------------------------------------- 1 | * Bug fixes 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/35.txt: -------------------------------------------------------------------------------- 1 | * Fix android export 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/36.txt: -------------------------------------------------------------------------------- 1 | * Rm dependencies info 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/37.txt: -------------------------------------------------------------------------------- 1 | * Add languages 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/38.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | * Updated app icons for a more modern and cohesive look. 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/6.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/changelogs/7.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | * Update Flatpak metadata 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- 1 | * Added themeable icon for android 2 | 3 | -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-1.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-2.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-3.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-4.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-5.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/desktopScreenshots/screenshot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/desktopScreenshots/screenshot-6.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-1.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-2.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-3.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-4.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-5.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-6.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-7.jpg -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Inner Breeze -------------------------------------------------------------------------------- /metadata/io.naox.InnerBreeze.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/io.naox.InnerBreeze.metainfo.xml -------------------------------------------------------------------------------- /metadata/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/ru-RU/full_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/metadata/ru-RU/short_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Внутренний бриз 2 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/shell.nix -------------------------------------------------------------------------------- /snap/gui/io.naox.InnerBreeze.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/snap/gui/io.naox.InnerBreeze.desktop -------------------------------------------------------------------------------- /snap/gui/io.naox.InnerBreeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/snap/gui/io.naox.InnerBreeze.png -------------------------------------------------------------------------------- /snap/gui/io.naox.InnerBreeze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/snap/gui/io.naox.InnerBreeze.svg -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /update_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/update_metadata.sh -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/flutter_bootsrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/flutter_bootsrap.js -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waozixyz/inbreeze/HEAD/web/manifest.json --------------------------------------------------------------------------------