Open your chakras by singing to their frequencies.
You might want to
- Try it out!
- Donate using GitHub Sponsors
- Translate the App (or request your language)
This is a flutter project. You can follow their setup guide and build the project.
This app can be translated into your language.
What to translate:
assets/i18n/LANG.json
metadata/LANG/title.txt
metadata/LANG/short_description.txt
metadata/LANG/long_description.txt
The main
branch contains the source code to build the app.
The gh-pages
branch is a web deployment of the app.
The sound
branch contains raw sound data.
In order to create a new release, please follow this procedure:
-
Change the
pubspec.yml
, increment the last version Z.# ... version: 1.0.Z+Z # ... msix_config: # ... msix_version: 1.0.Z.0
-
Record the changes from
git log
since the last release in themetadata/en/changelogs/Z.txt
file. -
Commit and push the commit.
git checkout main git pull git add metadata/en/changelogs pubspec.yml git commit -m"version 1.0.Z" git push
-
Wait until the initial tests have run on GitHub Actions.
-
Create a tag and push it:
git checkout main git pull git tag v1.0.Z git push origin v1.0.Z
This should release a new version.