- ✅︎ Fedora: removed for client, kept for server
- ✅︎ Arch: removed
- ❌ openSUSE: kept (TODO: file issue)
- ✅︎ openSUSE games repo: removed
- ✅︎ Gentoo: removed and renamed to games-engines/minetest
- ✅︎ Void Linux: removed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date | Opened | Closed | New Contributors | |
---|---|---|---|---|
2011-08-01 | 1 | 0 | 1 | |
2011-09-01 | 9 | 5 | 7 | |
2011-10-01 | 3 | 0 | 2 | |
2011-11-01 | 5 | 1 | 3 | |
2011-12-01 | 6 | 0 | 5 | |
2012-01-01 | 6 | 5 | 3 | |
2012-02-01 | 4 | 6 | 3 | |
2012-03-01 | 4 | 9 | 3 | |
2012-04-01 | 4 | 6 | 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Store a counter that increments each time a player joins | |
local file = minetest.get_worldpath().."/counter" | |
local f = io.open(file, "r") | |
if f==nil then | |
counter = 0 | |
else | |
counter = tonumber(f:read("*all")) | |
f:close() | |
end |
Featured Packages are shown at the top of the ContentDB homepage. In the future, featured packages may be shown inside the Minetest client. Only Editors can add the "Featured" tag to a package.
Before a package can be considered, it must fulfil the criteria in the below lists. There are three types of criteria:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test(ModOrderResolverRedundantTests) { | |
std::vector<ModConfig> mods; | |
mods.push_back({ | |
"modB", | |
"rubenwardy", | |
"", | |
std::vector<std::string>{"modC"} | |
}); | |
mods.push_back({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fstream> | |
#include <scripting/ModException.hpp> | |
#include <sanity.hpp> | |
#include "LuaSecurity.hpp" | |
using namespace scripting; | |
namespace { | |
void copyAll(sol::environment &env, const sol::global_table &globals, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(gdb) thread apply all bt | |
Thread 34 (Thread 0x7fffe3fe7700 (LWP 4588)): | |
#0 0x00007ffff781ccf5 in pthread_cond_wait@@GLIBC_2.3.2 () at /usr/lib/libpthread.so.0 | |
#1 0x0000555558b06b0b in () | |
#2 0x0000555558ad9100 in () | |
#3 0x0000555558d50400 in () | |
#4 0x00000327f38604a2 in () | |
#5 0x000024d200000101 in () | |
#6 0x7fffffffffffffff in () |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "DropShadow.hpp" | |
#include <cassert> | |
#include <cmath> | |
#include <memory> | |
using namespace sfext; | |
namespace { | |
std::unique_ptr<sf::Shader> shadowShader; |
I hereby claim:
- I am rubenwardy on github.
- I am rubenwardy (https://keybase.io/rubenwardy) on keybase.
- I have a public key ASBExTr0_r9rJ7-9Tt46Dt6-SzPEiwihDVWqfz-wI3Gp0wo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <json/json.h> | |
#include <fstream> | |
#include <sstream> | |
namespace { | |
sol::object json_to_lua(Json::Value value, sol::this_state state) { | |
switch (value.type()) { | |
case Json::nullValue: | |
return sol::nil; |
NewerOlder