diff --git a/extension/manifest.json b/extension/manifest.json
index 2d84aed..cb4330b 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "KoalaSync",
- "version": "1.1.3",
+ "version": "1.1.4",
"description": "Synchronize video playback across different tabs and users.",
"permissions": [
"storage",
diff --git a/extension/popup.html b/extension/popup.html
index 45da138..a57edd6 100644
--- a/extension/popup.html
+++ b/extension/popup.html
@@ -341,6 +341,11 @@
+
+
diff --git a/extension/popup.js b/extension/popup.js
index 40065da..6215fd2 100644
--- a/extension/popup.js
+++ b/extension/popup.js
@@ -55,6 +55,12 @@ async function init() {
elements.password.value = data.password || '';
elements.username.value = data.username || '';
elements.filterNoise.checked = data.filterNoise !== false;
+
+ // Set Version Info
+ const versionEl = document.getElementById('appVersion');
+ if (versionEl) {
+ versionEl.textContent = `v${chrome.runtime.getManifest().version}`;
+ }
if (data.useCustomServer) {
setServerMode(true);
diff --git a/shared/constants.js b/shared/constants.js
index 2b09c9f..7158f0e 100644
--- a/shared/constants.js
+++ b/shared/constants.js
@@ -7,7 +7,7 @@
*/
export const PROTOCOL_VERSION = "1.0.0";
-export const APP_VERSION = "1.1.3";
+export const APP_VERSION = "1.1.4";
export const OFFICIAL_SERVER_URL = 'wss://sync.shik3i.net';
export const OFFICIAL_LANDING_PAGE_URL = 'https://koalasync.shik3i.net';