Compare commits

..

8 Commits

Author SHA1 Message Date
MCL Software
f32898f4a7 Spacing 2023-06-03 17:21:32 -04:00
MCL Software
ddba3e77af Update README.MD 2023-06-02 16:46:52 -04:00
MCL Software
7521066d5e Update README.MD 2023-06-01 17:13:01 -04:00
MCL Software
5c97c52e1d Spacing 2023-05-31 15:33:05 -04:00
MCL Software
48d18cfe99 Minor changes 2023-05-30 16:05:55 -04:00
ddac2429b1 Updated .gitignore 2022-10-26 17:10:44 -04:00
dd8c51df2e Updated Android icon 2022-10-26 17:10:19 -04:00
23a66800ef Updated the Android build files 2022-10-23 18:30:28 -04:00
5 changed files with 131 additions and 15 deletions

119
.gitignore vendored Normal file
View 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

View File

@@ -1,7 +1,5 @@
~~Minetest~~ XtreemTest
========
XtreemTest
==========
### "It's like MineTest, but more XTREEM!"
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>
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.
Table of Contents
------------------
@@ -26,7 +22,6 @@ Table of Contents
7. [Compiling](#compiling)
8. [Version Scheme](#version-scheme)
Our goal
---------
Our goal is to create a positive and censorship-free community around MineTest,
@@ -393,4 +388,4 @@ open ./build/macos/minetest.app
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

View File

@@ -1,11 +1,11 @@
// 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("versionMinor", 6) // Version Minor
project.ext.set("versionMajor", 8) // Version Major
project.ext.set("versionMinor", 0) // Version Minor
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("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!
// +1 for ARM and +1 for ARM64 APK's, because
// each APK must have a larger `versionCode` than the previous
@@ -24,8 +24,10 @@ buildscript {
}
}
allprojects {
repositories {
allprojects
{
repositories
{
google()
jcenter()
}

View File

@@ -1,2 +1,2 @@
rootProject.name = "Minetest"
rootProject.name = "XtreemTest"
include ':app', ':native'