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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kernel-panic",
"version": "0.2.9",
"version": "0.2.9-balance",
"description": "Turn-based cyberpunk roguelike PWA (ASCII-plus terminal aesthetic)",
"main": "index.html",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion sw-dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Service Worker for Kernel Panic - Development Version
const VERSION = '0.2.9-dev';
const VERSION = '0.2.9a-dev';
importScripts(`/sw-core.js?v=${VERSION}`);

const cacheConfig = CacheConfig.create(VERSION);
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Service Worker for Kernel Panic - Production Version
// Import shared caching core with cache-busting query parameter
const VERSION = '0.2.9';
const VERSION = '0.2.9a';
importScripts(`/sw-core.js?v=${VERSION}`);

const cacheConfig = CacheConfig.create(VERSION);
Expand Down
Loading