mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-12-06 15:35:32 +01:00
Initial commit
This commit is contained in:
BIN
misc/CPACK_WIX_UI_BANNER.BMP
Normal file
BIN
misc/CPACK_WIX_UI_BANNER.BMP
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
BIN
misc/CPACK_WIX_UI_DIALOG.BMP
Normal file
BIN
misc/CPACK_WIX_UI_DIALOG.BMP
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 451 KiB |
20
misc/Info.plist
Normal file
20
misc/Info.plist
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>minetest</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>minetest-icon.icns</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Minetest</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Minetest</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>net.minetest.minetest</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</plist>
|
||||
33
misc/debpkg-control
Normal file
33
misc/debpkg-control
Normal file
@@ -0,0 +1,33 @@
|
||||
Section: games
|
||||
Priority: extra
|
||||
Standards-Version: 3.6.2
|
||||
Package: minetest-staging
|
||||
Version: 5.4.0-DATEPLACEHOLDER
|
||||
Depends: libc6, libcurl3-gnutls, libfreetype6, libgl1, JPEG_PLACEHOLDER, JSONCPP_PLACEHOLDER, LEVELDB_PLACEHOLDER, libopenal1, libpng16-16, libsqlite3-0, libstdc++6, libvorbisfile3, libx11-6, libxxf86vm1, libzstd1, zlib1g
|
||||
Maintainer: Loic Blot <loic.blot@unix-experience.fr>
|
||||
Homepage: https://www.minetest.net/
|
||||
Vcs-Git: https://github.com/minetest/minetest.git
|
||||
Vcs-Browser: https://github.com/minetest/minetest.git
|
||||
Architecture: amd64
|
||||
Build-Depends:
|
||||
cmake,
|
||||
gettext,
|
||||
libcurl4-gnutls-dev,
|
||||
libfreetype6-dev,
|
||||
libgl1-mesa-dev,
|
||||
libjpeg-dev,
|
||||
libjsoncpp-dev,
|
||||
libleveldb-dev,
|
||||
libogg-dev,
|
||||
libopenal-dev,
|
||||
libpng-dev,
|
||||
libsqlite3-dev,
|
||||
libvorbis-dev,
|
||||
libx11-dev,
|
||||
zlib1g-dev
|
||||
Description: Multiplayer infinite-world block sandbox game
|
||||
Minetest is a minecraft-inspired game written from scratch and licensed
|
||||
under the LGPL (version 2.1 or later). It supports both survival and creative
|
||||
modes along with multiplayer support, dynamic lighting, and an "infinite" map
|
||||
generator.
|
||||
Conflicts: minetestc55, minetest, minetest-server, minetest-data
|
||||
1
misc/irrlichtmt_tag.txt
Normal file
1
misc/irrlichtmt_tag.txt
Normal file
@@ -0,0 +1 @@
|
||||
1.9.0mt8
|
||||
53
misc/kubernetes.yml
Normal file
53
misc/kubernetes.yml
Normal file
@@ -0,0 +1,53 @@
|
||||
---
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: minetest
|
||||
name: minetest
|
||||
namespace: default
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: minetest
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: minetest
|
||||
spec:
|
||||
containers:
|
||||
- image: registry.gitlab.com/minetest/minetest/server:master
|
||||
name: minetest
|
||||
ports:
|
||||
- containerPort: 30000
|
||||
protocol: UDP
|
||||
volumeMounts:
|
||||
- mountPath: /var/lib/minetest
|
||||
name: minetest-data
|
||||
- mountPath: /etc/minetest
|
||||
name: config
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: minetest-data
|
||||
persistentVolumeClaim:
|
||||
claimName: minetest-data
|
||||
- configMap:
|
||||
defaultMode: 420
|
||||
name: minetest
|
||||
name: config
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app: minetest
|
||||
name: minetest
|
||||
namespace: default
|
||||
spec:
|
||||
ports:
|
||||
- name: minetest
|
||||
port: 30000
|
||||
protocol: UDP
|
||||
selector:
|
||||
app: minetest
|
||||
type: NodePort
|
||||
BIN
misc/minetest-icon-24x24.png
Normal file
BIN
misc/minetest-icon-24x24.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 587 B |
BIN
misc/minetest-icon.icns
Normal file
BIN
misc/minetest-icon.icns
Normal file
Binary file not shown.
BIN
misc/minetest-icon.ico
Normal file
BIN
misc/minetest-icon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.4 KiB |
BIN
misc/minetest-xorg-icon-128.png
Normal file
BIN
misc/minetest-xorg-icon-128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
17
misc/minetest.exe.manifest
Normal file
17
misc/minetest.exe.manifest
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="minetest" version="0.0.0.0" />
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
183
misc/minetest.svg
Normal file
183
misc/minetest.svg
Normal file
@@ -0,0 +1,183 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg2856"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="minetest.svg"
|
||||
inkscape:export-filename="/home/erlehmann/pics/icons/minetest/minetest-icon-24x24.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45">
|
||||
<defs
|
||||
id="defs2858">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
id="filter3864">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.20490381"
|
||||
id="feGaussianBlur3866" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="12.083333"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1233"
|
||||
inkscape:window-height="755"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2866"
|
||||
empspacing="2"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="10px"
|
||||
color="#ff0000"
|
||||
opacity="0.1254902"
|
||||
empcolor="#ff0000"
|
||||
empopacity="0.25098039"
|
||||
dotted="false" />
|
||||
<inkscape:grid
|
||||
type="axonomgrid"
|
||||
id="grid2870"
|
||||
units="px"
|
||||
empspacing="1"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingy="1px"
|
||||
originx="0px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2861">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#e9b96e;fill-opacity:1;stroke:#573a0d;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 6.1513775e-7,16 3.2110204e-7,28 21.035899,40.145082 l 21,-12.414519 0,-11.461126 L 20.78461,4 6.1513775e-7,16 z"
|
||||
id="path3047"
|
||||
transform="translate(3.4641013,6)"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 8.5,30.907477 -2,-1.1547 0,6 L 17.320508,42 l 0,-2 -1.732051,-1 0,-2 L 13.5,35.794229 l 0,-4 -5,-2.886752 0,2 z"
|
||||
id="path3831"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-linejoin:miter"
|
||||
d="m 6.9282032,36 3.4641018,-2 3.464101,2 1.643594,0.948929 0,2 2,1.154701 0,2 L 6.9282032,36 z"
|
||||
id="path3870"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:#fce94f;fill-opacity:1;stroke:#625802;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 25.980762,19 31.5,22.186533 l 0,2 L 38.09375,28 41.5625,26 45.5,23.730563 l 0,2.538874 0,-4 L 32.908965,15 25.980762,19 z"
|
||||
id="path3851"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
style="fill:#e9b96e;fill-opacity:1;stroke:#573a0d;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.50000000000000000"
|
||||
d="m 24.839746,18.341234 8.660254,-5 0,2 -8.660254,5 0,-2 z"
|
||||
id="path5684"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#73d216;fill-opacity:1;stroke:#325b09;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 25.980762,5 3.4641016,18 17.5,26.10363 31.5,18.186533 24.839746,14.341234 33.5,9.341234 25.980762,5 z"
|
||||
id="path3821"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
transform="translate(0,4)" />
|
||||
<path
|
||||
style="fill:#729fcf;fill-opacity:1;stroke:#19314b;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 17.5,28.10363 0,2 1.552559,0.89637 0,2 5.447441,3.145082 12,-7.071797 0,-2.14657 2,-1.1547 0,-1.54403 -7,-4.041452 -14,7.917097 z"
|
||||
id="path3825"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
transform="translate(0,4)" />
|
||||
<g
|
||||
id="g5691"
|
||||
style="stroke-linejoin:miter">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3862"
|
||||
d="m 13.856406,20 6.928204,4 -6.928204,4 -6.9282028,-4 6.9282028,-4 z"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter3864);opacity:0.25000000000000000" />
|
||||
<g
|
||||
id="g3858"
|
||||
style="stroke-linejoin:miter">
|
||||
<path
|
||||
style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 15.588457,21 1.732051,1 1.732051,-1 0,-6 -1.732051,-1 -1.732051,1 0,6 z"
|
||||
id="path3833"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
transform="translate(-3.4641015,2)" />
|
||||
<path
|
||||
style="fill:#4e9a06;fill-opacity:1;stroke:#316004;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 9.9641015,13.752777 17.320508,18 l 6.643593,-3.835681 0,-8.3286385 L 17.320508,2 9.9641015,6.2472233 l 0,7.5055537 z"
|
||||
id="path3837"
|
||||
transform="translate(-3.4641015,2)"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g5686"
|
||||
transform="translate(-4.2591582e-7,2)"
|
||||
style="stroke-linejoin:miter">
|
||||
<path
|
||||
transform="translate(24.248712,-2)"
|
||||
style="opacity:0.25000000000000000;fill:#2e3436;fill-opacity:1;stroke:none;filter:url(#filter3864);stroke-linejoin:miter"
|
||||
d="m 13.856406,20 5.196153,3 -5.196153,3 -5.196152,-3 5.196152,-3 z"
|
||||
id="path3868"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#4e9a06;fill-opacity:1;stroke:#316004;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 15.71539,21.073285 17.320508,22 l 1.394882,-0.805336 0,-8.389328 L 17.320508,12 l -1.605118,1.073285 0,8 z"
|
||||
id="path3853"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
transform="translate(20.78461,0)" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#ef2929;stroke-width:0.50000000000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.50000000000000000, 0.50000000000000000;stroke-dashoffset:0.25000000000000000"
|
||||
d="M 12.124356,33 11.25833,32.5"
|
||||
id="path3872"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#888a85;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.50000000000000000"
|
||||
d="m 45.5,26.730563 -4,2.309401 0,1 -2,1.1547 0,2 -2,1.154701 0,4 8,-4.618802 0,-7 z"
|
||||
id="path3874"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.1 KiB |
87
misc/net.minetest.minetest.appdata.xml
Normal file
87
misc/net.minetest.minetest.appdata.xml
Normal file
@@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>net.minetest.minetest.desktop</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>LGPL-2.1+ and CC-BY-SA-3.0 and MIT and Apache-2.0</project_license>
|
||||
<content_rating type="oars-1.0">
|
||||
<content_attribute id="violence-cartoon">mild</content_attribute>
|
||||
<content_attribute id="violence-fantasy">mild</content_attribute>
|
||||
<content_attribute id="social-chat">intense</content_attribute>
|
||||
<content_attribute id="social-info">mild</content_attribute>
|
||||
</content_rating>
|
||||
<name>Minetest</name>
|
||||
<summary>Multiplayer infinite-world block sandbox game</summary>
|
||||
<summary xml:lang="de">Mehrspieler-Sandkastenspiel mit unendlichen Blockwelten</summary>
|
||||
<description>
|
||||
<p>
|
||||
Minetest is an infinite-world block sandbox game and game engine.
|
||||
</p><p xml:lang="de">
|
||||
Minetest ist ein Sandkastenspiel und eine Spielengine mit unendlichen Welten.
|
||||
</p><p>
|
||||
Players can create and destroy various types of blocks in a
|
||||
three-dimensional open world. This allows forming structures in
|
||||
every possible creation, on multiplayer servers or in singleplayer.
|
||||
</p><p xml:lang="de">
|
||||
Spieler können in einer offenen 3D-Welt viele verschiedene Arten von
|
||||
Blöcken platzieren und abbauen. Dies erlaubt das Bauen von vielfältigen
|
||||
Strukturen im Einzelspieler oder auf Mehrspielerservern.
|
||||
</p><p>
|
||||
Minetest is designed to be simple, stable, and portable.
|
||||
It is lightweight enough to run on fairly old hardware.
|
||||
</p><p xml:lang="de">
|
||||
Minetest wurde entworfen, um einfach, stabil und portabel zu sein.
|
||||
Es ist leichtgewichtig genug, um auf relativ alter Hardware zu laufen.
|
||||
</p><p>
|
||||
Minetest has many features, including:
|
||||
</p><p xml:lang="de">
|
||||
Minetest besitzt viele Features, unter anderem:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Ability to walk around, dig, and build in a near-infinite voxel world</li>
|
||||
<li xml:lang="de">Die Möglichkeit, in einer nahezu unendlichen Voxel-Welt herumzulaufen, zu graben und zu bauen</li>
|
||||
<li>Crafting of items from raw materials</li>
|
||||
<li xml:lang="de">Fertigen von Items aus Rohmaterialien</li>
|
||||
<li>Fast and able to run on old and slow hardware</li>
|
||||
<li xml:lang="de">Gute Performance selbst auf älterer und langsamer Hardware</li>
|
||||
<li>A simple modding API that supports many additions and modifications to the game</li>
|
||||
<li xml:lang="de">Eine einfache Modding-API, die viele Ergänzungen und Änderungen am Spiel unterstützt</li>
|
||||
<li>Multiplayer support via servers hosted by users</li>
|
||||
<li xml:lang="de">Mehrspieler auf selber gehosteten Servern</li>
|
||||
<li>Beautiful lightning-fast map generator</li>
|
||||
<li xml:lang="de">Wunderschöner, blitzschneller Kartengenerator</li>
|
||||
</ul>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>http://www.minetest.net/media/gallery/1.jpg</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>http://www.minetest.net/media/gallery/3.jpg</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>http://www.minetest.net/media/gallery/5.jpg</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<keywords>
|
||||
<keyword>sandbox</keyword>
|
||||
<keyword>world</keyword>
|
||||
<keyword>mining</keyword>
|
||||
<keyword>multiplayer</keyword>
|
||||
</keywords>
|
||||
<url type="homepage">https://www.minetest.net</url>
|
||||
<url type="bugtracker">https://www.minetest.net/development/#reporting-issues</url>
|
||||
<url type="translate">https://dev.minetest.net/Translation</url>
|
||||
<url type="donation">https://www.minetest.net/development/#donate</url>
|
||||
<url type="faq">https://wiki.minetest.net/FAQ</url>
|
||||
<url type="help">https://wiki.minetest.net</url>
|
||||
<url type="vcs-browser">https://github.com/minetest/minetest</url>
|
||||
<url type="contribute">https://www.minetest.net/get-involved/</url>
|
||||
<provides>
|
||||
<binary>minetest</binary>
|
||||
</provides>
|
||||
<translation type="gettext">minetest</translation>
|
||||
<update_contact>sfan5@live.de</update_contact>
|
||||
<releases>
|
||||
<release date="2022-09-19" version="5.6.1"/>
|
||||
</releases>
|
||||
</component>
|
||||
18
misc/net.minetest.minetest.desktop
Normal file
18
misc/net.minetest.minetest.desktop
Normal file
@@ -0,0 +1,18 @@
|
||||
[Desktop Entry]
|
||||
Name=Minetest
|
||||
GenericName=Minetest
|
||||
Comment=Multiplayer infinite-world block sandbox
|
||||
Comment[de]=Mehrspieler-Sandkastenspiel mit unendlichen Blockwelten
|
||||
Comment[es]=Juego sandbox multijugador con mundos infinitos
|
||||
Comment[fr]=Jeu multijoueurs de type bac à sable avec des mondes infinis
|
||||
Comment[ja]=マルチプレイに対応した、無限の世界のブロック型サンドボックスゲームです
|
||||
Comment[ru]=Игра-песочница с безграничным миром, состоящим из блоков
|
||||
Comment[tr]=Tek-Çok oyuncuyla küplerden sonsuz dünyalar inşa et
|
||||
Exec=minetest
|
||||
Icon=minetest
|
||||
Terminal=false
|
||||
PrefersNonDefaultGPU=true
|
||||
Type=Application
|
||||
Categories=Game;Simulation;
|
||||
StartupNotify=false
|
||||
Keywords=sandbox;world;mining;crafting;blocks;nodes;multiplayer;roleplaying;
|
||||
66
misc/winresource.rc
Normal file
66
misc/winresource.rc
Normal file
@@ -0,0 +1,66 @@
|
||||
#include <windows.h>
|
||||
#include <winuser.h>
|
||||
#include <commctrl.h>
|
||||
#include <richedit.h>
|
||||
|
||||
#ifndef USE_CMAKE_CONFIG_H
|
||||
#define USE_CMAKE_CONFIG_H
|
||||
#endif
|
||||
#include "config.h"
|
||||
#undef USE_CMAKE_CONFIG_H
|
||||
|
||||
#if RUN_IN_PLACE
|
||||
#define BUILDMODE "RUN_IN_PLACE=1"
|
||||
#else
|
||||
#define BUILDMODE "RUN_IN_PLACE=0"
|
||||
#endif
|
||||
|
||||
#ifdef __MINGW32__
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "minetest.exe.manifest"
|
||||
#endif
|
||||
|
||||
LANGUAGE 0, SUBLANG_NEUTRAL
|
||||
130 ICON "minetest-icon.ico"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Version
|
||||
//
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
|
||||
PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifndef NDEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS VOS_NT_WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "Comments", ""
|
||||
VALUE "CompanyName", PROJECT_NAME_C " community"
|
||||
VALUE "FileDescription", PROJECT_NAME_C " engine"
|
||||
VALUE "FileVersion", VERSION_STRING
|
||||
VALUE "InternalName", PROJECT_NAME
|
||||
VALUE "LegalCopyright", "(c) 2011-2015 celeron55"
|
||||
VALUE "LegalTrademarks", """Minetest"" is the property of the Minetest community, don't use it without permission!"
|
||||
VALUE "OriginalFilename", "minetest.exe"
|
||||
VALUE "PrivateBuild", VERSION_EXTRA
|
||||
VALUE "ProductName", PROJECT_NAME_C
|
||||
VALUE "ProductVersion", PRODUCT_VERSION_STRING
|
||||
VALUE "SpecialBuild", BUILDMODE
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
|
||||
Reference in New Issue
Block a user