Merge branch 'main' into stevanfreeborn/feat/add-web-app

This commit is contained in:
Stevan Freeborn
2025-04-06 21:26:21 -05:00
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<AssemblyTitle>AltGen.Console</AssemblyTitle>
<Product>AltGen.Console</Product>
<Description>A command-line interface for AltGen</Description>
<Version>0.0.0</Version>
<Version>0.0.1</Version>
<Authors>Stevan Freeborn</Authors>
<OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
+7
View File
@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.
<a name="0.0.1"></a>
## [0.0.1](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.1) (2025-04-05)
### Bug Fixes
* use GetSettingsPath when checking if settings exists ([b3afb2b](https://www.github.com/StevanFreeborn/alt-gen/commit/b3afb2b7d2a3582f4f303ba7fa7dca093a144725))
<a name="0.0.0"></a>
## [0.0.0](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.0) (2025-03-29)
@@ -7,7 +7,7 @@ class AppSettingsManager(IFileSystem fileSystem) : IAppSettingsManager
public bool AppSettingsExist()
{
return _fileSystem.Path.Exists(SettingsFileName);
return _fileSystem.Path.Exists(GetSettingsPath());
}
public async Task<AppSettings> GetAppSettingsAsync()