Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ body:
attributes:
label: ProtonShift version
description: "Check the app's About dialog or `electron/package.json`."
placeholder: "0.9.5"
placeholder: "0.9.6"
validations:
required: true

Expand Down
1 change: 1 addition & 0 deletions assets/io.github.protonshift.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<launchable type="desktop-id">io.github.protonshift.desktop</launchable>
<url type="homepage">https://github.com/I4cTime/protonshift</url>
<releases>
<release version="0.9.6" date="2026-05-13"/>
<release version="0.9.5" date="2026-05-12"/>
<release version="0.8.8" date="2026-04-15"/>
<release version="0.8.7" date="2026-04-15"/>
Expand Down
9 changes: 7 additions & 2 deletions electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protonshift",
"version": "0.9.5",
"version": "0.9.6",
"description": "Linux game configuration toolkit",
"main": "dist/main.js",
"scripts": {
Expand All @@ -26,7 +26,12 @@
"electron-winstaller",
"@heroui-pro/react",
"heroui-pro"
]
],
"overrides": {
"postcss@<8.5.10": "^8.5.10",
"ip-address@<=10.1.0": "^10.1.1",
"@xmldom/xmldom@<0.8.13": "^0.8.13"
}
},
"dependencies": {
"electron-is-dev": "^3.0.1"
Expand Down
123 changes: 59 additions & 64 deletions electron/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions electron/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protonshift-renderer",
"version": "0.9.5",
"version": "0.9.6",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -17,7 +17,7 @@
"jotai": "^2.12.0",
"lucide-react": "^0.475.0",
"motion": "^12.6.0",
"next": "^16.2.3",
"next": "^16.2.6",
"react": "^19.1.0",
"react-aria-components": "^1.17.0",
"react-dom": "^19.1.0",
Expand Down
2 changes: 1 addition & 1 deletion electron/renderer/src/components/nav-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function NavBar() {
</span>
<div className="navbar__brand-scanline h-[2px] w-full max-w-[7.5rem] rounded-full opacity-90" aria-hidden />
<p className="text-muted hidden font-mono text-[10px] leading-tight tracking-wide @6xl/nav:block">
{appVersion ? `v${appVersion}` : "v0.9.5"} · Linux gaming HUD
{appVersion ? `v${appVersion}` : "v0.9.6"} · Linux gaming HUD
</p>
</div>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/game_setup_hub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ProtonShift — Linux game configuration toolkit."""

__version__ = "0.9.5"
__version__ = "0.9.6"
Loading