mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-12-06 23:45:32 +01:00
Compare commits
8 Commits
78fb1bc302
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f32898f4a7 | ||
|
|
ddba3e77af | ||
|
|
7521066d5e | ||
|
|
5c97c52e1d | ||
|
|
48d18cfe99 | ||
| ddac2429b1 | |||
| dd8c51df2e | |||
| 23a66800ef |
119
.gitignore
vendored
Normal file
119
.gitignore
vendored
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
## Editors and development environments
|
||||||
|
*~
|
||||||
|
*.swp
|
||||||
|
*.bak*
|
||||||
|
*.orig
|
||||||
|
.DS_Store
|
||||||
|
# Vim
|
||||||
|
*.vim
|
||||||
|
# Kate
|
||||||
|
.*.kate-swp
|
||||||
|
.swp.*
|
||||||
|
# KDevelop4
|
||||||
|
.kdev4/
|
||||||
|
*.kdev4
|
||||||
|
# Eclipse (CDT and LDT)
|
||||||
|
.project
|
||||||
|
.cproject
|
||||||
|
.settings/
|
||||||
|
.buildpath
|
||||||
|
.metadata
|
||||||
|
# GNU Global
|
||||||
|
tags
|
||||||
|
!tags/
|
||||||
|
gtags.files
|
||||||
|
.idea
|
||||||
|
# Codelite
|
||||||
|
*.project
|
||||||
|
# Visual Studio Code & plugins
|
||||||
|
.vscode/
|
||||||
|
build/.cmake/
|
||||||
|
# Gradle
|
||||||
|
.gradle
|
||||||
|
|
||||||
|
## Files related to Minetest development cycle
|
||||||
|
/*.patch
|
||||||
|
*.diff
|
||||||
|
# GNU Patch reject file
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
## Non-static Minetest directories or symlinks to these
|
||||||
|
/bin/
|
||||||
|
/games/*
|
||||||
|
!/games/devtest/
|
||||||
|
/cache
|
||||||
|
/textures/*
|
||||||
|
!/textures/base/
|
||||||
|
/screenshots
|
||||||
|
/sounds
|
||||||
|
/mods/*
|
||||||
|
!/mods/minetest/
|
||||||
|
/mods/minetest/*
|
||||||
|
!/mods/minetest/mods_here.txt
|
||||||
|
/worlds
|
||||||
|
/world/
|
||||||
|
/clientmods/*
|
||||||
|
!/clientmods/preview/
|
||||||
|
/client/mod_storage/
|
||||||
|
|
||||||
|
## Configuration/log files
|
||||||
|
minetest.conf
|
||||||
|
debug.txt
|
||||||
|
debug.txt.1
|
||||||
|
|
||||||
|
## Other files generated by Minetest
|
||||||
|
screenshot_*.png
|
||||||
|
testbm.txt
|
||||||
|
|
||||||
|
## Doxygen files
|
||||||
|
doc/Doxyfile
|
||||||
|
doc/html/
|
||||||
|
doc/doxygen_*
|
||||||
|
|
||||||
|
## MkDocs files
|
||||||
|
public/
|
||||||
|
doc/mkdocs/docs/*.md
|
||||||
|
doc/mkdocs/mkdocs.yml
|
||||||
|
|
||||||
|
## Build files
|
||||||
|
build/
|
||||||
|
CMakeFiles
|
||||||
|
Makefile
|
||||||
|
cmake_install.cmake
|
||||||
|
CMakeCache.txt
|
||||||
|
CPackConfig.cmake
|
||||||
|
CPackSourceConfig.cmake
|
||||||
|
src/test_config.h
|
||||||
|
src/cmake_config.h
|
||||||
|
src/cmake_config_githash.h
|
||||||
|
src/unittest/test_world/world.mt
|
||||||
|
games/devtest/mods/testnodes/textures/testnodes_generated_*.png
|
||||||
|
/locale/
|
||||||
|
.directory
|
||||||
|
*.cbp
|
||||||
|
*.layout
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.ninja
|
||||||
|
.ninja*
|
||||||
|
*.gch
|
||||||
|
*.iml
|
||||||
|
test_config.h
|
||||||
|
cmake-build-debug/
|
||||||
|
cmake-build-release/
|
||||||
|
cmake_config.h
|
||||||
|
cmake_config_githash.h
|
||||||
|
CMakeDoxy*
|
||||||
|
compile_commands.json
|
||||||
|
*.apk
|
||||||
|
*.zip
|
||||||
|
# Visual Studio
|
||||||
|
*.vcxproj*
|
||||||
|
*.sln
|
||||||
|
.vs/
|
||||||
|
|
||||||
|
# Optional user provided library folder
|
||||||
|
lib/irrlichtmt
|
||||||
|
|
||||||
|
# Generated mod storage database
|
||||||
|
client/mod_storage.sqlite
|
||||||
11
README.MD
11
README.MD
@@ -1,7 +1,5 @@
|
|||||||
~~Minetest~~ XtreemTest
|
XtreemTest
|
||||||
========
|
==========
|
||||||
|
|
||||||
|
|
||||||
### "It's like MineTest, but more XTREEM!"
|
### "It's like MineTest, but more XTREEM!"
|
||||||
|
|
||||||
Fork of Minetest, a free-as-in-freedom voxel game engine with easy modding and game creation.
|
Fork of Minetest, a free-as-in-freedom voxel game engine with easy modding and game creation.
|
||||||
@@ -10,10 +8,8 @@ Copyright (C) 2010-2022 Perttu Ahola <celeron55@gmail.com>
|
|||||||
Copyright (C) 2021-2022 Migdyn <temp1@cubesoftware.xyz>
|
Copyright (C) 2021-2022 Migdyn <temp1@cubesoftware.xyz>
|
||||||
and contributors (see source file comments and the version control log of the original Minetest repository, which can be found [here](https://github.com/minetest/minetest).
|
and contributors (see source file comments and the version control log of the original Minetest repository, which can be found [here](https://github.com/minetest/minetest).
|
||||||
|
|
||||||
|
|
||||||
## IMPORTANT NOTE: This readme file and other documentation might be outdated or irrelevant, as it was taken directly from the original Minetest code.
|
## IMPORTANT NOTE: This readme file and other documentation might be outdated or irrelevant, as it was taken directly from the original Minetest code.
|
||||||
|
|
||||||
|
|
||||||
Table of Contents
|
Table of Contents
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
@@ -26,7 +22,6 @@ Table of Contents
|
|||||||
7. [Compiling](#compiling)
|
7. [Compiling](#compiling)
|
||||||
8. [Version Scheme](#version-scheme)
|
8. [Version Scheme](#version-scheme)
|
||||||
|
|
||||||
|
|
||||||
Our goal
|
Our goal
|
||||||
---------
|
---------
|
||||||
Our goal is to create a positive and censorship-free community around MineTest,
|
Our goal is to create a positive and censorship-free community around MineTest,
|
||||||
@@ -393,4 +388,4 @@ open ./build/macos/minetest.app
|
|||||||
|
|
||||||
Version scheme
|
Version scheme
|
||||||
--------------
|
--------------
|
||||||
We use the MAJOR.MINOR.PATCH-INFO versioning scheme since version 8.0.0-test
|
We use the MAJOR.MINOR.PATCH-INFO versioning scheme since version 8.0.0-test
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.8 KiB |
@@ -1,11 +1,11 @@
|
|||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
|
|
||||||
project.ext.set("versionMajor", 5) // Version Major
|
project.ext.set("versionMajor", 8) // Version Major
|
||||||
project.ext.set("versionMinor", 6) // Version Minor
|
project.ext.set("versionMinor", 0) // Version Minor
|
||||||
project.ext.set("versionPatch", 0) // Version Patch
|
project.ext.set("versionPatch", 0) // Version Patch
|
||||||
project.ext.set("versionExtra", "") // Version Extra
|
project.ext.set("versionExtra", "test") // Version Extra
|
||||||
project.ext.set("versionCode", 42) // Android Version Code
|
project.ext.set("versionCode", 42) // Android Version Code
|
||||||
project.ext.set("developmentBuild", 0) // Whether it is a development build, or a release
|
project.ext.set("developmentBuild", 1) // Whether it is a development build, or a release
|
||||||
// NOTE: +2 after each release!
|
// NOTE: +2 after each release!
|
||||||
// +1 for ARM and +1 for ARM64 APK's, because
|
// +1 for ARM and +1 for ARM64 APK's, because
|
||||||
// each APK must have a larger `versionCode` than the previous
|
// each APK must have a larger `versionCode` than the previous
|
||||||
@@ -24,8 +24,10 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects
|
||||||
repositories {
|
{
|
||||||
|
repositories
|
||||||
|
{
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
rootProject.name = "Minetest"
|
rootProject.name = "XtreemTest"
|
||||||
include ':app', ':native'
|
include ':app', ':native'
|
||||||
|
|||||||
Reference in New Issue
Block a user