]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - CHANGES
correction fix: don't try to create edits for an empty string
[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     * Testsuite:
32         - Support for QCFLAGS to run tests with several additional
33           flags.
34
35 2012-12-27 Hotfix v0.2.2
36     * Liferanges
37     * Crashes
38
39 2012-12-23 Hotfix v0.2.1
40     * General bugfixes
41
42 2012-12-23 Release 0.2
43     * Preprocessor:
44         - Added xonotic compatible preprocessor.
45     * Language
46         - Basic xonotic compatibility
47         - Array support
48         - Added fteqcc's string escape sequences.
49         - Support for `noref`.
50         - Support for `goto` with labels like in fteqcc.
51         - `break` and `continue`.
52         - Short circuit logic.
53         - `noreturn` keyword.
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