We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2777831 commit 0ccdff8Copy full SHA for 0ccdff8
2 files changed
index.html
@@ -198,7 +198,7 @@ <h2>Sanctuary Secured</h2>
198
// Display version on home screen
199
const versionEl = document.getElementById('gameVersion');
200
if (versionEl) {
201
- versionEl.textContent = `FromNothing-v${VERSION}`;
+ versionEl.textContent = `v${VERSION}`;
202
}
203
</script>
204
<script type="module" src="./resources/js/main.js"></script>
resources/js/version.js
@@ -1,6 +1,6 @@
1
// VERSION CONTROL - Single source of truth
2
// Update this version number when deploying new releases
3
-const VERSION = '0.3.2';
+const VERSION = '0.3.3';
4
5
// Export for ES6 modules
6
export { VERSION };
0 commit comments