Building The Project
April 26, 2025 ยท View on GitHub
- Update CHANGELOG.md to reflect the changes in this release.
- Since we are publishing a new version of the application, we should increment the version number. For Takma we use the Semantic Versioning convention to update the version number.
- In summary:
- Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when making major (breaking) changes.
- MINOR version when adding new features or improvements.
- PATCH version when making bugfixes or small improvements.
- Given a version number MAJOR.MINOR.PATCH, increment the:
- In summary:
- Edit
package.jsonandCargo.tomlto update the version number - Run
npm i - Run
npm run tauri build - The executable together with the
resourcesfolder will be placed in:src-tauri/target/release/- An msi installer can be found in:
src-tauri/target/release/bundle/msi/ - An exe installer can be found in:
src-tauri/target/release/bundle/nsis/
- An msi installer can be found in: