]> git.xonotic.org Git - xonotic/gmqcc.git/blob - CHANGES
fixing CHANGES: this actually was not part of 0.2
[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         - enum support: without enum-types
18           (ie no `typedef enum { } foo;`)
19         - Accessing vector components via the dot operator on all
20           expressions. Eg: (3 * v).y
21     * Compilation:
22         - Various optimizations and progs-size reductions.
23         - A new spell-checking algorithm tries to hint you at existing
24           variables on error.
25     * qcvm:
26         - Improved commandline argument handling.
27         - More builtins: sqrt(), normalize()
28     * Commandline:
29         - Support for making individual warnings an error
30         - via -Werror-<warning>
31         - added --add-info
32     * Testsuite:
33         - Support for QCFLAGS to run tests with several additional
34           flags.
35
36 2012-12-27 Hotfix v0.2.2
37     * Liferanges
38     * Crashes
39
40 2012-12-23 Hotfix v0.2.1
41     * General bugfixes
42
43 2012-12-23 Release 0.2
44     * Preprocessor:
45         - Added xonotic compatible preprocessor.
46     * Language
47         - Basic xonotic compatibility
48         - Array support
49         - Added fteqcc's string escape sequences.
50         - Support for `noref`.
51         - Support for `goto` with labels like in fteqcc.
52         - `break` and `continue`.
53         - Short circuit logic.
54         - Support for translatable strings via _("str") like in
55           fteqcc.
56     * Compilation
57         - Warnings about uninitialized values
58
59 2012-11-17 Release 0.1
60     * Compiles id1 code