Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
PREFIX = /usr/local

.PHONY: install

install: $(PREFIX)/bin/sb3tosb2

uninstall:
rm -f $(PREFIX)/bin/sb3tosb2

$(PREFIX)/bin/sb3tosb2: sb3tosb2.py
echo "#!/usr/bin/env python3" > $@
cat $< >> $@
chmod +x $@
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ Installation
--------------
Download and extract the ZIP file and move the sb3tosb2.py file to wherever you want.

or:

```bash
sudo make install
```

to install it to `/usr/local/bin/sb3tosb2`
(also adds a shebang for it to run with python3).

Usage
--------------
1. Run sb3tosb2.py with Python
Expand Down Expand Up @@ -47,4 +56,4 @@ Known Issues
- Compatibility mode changes variable monitor labels
- Compatibility mode allows ([ v] of [ v]) to access only variables (not attributes like x position, backdrop #, etc.)
- Dragging in projects converted with compatibility mode does not have the same pen behavior as in 3.0
- Unlimited join does not check case when checking string equality
- Unlimited join does not check case when checking string equality