mirror of
https://gitlab.com/lunovox/computing.git
synced 2025-03-15 06:31:22 +00:00
[refact] Adapting the Mod for Luanti's ContentDB.
This commit is contained in:
parent
f9a65d035b
commit
c5ab2d91b2
5 changed files with 55 additions and 17 deletions
|
@ -1,3 +0,0 @@
|
|||
# CHANGELOG
|
||||
|
||||
## SMARTPHONE 0.1.0 alpha
|
|
@ -1 +1,44 @@
|
|||
# CONTRIBUTING
|
||||
# CONTRIBUTING
|
||||
|
||||
To contribute to this project, simply follow these steps:
|
||||
|
||||
--------------------------------------------
|
||||
|
||||
## 1. Download the repository git of this ptoject.
|
||||
|
||||
````bash
|
||||
git clone https://gitlab.com/lunovox/computing.git
|
||||
````
|
||||
|
||||
--------------------------------------------
|
||||
|
||||
## 2. Contributing
|
||||
|
||||
Change the code as you see fit. But remember not to be debauched in code.
|
||||
|
||||
--------------------------------------------
|
||||
|
||||
## 3. Make a Patch File
|
||||
|
||||
Create '.patch' file to port your contribution to file.
|
||||
|
||||
````bash
|
||||
git format-patch <commitish_inicial>
|
||||
````
|
||||
ou
|
||||
|
||||
````bash
|
||||
git format-patch <commitish_inicial>..<commitish_final>
|
||||
````
|
||||
|
||||
This git command generates one or more files in the format ````0000-like-a-message-of-commit.patch````.
|
||||
|
||||
--------------------------------------------
|
||||
|
||||
## 4. Send your Patch File
|
||||
|
||||
Please post your contribution in the '[issues]' tab of this project's git repository. Or, if you prefer, send an email to <[lunovox@disroot.org]>.
|
||||
|
||||
--------------------------------------------
|
||||
[issues]:https://gitlab.com/lunovox/computing/-/issues
|
||||
[lunovox@disroot.org]:mailto:lunovox@disroot.org?subject=My%20contribution%20to%20the%20COMPUTING%20mod.
|
||||
|
|
|
@ -53,7 +53,7 @@ See more details in wiki:
|
|||
|
||||
## 👑 **Developers:**
|
||||
|
||||
* Lunovox Heavenfinder: [E-Mail](mailto:lunovox@disroot.org), [Social Web](https://qoto.org/@lunovox), [WebChat](https://cloud.disroot.org/call/9aa2t7ib), [XMPP](xmpp:lunovox@disroot.org?join), [Audio Conference](mumble:mumble.disroot.org), [More Contacts](https://libreplanet.org/wiki/User:Lunovox)
|
||||
* Lunovox Heavenfinder: [E-Mail](mailto:lunovox@disroot.org), [Social Web](https://qoto.org/@lunovox), [WebChat](https://cloud.disroot.org/call/9aa2t7ib), [XMPP](https://conversations.im/i/lunovox@disroot.org?omemo-sid-633434523=97fce936651d6c3a28ca303ad5955ea2f1ab57fd5cd0769f04aebef6dd4cba79), [More Contacts](https://libreplanet.org/wiki/User:Lunovox)
|
||||
|
||||
-----------------------------------------
|
||||
|
||||
|
@ -84,7 +84,7 @@ See more details in file: [locale/README.md][read_internacionalizaton]
|
|||
|
||||
-----------------------------------------
|
||||
|
||||
## 📀 **Mods with Intregrsted Apps:**
|
||||
## 📀 **Mods with Intregrated Apps:**
|
||||
|
||||
These mods are not mandatory. But, because they are integrated into the 'computing' mod, they extend the functionality.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "computing",
|
||||
"title": "Computing",
|
||||
"type": "MOD",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.1",
|
||||
"dev_state":"BETA",
|
||||
"min_minetest_version": "5.7",
|
||||
"max_minetest_version": null,
|
||||
|
@ -12,8 +12,7 @@
|
|||
"email": "lunovox@disroot.org",
|
||||
"social web": "http:qoto.org/@lunovox",
|
||||
"webchat": "https://cloud.disroot.org/call/9aa2t7ib",
|
||||
"xmpp": "xmpp:lunovox@disroot.org?join",
|
||||
"mumble": "mumble:mumble.disroot.org",
|
||||
"xmpp": "https://conversations.im/i/lunovox@disroot.org?omemo-sid-633434523=97fce936651d6c3a28ca303ad5955ea2f1ab57fd5cd0769f04aebef6dd4cba79",
|
||||
"homepage": "https://libreplanet.org/wiki/User:Lunovox",
|
||||
"more contacts": "https://libreplanet.org/wiki/User:Lunovox",
|
||||
},
|
||||
|
@ -51,10 +50,10 @@
|
|||
"license": {
|
||||
"is_foss":true,
|
||||
"name":"GNU AGPL-3.0 or later",
|
||||
"url": "https://gitlab.com/lunovox/computing/-/raw/main/LICENSE_CODE.md",
|
||||
"url": "https://gitlab.com/lunovox/computing/-/blob/main/LICENSE_CODE.md",
|
||||
},
|
||||
"media_license": {
|
||||
"is_foss":false,
|
||||
"is_foss":true,
|
||||
"name":"CC BY-SA 4.0"
|
||||
"url":"https://gitlab.com/lunovox/computing/-/blob/main/LICENSE_MEDIA.md",
|
||||
},
|
||||
|
|
11
mod.conf
11
mod.conf
|
@ -1,18 +1,17 @@
|
|||
name = computing
|
||||
title = Computing
|
||||
description = Add multiple computing devices such as: Smartphones and Desktops. It supports several apps integrated by other mods.
|
||||
version = 1.0.0
|
||||
dev_state = ALPHA
|
||||
license = GNU AGPL-3.0
|
||||
media_license = CC BY-SA 4.0
|
||||
version = 1.1.1
|
||||
dev_state = BETA
|
||||
license = [GNU AGPL-3.0](https://gitlab.com/lunovox/computing/-/blob/main/LICENSE_CODE.md)
|
||||
media_license = [CC BY-SA 4.0](https://gitlab.com/lunovox/computing/-/blob/main/LICENSE_MEDIA.md)
|
||||
supported_games = minetest_game
|
||||
depends = default,keys
|
||||
optional_depends = components
|
||||
min_minetest_version = 5.7
|
||||
max_minetest_version =
|
||||
author = Lunovox Heavenfinder: [email](mailto:lunovox@disroot.org), [social web](http:qoto.org/@lunovox), [webchat](https://cloud.disroot.org/call/9aa2t7ib), [xmpp](xmpp:lunovox@disroot.org?join), [Mumble](mumble:mumble.disroot.org), [more contacts](https:libreplanet.org/wiki/User:Lunovox)
|
||||
author = Lunovox Heavenfinder: [E-Mail](mailto:lunovox@disroot.org), [Social Web](https://qoto.org/@lunovox), [WebChat](https://cloud.disroot.org/call/9aa2t7ib), [XMPP](https://conversations.im/i/lunovox@disroot.org?omemo-sid-633434523=97fce936651d6c3a28ca303ad5955ea2f1ab57fd5cd0769f04aebef6dd4cba79), [More Contacts](https://libreplanet.org/wiki/User:Lunovox)
|
||||
created = 2024-11-10 10:42:01
|
||||
update = 2024-11-21 22:11
|
||||
donate_url = https://liberapay.com/Lunovox/donate
|
||||
translation_url = https://gitlab.com/lunovox/computing/-/blob/main/locale/README.md
|
||||
repository = https://gitlab.com/lunovox/computing
|
||||
|
|
Loading…
Add table
Reference in a new issue