| Commit message (Collapse) | Author | Age |
|
|
|
| |
Currently translated at 98.2% (740 of 753 strings)
|
|
|
|
| |
Currently translated at 33.0% (249 of 753 strings)
|
|
|
|
| |
Currently translated at 32.9% (248 of 753 strings)
|
|
|
|
| |
Currently translated at 25.8% (195 of 753 strings)
|
|
|
|
| |
Currently translated at 26.4% (199 of 753 strings)
|
|
|
|
| |
Currently translated at 28.2% (213 of 753 strings)
|
|
|
|
| |
Currently translated at 40.2% (303 of 753 strings)
|
|
|
|
| |
Currently translated at 98.8% (744 of 753 strings)
|
|
|
|
| |
Currently translated at 98.2% (740 of 753 strings)
|
|
|
|
| |
Currently translated at 31.3% (236 of 753 strings)
|
|
|
|
| |
Currently translated at 43.8% (330 of 753 strings)
|
|
|
|
| |
Currently translated at 32.5% (245 of 753 strings)
|
|
|
|
| |
Currently translated at 96.4% (726 of 753 strings)
|
|
|
|
| |
Currently translated at 33.0% (249 of 753 strings)
|
|
|
|
| |
Currently translated at 98.6% (743 of 753 strings)
|
|
|
|
| |
Currently translated at 84.1% (634 of 753 strings)
|
|
|
|
| |
Currently translated at 3.3% (25 of 753 strings)
|
|
|
|
| |
Currently translated at 75.5% (569 of 753 strings)
|
|
|
|
| |
Currently translated at 40.5% (305 of 753 strings)
|
|
|
|
| |
Currently translated at 32.1% (242 of 753 strings)
|
|
|
|
| |
Currently translated at 98.8% (744 of 753 strings)
|
|
|
|
| |
Currently translated at 56.3% (424 of 753 strings)
|
|
|
|
|
|
| |
Currently translated at 100% (0 of 0 strings)
Created new translation.
|
|
|
|
| |
Currently translated at 94.1% (709 of 753 strings)
|
|
|
|
| |
Currently translated at 32.5% (245 of 753 strings)
|
|
|
|
| |
Currently translated at 94.0% (708 of 753 strings)
|
|
|
|
| |
Currently translated at 98.1% (739 of 753 strings)
|
|
|
|
| |
Currently translated at 98.1% (739 of 753 strings)
|
|
|
|
| |
Currently translated at 98.0% (738 of 753 strings)
|
|
|
|
| |
Currently translated at 95.4% (719 of 753 strings)
|
|
|
|
| |
Currently translated at 43.8% (330 of 753 strings)
|
|
|
|
| |
Currently translated at 75.5% (569 of 753 strings)
|
|
|
|
| |
Currently translated at 40.2% (303 of 753 strings)
|
|
|
|
| |
Currently translated at 36.9% (278 of 753 strings)
|
|
|
|
| |
Currently translated at 61.6% (464 of 753 strings)
|
|
|
|
| |
Currently translated at 54.1% (408 of 753 strings)
|
|
|
|
| |
Currently translated at 52.3% (394 of 753 strings)
|
|
|
|
| |
Currently translated at 35.4% (267 of 753 strings)
|
|
|
|
| |
Currently translated at 36.2% (273 of 753 strings)
|
|
|
|
| |
There it isn't needed.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds a chat console the server owner can use for administration
or to talk with players.
It runs in its own thread, which makes the user interface immune to
the server's lag, behaving just like a client, except timeout.
As it uses the same console code as the f10 console, things like nick
completion or a scroll buffer basically come for free.
The terminal itself is written in a general way so that adding a
client version later on is just about implementing an interface.
Fatal errors are printed after the console exists and the ncurses
terminal buffer gets cleaned up with endwin(), so that the error still
remains visible.
The server owner can chose their username their entered text will
have in chat and where players can send PMs to.
Once the username is secured with a password to prevent anybody to
take over the server, the owner can execute admin tasks over the
console.
This change includes a contribution by @kahrl who has improved ncurses
library detection.
|
|
|
|
|
| |
Fix memory leak in minetest.place_schematic
Slightly refactor Schematic code
|
|
|
|
| |
Use type 'string' for v3fs and add comments
|
|
|
|
|
| |
Before, time progressed wrongly. This was due to a mistake in how m_time_of_day_f was calculated,
and a regression of the last two commits.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Atomic implementation was only partially correct, and was very complex.
Use locks for sake of simplicity, following KISS principle.
Only remaining atomic operation use is time of day speed, because that
really is only read + written.
Also fixes a bug with m_time_conversion_skew only being decremented, never
incremented (Regresion from previous commit).
atomic.h changes:
* Add GenericAtomic<T> class for non-integral types like floats.
* Remove some last remainders from atomic.h of the volatile use.
|