summaryrefslogtreecommitdiff
path: root/util
Commit message (Collapse)AuthorAge
* CI: Add memleak checking using valgrind (#5350)Loïc Blot2017-03-06
| | | Add a new step to check memleaks on our current unit tests suite
* Travis: Build server too for UNIXLoïc Blot2017-01-04
|
* Buildbot: Update Gettext version (#4971)sfan52016-12-29
|
* Buildbot: Update LuaJIT versionsfan52016-12-08
|
* Travis: Only trigger a compile, when C/C++ related files were touched (#4284)Tim2016-10-15
|
* Fix macosx build by disabling postgresql upgradeLoic Blot2016-10-06
|
* Travis: build matrix improvements + CPP11 buildLoic Blot2016-10-06
|
* Update library versions in buildbotsfan52016-09-21
| | | | | | | | The libraries updated in this commit were built with a set of scripts: https://gist.github.com/sfan5/780c24313c164d34634e18677683b9a3 Building new library versions or just using a different MinGW version is now way easier. This means Windows builds no longer need to use ancient library versions just because nobody knows how to build them.
* buildbot: retrieve short commit hash properlyFernando Carmona Varo2016-07-29
| | | | Instead of trying to manually parse the output of 'git show' which can be different across different git configurations, properly use the 'git rev-parse' command that is intended for this purpose.
* Implement a PostgreSQL backendLoic Blot2016-05-22
|
* Upgrade Android build to Gradle build systemShadowNinja2016-04-28
| | | | | | The old Ant build system has been deprecated for a while and new development is focused on Gradle. I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory. I left the JNI files in the root directory.
* Tweak travis scriptShadowNinja2016-03-19
| | | | Exit if cd fails and don't insert '\' in string.
* Implement OSX Travis buildsPavel Puchkin2016-02-04
|
* Update URLs for buildbot & travissfan52015-12-26
| | | | The freehoster these files were hosted on is shutting down soon-ish, they're now hosted on my VPS.
* Make travis work againest312015-12-05
| | | | | | | | Now we do sudo apt-get update to download package sources. This fixes travis build with the new GCE based infrastructure. Closes #3427. Closes #3426.
* Re-add "file" type for --add-location for xgettext callest312015-10-17
| | | | | | | | | Passing line numbers in the comments is bad. References: * Commit 94961b3364f76d5861913af321e9be6200d080b3 * Previous commit
* New settings tab contain all possible settingsPilzAdam2015-10-17
| | | | | Settings are automatically parsed from builtin/settingtypes.txt The edit dialog automatically adjust based on the type of setting
* Don't add line number to comment when running updatepo.shest312015-09-02
| | | | | | | | Otherwise, this updates all .po files for all line numbers that changed since the last time updatepo.sh was run. We still add the filename, but this information shouldn't change too often. xgettext beginning with 0.18.4 supports this feature.
* Add fgettext_ne as keyword to updatepo.shest312015-08-25
|
* Update toolchain_mingw64.cmakeRui2015-07-18
|
* Add LibGMPest312015-05-11
| | | | Uses system provided libgmp if found, if not it falls back to mini-gmp.
* Replaced libjpeg dependency on apt-get, it should be libjpeg-dev instead of ↵Megaf2015-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libjpeg8-dev. On Debian 8... ``` Package libjpeg8-dev is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However the following packages replace it: libjpeg62-turbo-dev ``` Using libjpeg-dev should make the OS select the most appropriate lib to be installed. These are the packages available on Debian 8. ``` libjpeg-dev - Development files for the JPEG library [dummy package] libjpeg-turbo-progs - Programs for manipulating JPEG files libjpeg-turbo-progs-dbg - Programs for manipulating JPEG files (debugging symbols) libjpeg62-turbo - libjpeg-turbo JPEG runtime library libjpeg62-turbo-dbg - Debugging symbols for the libjpeg-turbo JPEG library libjpeg62-turbo-dev - Development files for the libjpeg-turbo JPEG library libturbojpeg1 - TurboJPEG runtime library - SIMD optimized libturbojpeg1-dbg - TurboJPEG runtime library - SIMD optimized (debugging symbols) libturbojpeg1-dev - Development files for the TurboJPEG library ``` This seems to work on all current Debian versions, Wheezy, Jessie and Sid. https://packages.debian.org/wheezy/libjpeg-dev https://packages.debian.org/jessie/libjpeg-dev https://packages.debian.org/stretch/libjpeg-dev Im not sure if Ubuntu has this dummy package. http://packages.ubuntu.com/search?keywords=libjpeg-dev Perhaps this should be further discussed. libjpeg8-dev -> libjpeg-dev
* Make Git version detection use VERSION_STRING instead of tagsShadowNinja2015-05-05
| | | | | | | | | | This fixes the problem where 0.4.12-dev versions were erroneously shown as 0.4.11-dev because the tag was added on a separate branch. It also fixes a similar issue when builders didn't fetch new tags when updating. This also removes the number-of-commits-since-tag field, since it's incompatible with this. Said field doesn't seem to be useful anyway if you have the commit hash.
* Clean up and tweak build systemShadowNinja2015-03-27
| | | | | | | | | | | | | | | | * Combine client and server man pages. * Update unit test options and available databases in man page. * Add `--worldname` to man page. * Fix a bunch of places where `"Minetest"` was used directly instead of `PROJECT_NAME`. * Disable server build by default on all operating systems. * Make `ENABLE_FREETYPE` not fail if FreeType isn't found. * Enable LevelDB, Redis, and FreeType detection by default. * Remove the `VERSION_PATCH_ORIG` hack. * Add option to search for and use system JSONCPP. * Remove broken LuaJIT version detection. * Rename `DISABLE_LUAJIT` to `ENABLE_LUAJIT`. * Rename `minetest_*` variables in `version.{h,cpp}` to `g_*`. * Clean up style of CMake files.
* Rename --do-unittests to --run-unittests as @Zeno- and @sfan5 requestedLoic Blot2015-02-24
|
* Unit tests must be done at integration process.Loic Blot2015-02-21
| | | | | | * Remove --enable-unittests and --disable-unittests and add --do-unittests function * --do-unittests function will exit 0 on success. * minetest and minetestserver binaries are launched with --do-unittests in travis build.
* Add LevelDB and redis to Travis Linux buildssfan52015-02-16
|
* Reduce gettext wide/narrow and string/char* conversionsShadowNinja2015-02-05
|
* Add wstrgettext to list of translation update keywordsShadowNinja2015-02-05
|
* Add SQLite3 libraries to buildbotsfan52015-01-08
|
* Fix buildbot (was broken by 04a1a446cf845a0db80d39fd0e42771aa07e4492)sfan52015-01-06
|
* Add util/bump_version.shKahrl2014-12-30
|
* Update MinGW toolchain downloads used by travissfan52014-12-23
|
* Build for win32 & win64 on Travis toosfan52014-12-06
|
* Update the cURL the buildbot uses to 7.38.0sfan52014-10-19
|
* updatepo.sh: Find all filesDiego Martínez2014-09-30
|
* Add ZLIBWAPI_DLL and LEVELDB_DLL CMake options Remove legacy MINGWM10_DLL ↵sfan52014-07-29
| | | | CMake option Update 32-bit buildbot (OpenAL updated, zlib updated) Change build directory for buildbots to '_build' to prevent removal of Android build files Use -win64 suffix for 64-bit Windows builds Fixes #1476
* Move master server to seperate repositoryShadowNinja2014-06-30
|
* Masterserver: Fix compiling servers.jstproller2014-06-30
|
* Masterserver: Fix undefined playersproller2014-06-28
|
* Update buildbot scripts and add 64-bit buildbotsfan52014-06-18
|
* Fix null string escapeproller2014-02-24
|
* Send long announce as POST, show OS in useragentproller2014-01-07
| | | | | Add lag reporting to masterserver (average dtime) StyledWriter -> FastWriter in masterserver announce
* Rename names -> can_see_far_names in announceproller2013-12-03
|
* Remove link to #, add unlimited_player_transfer_distance to announceproller2013-12-03
|
* Masterserver uptime fixproller2013-11-05
|
* Fix masterserver README.mdIlya Zhuravlev2013-11-04
|
* Masterserver fixesproller2013-11-04
|
* Masterserver show privs and js autoloadproller2013-11-04
|
* Add a "More..." link when the serverlist is filteredShadowNinja2013-11-03
|