Compare commits
No commits in common. "76ee17fb859150f6bca5e9389b43ee71b0bb0f5e" and "cfa47142acddc05c864ce8d82177971eee27334b" have entirely different histories.
76ee17fb85
...
cfa47142ac
@ -15,8 +15,4 @@
|
|||||||
<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)
|
||||||
{
|
{
|
||||||
Log($"{_commandsManager.GetCommandUsage(command.Value)}");
|
Write($"{_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)
|
||||||
{
|
{
|
||||||
Log($"- {obj.GetType().FullName} : {guid}");
|
Write($"- {obj.GetType().FullName} : {guid}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||||||
|
|
||||||
<Version>1.3.1</Version>
|
<Version>1.3.0</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,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/),
|
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
|
## [1.3.0] - 2025-01-03
|
||||||
|
|
||||||
### 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
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Added more public CommandsManager access methods to the COGWHEEL static class
|
- Added more public CommandsManager access methods to the COGWHEEL static class
|
||||||
|
|||||||
@ -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 (Will cause a new line).
|
/// Logs a message to the console.
|
||||||
/// </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 (Will not cause a new line).
|
/// Writes a message to the console.
|
||||||
/// </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