Update to 1.3.1
This commit is contained in:
parent
15b916a52a
commit
bcd9fd6e2f
@ -15,4 +15,8 @@
|
|||||||
<Compile Remove="obj\**\*.AssemblyAttributes.cs" />
|
<Compile Remove="obj\**\*.AssemblyAttributes.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="src\bin\Release\net9.0\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
@ -161,7 +161,7 @@ public static class COGWHEEL
|
|||||||
{
|
{
|
||||||
foreach (var command in _commandsManager.Commands)
|
foreach (var command in _commandsManager.Commands)
|
||||||
{
|
{
|
||||||
Write($"{_commandsManager.GetCommandUsage(command.Value)}");
|
Log($"{_commandsManager.GetCommandUsage(command.Value)}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -229,7 +229,7 @@ public static class COGWHEEL
|
|||||||
Log("Available registered objects:");
|
Log("Available registered objects:");
|
||||||
foreach (var (guid, obj) in filteredObjects)
|
foreach (var (guid, obj) in filteredObjects)
|
||||||
{
|
{
|
||||||
Write($"- {obj.GetType().FullName} : {guid}");
|
Log($"- {obj.GetType().FullName} : {guid}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||||||
|
|
||||||
<Version>1.3.0</Version>
|
<Version>1.3.1</Version>
|
||||||
<Authors>Chris Bell</Authors>
|
<Authors>Chris Bell</Authors>
|
||||||
<Company>Bellsworne Tech</Company>
|
<Company>Bellsworne Tech</Company>
|
||||||
<Description>A suite of development tools for games</Description>
|
<Description>A suite of development tools for games</Description>
|
||||||
|
@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.3.1] - 2025-02-15
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed COGWHEEL default commands to use Log instead of Write, since Log should cause a new line where Write should not.
|
||||||
|
- Fixed ICogwheelConsole Write and Log documentation to reflect the correct behavior of the methods.
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
## [1.3.0] - 2025-01-02
|
## [1.3.0] - 2025-01-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -27,7 +27,7 @@ public interface ICogwheelConsole
|
|||||||
public void Initialize(CommandsManager commandsManager);
|
public void Initialize(CommandsManager commandsManager);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Logs a message to the console.
|
/// Logs a message to the console (Will cause a new line).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="message">The message to log.</param>
|
/// <param name="message">The message to log.</param>
|
||||||
public void Log(string message);
|
public void Log(string message);
|
||||||
@ -45,7 +45,7 @@ public interface ICogwheelConsole
|
|||||||
public void LogWarning(string message);
|
public void LogWarning(string message);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Writes a message to the console.
|
/// Writes a message to the console (Will not cause a new line).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="message">The message to write.</param>
|
/// <param name="message">The message to write.</param>
|
||||||
public void Write(string message);
|
public void Write(string message);
|
||||||
|
Loading…
Reference in New Issue
Block a user