aboutsummaryrefslogtreecommitdiff
path: root/src/serverlist.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change i++ to ++iDavid Jones2015-08-251-2/+2
|
* Move globals from main.cpp to more sane locationsCraig Robbins2015-04-011-1/+1
| | | | | | | | | | | | Move debug streams to log.cpp|h Move GUI-related globals to clientlauncher Move g_settings and g_settings_path to settings.cpp|h Move g_menuclouds to clouds.cpp|h Move g_profiler to profiler.cpp|h
* Clean up and tweak build systemShadowNinja2015-03-271-1/+1
| | | | | | | | | | | | | | | | * 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.
* Server: announce MIN/MAX protocol version supported to serverlist. Client: ↵est312015-02-181-2/+9
| | | | | | | check serverlist Client now informs about incompatible servers from the list, this permits to prevent the protocol movements. Server announces its supported protocol versions to master server
* Send real port to server listShadowNinja2015-01-231-1/+2
|
* Serverlist: announce mg_name from map_meta.txt instead of minetest.confKahrl2014-11-101-1/+2
|
* Replace setting unlimited_player_transfer_distance with player_transfer_distanceSmallJoker2014-11-081-1/+1
|
* Reduce indentation of HTTPFetchOngoingShadowNinja2014-09-181-12/+19
| | | | Also clean up some related things.
* Fix serverlist code style, const-correctness, and typesShadowNinja2014-06-301-71/+69
|
* Fix server list boolean typing and alignmentShadowNinja2014-06-301-30/+40
|
* Add support for multipart/form-data to HTTPFetch for server announcingShadowNinja2014-06-301-5/+2
|
* Remove ugly curl struct pointer from jsonFetchValue signaturesapier2014-06-191-1/+1
|
* Remove a lot of superfluous ifndef USE_CURL checkssapier2014-06-191-3/+0
|
* Remove liquid_finite and weatherproller2014-04-181-1/+0
|
* Fix wrong named masterserver announce variableproller2014-01-071-1/+1
|
* Send long announce as POST, show OS in useragentproller2014-01-071-8/+11
| | | | | Add lag reporting to masterserver (average dtime) StyledWriter -> FastWriter in masterserver announce
* Use httpfetch_async in serverlist announce codeKahrl2013-12-131-26/+10
|
* Rename names -> can_see_far_names in announceproller2013-12-031-1/+1
|
* Remove link to #, add unlimited_player_transfer_distance to announceproller2013-12-031-0/+1
|
* Correct useragent in http queriesproller2013-11-061-1/+1
| | | | Net struct init
* Masterserver show privs and js autoloadproller2013-11-041-0/+1
|
* Masterserver updateproller2013-10-181-7/+12
|
* Show git hash in version string at top left corner of windowKahrl2013-09-281-1/+2
|
* Dont write directly to files but rather write and copy a tmp filePilzAdam2013-08-131-12/+8
|
* More info in serverlistproller2013-08-031-2/+4
|
* Masterserver mods announse, ipv6, better curl errorsproller2013-07-131-9/+15
|
* Replace C++ mainmenu by formspec powered onesapier2013-07-021-48/+12
|
* Fix favorite Server List on WindowsSfan52013-05-041-1/+1
|
* Fix serverlist on -DRUN_IN_PLACE=0 (use path_user instead of path_share)Zeg92013-04-251-4/+6
|
* Masterserver: report gameid, uptime, cosmetic fixes on server web pageproller2013-03-301-1/+4
|
* Add one more curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);Ilya Zhuravlev2013-03-031-0/+1
|
* Fix "longjmp causes uninitialized stack frame" (serverlist.cpp)Ilya Zhuravlev2013-03-011-0/+1
|
* Update Copyright YearsSfan52013-02-241-1/+1
|
* Change Minetest-c55 to MinetestPilzAdam2013-02-241-1/+1
|
* new auto masterserverproller2013-02-221-14/+105
|
* Add a list of servers to the "Multiplayer" tabJeija2013-01-211-0/+185
If USE_CURL is set, it also downloads a list from a remote server. The url of this list is configurable in minetest.conf using the setting "serverlist_url" The local list of favorite servers is saved in client/serverlist/filename filename is also configureable using the setting "serverlist_file"