aboutsummaryrefslogtreecommitdiff
path: root/po/ru
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-11-20 14:59:19 -0500
committerShadowNinja <shadowninja@minetest.net>2014-11-20 15:37:20 -0500
commitc4e393deea4f1a6d242a3fdf392c463ed5a3b58d (patch)
tree4230e1af5eaaf697c1c61456d010f8e8f560c4e6 /po/ru
parentd2b5ba83b00ce00ff34f627da02f4eb4ceb86412 (diff)
downloadminetest-c4e393deea4f1a6d242a3fdf392c463ed5a3b58d.tar.gz
minetest-c4e393deea4f1a6d242a3fdf392c463ed5a3b58d.tar.bz2
minetest-c4e393deea4f1a6d242a3fdf392c463ed5a3b58d.zip
Simplify loading of Android version of menu
Diffstat (limited to 'po/ru')
0 files changed, 0 insertions, 0 deletions
an class='column1'>| | | * Cleanup various headers to reduce compilation times * C++11 cleanup on constructors (#6000)Vincent Glize2017-06-19 | | | | * C++11 cleanup on constructors dir script * Use C++11 mutexes only (remove compat code) (#5922)Loïc Blot2017-06-06 | | | | * Fix event LINT & remove default constructor/destructors * remove compat code & modernize autolock header * Use a settings object for the main settingsShadowNinja2017-05-06 | | | | | | | This unifies the settings APIs. This also unifies the sync and async registration APIs, since the async registration API did not support adding non-functions to the API table. * Fix various copy instead of const ref reported by cppcheck (part 3) (#5616)Loïc Blot2017-04-20 | | | | * Also remove 2 non declared but defined functions * Make some functions around const ref changes const * use unordered containers where possible (patch 4 on X)Loic Blot2016-10-06 | | | | Also remove some unused parameters/functions * Push error handler afresh each time lua_pcall is usedKahrl2015-08-27 | | | | | Fixes "double fault" / "error in error handling" messages (issue #1423) and instead shows a complete backtrace. * Clean up threadingShadowNinja2015-08-23 | | | | | | | | | | | | | | | | | | | | * Rename everything. * Strip J prefix. * Change UpperCamelCase functions to lowerCamelCase. * Remove global (!) semaphore count mutex on OSX. * Remove semaphore count getter (unused, unsafe, depended on internal API functions on Windows, and used a hack on OSX). * Add `Atomic<type>`. * Make `Thread` handle thread names. * Add support for C++11 multi-threading. * Combine pthread and win32 sources. * Remove `ThreadStarted` (unused, unneeded). * Move some includes from the headers to the sources. * Move all of `Event` into its header (allows inlining with no new includes). * Make `Event` use `Semaphore` (except on Windows). * Move some porting functions into `Thread`. * Integrate logging with `Thread`. * Add threading test. * Fix code style of async APIShadowNinja2014-04-27 | * Remove dependency on marshal and many other async changesShadowNinja