zed
zed
Yes, and I said about this [a few month ago](https://github.com/Alexpux/MINGW-packages/issues/3538#issuecomment-386833534)...
You just need to add an option `-DNGHTTP2_STATIC` in place where you build a static version of libcurl.a.
I also think that it's a good idea to keep releases on GitHub.
+1 for `MZ_EXPORT` Currently dll compiled with mingw exports all symbols by default and there is a lot of "garbage" (functions from zlib etc). Adding export directive should fix this...
And one more thing: `MZ_EXPORT` should be used with all exported functions from all `mz_xxx.h` headers, not only from `mz_zip.h`.
What about to make it optional? If `EXPORT_ALL_SYMBOLS` not defined then define `MZ_EXPORT` and export only `mz_` functions.
[SpTBXLib](https://github.com/SilverpointDev/sptbxlib) (or [this](https://github.com/pyscripter/SpTBXLib) PyScripter's fork) is the same as TBX with additional dark themes and high dpi support.
Мысли вслух: SQLite - встраиваемая БД и работать с ней весьма просто. Единственная сложность которая может возникнуть - придумать оптимальную схему БД, но с этим, я думаю, сообщество могло бы...
[From docs to Python 2.7:](https://docs.python.org/2/library/configparser.html) `The ConfigParser module has been renamed to configparser in Python 3.`
My test code for #283 doesn't work with the new Grow implementation (test function `ThickLineByGrow` doesn't draw anything, my old `ThickLineSimple` works fine): [RepaintTest.zip](https://github.com/graphics32/graphics32/files/14569502/RepaintTest.zip)