All notable changes to TizenPortal are documented through git commit messages on tagged releases.
package.json in the repository root1018, 1019, 1020)XXYY where XX = major.minor, YY = patch (e.g., 1018 = v1.0.18)Version history is maintained through git tags with detailed commit messages. To view:
# List all version tags
git tag --list | sort -V
# View commit message for a specific version
git show <version-tag>
# View all tagged releases
git log --tags --simplify-by-decoration --pretty="format:%d %s"
To install TizenPortal via TizenBrew, use:
axelnanol/tizenportal
TizenBrew will automatically serve the latest release.
TizenPortal uses numeric 4-digit tags for releases. The format is XXYY where XX = major.minor and YY = patch (e.g., 1018 = v1.0.18).
Major breaking changes are documented in git commit messages when they occur. Always review the commit message of a version tag before upgrading.
For current development status and roadmap:
Historical version information prior to this changelog being created can be found in git history:
# View commit history
git log --oneline
# View tagged releases with dates
git log --tags --simplify-by-decoration --pretty="format:%ai %d"
Note: This project follows a continuous deployment model where each meaningful change receives a version tag. Not all tags represent major feature releases - some may be bug fixes, documentation updates, or minor improvements.