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