diff --git a/README.md b/README.md index 8b3568f..1976792 100644 --- a/README.md +++ b/README.md @@ -6,27 +6,28 @@ S2PK, or Sims 2 Package Manager, aims to provide a simple cross-platform solutio While The Sims 2 runs well on Linux through Wine, especially with Lutris setups, and natively from macOS, only the Windows community had varies mod managers and installers compared to their cross-platform counterparts. Later installments addressed this dilemma, but TS2 never got that treatment. -``s2pk`` aims to fill this gap: a no-nonsense CLI utility for packaging, sharing, and managing mods across all platforms. It’s small, clean, and plays nicely with scripts, backups, and version control. In theory, it would be possible to use it on legacy front ends. +`s2pk` aims to fill this gap: a no-nonsense CLI utility for packaging, sharing, and managing mods across all platforms. It’s small, clean, and plays nicely with scripts, backups, and version control. In theory, it would be possible to use it on legacy front ends. ## πŸš€ Features - First-class CLI support for modders on non-Windows platforms - Custom default unpacking directory for The Sims 2 & 3 -- Pack ``.packages`` into portable ``.s2pk`` archives +- Pack `.packages` into portable `.s2pk` archives ## πŸ›£οΈ Project Roadmap | Phase | Goal | Status | | ----- | ------------------------------------------- | ------ | -| v0.1 | Core package manager | βœ… | -| v0.2 | Config file with default destination | πŸ”œ | +| v0.1 | Core package manager | βœ… | +| v0.2 | Config file with default paths | βœ… | +| v0.3 | Sims 3 support with `s3pk` extention | πŸ”œ | | v0.x | Target .NET 10 | πŸ”œ | | v1.0 | Stable "Release" version with documentation | πŸ”œ | ## 🎯 Stretch Goals - [ ] Manifest validation -- [ ] ``s1pk`` soft fork +- [ ] `s1pk` soft fork ## 🧩 Tech Stack @@ -43,13 +44,13 @@ While The Sims 2 runs well on Linux through Wine, especially with Lutris setups, ## πŸ› οΈ Installation -You can build yourself with ``make``, or use the installer script: +You can build yourself with `make`, or use the installer script: ```shell ./install.sh ./dist/s2pk-linux/s2pkg ``` -Make sure ``~/.local/bin`` is in your ``PATH``: +Make sure `~/.local/bin` is in your `PATH`: ```shell echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc diff --git a/S2PK.csproj b/S2PK.csproj index 4747aeb..9adff19 100644 --- a/S2PK.csproj +++ b/S2PK.csproj @@ -3,7 +3,7 @@ Exe net8.0 - 0.2.101 + 0.3.101 enable enable Tony Bark