Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6011fb347d | ||
|
|
331c5c59e2 | ||
|
|
b3afb2b7d2 |
@@ -4,7 +4,7 @@
|
|||||||
<AssemblyTitle>AltGen.Console</AssemblyTitle>
|
<AssemblyTitle>AltGen.Console</AssemblyTitle>
|
||||||
<Product>AltGen.Console</Product>
|
<Product>AltGen.Console</Product>
|
||||||
<Description>A command-line interface for AltGen</Description>
|
<Description>A command-line interface for AltGen</Description>
|
||||||
<Version>0.0.0</Version>
|
<Version>0.0.1</Version>
|
||||||
<Authors>Stevan Freeborn</Authors>
|
<Authors>Stevan Freeborn</Authors>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<PublishSingleFile>true</PublishSingleFile>
|
<PublishSingleFile>true</PublishSingleFile>
|
||||||
|
|||||||
@@ -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.
|
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>
|
<a name="0.0.0"></a>
|
||||||
## [0.0.0](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.0) (2025-03-29)
|
## [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()
|
public bool AppSettingsExist()
|
||||||
{
|
{
|
||||||
return _fileSystem.Path.Exists(SettingsFileName);
|
return _fileSystem.Path.Exists(GetSettingsPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<AppSettings> GetAppSettingsAsync()
|
public async Task<AppSettings> GetAppSettingsAsync()
|
||||||
|
|||||||
Reference in New Issue
Block a user