server-studio 1.2.5 → 1.2.6

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,16 @@
2
2
 
3
3
  Notable changes to Server Studio. Dates are release dates.
4
4
 
5
+ ## 1.2.6 — 2026-08-30
6
+
7
+ - Documentation only. No runtime change; the code is identical to 1.2.5.
8
+ - The README now says that anyone on **1.1.1 or older** has no update button, because the version
9
+ badge and the update check both arrived in 1.2.0. They update once with
10
+ `npm install -g server-studio` and the badge takes over from there. This is published as a release
11
+ because npm renders the README from the package, so the note was missing on the page most people
12
+ land on.
13
+ - Removed a line that appeared twice.
14
+
5
15
  ## 1.2.5 — 2026-08-30
6
16
 
7
17
  ### The install counter is gone
package/README.md CHANGED
@@ -195,14 +195,19 @@ which is what makes this safe to call from a build step.
195
195
 
196
196
  Run `server-studio add` with no arguments for the full list of fields.
197
197
 
198
- Run `server-studio add` with no arguments for the full list of fields.
199
-
200
198
  ### Staying up to date
201
199
 
202
200
  The version sits under the app name in the sidebar. When a newer release is on npm it turns green
203
201
  and becomes a button: click it, confirm, and the update runs in a terminal window. Restart Server
204
202
  Studio when it finishes. Your saved servers and folders are never touched by an update.
205
203
 
204
+ Coming from **1.1.1 or older**? That badge did not exist yet, so there is no button in your copy.
205
+ Update once by hand and every update after that is a click:
206
+
207
+ ```bash
208
+ npm install -g server-studio
209
+ ```
210
+
206
211
  ### Backups
207
212
 
208
213
  **Export** saves your whole list to `server-studio-backup.json`. **Import** loads one back.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "server-studio",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
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",