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

5
.gitignore vendored
View file

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

View file

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

2
changelog.md Normal file
View file

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

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.