]> git.xonotic.org Git - xonotic/gmqcc.git/blob - CHANGES
Adding a CHANGES file
[xonotic/gmqcc.git] / CHANGES
1 Release v0.2.4
2     * Preprocessor:
3         - __VA_ARGS__ support
4         - Predefined macros like __DATE__, __TIME__, ...
5           (check the manpage for a full list)
6         - Signed numbers as single token in the
7         - Fixes some issues with #if operations on macros.
8     * Language:
9         - Untyped `nil` keyword.
10         - Removed the `noreturn` keyword.
11         - Added generic attribute syntax and reintroduced `noreturn`
12           as [[noreturn]].
13         - Added [[deprecated]] and [[deprecated("message")]].
14         - Support for `static` variables in functions.
15         - Support for labeled loops.
16         - UTF-8 Support
17     * Compilation:
18         - Various optimizations and progs-size reductions.
19         - A new spell-checking algorithm tries to hint you at existing
20           variables on error.
21     * qcvm:
22         - Improved commandline argument handling.
23         - More builtins: sqrt(), normalize()
24     * Commandline:
25         - Support for making individual warnings an error
26         - via -Werror-<warning>
27     * Testsuite:
28         - Support for QCFLAGS to run tests with several additional
29           flags.
30
31 2012-12-27 Hotfix v0.2.2
32     * Liferanges
33     * Crashes
34
35 2012-12-23 Hotfix v0.2.1
36     * General bugfixes
37
38 2012-12-23 Release 0.2
39     * Preprocessor:
40         - Added xonotic compatible preprocessor.
41     * Language
42         - Basic xonotic compatibility
43         - Array support
44         - Added fteqcc's string escape sequences.
45         - Support for `noref`.
46         - Support for `goto` with labels like in fteqcc.
47         - `break` and `continue`.
48         - Short circuit logic.
49         - `noreturn` keyword.
50         - Support for translatable strings via _("str") like in
51           fteqcc.
52     * Compilation
53         - Warnings about uninitialized values
54
55 2012-11-17 Release 0.1
56     * Compiles id1 code