Compare commits

..

No commits in common. "76ee17fb859150f6bca5e9389b43ee71b0bb0f5e" and "cfa47142acddc05c864ce8d82177971eee27334b" have entirely different histories.

5 changed files with 6 additions and 22 deletions

View File

@ -15,8 +15,4 @@
<Compile Remove="obj\**\*.AssemblyAttributes.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="src\bin\Release\net9.0\" />
</ItemGroup>
</Project>

View File

@ -161,7 +161,7 @@ public static class COGWHEEL
{
foreach (var command in _commandsManager.Commands)
{
Log($"{_commandsManager.GetCommandUsage(command.Value)}");
Write($"{_commandsManager.GetCommandUsage(command.Value)}");
}
}
@ -229,7 +229,7 @@ public static class COGWHEEL
Log("Available registered objects:");
foreach (var (guid, obj) in filteredObjects)
{
Log($"- {obj.GetType().FullName} : {guid}");
Write($"- {obj.GetType().FullName} : {guid}");
}
}

View File

@ -9,7 +9,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<Version>1.3.1</Version>
<Version>1.3.0</Version>
<Authors>Chris Bell</Authors>
<Company>Bellsworne Tech</Company>
<Description>A suite of development tools for games</Description>

View File

@ -5,19 +5,7 @@ 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/),
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-03
### Added
- Added more public CommandsManager access methods to the COGWHEEL static class

View File

@ -27,7 +27,7 @@ public interface ICogwheelConsole
public void Initialize(CommandsManager commandsManager);
/// <summary>
/// Logs a message to the console (Will cause a new line).
/// Logs a message to the console.
/// </summary>
/// <param name="message">The message to log.</param>
public void Log(string message);
@ -45,7 +45,7 @@ public interface ICogwheelConsole
public void LogWarning(string message);
/// <summary>
/// Writes a message to the console (Will not cause a new line).
/// Writes a message to the console.
/// </summary>
/// <param name="message">The message to write.</param>
public void Write(string message);