Skip to content

niccokunzmann/open_chakra_toning

Repository files navigation

Open Chakra Toning

release

Open your chakras by singing to their frequencies.

Get it on Flathub

You might want to

Setup

This is a flutter project. You can follow their setup guide and build the project.

Translations

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

Branches

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.

Release

In order to create a new release, please follow this procedure:

  1. Change the pubspec.yml, increment the last version Z.

    # ...
    version: 1.0.Z+Z
    # ...
    msix_config:
      # ...
      msix_version: 1.0.Z.0
  2. Record the changes from git log since the last release in the metadata/en/changelogs/Z.txt file.

  3. 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
  4. Wait until the initial tests have run on GitHub Actions.

  5. 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.