CARGO_FEATURE_LINK_TEST_LIBRARIES
is set but DDNET_TEST_LIBRARIES
isn't. Maybe there is another solution that keeps the panick if its intended, but i don't know why yet, maybe the libraries aren't needed in the context of rust-analyzer since it only analyzes code, not run tests.
-DMYSQL=[ON|OFF]
Whether to enable MySQL/MariaDB support for server. Requires at least MySQL 8.0 or MariaDB 10.2. Setting to ON requires the libmariadbclient-dev library installed, which are also provided as bundled libraries for the common platforms. Default value is OFF.
to:
-DMYSQL=[ON|OFF]
Whether to enable MySQL/MariaDB support for server. Requires at least MySQL 8.0 or MariaDB 10.2. Setting to ON requires the libmariadb-dev library installed, which are also provided as bundled libraries for the common platforms. Default value is OFF.
the difference is libmariadbclient-dev replaced with libmariadb-devlibmariadbclient-dev
just has been removed completely as it become obsolete by libmariadbtwmap
: 0.9.0 contained a rather big bug where the Layer::shape
function had x and y mixed up. that is fixed, alongside its uses (somehow I managed to use it the correct wrong way multiple times).
apart from the fixes there should not be any breaking changes with 0.9.1, but some nice additions from @Ryozuki
twmap-tools
: twmap-edit
wasn't working properly because of the mentioned bug, everything should work again
twmap-py
: the to_mesh
method on tiles layers now works again, it was broken for a while (also the release was necessary to fix the mentioned bug)
twmap-blender
: the add-on now automatically downloads the twmap python module with pip, if it isn't installed (release: https://gitlab.com/Patiga/twmap-blender/-/releases/v0.3.0)cd ~/twmap/twmap-tools && git pull && cargo install --path=. twmap-tools && ls -lha ~/.cargo/bin/twmap*