diff --git a/Makefile b/Makefile index 31ffc6f..514e7a6 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PATH := $(JAVA_HOME)/bin:$(ANDROID_SDK_ROOT)/cmdline-tools/latest/bin:$(ANDROID_ APK_BUILD_IMAGE ?= keepassgo/android-apk-build:java25 APP_ID ?= org.julianfamily.keepassgo APK_OUT ?= build/keepassgo.apk -APK_VERSION ?= 0.1.0.1 +APK_VERSION ?= 0.8.2.298 APP_VERSION ?= $(shell git describe --tags --always --dirty 2>/dev/null || echo dev) GO_LDFLAGS ?= -X git.julianfamily.org/keepassgo/internal/appui.appVersion=$(APP_VERSION) APK_ARCH ?= arm64,amd64 diff --git a/browser/extension/manifest.chromium.json b/browser/extension/manifest.chromium.json index 5b7239a..5ec2555 100644 --- a/browser/extension/manifest.chromium.json +++ b/browser/extension/manifest.chromium.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "KeePassGO Browser", - "version": "0.1.0", + "version": "0.8.2", "description": "Fill credentials from KeePassGO on sign-in pages.", "permissions": ["activeTab", "nativeMessaging", "storage", "tabs"], "host_permissions": ["http://*/*", "https://*/*"], diff --git a/browser/extension/manifest.firefox.json b/browser/extension/manifest.firefox.json index 1c15b6e..6044072 100644 --- a/browser/extension/manifest.firefox.json +++ b/browser/extension/manifest.firefox.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "KeePassGO Browser", - "version": "0.1.0", + "version": "0.8.2", "description": "Fill credentials from KeePassGO on sign-in pages.", "icons": { "16": "icons/icon-16.png", diff --git a/buildapk/config.go b/buildapk/config.go index 20484c0..239e3b4 100644 --- a/buildapk/config.go +++ b/buildapk/config.go @@ -12,7 +12,7 @@ const ( DefaultJavaHome = "/usr/lib/jvm/java-25-openjdk" DefaultAppID = "org.julianfamily.keepassgo" DefaultAPKOut = "build/keepassgo.apk" - DefaultVersion = "0.1.0.1" + DefaultVersion = "0.8.2.298" DefaultLdflags = "-X git.julianfamily.org/keepassgo/internal/appui.appVersion=dev" DefaultMinSDK = "28" DefaultTargetSDK = "35"