From 836d409e3b13f80a6c7bb02b21409892b8039cd0 Mon Sep 17 00:00:00 2001 From: Draco-Lunaris-Echo Date: Mon, 8 Jun 2026 17:44:20 -0500 Subject: [PATCH] feat: add version display to sidebar and bump to v1.1.4 (#51) --- Cargo.toml | 2 +- debian/changelog | 6 ++++++ debian/control | 2 +- frontend/package.json | 2 +- frontend/src/components/AppLayout.tsx | 5 ++++- scripts/build-package.sh | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0e5a232..bf6b8a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ ] [workspace.package] -version = "1.1.2" +version = "1.1.4" edition = "2021" authors = ["Echo "] license = "MIT" diff --git a/debian/changelog b/debian/changelog index 16c8e36..120ba19 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +linux-patch-manager (1.1.4-1) unstable; urgency=low + + * Release v1.1.4 + + -- git-echo Mon, 08 Jun 2026 17:30:35 -0500 + linux-patch-manager (1.1.2-1) unstable; urgency=low * Release v1.1.2 diff --git a/debian/control b/debian/control index 5e896b0..bdb652e 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: linux-patch-manager -Version: 1.1.2-1 +Version: 1.1.4-1 Architecture: amd64 Maintainer: Moon Dragon Installed-Size: 45000 diff --git a/frontend/package.json b/frontend/package.json index 354b771..48d2f7c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "patch-manager-ui", "private": true, - "version": "1.1.2", + "version": "1.1.4", "type": "module", "scripts": { "dev": "vite", diff --git a/frontend/src/components/AppLayout.tsx b/frontend/src/components/AppLayout.tsx index 53c2fe5..d8b7948 100644 --- a/frontend/src/components/AppLayout.tsx +++ b/frontend/src/components/AppLayout.tsx @@ -86,7 +86,7 @@ export default function AppLayout() { const drawer = ( - + 🐉 Patch Manager + + v{__APP_VERSION__} + diff --git a/scripts/build-package.sh b/scripts/build-package.sh index 23ddd20..6ed6d6c 100755 --- a/scripts/build-package.sh +++ b/scripts/build-package.sh @@ -22,7 +22,7 @@ warn() { echo -e "${YELLOW}[WARN]${NC} $*"; } error() { echo -e "${RED}[ERROR]${NC} $*" >&2; exit 1; } PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -VERSION="1.1.2" +VERSION="1.1.4" RELEASE="1" PKG_NAME="linux-patch-manager" DEB_NAME="${PKG_NAME}_${VERSION}-${RELEASE}_amd64.deb"