Use Jekyll layouts
This commit is contained in:
parent
d5879d3345
commit
854c6f8bdd
24
404.html
24
404.html
@ -1,27 +1,17 @@
|
||||
---
|
||||
title: Page not found - Minetest
|
||||
title: Page not found
|
||||
jumbotron: credits
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<div class="jumbotron reduced credits">
|
||||
<div class="center">
|
||||
<h1>Page not found :(</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<img style="float:left;margin: -10px 40px 0 0;"
|
||||
<img style="float:left;margin: -10px 40px 0 0;"
|
||||
src="media/unknown_node.jpg"
|
||||
alt="unknown_node">
|
||||
|
||||
<h2>Sorry, we could not find that page!</h2>
|
||||
<h2>Sorry, we could not find that page!</h2>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Please report any broken links on the
|
||||
<a href="https://github.com/minetest/minetest.github.io/issues">issues page
|
||||
for this website</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
</p>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>{{ page.title }}</title>
|
||||
<title>{{ page.title }} - Minetest</title>
|
||||
<link rel="stylesheet" href="lib/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="css/main.min.css">
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="//minetest.net">
|
||||
<img alt="Minetest" src="favicon-96x96.png" height="260%">
|
||||
<img alt="Minetest" src="favicon-96x96.png" style="height:260%;">
|
||||
</a>
|
||||
<a class="navbar-brand" href="//minetest.net">
|
||||
Minetest
|
||||
|
18
_layouts/default.html
Normal file
18
_layouts/default.html
Normal file
@ -0,0 +1,18 @@
|
||||
{% include header.html %}
|
||||
|
||||
<div class="jumbotron reduced
|
||||
{% if page.jumbotron %}
|
||||
{{ page.jumbotron }}
|
||||
{% else %}
|
||||
{{ page.title | downcase }}
|
||||
{% endif %}">
|
||||
<div class="center">
|
||||
<h1>{{ page.title }}</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
@ -1,46 +1,35 @@
|
||||
---
|
||||
title: Community - Minetest
|
||||
title: Community
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
<h1>Get involved</h1>
|
||||
|
||||
<div class="jumbotron reduced community">
|
||||
<div class="center">
|
||||
<h1>Community</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h1>Get involved</h1>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
You can get involved with the Minetest community in several ways:
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li>Giving support on <a href="irc.html">IRC</a></li>
|
||||
<li>Giving support on the <a href="https://forum.minetest.net">forums</a>, publishing mods, subgames, maps, texture packs</li>
|
||||
<li>Contribute on <a href="https://github.com/minetest">GitHub</a> - report bugs, make pull requests</li>
|
||||
<li>Talk about Minetest on <a href="http://www.reddit.com/r/Minetest">reddit</a></li>
|
||||
<li>Perform some <a href="development.html">development</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<div class="line"></div>
|
||||
<h1>About this website</h1>
|
||||
<div class="line"></div>
|
||||
<h1>About this website</h1>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
This website is created and updated by members of the Minetest community
|
||||
(PilzAdam, rubenwardy, xyz, Jordach, BlockMen, ShadowNinja, nrz),
|
||||
administrated by celeron55. It was redesigned by Calinou in 2015.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<a href="//minetest.net">minetest.net</a> and <a href="https://forum.minetest.net">forum.minetest.net</a> are currently hosted by celeron55 in the Netherlands.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
If you find problems or think something needs to be updated on this website, please contact us on <a href="irc.html">IRC</a> or <a href="https://forum.minetest.net">forums</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
</p>
|
||||
|
75
credits.html
75
credits.html
@ -1,51 +1,43 @@
|
||||
---
|
||||
title: Credits - Minetest
|
||||
title: Credits
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
<h2>Core Developers</h2>
|
||||
|
||||
<div class="jumbotron reduced credits">
|
||||
<div class="center">
|
||||
<h1>Credits</h1>
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li>Perttu Ahola (celeron55)</li>
|
||||
<li>Ryan Kwolek (kwolekr aka hmmmm) <a href="mailto:kwolekr@minetest.net" title="kwolekr@minetest.net">kwolekr@minetest.net</a></li>
|
||||
<li>PilzAdam <a href="mailto:pilzadam@minetest.net" title="pilzadam@minetest.net">pilzadam@minetest.net</a></li>
|
||||
<li>Lisa Milne (darkrose) <a href="mailto:lisa@ltmnet.com" title="lisa@ltmnet.com">lisa@ltmnet.com</a></li>
|
||||
<li>Maciej Kasatkin (RealBadAngel) <a href="mailto:mk@realbadangel.pl" title="mk@realbadangel.pl">mk@realbadangel.pl</a></li>
|
||||
<li>sfan5 <a href="mailto:sfan5@live.de" title="sfan5@live.de">sfan5@live.de</a></li>
|
||||
<li>kahrl <a href="mailto:kahrl@gmx.net" title="kahrl@gmx.net">kahrl@gmx.net</a></li>
|
||||
<li>sapier</li>
|
||||
<li>ShadowNinja <a href="mailto:shadowninja@minetest.net" title="shadowninja@minetest.net">shadowninja@minetest.net</a></li>
|
||||
<li>Nathanaël Courant (Nore/Novatux) <a href="mailto:nore@mesecons.net" title="nore@mesecons.net">nore@mesecons.net</a></li>
|
||||
<li>BlockMen</li>
|
||||
<li>Craig Robbins (Zeno)</li>
|
||||
<li>Loic Blot (nerzhul/nrz)</li>
|
||||
<li>Paramat</li>
|
||||
</ul>
|
||||
|
||||
<div class="content">
|
||||
<h2>Core Developers</h2>
|
||||
<div class="line"></div>
|
||||
<h2>Active Contributors</h2>
|
||||
|
||||
<ul>
|
||||
<li><div> Perttu Ahola (celeron55)</div></li>
|
||||
<li><div> Ryan Kwolek (kwolekr aka hmmmm) <a href="mailto:kwolekr@minetest.net" title="kwolekr@minetest.net">kwolekr@minetest.net</a></div></li>
|
||||
<li><div> PilzAdam <a href="mailto:pilzadam@minetest.net" title="pilzadam@minetest.net">pilzadam@minetest.net</a></div></li>
|
||||
<li><div> Lisa Milne (darkrose) <a href="mailto:lisa@ltmnet.com" title="lisa@ltmnet.com">lisa@ltmnet.com</a></div></li>
|
||||
<li><div> Maciej Kasatkin (RealBadAngel) <a href="mailto:mk@realbadangel.pl" title="mk@realbadangel.pl">mk@realbadangel.pl</a></div></li>
|
||||
<li><div> sfan5 <a href="mailto:sfan5@live.de" title="sfan5@live.de">sfan5@live.de</a></div></li>
|
||||
<li><div> kahrl <a href="mailto:kahrl@gmx.net" title="kahrl@gmx.net">kahrl@gmx.net</a></div></li>
|
||||
<li><div> sapier</div></li>
|
||||
<li><div> ShadowNinja <a href="mailto:shadowninja@minetest.net" title="shadowninja@minetest.net">shadowninja@minetest.net</a></div></li>
|
||||
<li><div> Nathanaël Courant (Nore/Novatux) <a href="mailto:nore@mesecons.net" title="nore@mesecons.net">nore@mesecons.net</a></div></li>
|
||||
<li><div> BlockMen</div></li>
|
||||
<li><div> Craig Robbins (Zeno)</div></li>
|
||||
<li><div> Loic Blot (nerzhul/nrz)</div></li>
|
||||
<li><div> Paramat</div></li>
|
||||
</ul>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>Active Contributors</h2>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li>SmallJoker</li>
|
||||
<li>est31</li>
|
||||
<li>gregorycu</li>
|
||||
<li>Andrew Ward (rubenwardy)</li>
|
||||
<li>TriBlade9</li>
|
||||
<li>Zefram</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>Previous Contributors</h2>
|
||||
<div class="line"></div>
|
||||
<h2>Previous Contributors</h2>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li>Vanessa Ezekowitz (VanessaE)</li>
|
||||
<li>Jurgen Doser (doserj)</li>
|
||||
<li>Jeija</li>
|
||||
@ -60,17 +52,14 @@ title: Credits - Minetest
|
||||
<li>Constantin Wenger (SpeedProg)</li>
|
||||
<li>matttpt</li>
|
||||
<li>JacobF</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<strong>More information can be found at <a href="https://www.openhub.net/p/minetest-c55">Open Hub</a>.</strong>
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Want to <a href="/development" class="wikilink1" title="development">contribute</a>?
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
</p>
|
||||
|
@ -1,53 +1,45 @@
|
||||
---
|
||||
title: Customize - Minetest
|
||||
title: Customize
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<div class="jumbotron reduced customize">
|
||||
<div class="center">
|
||||
<h1>Customize</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h1 id="subgames">Subgames</h1>
|
||||
<p>
|
||||
<h1 id="subgames">Subgames</h1>
|
||||
<p>
|
||||
<a href="http://wiki.minetest.net/Subgames">Subgames</a> form a foundation for the game. Different subgames have different objectives – such as survival, building, or player vs. player.
|
||||
Usually Minetest comes with minetest_game, which supplies the default items.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Popular subgames</h2>
|
||||
<h2>Popular subgames</h2>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=15&t=9196">Dreambuilder</a> - A building based game, includes many building materials.</li>
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=15&t=12824">Carbone NG</a> - Focuses on “optimization, game balance, fun and intuitiveness.”</li>
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=15&t=9036">Big Freaking Dig</a> - “Get as many ores as possible, while fighting mobs and creating tools from new materials.”</li>
|
||||
<li><a href="http://wiki.minetest.net/Games/Tutorial">Tutorial</a> - “Teaches the fundamental basics of Minetest”</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
More subgames are available <a href="https://forum.minetest.net/viewforum.php?f=15">on the forum</a>. Also see the <a href="https://forum.minetest.net/viewforum.php?f=50">WIP subgames</a> section.
|
||||
</p>
|
||||
<p>
|
||||
More subgames are available <a href="https://forum.minetest.net/viewforum.php?f=15">on the forum</a>. Also see the <a href="https://forum.minetest.net/viewforum.php?f=50">WIP subgames</a> section.
|
||||
</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h1 id="mods">Mods</h1>
|
||||
<div class="line"></div>
|
||||
<h1 id="mods">Mods</h1>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<strong>Mods</strong> (or modifications) are changing the game content from what it originally was. Mostly they add new features to gameplay, but can also change or remove existing content.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
All content in the game, including tools, blocks, and items, are added to the game using Lua mod plugins. Minetest comes with a collection of these plugins by default in a set called minetest_game.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Learn how to <a href="http://dev.minetest.net/Installing_Mods">install and use mods</a>.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Popular mods</h2>
|
||||
<h2>Popular mods</h2>
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3>Building</h3>
|
||||
<ul>
|
||||
@ -72,9 +64,9 @@ title: Customize - Minetest
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=11&t=2290">Snow Biomes</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3>Environment</h3>
|
||||
<ul>
|
||||
@ -91,9 +83,9 @@ title: Customize - Minetest
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?id=3063">Simple Mobs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3>Tools</h3>
|
||||
<ul>
|
||||
@ -111,8 +103,9 @@ title: Customize - Minetest
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?id=4086">UFOs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3>Player effects</h3>
|
||||
<ul>
|
||||
@ -133,9 +126,9 @@ title: Customize - Minetest
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?id=3933">Unified Inventory</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<h3>Maintainance</h3>
|
||||
<ul>
|
||||
@ -144,21 +137,18 @@ title: Customize - Minetest
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=9&t=9315">Xban2</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<p>
|
||||
More mods are available <a href="https://forum.minetest.net/viewforum.php?f=11">on our forums</a>. Also see the <a href="https://forum.minetest.net/viewforum.php?f=9">WIP mods</a> section.
|
||||
</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h1 id="texture-packs">Texture packs</h1>
|
||||
|
||||
<p>
|
||||
Find <a href="https://forum.minetest.net/viewforum.php?f=4">texture packs</a> on the forums.
|
||||
<!-- TODO: Make a gallery of popular packs -->
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
<br>
|
||||
|
||||
<p>
|
||||
More mods are available <a href="https://forum.minetest.net/viewforum.php?f=11">on our forums</a>. Also see the <a href="https://forum.minetest.net/viewforum.php?f=9">WIP mods</a> section.
|
||||
</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h1 id="texture-packs">Texture packs</h1>
|
||||
|
||||
<p>
|
||||
Find <a href="https://forum.minetest.net/viewforum.php?f=4">texture packs</a> on the forums.
|
||||
<!-- TODO: Make a gallery of popular packs -->
|
||||
</p>
|
||||
|
215
development.html
215
development.html
@ -1,141 +1,131 @@
|
||||
---
|
||||
title: Development - Minetest
|
||||
title: Development
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
<h1>Overview</h1>
|
||||
|
||||
<div class="jumbotron reduced development">
|
||||
<div class="center">
|
||||
<h1>Development</h1>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Getting into development</h2>
|
||||
|
||||
<div class="content">
|
||||
<h1>Overview</h1>
|
||||
<p>
|
||||
There are several ways to get into development:
|
||||
</p>
|
||||
|
||||
<h2>Getting into development</h2>
|
||||
|
||||
<p>
|
||||
There are several ways to get into development:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><strong>Modding:</strong> Develop a mod independently and publish it on the <a href="http://forum.minetest.net/">forums</a>.</li>
|
||||
<li><strong>Core development:</strong> Think or ask of something that is needed in the core, talk with the core team (preferably a lot, with multiple members - communication is more important than you think) and do it.</li>
|
||||
<li><strong>Translating:</strong> Help translating Minetest at <del><a href="http://translate.minetest.ru/projects/minetest/core/">our web interface</a> (oops, seems to be down (2014-06-04))</del>. If your language does not exist yet, contact a core dev.</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h2>Core Team</h2>
|
||||
<h2>Core Team</h2>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Upstream repositories and official Windows packages are handled by the <a href="https://github.com/minetest?tab=members">core team</a>, consisting of a bunch of people who are much trusted to keep Minetest progressing in good condition. The core team is best contacted on <abbr title="Internet Relay Chat">IRC</abbr> at <code>#minetest-dev @ chat.freenode.net</code>.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
The core team is formed of people who have made great <a href="credits.html">contributions</a> to Minetest.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Contributions are approved if two members of the core team agree on them.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Project Structure</h2>
|
||||
<h2>Project Structure</h2>
|
||||
|
||||
<p>
|
||||
Minetest is distributed as an engine, combined with a couple of games. Upstream repositories can be found at <a href="https://github.com/minetest/">https://github.com/minetest/</a>.
|
||||
</p>
|
||||
<ul>
|
||||
<li><div> <strong>The engine</strong> (core) is the base for everything. C++ is used for housekeeping and performance-critical stuff, Lua for extensible things.</div>
|
||||
</li>
|
||||
<li><div> <strong>Games</strong> define game content: nodes, entities, textures, meshes, sounds and custom behavior implemented in Lua. Games consist of mods that plug into the engine using the <a href="http://dev.minetest.net">Modding API</a>.</div>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Minetest is distributed as an engine, combined with a couple of games. Upstream repositories can be found at <a href="https://github.com/minetest/">https://github.com/minetest/</a>.
|
||||
</p>
|
||||
<ul>
|
||||
<li><div> <strong>The engine</strong> (core) is the base for everything. C++ is used for housekeeping and performance-critical stuff, Lua for extensible things.</div>
|
||||
</li>
|
||||
<li><div> <strong>Games</strong> define game content: nodes, entities, textures, meshes, sounds and custom behavior implemented in Lua. Games consist of mods that plug into the engine using the <a href="http://dev.minetest.net">Modding API</a>.</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
For more information see the <a href="http://dev.minetest.net/Terminology">terminology</a> or <a href="http://dev.minetest.net/Engine_structure">engine structure</a> developer wiki pages.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Rules</h2>
|
||||
<h2>Rules</h2>
|
||||
|
||||
<p>
|
||||
<a href="http://dev.minetest.net/All_rules_regarding_to_development">All rules regarding to development</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://dev.minetest.net/All_rules_regarding_to_development">All rules regarding to development</a>
|
||||
</p>
|
||||
|
||||
<h1 id="reporting-issues">Reporting issues</h1>
|
||||
<h1 id="reporting-issues">Reporting issues</h1>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
Different things related to Minetest are maintained by different people, contacted in different ways. Here you can find where to report issues, bugs and any other kinds of problems regarding to each “product”.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
People are generally available on freenode <abbr title="Internet Relay Chat">IRC</abbr>, the Minetest Forums, GitHub and/or via email.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Programs</h2>
|
||||
<h2>Programs</h2>
|
||||
|
||||
<h3>Minetest ("Minetest Engine")</h3>
|
||||
<ul>
|
||||
<h3>Minetest ("Minetest Engine")</h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/minetest/minetest/issues" title="https://github.com/minetest/minetest/issues">https://github.com/minetest/minetest/issues</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3>Minetest Game ("Vanilla")</h3>
|
||||
<ul>
|
||||
<h3>Minetest Game ("Vanilla")</h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/minetest/minetest_game/issues">https://github.com/minetest/minetest_game/issues</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3>Minetest Mapper</h3>
|
||||
<ul>
|
||||
<h3>Minetest Mapper</h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/minetest/minetestmapper">https://github.com/minetest/minetestmapper</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h2>Services</h2>
|
||||
<h2>Services</h2>
|
||||
|
||||
<h3>*.minetest.net</h3>
|
||||
<ul>
|
||||
<h3>*.minetest.net</h3>
|
||||
<ul>
|
||||
<li><abbr title="Domain Name System">DNS</abbr>: celeron55</li>
|
||||
<li>Approval of hosting things: celeron55</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3>www.minetest.net</h3>
|
||||
<ul>
|
||||
<h3>www.minetest.net</h3>
|
||||
<ul>
|
||||
<li>Hosting: celeron55</li>
|
||||
<li>Content and theme: <a href="https://github.com/minetest/minetest.github.io">https://github.com/minetest/minetest.github.io</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3>forum.minetest.net</h3>
|
||||
<ul>
|
||||
<h3>forum.minetest.net</h3>
|
||||
<ul>
|
||||
<li>Hosting: celeron55</li>
|
||||
<li>Theme: <a href="https://github.com/minetest/forum.minetest.net_template1/issues">https://github.com/minetest/forum.minetest.net_template1/issues</a></li>
|
||||
<li>Content: Moderators on the forum. Use “Report this post” where possible.</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3>servers.minetest.net</h3>
|
||||
<ul>
|
||||
<h3>servers.minetest.net</h3>
|
||||
<ul>
|
||||
<li>Hosting: sfan5</li>
|
||||
<li>Server program: <a href="https://github.com/minetest/master-server">https://github.com/minetest/master-server</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h3 class="sectionedit10" id="google_playnetminetestminetest">Google Play: <code>net.minetest.minetest</code></h3>
|
||||
<ul>
|
||||
<h3 class="sectionedit10" id="google_playnetminetestminetest">Google Play: <code>net.minetest.minetest</code></h3>
|
||||
<ul>
|
||||
<li>(<a href="https://play.google.com/store/apps/details?id=net.minetest.minetest">https://play.google.com/store/apps/details?id=net.minetest.minetest</a>)</li>
|
||||
<li>Maintainer: nerzhul aka. nrzkt</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h1 id="donate">Donate</h1>
|
||||
<h1 id="donate">Donate</h1>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
If you want to monetarily support Minetest, here's what you can do:
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h2>Tip celeron55</h2>
|
||||
<h2>Tip celeron55</h2>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
You can tip money to celeron55, to be mostly used for hosting of websites and overall maintenance effort on the project.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
<div style="text-align: center;">
|
||||
<div style="text-align: center;">
|
||||
<div style="display: inline-block; width: 300px;">
|
||||
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
||||
<input type="hidden" name="cmd" value="_s-xclick">
|
||||
@ -152,42 +142,37 @@ title: Development - Minetest
|
||||
</select> </td></tr>
|
||||
</table>
|
||||
<input type="hidden" name="currency_code" value="EUR">
|
||||
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
||||
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>PayPal address:</strong> celeron55@gmail.com (Please note in the message that you're supporting Minetest in particular.)
|
||||
</p>
|
||||
|
||||
<h2>Other</h2>
|
||||
|
||||
<p>
|
||||
Your favourite server or modder might accept tips too; make sure to check those out.
|
||||
</p>
|
||||
|
||||
<h2>Buy merchandise</h2>
|
||||
|
||||
<p>
|
||||
You can buy coffee cups, shirts and stuff like that at <a href="http://www.cafepress.co.uk/profile/minetest" title="http://www.cafepress.co.uk/profile/minetest">http://www.cafepress.co.uk/profile/minetest</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Note: Make sure the quality is right before buying; the things on offer have not been checked by anyone in particular.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Profits are used as donations for something related to Minetest. <a href="http://forum.minetest.net/viewtopic.php?id=4437" title="http://forum.minetest.net/viewtopic.php?id=4437">Forum thread</a>.
|
||||
</p>
|
||||
|
||||
<br>
|
||||
|
||||
<p>
|
||||
<a class="thumbnail no-border" href="http://www.cafepress.co.uk/profile/minetest"><img src="http://www.minetest.net/_media/need_some_coffee_mug_trans.png" alt="" width="200"></a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
<p>
|
||||
<strong>PayPal address:</strong> celeron55@gmail.com (Please note in the message that you're supporting Minetest in particular.)
|
||||
</p>
|
||||
|
||||
<h2>Other</h2>
|
||||
|
||||
<p>
|
||||
Your favourite server or modder might accept tips too; make sure to check those out.
|
||||
</p>
|
||||
|
||||
<h2>Buy merchandise</h2>
|
||||
|
||||
<p>
|
||||
You can buy coffee cups, shirts and stuff like that at <a href="http://www.cafepress.co.uk/profile/minetest" title="http://www.cafepress.co.uk/profile/minetest">http://www.cafepress.co.uk/profile/minetest</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Note: Make sure the quality is right before buying; the things on offer have not been checked by anyone in particular.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Profits are used as donations for something related to Minetest. <a href="http://forum.minetest.net/viewtopic.php?id=4437" title="http://forum.minetest.net/viewtopic.php?id=4437">Forum thread</a>.
|
||||
</p>
|
||||
|
||||
<br>
|
||||
|
||||
<p>
|
||||
<a class="thumbnail no-border" href="http://www.cafepress.co.uk/profile/minetest"><img src="http://www.minetest.net/_media/need_some_coffee_mug_trans.png" alt="" width="200"></a>
|
||||
</p>
|
||||
|
127
downloads.html
127
downloads.html
@ -1,139 +1,128 @@
|
||||
---
|
||||
title: Download - Minetest
|
||||
title: Download
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<div class="jumbotron reduced downloads">
|
||||
<div class="center">
|
||||
<h1>Downloads</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<p class="intro">
|
||||
<p class="intro">
|
||||
<strong>Thank you for trying out Minetest.</strong><br>
|
||||
Are you a new user?<br>
|
||||
Have a look at our <a href="//wiki.minetest.net/Getting_Started">Getting Started</a>, <a href="//wiki.minetest.net/FAQ">FAQ</a> and <a href="//wiki.minetest.net/Tutorials">Tutorials</a> pages on our wiki.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p class="intro">
|
||||
<p class="intro">
|
||||
You may also want to look at some <a href="https://forum.minetest.net/viewforum.php?f=15">subgames</a>. Subgames form a foundation for the game using Lua scripts. Different subgames have different objectives, such as survival, building or Player vs Player.
|
||||
Usually Minetest comes with <a href="https://github.com/minetest/minetest_game">minetest_game</a>, to supply the default items and blocks.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p class="intro">
|
||||
<p class="intro">
|
||||
<a href="http://dev.minetest.net/Changelog#0.4.12_.E2.86.92_0.4.13">Changelog from 0.4.12 to 0.4.13</a>
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<div class="line"></div>
|
||||
|
||||
<h2>Windows</h2>
|
||||
<h2>Windows</h2>
|
||||
|
||||
<p>Works on Windows XP, Vista, 7, 8, 8.1 and 10.</p>
|
||||
<p>Works on Windows XP, Vista, 7, 8, 8.1 and 10.</p>
|
||||
|
||||
<h4>MSVC builds (recommended)</h4>
|
||||
<h4>MSVC builds (recommended)</h4>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://github.com/minetest/minetest/releases/download/0.4.13/minetest-0.4.13-win64-msvc.zip">Minetest 0.4.13 (64-bit)</a></li>
|
||||
<li><a href="https://github.com/minetest/minetest/releases/download/0.4.13/minetest-0.4.13-win32-msvc.zip">Minetest 0.4.13 (32-bit)</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h4>MinGW builds</h4>
|
||||
<h4>MinGW builds</h4>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://github.com/minetest/minetest/releases/download/0.4.13/minetest-0.4.13-win64-mingw.zip">Minetest 0.4.13 (64-bit)</a></li>
|
||||
<li><a href="https://github.com/minetest/minetest/releases/download/0.4.13/minetest-0.4.13-win32-mingw.zip">Minetest 0.4.13 (32-bit)</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h4>Others</h4>
|
||||
<h4>Others</h4>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<a href="//wiki.minetest.net/Getting_Started#Windows">Help on getting Minetest for Windows</a>
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<h4>Unofficial builds</h4>
|
||||
<h4>Unofficial builds</h4>
|
||||
|
||||
<p>Get the latest development version of Minetest from <a href="https://forum.minetest.net/viewforum.php?f=42">builds made by community members</a>. These builds are more recent than the officially released builds and contain new features (at the cost of stability).</p>
|
||||
<p>Get the latest development version of Minetest from <a href="https://forum.minetest.net/viewforum.php?f=42">builds made by community members</a>. These builds are more recent than the officially released builds and contain new features (at the cost of stability).</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>OS X</h2>
|
||||
<div class="line"></div>
|
||||
<h2>OS X</h2>
|
||||
|
||||
<p>OS X 10.8 or later is recommended.</p>
|
||||
<p>OS X 10.8 or later is recommended.</p>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://forum.minetest.net/viewtopic.php?f=3&t=9190">Stable OS X builds</a></li>
|
||||
<li>Using <a href="http://brew.sh/">Homebrew</a>? <code>brew install homebrew/games/minetest</code> <em>(unofficial)</em></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>GNU/Linux</h2>
|
||||
<div class="line"></div>
|
||||
<h2>GNU/Linux</h2>
|
||||
|
||||
<h4>Packages (stable)</h4>
|
||||
<h4>Packages (stable)</h4>
|
||||
|
||||
<p>Those may be out of date at times. If they are too out of date, you can build from source.</p>
|
||||
<p>Those may be out of date at times. If they are too out of date, you can build from source.</p>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://packages.debian.org/search?keywords=minetest">Debian</a></li>
|
||||
<li><a href="http://packages.ubuntu.com/search?keywords=minetest">Ubuntu / Linux Mint</a></li>
|
||||
<li><a href="https://apps.fedoraproject.org/packages/minetest">Fedora</a></li>
|
||||
<li><a href="http://software.opensuse.org/package/minetest">openSUSE</a></li>
|
||||
<li><a href="http://mageia.madb.org/package/show/name/minetest">Mageia</a></li>
|
||||
<li><a href="http://packages.gentoo.org/package/games-action/minetest">Gentoo</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h4>Packages (daily, unstable)</h4>
|
||||
<h4>Packages (daily, unstable)</h4>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://aur.archlinux.org/packages/minetest-git-leveldb/">Arch Linux <strong>(daily, unstable)</strong></a></li>
|
||||
<li><a href="https://code.launchpad.net/~minetestdevs/+archive/daily-builds/+packages">Ubuntu / Linux Mint <strong>(daily, unstable)</strong></a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>Android</h2>
|
||||
<div class="line"></div>
|
||||
<h2>Android</h2>
|
||||
|
||||
<p>Android 4.0 or later is recommended.</p>
|
||||
<p>Android 4.0 or later is recommended.</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<strong>Android versions of Minetest are still in development and have bugs.</strong> The Android version has not been updated to 0.4.13 yet, please stand by.
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<a href="https://github.com/minetest/minetest/releases/download/0.4.12/Minetest-0.4.12.11-android.apk">Minetest-0.4.12-11-android.apk</a> (works with most devices)<br>
|
||||
You can also install it easily from the <a href="https://play.google.com/store/apps/details?id=net.minetest.minetest">Google Play Store</a> or from <a href="https://f-droid.org/repository/browse/?fdid=net.minetest.minetest">F-Droid</a>.
|
||||
</p>
|
||||
|
||||
<p><strong>Note:</strong> Please do not download unofficial Minetest builds from the Google Play app store. The builds found there may contain excessive adverts or spyware. They may be distributed under proprietary terms, without the source code, which makes them illegal to develop. They may be old or unsupported.</p>
|
||||
<p><strong>Note:</strong> Please do not download unofficial Minetest builds from the Google Play app store. The builds found there may contain excessive adverts or spyware. They may be distributed under proprietary terms, without the source code, which makes them illegal to develop. They may be old or unsupported.</p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>FreeBSD</h2>
|
||||
<div class="line"></div>
|
||||
<h2>FreeBSD</h2>
|
||||
|
||||
<p>There is a FreeBSD port.</p>
|
||||
<p>There is a FreeBSD port.</p>
|
||||
|
||||
<p>You can compile <code>minetest</code> and <code>minetest_game</code> from sources or use <code>pkg</code> (on FreeBSD 9.1 and newer).</p>
|
||||
<p>You can compile <code>minetest</code> and <code>minetest_game</code> from sources or use <code>pkg</code> (on FreeBSD 9.1 and newer).</p>
|
||||
|
||||
<h4>Compilation method</h4>
|
||||
<h4>Compilation method</h4>
|
||||
|
||||
<p>You can compile minetest and choose easily minetest options using the FreeBSD port dialogs.</p>
|
||||
<p>You can compile minetest and choose easily minetest options using the FreeBSD port dialogs.</p>
|
||||
|
||||
<pre>
|
||||
<pre>
|
||||
cd /usr/ports/games/minetest
|
||||
make install
|
||||
cd /usr/ports/games/minetest_game
|
||||
make install
|
||||
</pre>
|
||||
</pre>
|
||||
|
||||
<h4>Package method</h4>
|
||||
<h4>Package method</h4>
|
||||
|
||||
<p>FreeBSD official packages have their own pre-built packages: <code>pkg install minetest minetest_game</code></p>
|
||||
<p>FreeBSD official packages have their own pre-built packages: <code>pkg install minetest minetest_game</code></p>
|
||||
|
||||
<div class="line"></div>
|
||||
<h2>Source code</h2>
|
||||
<div class="line"></div>
|
||||
<h2>Source code</h2>
|
||||
|
||||
<p>The Minetest engine source code is at <a href="https://github.com/minetest/minetest">GitHub</a>.<br>
|
||||
You will probably want <a href="https://github.com/minetest/minetest_game">minetest_game</a>. Put the game in your games directory.</p>
|
||||
<p>The Minetest engine source code is at <a href="https://github.com/minetest/minetest">GitHub</a>.<br>
|
||||
You will probably want <a href="https://github.com/minetest/minetest_game">minetest_game</a>. Put the game in your games directory.</p>
|
||||
|
||||
<p>See <a href="https://github.com/minetest/minetest/blob/master/README.txt">README.txt</a> for details on how to compile.</p>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
<p>See <a href="https://github.com/minetest/minetest/blob/master/README.txt">README.txt</a> for details on how to compile.</p>
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Home - Minetest
|
||||
title: Home
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
|
71
irc.html
71
irc.html
@ -1,39 +1,37 @@
|
||||
---
|
||||
title: Community - Minetest
|
||||
title: Community
|
||||
jumbotron: IRC
|
||||
layout: default
|
||||
---
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<div class="jumbotron reduced irc">
|
||||
<div class="center">
|
||||
<h1>IRC</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h1>Channels</h1>
|
||||
<div>
|
||||
|
||||
<h1>Channels</h1>
|
||||
<div>
|
||||
<p>
|
||||
Join one of our <abbr title="Internet Relay Chat">IRC</abbr> channels on Freenode:<br/>
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li><strong><a href="http://webchat.freenode.net/?channels=#minetest">#minetest</a></strong> (<a href="http://irc.minetest.ru/minetest">logs</a>): main channel<br/>
|
||||
<li>
|
||||
<strong><a href="http://webchat.freenode.net/?channels=#minetest">#minetest</a></strong>
|
||||
(<a href="http://irc.minetest.ru/minetest">logs</a>): main channel
|
||||
</li>
|
||||
<li><strong><a href="http://webchat.freenode.net/?channels=#minetest-dev">#minetest-dev</a></strong> (<a href="http://irc.minetest.ru/minetest-dev">logs</a>): development channel, only serious stuff; note that webchat is muted due to too much spam/flood<br/>
|
||||
<li>
|
||||
<strong>
|
||||
<a href="http://webchat.freenode.net/?channels=#minetest-dev">#minetest-dev</a>
|
||||
</strong>
|
||||
(<a href="http://irc.minetest.ru/minetest-dev">logs</a>):
|
||||
development channel, only serious stuff; note that webchat is muted due to too much spam/flood.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<h1>Rules</h1>
|
||||
|
||||
<h1>Rules</h1>
|
||||
<p>
|
||||
Some people don't know how to behave in <abbr title="Internet Relay Chat">IRC</abbr>,
|
||||
so here are some simple rules:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Some people don't know how to behave in <abbr title="Internet Relay Chat">IRC</abbr>, so here are some simple rules:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<ul>
|
||||
<li>Don't ask if you can ask questions, just ask.</li>
|
||||
<li>Be patient when you ask something, people might not be arround.</li>
|
||||
<li>Don't spam.</li>
|
||||
@ -44,22 +42,17 @@ title: Community - Minetest
|
||||
<li>The channels are not playgrounds and are frequently used for talks which are not off-topic.</li>
|
||||
<li>Off-topic is allowed, but excessive use of it is disallowed.</li>
|
||||
<li>Link shorteners are discouraged for URLs that are not very long.</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<h1>Other languages</h1>
|
||||
<h1>Other languages</h1>
|
||||
|
||||
<p>
|
||||
Channels about Minetest in other languages (note that most people hang out on <code>#minetest</code>, which is the main channel)
|
||||
</p>
|
||||
<p>
|
||||
Channels about Minetest in other languages (note that most people hang out
|
||||
on <code>#minetest</code>, which is the main channel).
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li><div> <strong><a href="http://webchat.freenode.net/?channels=#minetest-de">#minetest-de</a></strong> German channel</div>
|
||||
</li>
|
||||
<li><div> <strong><a href="http://webchat.freenode.net/?channels=##minetest-es">##minetest-es</a></strong> Spanish channel</div>
|
||||
</li>
|
||||
<li><div> <strong><a href="http://webchat.freenode.net/?channels=#minetest-fr">#minetest-fr</a></strong> French channel</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
<ul>
|
||||
<li><strong><a href="http://webchat.freenode.net/?channels=#minetest-de">#minetest-de</a></strong> German channel</li>
|
||||
<li><strong><a href="http://webchat.freenode.net/?channels=##minetest-es">##minetest-es</a></strong> Spanish channel</li>
|
||||
<li><strong><a href="http://webchat.freenode.net/?channels=#minetest-fr">#minetest-fr</a></strong> French channel</li>
|
||||
</ul>
|
||||
|
Loading…
x
Reference in New Issue
Block a user