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
- Code Improvement: change all comments for functions from using the word "arguments" to now using the right "parameters" word.
__New Features__
- 2 NEW COMMANDS: Converter and RandNum.
- When outputting a beep sound in the Beep and BeepSounds commands, you are now able to exit the output early by pressing the ESC key.
- A new feature called ToFile has been added! This feature allows you to stream all output of a command to a specific file. It is activated by supplying the '--tofile <file>' argument to a command. In the <file> area, embed the filepath of the file you wish to write to. This feature does not append the output to the file, but overwrites it instead. If the filepath has spaces, enclose it in quotations. During the command execution with this feature activated, no text is sent to the display (it all goes to the file). After the command is done, no more text is sent to the file, and the text goes straight back to the display.
__Changes and Bugfixes__
- Fixed a bug where in the CPUStress command, if the multi-core benchmark test was terminated, it would say that the single-core benchmark was terminated instead of the multi-core one.
- The following 6 commands: CPUStress, Stopwatch, Timer, Hacker and MemTest, are now no longer terminated by any keypress. Only the ESC keypress will terminate them.
- Tidied up code in general, resulting in small performance improvements.
- Improved word wrapping in the MemTest command.
- Improved random number generation performance.
- Improved efficiency and performance of the input parser in the command input screen.
- Improved reliability of the input parser in the command input screen.
std::cout << wordWrap("Remember, you can always stop the stress test by pressing any key while it's going.\nPress any key to begin the test, or ESC to terminate...");
236
+
std::cout << wordWrap("Remember, you can always stop the stress test by pressing the ESC key while it's going.\nPress any key to begin the test, or ESC to terminate...");
0 commit comments