From aaa8f8eb844940cb5905edf0332342b3633dc952 Mon Sep 17 00:00:00 2001 From: sweetberry Date: Wed, 3 Jul 2024 22:04:14 +0300 Subject: [PATCH] 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> --- .gitignore | 7 +++++-- README.md | 3 ++- about.md | 2 +- changelog.md | 2 ++ src/main.cpp | 2 +- support.md | 1 + 6 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 changelog.md create mode 100644 support.md diff --git a/.gitignore b/.gitignore index d4ce5a1..2604c20 100644 --- a/.gitignore +++ b/.gitignore @@ -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-*/ \ No newline at end of file diff --git a/README.md b/README.md index 97bd1da..8cf2bb1 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/about.md b/about.md index abc849c..3a0c36f 100644 --- a/about.md +++ b/about.md @@ -1,3 +1,3 @@ # Template Mod -Edit about.md to change this +Edit about.md to change this \ No newline at end of file diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..9f04fab --- /dev/null +++ b/changelog.md @@ -0,0 +1,2 @@ +# 1.0.0 +- Edit this file to change your mod's changelog. diff --git a/src/main.cpp b/src/main.cpp index e2b410f..4070035 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -97,4 +97,4 @@ class $modify(MyMenuLayer, MenuLayer) { void onMyButton(CCObject*) { FLAlertLayer::create("Geode", "Hello from my custom mod!", "OK")->show(); } -}; +}; \ No newline at end of file diff --git a/support.md b/support.md new file mode 100644 index 0000000..6d48eff --- /dev/null +++ b/support.md @@ -0,0 +1 @@ +Edit this file to change your mod's support info, or delete it if you don't need it.