valheim-oz-dsm 1.0.0 → 1.4.1

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
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.9] - 2026-02-01
11
+
12
+ ### Fixed
13
+ - Worlds with only `.fwl` files (generated but not yet saved) now appear in worlds list
14
+ - Added `pendingSave` field to WorldInfo to distinguish between saved and unsaved worlds
15
+ - Worlds screen now shows "Pending Save" status for worlds not yet saved to disk
16
+ - `worldExists()` now checks for `.fwl` files (not just `.db`) since Valheim creates `.fwl` first
17
+ - Properly handles new world generation workflow where `.db` is only created on first save
18
+
19
+ ## [1.0.8] - 2026-02-01
20
+
21
+ ### Fixed
22
+ - `worldExists()` now checks both `worlds/` and `worlds_local/` directories
23
+ - Worlds in `worlds_local/` folder (created by Valheim client) are now properly discovered
24
+ - Added `source` field to WorldInfo to track which folder a world is in
25
+ - Worlds screen now shows which folder each world is stored in (worlds vs worlds_local)
26
+
27
+ ## [1.0.7] - 2026-02-01
28
+
29
+ ### Fixed
30
+ - World generation detection now properly detects when new worlds are generated
31
+ - Worlds screen now shows a spinner when a new world is being generated
32
+ - Worlds list now refreshes after world generation completes (instead of fixed 2-second delay)
33
+ - Added `world_generated` event detection to log parser (triggers on "Done generating locations" message)
34
+ - Added `worldGenerating` state to track when server is generating a new world
35
+ - World save events now properly update the "Last Save" timestamp
36
+
10
37
  ## [1.0.0] - 2026-02-01
11
38
 
12
39
  ### Changed
@@ -89,7 +116,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
89
116
  - Platform detection for Windows, Linux, macOS
90
117
  - Basic TUI framework with Ink
91
118
 
92
- [Unreleased]: https://github.com/land-of-oz/valheim-dsm/compare/v1.0.0...HEAD
119
+ [Unreleased]: https://github.com/land-of-oz/valheim-dsm/compare/v1.0.9...HEAD
120
+ [1.0.9]: https://github.com/land-of-oz/valheim-dsm/compare/v1.0.8...v1.0.9
121
+ [1.0.8]: https://github.com/land-of-oz/valheim-dsm/compare/v1.0.7...v1.0.8
122
+ [1.0.7]: https://github.com/land-of-oz/valheim-dsm/compare/v1.0.0...v1.0.7
93
123
  [1.0.0]: https://github.com/land-of-oz/valheim-dsm/compare/v0.4.0...v1.0.0
94
124
  [0.4.0]: https://github.com/land-of-oz/valheim-dsm/compare/v0.3.0...v0.4.0
95
125
  [0.3.0]: https://github.com/land-of-oz/valheim-dsm/compare/v0.2.0...v0.3.0
package/README.md CHANGED
@@ -126,7 +126,7 @@ via Ink. Motion is created using ASCII Motion.
126
126
  > ASCII header anchors the top of the screen, followed by a responsive layout
127
127
  > that separates active management from passive monitoring. Where possible, the
128
128
  > system uses Ink to display data (realtime active react components). There is a
129
- > real-time log feed with color-coded event markers. ![oz-dsm-valheim](image-1.png)
129
+ > real-time log feed with color-coded event markers. ![tui](image-2.png)
130
130
 
131
131
  ---
132
132
 
@@ -238,11 +238,11 @@ land-of-oz-dsm-valheim/
238
238
 
239
239
  The command-line interface provides direct access to all DSM functionality:
240
240
 
241
- - `oz-valheim start` - Start the server (with optional `--tui` flag)
242
- - `oz-valheim stop` - Gracefully stop the server
243
- - `oz-valheim install` - Install/update Valheim via SteamCMD
244
- - `oz-valheim config` - View/edit configuration
245
- - `oz-valheim tui` - Launch the full TUI experience
241
+ - `valheim-dsm start` - Start the server (with optional `--tui` flag)
242
+ - `valheim-dsm stop` - Gracefully stop the server
243
+ - `valheim-dsm install` - Install/update Valheim via SteamCMD
244
+ - `valheim-dsm config` - View/edit configuration
245
+ - `valheim-dsm tui` - Launch the full TUI experience
246
246
 
247
247
  #### 2. TUI (`src/tui/`)
248
248
 
@@ -356,11 +356,11 @@ The DSM exposes all Valheim dedicated server settings through the TUI:
356
356
 
357
357
  ### Platform Support
358
358
 
359
- | Platform | SteamCMD Path | Valheim Install | Config Storage |
360
- | -------- | ---------------------------------------- | ------------------------------------------- | ------------------------------------------ |
361
- | Windows | `%LOCALAPPDATA%\steamcmd` | `steamapps\common\Valheim dedicated server` | `%APPDATA%\oz-valheim` |
362
- | macOS | `~/Library/Application Support/steamcmd` | `steamapps/common/Valheim dedicated server` | `~/Library/Application Support/oz-valheim` |
363
- | Linux | `~/.local/share/steamcmd` | `steamapps/common/Valheim dedicated server` | `~/.config/oz-valheim` |
359
+ | Platform | SteamCMD Path | Valheim Install | Config Storage |
360
+ | -------- | ---------------------------------------- | ------------------------------------------- | --------------------------------------------- |
361
+ | Windows | `%LOCALAPPDATA%\steamcmd` | `steamapps\common\Valheim dedicated server` | `%APPDATA%\valheim-dsm` |
362
+ | macOS | `~/Library/Application Support/steamcmd` | `steamapps/common/Valheim dedicated server` | `~/Library/Application Support/valheim-dsm` |
363
+ | Linux | `~/.local/share/steamcmd` | `steamapps/common/Valheim dedicated server` | `~/.config/valheim-dsm` |
364
364
 
365
365
  ### Development
366
366