Compare commits

...

2 Commits

Author SHA1 Message Date
Tom Rothamel 45b8382242 doc: Copyedit. 2022-05-22 12:59:29 -04:00
Tom Rothamel a9f4c518f8 Check in release scripts. 2022-05-22 12:58:50 -04:00
5 changed files with 30 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
cd $(dirname $(dirname $(readlink -f $0)))
nice lib/py3-linux-x86_64/python add.py "$@"
nice lib/py2-linux-x86_64/python add.py "$@"
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
set -e
cd $(dirname $(dirname $(readlink -f $0)))
git status
sleep 2
(
set -e
. ~/.virtualenvs/renpy/bin/activate
cd sphinx
./build.sh
)
nice rpy build --python 3
nice rpy build --python 2
nice lib/py3-linux-x86_64/python distribute.py
nice lib/py2-linux-x86_64/python distribute.py
+1 -1
View File
@@ -31,7 +31,7 @@ echo "Submitted dmg for notarization."
$(dirname $0)/wait_notarization.py
sleep 15
sleep 60
xcrun stapler staple "$DMGBASE"
+1 -1
View File
@@ -31,7 +31,7 @@ echo "Submitted app for notarization."
$(dirname $0)/wait_notarization.py
sleep 15
sleep 60
xcrun stapler staple "$APP"
+1 -1
View File
@@ -369,7 +369,7 @@ The new RENPY_PATH_TO_SAVES environment variable makes it possible to control
where Ren'Py places system-level saves. The RENPY_MULTIPERSISTENT variable has
been documented, and controls the same thing with multipersistent data.
The new :var:`config.at_exit_callbacks` function are called when the game
The new :var:`config.at_exit_callbacks` functions are called when the game
quits. This is intended to allow the game to save additional data created
by the developer.