Aptivi - Stable Manuals
ProjectsWebsiteBlog
Terminaux 7.0 Beta 1 - Manual
Terminaux 7.0 Beta 1 - Manual
  • Welcome!
  • Breaking changes
    • API v1.0
    • API v2.0
    • API v3.0
    • API v4.0
    • API v5.0
    • API v6.0
    • API v7.0
  • Usage
    • Preface
    • Console Tools
      • Console Checker
        • Console Size Requirements
      • Image Rendering
        • Icons
      • Console Writers
        • Individual Writers
        • Cyclic Writers
          • Geometric Shapes
          • Charts
          • Text
          • Artistic
          • Progress Bars
          • Lists and Calendars
          • Miscellaneous
        • Informational Boxes
      • Textual UI
        • Interactive TUI
        • Console Screen
        • Console Resize Listener
        • VT Sequences
      • Console Wrapper
      • Console Colors
      • Color Templates
      • Presentation System
      • Console Extensions
      • Nerd Fonts
      • Terminal Info
      • Test Fixtures
      • Terminal Structures
      • Console Logging
    • Input Reader
      • Shells
        • Shell Structure
          • Help System
          • Command Parsing
          • Command Information
          • Command Switches
          • Shell Presets
          • Command Aliasing
      • Other Input
        • Keybindings
        • Choice-based inputs
        • Editors and Viewers
        • Figlet Font Selector
        • Color Wheel
        • Spinner Selector
        • Input Modules
      • Reader State
      • Reader Settings
      • Syntax Highlighting
      • Pointer Events
    • Color Sequences
      • Color Model Conversions
      • Color Model Parsing
      • Interop with System.Drawing.Color
  • Report an issue
  • Source code
  • API Reference
Powered by GitBook
On this page
  • From 1.0.x to 1.1.x
  • Moved FigletTools
  • From 1.1.x to 1.4.x
  • Added the signing key (a.k.a. strong name)
  • Enhanced console wrapper
  • From 1.4.x to 1.6.x
  • Moved the legacy Figgle writers
  • From 1.6.x to 1.8.x
  • Conflicting write overloads reduced
  • From 1.8.x to 1.10.x
  • Replaced Color255 with deserialized colors data
Edit on GitHub
  1. Breaking changes

API v1.0

Breaking changes for API v1.0

Here is a list of breaking changes that happened during the API v1.0 period when differing versions of Terminaux introduced breaking changes.

From 1.0.x to 1.1.x

Between the 1.0.x and 1.1.x version range, we've made the following breaking changes:

Moved FigletTools

FigletTools.cs
public static class FigletTools

In preparation for the figlet font selector, we've decided to move this class from the Terminaux.Writer.FancyWriters.Tools namespace to a more appropriate place, which is Terminaux.Figlet.

We advice you to add a new usings clause in the beginning of the code file that uses FigletTools so that it points to the new namespace, like below:

using Terminaux.Figlet

From 1.1.x to 1.4.x

Between the 1.1.x and 1.4.x version range, we've made the following breaking changes:

Added the signing key (a.k.a. strong name)

Nitrocid KS launched without any signing key. Originally, it was planned to come signed by us, but it didn't work. However, we used the strong naming tool to give Nitrocid KS a unique identity to avoid dependency hell.

It's not necessary to strong name your mods, but we recommend you to do so using the strong naming utility (sn.exe) that comes with Visual Studio.

Most of the time, you don't have to do anything to your mods, since the signing key change doesn't break any API functions. If you found that your mods no longer worked, try to update to the latest version of Nitrocid, or contact the mod vendor.

Enhanced console wrapper

ConsoleWrapperTools.cs
public static class ConsoleTools

When Terminaux shipped its first version, it had a console wrapper that was exclusive to the console reader. We've decided to make this wrapper broader, causing Terminaux to ddepend on this wrapper to call the Console functions, hence increasing its flexibility.

ConsoleTools has been renamed to ConsoleWrappers, and it has been moved to the Terminaux.Base namespace.

None of the actions are affected.

From 1.4.x to 1.6.x

Between the 1.4.x and 1.6.x version range, we've made the following breaking changes:

Moved the legacy Figgle writers

*Legacy.cs
public static class CenteredFigletTextColorLegacy
public static class FigletColorLegacy
public static class FigletWhereColorLegacy

Since Figletize was made to improve the Figgle library as a fork, we've decided to move all Figgle-based figlet writers to Terminaux's separate library for Figgle-related writers and tools.

If possible, merge to Figletize and use the new figlet functions to achieve more performance. If you still prefer Figgle, you can use the above classes. However, they've been moved to the below namespace:

  • Terminaux.Figgle.Writers

From 1.6.x to 1.8.x

Between the 1.6.x and 1.8.x version range, we've made the following breaking changes:

Conflicting write overloads reduced

TextWriterColor.cs and all similar writers
public static void Write(string Text, bool Line, ConsoleColors color, params object[] vars)
public static void Write(string Text, bool Line, bool Highlight, ConsoleColors color, params object[] vars)
public static void Write(string Text, bool Line, ConsoleColors ForegroundColor, ConsoleColors BackgroundColor, params object[] vars)
public static void Write(string Text, bool Line, bool Highlight, ConsoleColors ForegroundColor, ConsoleColors BackgroundColor, params object[] vars)
public static void Write(string Text, bool Line, Color color, params object[] vars)
public static void Write(string Text, bool Line, bool Highlight, Color color, params object[] vars)
public static void Write(string Text, bool Line, Color ForegroundColor, Color BackgroundColor, params object[] vars)
public static void Write(string Text, bool Line, bool Highlight, Color ForegroundColor, Color BackgroundColor, params object[] vars)

Ever since Terminaux was released to the public, the Color class had an implicit operator which would take either an integer, a string, or a ConsoleColors value and create a new Color class based on these values. This caused us to have to fix every function call that contain strings as their first parameters, since they were mistaken for creating a new color, causing graphical artifacts.

We've recommended mod developers who suffer from this ambiguity issue append a vars: prefix in its appropriate place and write new object[] { args }, but this is a big overhead.

So, we've decided to rename function names that take colors to these variants:

  • Write(): for plain writing in default colors

  • WriteColor(): for writing with custom foreground colors

  • WriteColorBack(): for writing with custom foreground and background colors

You no longer need to override the vars value using the above method. Instead, you can replace these calls with one of the above functions, based on the color type.

From 1.8.x to 1.10.x

Between the 1.8.x and 1.10.x version range, we've made the following breaking changes:

Replaced Color255 with deserialized colors data

Color255.cs
public static class Color255

Color255 used to host a single variable containing the 256 console colors and their information in a single object class. However, the way it was implemented was more complicated and uses the JSON LINQ feature, which is complex.

As a result, we've decided to reduce complexity by removing the ColorDataJson variable from the class, ultimately resulting in the removal of this entire class.

The list of all 256 console colors and their info can be accessed using the GetColorData() function from the ConsoleColorData class.