Upgrading to API v2.1 series
Follow the compatibility notes when upgrading your mods to API v2.1 series
Last updated
Follow the compatibility notes when upgrading your mods to API v2.1 series
Last updated
When upgrading your modification from the target of the later version of Nitrocid KS that declares itself to be from the API v2.1, you must make necessary changes to be able to use your mod in a Nitrocid KS version which you use to test your mod.
The following changes were listed sequentially as development went on.
This version was released to make groundbreaking additions and improvements.
ICustomSaver
Custom screensavers used to implement the ICustomSaver
interface to implement the screensaver logic. Now, it has been removed in favor of the new screensaver class implementing the newer IScreensaver
interface, BaseScreensaver
.
This breaks all the existing screensavers that still use the old ICustomSaver
interface. This has also resulted in the removal of the Custom()
function and reimplementation as ParseCustomSaver
.
PerformCmd()
CommandBase.Execute()
was implemented to replace the above function, so we decided to remove the function as it only supported one command at a time, and you had to make a switch case statement for each command executed.
Filesystem module was a god class, so we decided to consolidate it to their own separate files to accomodate with the upcoming changes. However, you need to use their own namespace (for example, if you want to copy a file, import KS.Files.Operations
) to be able to use them.
We have also removed SetSizeParseMode()
as it's redundant and it was there for compatibility reasons.
Removed functions:
SetSizeParseMode()
New namespaces:
KS.Files.Attributes
KS.Files.Folders
KS.Files.LineEndings
KS.Files.Operations
KS.Files.PathLookup
KS.Files.Print
KS.Files.Querying
KS.Files.Read
ConsoleColors
enumerationThis enumeration used to hold all the 255 console colors and their names for easier selection. It was just separated from the Color255
module to put it directly to the KS.ConsoleBase
namespace
KS.Misc.Dictionary
to substitute with DictifyAs Dictify got released, we decided to remove these functions and use them from the library.
We have moved the below APIs to the below namespaces as they keep getting expanded:
Network transfer APIs -> KS.Network.Transfer
Color console APIs -> KS.ConsoleBase.Themes
Input console APIs -> KS.ConsoleBase.Inputs
SplashInfo
These four progress position variables were used to indicate where the splash manager should write the progress percentage and progress report. Splashes are now responsible for these.
CommandPromptWrite()
CommandPromptWrite()
used to be the helper for UESH to write its own prompt, but it's eventually replaced by the more powerful WriteShellPrompt()
to accommodate all possible cases, like custom variables, and so on.
ShellBase
namespacesThe shell base has been divided to three types:
Aliases (namespace: KS.Shell.ShellBase.Aliases
)
Commands (namespace: KS.Shell.ShellBase.Commands
)
Shells (namespace: KS.Shell.ShellBase.Shells
)
We didn't want to cause confusion between ProgressColor
in the FancyWriters
namespace and the actual ProgressColor
in the ColorTools
module, so we decided to extend the name of the progress bar writer module to ProgressBarColor
.