server-studio 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Notable changes to Server Studio. Dates are release dates.
4
4
 
5
+ ## 1.2.3 — 2026-08-30
6
+
7
+ - The badge shown after an update now says **quit & reopen** rather than "restart to finish".
8
+ Reloading the page kept the old process serving it, so the old wording sent people to do the
9
+ one thing that could not work.
10
+
5
11
  ## 1.2.2 — 2026-08-30
6
12
 
7
13
  - The version badge no longer keeps offering an update you have already installed. Once you start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "server-studio",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "A tiny dashboard for your local dev servers. One click to run, stop and open them, with one permanent port per project.",
5
5
  "author": "Md Mahdi Hasan",
6
6
  "license": "MIT",
package/src/index.html CHANGED
@@ -859,9 +859,12 @@ async function checkUpdate() {
859
859
  pending = null;
860
860
  }
861
861
  if (pending) {
862
+ // "restart" alone reads as reloading the page, which changes nothing: the old
863
+ // process is still serving it. Say which thing has to be restarted.
862
864
  pill.className = 'ver pending';
863
- pill.textContent = 'restart to finish ' + pending;
864
- pill.title = 'Version ' + pending + ' has been installed. Quit and reopen Server Studio to run it.';
865
+ pill.textContent = 'quit & reopen for ' + pending;
866
+ pill.title = pending + ' is installed. Quit Server Studio itself and open it again, ' +
867
+ 'reloading this page keeps the old version running.';
865
868
  pill.onclick = null;
866
869
  return;
867
870
  }
@@ -895,7 +898,7 @@ async function runUpdate() {
895
898
  // update. Continuing to show it after a successful update reads as a failure.
896
899
  try { localStorage.setItem('ss_updating_to', updateInfo.latest); } catch (e) {}
897
900
  checkUpdate();
898
- toast('Updating in ' + TERM_NAME + '. Restart Server Studio when it finishes.');
901
+ toast('Updating in ' + TERM_NAME + '. Quit Server Studio and open it again when it finishes.');
899
902
  }
900
903
  else toast('Could not start the update. Run this yourself: npm install -g server-studio', true);
901
904
  }