You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Quality Control Improvements for Update v0.9.0:
- QC: Improved formatting and representation of different units in the converter commands.
- QC: Fixed issue where in the Horsepower to Kilowatts converter, the inputted horsepower value would be the same as the outputted kilowatts value.
- QC: In a couple of converters in the Converter command, an issue was fixed where inputted values would be converted to whole numbers instead of being accepted as a floating-point number. Fixed by using NumInputld() instead of NumInputll().
- QC: Fixed an issue in the RandNum command, where when the -f argument is specified, a whole number is still calculated instead of a floating-point.
- QC: Improved formatting of the help page of the Title command.
- QC: Changed max character limit from 256 characters to 254 characters in the Title command, to comply with the Window Title ANSI Escape Sequence limit.
- QC: Fixed a bug where supplying no data string arguments to a ToFile-enabled command would cause UB across the entire program.
- QC: When the ToFile feature is enabled, the std::cerr stream will redirect to the set file now, along with std::cout.
std::cout << wordWrap("\n- This command allows you to set the title of this window, which is the window running ZeeTerminal.\n- The title can only be a maximum of 256 characters.\n\n");
221
+
std::cout << wordWrap("\n- This command allows you to set the title of this window, which is the window running ZeeTerminal.\n- The title can only be a maximum of 254 characters.\n\n");
222
222
223
223
colourSubheading();
224
224
std::cout << "Possible arguments for this command:" << NOULINE_STR;
std::cout << wordWrap("\n -h\tDisplays this help message.\n <title>\tThe title to set. Put the title in place of <title>.\n\nExample: title \"Test Title\"\n\nNOTE: If the title contains spaces, use quotes like the example.\n\n");
226
+
std::cout << wordWrap("\n -h\t\tDisplays this help message.\n <title>\tThe title to set. Put the title in place of <title>.\n\nExample: title \"Test Title\"\n\nNOTE: If the title contains spaces, use quotes like the example.\n\n");
0 commit comments