aboutsummaryrefslogtreecommitdiff
path: root/util
AgeCommit message (Collapse)Author
2021-03-05Translate builtin (#10693)Wuzzy
This PR is the second attempt to translate builtin. Server-sent translation files can be added to `builtin/locale/`, whereas client-side translations depend on gettext.
2021-03-01Disable clang-format, clean up scriptsrubenwardy
2021-02-23Add script that sorts contributions for use in creditssfan5
2021-02-02Handle UTF-16 correctly in Wireshark dissectorsfan5
2021-01-27Consistently use "health points" (#10868)Zughy
2021-01-20Fix Android support in bump_version.sh (#10836)rubenwardy
2020-12-23CI: fix buildsfan5
2020-11-04Add model[] formspec element (#10320)SmallJoker
Formspec element to display models, written by @kilbith, rebased and tweaked. Co-authored-by: Jean-Patrick Guerrero <jeanpatrick.guerrero@gmail.com> Co-authored-by: sfan5 <sfan5@live.de>
2020-08-04Implement override.txt support for special tiles (#10140)Hugues Ross
Add override targets for all special_tiles entries in node definitions, allowing texture packs to replace these textures. This makes overrides work properly with a variety of drawtypes. The targets are named special1 through special6, covering the the current length of the special_tiles array.
2020-07-08Make util/bump_version.sh work againsfan5
2020-06-25Release test build to Android beta programrubenwardy
2020-05-26Rename “Minimal development test” to “Development Test” (#9928)Wuzzy
2020-05-02ci: Update Github Actions workflows (#9774)sfan5
2020-04-29Add MetricsBackend with prometheus counter supportLoic Blot
2020-04-20Replace travis with github actions (#9641)Loïc Blot
* Move outside of travis to Github actions This will permit to have better integrated CI workflow than the previous travis one.
2020-04-14Update wireshark dissector (#9621)sfan5
2020-04-14Refactor texture overrides and add new features (#9600)Hugues Ross
* Refactor texture overrides, and add new features: - Texture overrides can support multiple targets in one line - Texture override files can have comment lines - Item images/wield images can be overridden * Formatting changes * Address soime feedback - Pass vectors by const reference - Log syntax errors as warnings - Remove 'C' prefix from TextureOverrideSource * Simplify override target checks with an inline helper function * make linter happy * Apply feedback suggestions Co-Authored-By: rubenwardy <rw@rubenwardy.com> * Remove remaining != 0 checks * Update copyright notice Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: rubenwardy <rw@rubenwardy.com>
2020-04-11Drop content_sao.{cpp,h}Loic Blot
Move LuaEntitySAO to a new dedicated file Drop TestSAO (useless object) Drop the old static startup initialized SAO factory, which was pretty useless. This factory was using a std::map for 2 elements, now just use a simple condition owned by ServerEnvironment, which will be lightweight, that will also drop a one time useful test on each LuaEntitySAO creation. This should reduce server load on massive SAO creation
2020-04-11Move serveractiveobject & unitsaoLoic Blot
Move serverobject.{cpp,h} to server/serveractiveobject.{cpp,h} Move UnitSAO class to dedicated files
2020-04-10Drop genericobject.{cpp,h} (#9629)Loïc Blot
* Drop genericobject.{cpp,h} This file is not for generic object but for ActiveObject message passing. Put ownership of the various commands to the right objects and cleanup the related code. * Protect ServerActiveObject::m_messages_out * typo fix
2020-04-08Travis: Build clang jobs with LuaJIT enabled for better coveragesfan5
2020-04-03Utility script to help with Weblate commit importsfan5
2020-03-28Travis: Correct Linux dependencies so that PostgreSQL is found by CMakesfan5
2020-03-20Add comments for translators (#9510)Wuzzy
* Add translator comments for "special" strings * Add translator comments for some "tricky" strings
2020-03-12Update clang-tidy configuration and scriptssfan5
2020-03-12buildbot: Update to newer MinGW gcc 9.2sfan5
2020-03-12Update travis build infrastructuresfan5
Ubuntu 14.04 -> 18.04 clang-format, clang-tidy 7 -> 8 clang 3.6 -> 3.9 clang 7 -> 9
2020-02-15Add animated_image[] formspec element (#9258)Hugues Ross
2020-02-12Update some libraries for buildbotsfan5
2020-02-01Formspec: Create a new class for inventorylists (#9287)DS
2020-01-26Add 9-slice background support to button formspec elements (#9290)Hugues Ross
2019-12-09Refactor to centralize GUIButton styling/rendering code (#9090)Hugues Ross
2019-11-11Fix clang-tidy and lint travis checkssfan5
2019-11-09Silence invalid Clang Format report (#9095)Paramat
2019-11-03Formspec: add hypertext elementPierre-Yves Rollo
2019-09-29Move Quicktune code to util/ (#8871)ANAND
2019-08-05Update curl dependency in buildbotsfan5
2019-08-03Add custom colorable GUIButton implementationrubenwardy
2019-07-31Silence invalid clang format warnings in guiScrollBar.cpp (#8724)Paramat
2019-06-21Improve buildbot scriptPierre-Yves Rollo
PR created under the employment of EvidenceBKidscode * Variables to set git repositories urls (allows to build from another repo) * Variables to set git branch to build from (allows to build from non-master branch) * Variables to change built name * Make -j uses the proper number of processors (autodetect) * Changed toolchain from win32 to adpat it to non-debian distros
2019-03-14Update our tooling (Clang 5 -> 7, GCC 7 -> 8)Loïc Blot
This change permits to use up-to-date compilers, clang-tidy and clang-format It also refactor the tidy/format step to drop the binary selection from scripts and perform it directly in travis
2019-03-07Update a few dependency versions for buildbot (#8319)sfan5
2019-02-26Revert "Revert CSM particles commit to fix particle spawner bug for 5.0.0 ↵Loïc Blot
(#8288)" This reverts commit 01cd63bd3bca0192dab2834faf414b022706a77e.
2019-02-26Revert CSM particles commit to fix particle spawner bug for 5.0.0 (#8288)Paramat
Reverts 5dab7426451842793b183fbd961ad2ae83c8acbd "[CSM] Add functions to create particles and particlespawners."
2019-02-23Attend to LINT sillyness (#8276)Paramat
2019-01-12Fix fake LINT check success (#8092)Jozef Behran
The code 'if [ -z ${something} ]; then ... fi' means "if ${something} is an empty string, yell at the command line about 'binary operator expected' and ignore the body of the if statement, if ${something} is not an empty string, the condition is false so ignore the body of the if statement" which clearly isn't what the author wanted. Fix it by adding a few quotes around the offending ${something}.
2018-12-10Fix dissector script to work with newer versions of Wireshark (#7957)meme
2018-11-28Move client-specific files to 'src/client' (#7902)Quentin Bazin
Update Android.mk Remove 'src/client' from include_directories
2018-11-26Make non-formspec modal menus respect gui scale (#7850)stujones11
2018-10-16Add release information to appdata file (#7771)Carles Pastor Badosa