aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* updated libpng to version 1.6.33 (September 28, 2017)Indah Sylvia2017-10-121-1/+1
|
* Update freetype to 2.8.1volzhs2017-10-101-1/+1
|
* Changed Mononoki font to Hack fontDaniel J. Ramirez2017-09-171-4/+4
|
* Merge pull request #11253 from djrm/pr_better_docsRémi Verschelde2017-09-141-3/+3
|\ | | | | Improved editor docs
| * Changed source font to Mononoki.Daniel J. Ramirez2017-09-141-3/+3
| |
* | Copyright: Document recastnavigationRémi Verschelde2017-09-131-2/+2
|/
* Recast integration.Saracen2017-09-041-0/+5
|
* Replace editor font to NotoSans for Latin, Arabic, Hebrew, Thaivolzhs2017-08-311-2/+10
|
* Update source code pro font to 2.030volzhs2017-08-311-0/+6
|
* Merge pull request #10148 from leezh/pcre2Rémi Verschelde2017-08-311-0/+12
|\ | | | | Replacement of internal RegEx with PCRE2
| * Replacement of internal RegEx with PCRE2Zher Huei Lee2017-08-191-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pattern and replacement matching behaviour has been changed purely due to the nature of switching to a standards-compliant library. One mistake in the previous behaviour was that named groups didn't have a number. This has been corrected. As names are actually just an alias of numbered groups, RegExMatch::get_name_dict() is now get_names() and is a dict referring to the group number it represents. Duplicate names are enabled and the with the first matching instance used. Due the lack of a suitable equivalent in PCRE2, RegExMatch::expand() was removed.
* | nanosvg: Document in COPYRIGHT.txt and thirdparty README.mdRémi Verschelde2017-08-271-0/+12
| |
* | Copyright: Add etc2comp and small fixesRémi Verschelde2017-08-271-13/+13
| |
* | zstd: Update to upstream version 1.3.1Rémi Verschelde2017-08-271-3/+4
| | | | | | | | | | | | | | It is now dual-licensed BSD-3-Clause and GPL-2.0, we use the former. The PATENTS file is no longer applicable \o/ Also add zstd to COPYRIGHT.txt
* | stb: Update to upstream stb_truetype 1.17 and stb_vorbis 1.11Rémi Verschelde2017-08-271-3/+3
| | | | | | | | | | Also fix documented OpenSSL version, it was updated to 1.0.2l in 67305d1b0a6dbcdb032d5a5a0e92122cf8f10b8d.
* | libpng: Update to upstream version 1.6.32Rémi Verschelde2017-08-271-1/+1
| | | | | | | | Fixes security vulnerability in our 1.6.31rc01 snapshot.
* | minizip: Reapply Godot-specific changes for seek supportRémi Verschelde2017-08-181-1/+2
|/ | | | I have not assessed whether they are still all relevant.
* zstd: Update to upstream version 1.3.0George Marques2017-07-221-1/+1
|
* libpng: Update to upstream version 1.6.31rc01Rémi Verschelde2017-07-221-1/+1
| | | | | Fixes various issues with 1.6.30, especially ARM build. Supersedes change in #9722.
* libpng: Update to upstream version 1.6.30Rémi Verschelde2017-07-141-1/+1
|
* Update freetype to 2.8volzhs2017-06-251-1/+1
|
* glad: Sync with upstream 0.1.14a0Rémi Verschelde2017-06-141-1/+1
|
* Merge pull request #8548 from tagcup/etc2compJuan Linietsky2017-06-131-11/+12
|\ | | | | Add ETC1/ETC2 compression support though etc2comp.
| * Add ETC1/ETC2 compression support though etc2comp.Ferenc Arn2017-05-311-11/+12
| | | | | | | | | | | | Remove rg-etc1 code. Also updated travis to use ubuntu 14.04. Fixes #8457.
* | Add zstd compression support.Ferenc Arn2017-06-081-0/+11
|/ | | | | zstd has much better compression speed and ratio, and better decompression speed than currently available methods. Also set zstd as the default compression method for Compression as well as FileAccessCompressed functions.
* opus: Update to upstream version 1.1.5Rémi Verschelde2017-05-281-1/+1
|
* openssl: Sync with upstream 1.0.2lRémi Verschelde2017-05-271-0/+1
|
* openssl: Reapply necessary UWP changes from patchRémi Verschelde2017-05-271-0/+1
|
* openssl: Document update process and delete unused filesRémi Verschelde2017-05-271-2/+24
|
* TinyEXR: Document licensing and copyrightRémi Verschelde2017-05-271-0/+15
|
* Move other lone thirdparty files to thirdparty/miscRémi Verschelde2017-04-281-1/+36
| | | | | Also move Box2D ConvexDecomposition contrib code to thirdparty/b2d_convexdecomp.
* Split thirdparty smaz.c out of compressed_translation.cppRémi Verschelde2017-04-281-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code comes from https://github.com/antirez/smaz/blob/150e125cbae2e8fd20dd332432776ce13395d4d4/smaz.c With a small modification to match Godot expectations: ``` diff --git a/thirdparty/core/smaz.c b/thirdparty/core/smaz.c index 9b1ebc2..555dfea 100644 --- a/thirdparty/core/smaz.c +++ b/thirdparty/core/smaz.c @@ -14,7 +14,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND #include <string.h> /* Our compression codebook, used for compression */ -static char *Smaz_cb[241] = { +static const char *Smaz_cb[241] = { "\002s,\266", "\003had\232\002leW", "\003on \216", "", "\001yS", "\002ma\255\002li\227", "\003or \260", "", "\002ll\230\003s t\277", "\004fromg\002mel", "", "\003its\332", "\001z\333", "\003ingF", "\001>\336", @@ -89,7 +89,7 @@ static char *Smaz_rcb[254] = { "e, ", " it", "whi", " ma", "ge", "x", "e c", "men", ".com" }; -int smaz_compress(char *in, int inlen, char *out, int outlen) { +int smaz_compress(const char *in, int inlen, char *out, int outlen) { unsigned int h1,h2,h3=0; int verblen = 0, _outlen = outlen; char verb[256], *_out = out; @@ -167,7 +167,7 @@ out: return out-_out; } -int smaz_decompress(char *in, int inlen, char *out, int outlen) { +int smaz_decompress(const char *in, int inlen, char *out, int outlen) { unsigned char *c = (unsigned char*) in; char *_out = out; int _outlen = outlen; @@ -192,7 +192,7 @@ int smaz_decompress(char *in, int inlen, char *out, int outlen) { inlen -= 2+len; } else { /* Codebook entry */ - char *s = Smaz_rcb[*c]; + const char *s = Smaz_rcb[*c]; int len = strlen(s); if (outlen < len) return _outlen+1; diff --git a/thirdparty/core/smaz.h b/thirdparty/core/smaz.h index a547d89..a9d8a33 100644 --- a/thirdparty/core/smaz.h +++ b/thirdparty/core/smaz.h @@ -14,7 +14,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND #ifndef _SMAZ_H #define _SMAZ_H -int smaz_compress(char *in, int inlen, char *out, int outlen); -int smaz_decompress(char *in, int inlen, char *out, int outlen); +int smaz_compress(const char *in, int inlen, char *out, int outlen); +int smaz_decompress(const char *in, int inlen, char *out, int outlen); #endif ```
* Move core thirdparty files to thirdparty/{minizip,misc}Rémi Verschelde2017-04-281-0/+52
|
* opus: Update to upstream version 1.1.4Rémi Verschelde2017-04-091-1/+2
|
* squish: Update to upstream version 1.15Rémi Verschelde2017-04-091-1/+1
| | | | Also fix clang-format pre-commit hook to ignore thirdparty files.
* ENet code cleanup and changes from review.Fabio Alessandrelli2017-03-241-1/+3
|
* Cleanup unused ENet files and updated thirdparty READMEFabio Alessandrelli2017-03-241-5/+8
|
* Update libwebp to 0.6.0volzhs2017-02-171-3/+3
|
* Reorder the folders in tools to prepare moving tools/editorRémi Verschelde2017-02-091-0/+14
| | | | | | | | | - `certs` and `editor_fonts` go to `thirdparty` - `dist` and `scripts` go to a new `misc` folder - `collada` and `doc` go to `tools/editor` The next step will be to rename `tools/editor` to `editor` directly, but this will be done at the right time to avoid breaking too many PRs.
* zlib: Update to upstream version 1.2.11Rémi Verschelde2017-01-161-1/+1
|
* Remove libmpcdec bundled lib, no longer usedRémi Verschelde2017-01-111-13/+0
| | | | Musepack support was removed in 857c50db70ba52723214eca4639fe230fd827864.
* opus: Update to upstream opusfile 0.8Rémi Verschelde2017-01-081-1/+1
| | | | Had missed it in the previous commit as the upstream website is outdated.
* Remove bundled glew, obsoleted by gladRémi Verschelde2017-01-061-12/+0
| | | | | Also make Haiku load the glad header for GLES3 too, though I haven't test it.
* glad: Update to upstream 0.1.13a0Rémi Verschelde2017-01-061-0/+10
| | | | Upstreams the workaround we had to use for OSX.
* opus: Update to upstream libopus 1.1.3Rémi Verschelde2017-01-051-2/+2
|
* zlib: Update to upstream 1.2.10Rémi Verschelde2017-01-051-2/+2
|
* libpng: Update to upstream 1.6.28Rémi Verschelde2017-01-051-1/+1
| | | | Fixes a NULL pointer dereference bug (CVE-2016-10087).
* Update libwebp to 0.5.2volzhs2016-12-241-1/+1
|
* WebM: Fix crash when there is no audio streamBłażej Szczygieł2016-12-011-0/+1
| | | | Sync with libsimplewebm-git: 05cfdc2
* Merge pull request #7019 from vnen/rename-winrt-uwpRémi Verschelde2016-11-061-1/+1
|\ | | | | Rename WinRT platform to UWP