Compare commits
1 Commits
v1.1.5
...
release/v1
| Author | SHA1 | Date | |
|---|---|---|---|
| 89326889e4 |
@ -12,7 +12,7 @@ members = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "1.1.2"
|
version = "1.1.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Echo <echo@moon-dragon.us>"]
|
authors = ["Echo <echo@moon-dragon.us>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
linux-patch-manager (1.1.4-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Release v1.1.4
|
||||||
|
|
||||||
|
-- git-echo <git-echo@moon-dragon.us> Mon, 08 Jun 2026 17:30:35 -0500
|
||||||
|
|
||||||
linux-patch-manager (1.1.2-1) unstable; urgency=low
|
linux-patch-manager (1.1.2-1) unstable; urgency=low
|
||||||
|
|
||||||
* Release v1.1.2
|
* Release v1.1.2
|
||||||
|
|||||||
2
debian/control
vendored
2
debian/control
vendored
@ -1,5 +1,5 @@
|
|||||||
Package: linux-patch-manager
|
Package: linux-patch-manager
|
||||||
Version: 1.1.2-1
|
Version: 1.1.4-1
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
Maintainer: Moon Dragon <echo@moon-dragon.us>
|
Maintainer: Moon Dragon <echo@moon-dragon.us>
|
||||||
Installed-Size: 45000
|
Installed-Size: 45000
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "patch-manager-ui",
|
"name": "patch-manager-ui",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.1.2",
|
"version": "1.1.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@ -86,7 +86,7 @@ export default function AppLayout() {
|
|||||||
|
|
||||||
const drawer = (
|
const drawer = (
|
||||||
<Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
|
<Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
|
||||||
<Toolbar sx={{ justifyContent: 'center', py: 1.5 }}>
|
<Toolbar sx={{ justifyContent: 'center', py: 1.5, flexDirection: 'column' }}>
|
||||||
<Typography variant="h6" fontWeight={700} sx={{
|
<Typography variant="h6" fontWeight={700} sx={{
|
||||||
background: 'linear-gradient(135deg, #42A5F5 30%, #26C6DA 100%)',
|
background: 'linear-gradient(135deg, #42A5F5 30%, #26C6DA 100%)',
|
||||||
WebkitBackgroundClip: 'text',
|
WebkitBackgroundClip: 'text',
|
||||||
@ -94,6 +94,9 @@ export default function AppLayout() {
|
|||||||
}}>
|
}}>
|
||||||
🐉 Patch Manager
|
🐉 Patch Manager
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography variant="caption" sx={{ color: 'text.secondary', opacity: 0.7, mt: -0.5 }}>
|
||||||
|
v{__APP_VERSION__}
|
||||||
|
</Typography>
|
||||||
</Toolbar>
|
</Toolbar>
|
||||||
<Divider />
|
<Divider />
|
||||||
<Box sx={{ flex: 1, overflowY: 'auto', py: 1 }}>
|
<Box sx={{ flex: 1, overflowY: 'auto', py: 1 }}>
|
||||||
|
|||||||
@ -22,7 +22,7 @@ warn() { echo -e "${YELLOW}[WARN]${NC} $*"; }
|
|||||||
error() { echo -e "${RED}[ERROR]${NC} $*" >&2; exit 1; }
|
error() { echo -e "${RED}[ERROR]${NC} $*" >&2; exit 1; }
|
||||||
|
|
||||||
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
VERSION="1.1.2"
|
VERSION="1.1.4"
|
||||||
RELEASE="1"
|
RELEASE="1"
|
||||||
PKG_NAME="linux-patch-manager"
|
PKG_NAME="linux-patch-manager"
|
||||||
DEB_NAME="${PKG_NAME}_${VERSION}-${RELEASE}_amd64.deb"
|
DEB_NAME="${PKG_NAME}_${VERSION}-${RELEASE}_amd64.deb"
|
||||||
|
|||||||
Reference in New Issue
Block a user