diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2024-06-20 23:16:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 23:16:29 +0200 |
commit | bb4fd73c317cc88beb5e58c1abf52138abed107f (patch) | |
tree | 35b774efc97d820a908424a5bc2452e0d6bf12a8 /docs/topics/CHANGELOG.md.html | |
parent | c1a64c1b75f97cef97965b3bd9a941564a6270bd (diff) | |
download | luasystem-0.4.0.tar.gz luasystem-0.4.0.tar.bz2 luasystem-0.4.0.zip |
Release v0.4.0 (#24)v0.4.0
Diffstat (limited to 'docs/topics/CHANGELOG.md.html')
-rw-r--r-- | docs/topics/CHANGELOG.md.html | 55 |
1 files changed, 46 insertions, 9 deletions
diff --git a/docs/topics/CHANGELOG.md.html b/docs/topics/CHANGELOG.md.html index 4e656c7..da8ddde 100644 --- a/docs/topics/CHANGELOG.md.html +++ b/docs/topics/CHANGELOG.md.html | |||
@@ -27,6 +27,10 @@ | |||
27 | <h1>Lua-System</h1> | 27 | <h1>Lua-System</h1> |
28 | 28 | ||
29 | 29 | ||
30 | <ul> | ||
31 | <li><a href="../index.html">Index</a></li> | ||
32 | </ul> | ||
33 | |||
30 | <h2>Contents</h2> | 34 | <h2>Contents</h2> |
31 | <ul> | 35 | <ul> |
32 | <li><a href="#Versioning">Versioning </a></li> | 36 | <li><a href="#Versioning">Versioning </a></li> |
@@ -37,12 +41,29 @@ | |||
37 | <h2>Topics</h2> | 41 | <h2>Topics</h2> |
38 | <ul class=""> | 42 | <ul class=""> |
39 | <li><a href="../topics/01-introduction.md.html">1. Introduction</a></li> | 43 | <li><a href="../topics/01-introduction.md.html">1. Introduction</a></li> |
44 | <li><a href="../topics/02-development.md.html">2. Development</a></li> | ||
45 | <li><a href="../topics/03-terminal.md.html">3. Terminal functionality</a></li> | ||
40 | <li><strong>CHANGELOG</strong></li> | 46 | <li><strong>CHANGELOG</strong></li> |
41 | <li><a href="../topics/LICENSE.md.html">MIT License</a></li> | 47 | <li><a href="../topics/LICENSE.md.html">MIT License</a></li> |
42 | </ul> | 48 | </ul> |
43 | <h2>Modules</h2> | 49 | <h2>Modules</h2> |
44 | <ul class="nowrap"> | 50 | <ul class="nowrap"> |
45 | <li><a href="../index.html">system</a></li> | 51 | <li><a href="../modules/system.html">system</a></li> |
52 | </ul> | ||
53 | <h2>Classes</h2> | ||
54 | <ul class="nowrap"> | ||
55 | <li><a href="../classes/bitflags.html">bitflags</a></li> | ||
56 | </ul> | ||
57 | <h2>Examples</h2> | ||
58 | <ul class="nowrap"> | ||
59 | <li><a href="../examples/compat.lua.html">compat.lua</a></li> | ||
60 | <li><a href="../examples/flag_debugging.lua.html">flag_debugging.lua</a></li> | ||
61 | <li><a href="../examples/password_input.lua.html">password_input.lua</a></li> | ||
62 | <li><a href="../examples/read.lua.html">read.lua</a></li> | ||
63 | <li><a href="../examples/readline.lua.html">readline.lua</a></li> | ||
64 | <li><a href="../examples/spinner.lua.html">spinner.lua</a></li> | ||
65 | <li><a href="../examples/spiral_snake.lua.html">spiral_snake.lua</a></li> | ||
66 | <li><a href="../examples/terminalsize.lua.html">terminalsize.lua</a></li> | ||
46 | </ul> | 67 | </ul> |
47 | 68 | ||
48 | </div> | 69 | </div> |
@@ -86,15 +107,31 @@ | |||
86 | <p><a name="Version_history"></a></p> | 107 | <p><a name="Version_history"></a></p> |
87 | <h2>Version history</h2> | 108 | <h2>Version history</h2> |
88 | 109 | ||
110 | <h3>Version 0.4.0, released 20-Jun-2024</h3> | ||
111 | |||
112 | <ul> | ||
113 | <li>Feat: <code>getconsoleflags</code> and <code>setconsoleflags</code> for getting/setting the current console configuration flags on Windows</li> | ||
114 | <li>Feat: <code>getconsolecp</code> and <code>setconsolecp</code> for getting/setting the console codepage on Windows</li> | ||
115 | <li>Feat: <code>getconsoleoutputcp</code> and <code>setconsoleoutputcp</code> for getting/setting the console output codepage on Windows</li> | ||
116 | <li>Feat: <code>tcgetattr</code> and <code>tcsetattr</code> for getting/setting the current console configuration flags on Posix</li> | ||
117 | <li>Feat: <code>getnonblock</code> and <code>setnonblock</code> for getting/setting the non-blocking flag on Posix</li> | ||
118 | <li>Feat: <a href="../classes/bitflags.html#">bitflags</a>: a support feature for the above flag type controls to facilitate bit manipulation without resorting to binary operations (to also support PuC Lua 5.1)</li> | ||
119 | <li>Feat: <code>readkey</code> reads a keyboard input from <code>stdin</code> in a non-blocking way (utf8, also on Windows)</li> | ||
120 | <li>Feat: <code>readansi</code> reads a keyboard input from <code>stdin</code> in a non-blocking way, parses ansi and utf8 sequences</li> | ||
121 | <li>Feat: <code>termsize</code> gets the current terminal size in rows and columns</li> | ||
122 | <li>Feat: <code>utf8cwidth</code> and <code>utf8swidth</code> for getting the display width (in columns) of respectively a single utf8 character, or a utf8 string</li> | ||
123 | <li>Feat: helpers; <code>termbackup</code>, <code>termrestore</code>, <code>autotermrestore</code>, and <code>termwrap</code> for managing the many terminal settings on all platforms.</li> | ||
124 | </ul> | ||
125 | |||
89 | <h3>Version 0.3.0, released 15-Dec-2023</h3> | 126 | <h3>Version 0.3.0, released 15-Dec-2023</h3> |
90 | 127 | ||
91 | <ul> | 128 | <ul> |
92 | <li>Feat: on Windows <a href="../index.html#sleep">sleep</a> now has a precision parameter</li> | 129 | <li>Feat: on Windows <code>sleep</code> now has a precision parameter</li> |
93 | <li>Feat: <a href="../index.html#setenv">setenv</a> added to set environment variables.</li> | 130 | <li>Feat: <code>setenv</code> added to set environment variables.</li> |
94 | <li>Feat: <a href="../index.html#getenvs">getenvs</a> added to list environment variables.</li> | 131 | <li>Feat: <code>getenvs</code> added to list environment variables.</li> |
95 | <li>Feat: <a href="../index.html#getenv">getenv</a> added to get environment variable previously set (Windows).</li> | 132 | <li>Feat: <code>getenv</code> added to get environment variable previously set (Windows).</li> |
96 | <li>Feat: <a href="../index.html#random">random</a> added to return high-quality random bytes</li> | 133 | <li>Feat: <code>random</code> added to return high-quality random bytes</li> |
97 | <li>Feat: <a href="../index.html#isatty">isatty</a> added to check if a file-handle is a tty</li> | 134 | <li>Feat: <code>isatty</code> added to check if a file-handle is a tty</li> |
98 | </ul> | 135 | </ul> |
99 | 136 | ||
100 | <h3>Version 0.2.1, released 02-Oct-2016</h3> | 137 | <h3>Version 0.2.1, released 02-Oct-2016</h3> |
@@ -113,8 +150,8 @@ | |||
113 | </div> <!-- id="content" --> | 150 | </div> <!-- id="content" --> |
114 | </div> <!-- id="main" --> | 151 | </div> <!-- id="main" --> |
115 | <div id="about"> | 152 | <div id="about"> |
116 | <i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i> | 153 | <i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i> |
117 | <i style="float:right;">Last updated 2023-12-15 13:15:09 </i> | 154 | <i style="float:right;">Last updated 2024-06-20 23:11:37 </i> |
118 | </div> <!-- id="about" --> | 155 | </div> <!-- id="about" --> |
119 | </div> <!-- id="container" --> | 156 | </div> <!-- id="container" --> |
120 | </body> | 157 | </body> |