Skip to content

Commit

Permalink
updated message about only using LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
katsaii committed Jul 11, 2024
1 parent 77757c9 commit 9ad37d1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ For more information, read the guidelines supplied by [GitHub](https://docs.gith

## Contributing Guidelines

### IMPORTANT

**DO NOT OPEN THE PROJECT IN A NON-LTS VERSION OF GAMEMAKER. IF YOU MAKE A PR**
**WHICH CHANGES THE IDE VERSION, IT WILL BE DECLINED.**

If you want to test the project on another version, call either the
`./copy-project.bat` or `./copy-project.sh` command. This will duplicate the
`src-lts` directory onto the `./bin` folder, allowing you to make destructive
changes to the source code without the GameMaker IDE freaking out and modifying
all of the project `.yy` and `.yyp` files.

### Issues

If you notice a problem with Catspeak, feel free to create an issue using the
Expand Down
4 changes: 4 additions & 0 deletions copy-project.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
@mkdir "bin/src-lts"
@xcopy "src-lts" "bin/src-lts" /s /e
echo moved src-lts to bin/src-lts
2 changes: 2 additions & 0 deletions copy-project.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cp -r "src-lts" "bin"
echo moved src-lts to bin/src-lts

0 comments on commit 9ad37d1

Please sign in to comment.