Update gitignore, add extra files (#10)

Adds optional changelog.md and support.md files, so that users know they exist

--------

Co-authored-by: matcool <26722564+matcool@users.noreply.github.com>
This commit is contained in:
sweetberry 2024-07-03 22:04:14 +03:00 committed by GitHub
parent 0efe3644d7
commit aaa8f8eb84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 12 additions and 5 deletions

7
.gitignore vendored
View file

@ -49,7 +49,9 @@ build-*/
# ILY vscode
**/.vscode
.idea/
# Local History for Visual Studio Code
.history/
# clangd
.cache/
@ -58,4 +60,5 @@ build-*/
.vs/
# CLion
/cmake-build-*/
.idea/
/cmake-build-*/

View file

@ -11,12 +11,13 @@ We recommend heading over to [the getting started section on our docs](https://d
## Build instructions
For more info, see [our docs](https://docs.geode-sdk.org/getting-started/create-mod#build)
```sh
# Assuming you have the CLI set up already
# Assuming you have the Geode CLI set up already
geode build
```
# Resources
* [Geode SDK Documentation](https://docs.geode-sdk.org/)
* [Geode SDK Source Code](https://github.com/geode-sdk/geode/)
* [Geode CLI](https://github.com/geode-sdk/cli)
* [Bindings](https://github.com/geode-sdk/bindings/)
* [Dev Tools](https://github.com/geode-sdk/DevTools)

View file

@ -1,3 +1,3 @@
# Template Mod
Edit about.md to change this
Edit about.md to change this

2
changelog.md Normal file
View file

@ -0,0 +1,2 @@
# 1.0.0
- Edit this file to change your mod's changelog.

View file

@ -97,4 +97,4 @@ class $modify(MyMenuLayer, MenuLayer) {
void onMyButton(CCObject*) {
FLAlertLayer::create("Geode", "Hello from my custom mod!", "OK")->show();
}
};
};

1
support.md Normal file
View file

@ -0,0 +1 @@
Edit this file to change your mod's support info, or delete it if you don't need it.