Skip to content

OpenThumb 1.0.6

Choose a tag to compare

@github-actions github-actions released this 29 Jul 16:17

Installing over 1.0.5 or earlier will fail — uninstall first. Every release
up to 1.0.5 was signed with an Android debug key, because the signing config
falls back to one whenever the release keystore is absent. 1.0.6 is the first
build signed with OpenThumb's own key, and Android refuses to replace an app
with a build carrying a different certificate. Your settings and provider
credentials do not survive the uninstall; export or re-enter them. This is a
one-time break — 1.0.7 onward upgrade normally.

Added

  • scripts/bump-version.sh — moves versionName, versionCode, the CHANGELOG
    heading, the F-Droid changelog and the version on the landing page together.
    They were four hand edits before, and fastlane still carried a changelog for
    versionCode 21 while the app shipped 26. scripts/test-bump-version.sh
    checks that all of them move.
  • .github/workflows/release.yml — a tag push builds the signed APK, publishes
    the release with the notes read out of this file, and mails them. It checks
    that the tag agrees with the versionName it was cut from, and the tag is
    annotated because git push --follow-tags skips lightweight ones — a
    lightweight tag stays local and the release never fires.
    release-apk.yml and release-announce.yml are folded into it: both hung off
    release: published, which a release created with GITHUB_TOKEN does not
    raise, so automating release creation would have silently stopped both.
  • The landing page links the changelog, and shows which version is current.

Fixed

  • Release APK could be published signed with a throwaway key. Without the
    keystore secrets build.gradle.kts falls back to the debug config, and CI
    runners generate a fresh debug key per run — so a published build could not
    be upgraded onto by anyone holding an earlier one. The workflow now signs
    from secrets when they exist and fails rather than attaching a debug-signed
    APK.