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