From 6a0e75d614aad381ad9187f2425ac77056d56962 Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Wed, 30 Apr 2025 07:14:31 -0400 Subject: [PATCH] Footnote in regards to major updates --- PackageManger.cs | 1 + README.md | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/PackageManger.cs b/PackageManger.cs index 53fc4a8..38d2ab5 100644 --- a/PackageManger.cs +++ b/PackageManger.cs @@ -11,6 +11,7 @@ public static class PackageManager { var dir = new DirectoryInfo(source); var file = new FileInfo(output); + if (!dir.Exists) { Console.Error.WriteLine("Source directory does not exist."); diff --git a/README.md b/README.md index 460f7a9..acb2f45 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ s2pk unpack -p ./output.s2pk -d "%USERPROFILE%\Documents\EA Games\The Sims 2\Dow | ------------ | ---------------- | ---------------------------------------- | | Minor Update | Every 3–6 months | Small enhancements, non-breaking changes | | Patch Update | As needed | Bug fixes, security updates | -| Major Update | As needed | Framework upgrades, major refactors | +| Major Update[^1] | As needed | Framework upgrades, major refactors | - Reserve months: June (Mid-Year Chill) & December (End-Year Freeze) @@ -56,6 +56,10 @@ s2pk unpack -p ./output.s2pk -d "%USERPROFILE%\Documents\EA Games\The Sims 2\Dow - Critical vulnerabilities - Framework-breaking issues +## 🔍 Footnotes + +- [^1]: At this early stage, major updates bump the minor version number. This usually involves re-targeting to the newest .NET LTS. + ## 🗒️ License I license this project under the GPL v3 license - see [LICENSE](LICENSE) for details.