summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-06-24 20:06:11 -0300
committerJesusaves <cpntb1@ymail.com>2023-06-24 20:06:11 -0300
commit42ad06b70550bc942e45964cfe7b734120985f51 (patch)
tree5fa1c6632b12a785897442549429d6cd66e1f897
parent332f5911c54fb01e4e008c4d8ec6b2004e58ad32 (diff)
downloadrenpy-42ad06b70550bc942e45964cfe7b734120985f51.tar.gz
renpy-42ad06b70550bc942e45964cfe7b734120985f51.tar.bz2
renpy-42ad06b70550bc942e45964cfe7b734120985f51.tar.xz
renpy-42ad06b70550bc942e45964cfe7b734120985f51.zip
Minimum changes for Ren'Py 8.1 support
-rw-r--r--.gitignore2
-rw-r--r--game/core.rpy5
-rw-r--r--game/options.rpy8
3 files changed, 13 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 3ac90d6..46b5d9e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -49,3 +49,5 @@ errors.txt
# Files which Ren'Py does not save
.*
+*.keystore
+
diff --git a/game/core.rpy b/game/core.rpy
index 6856024..e72d013 100644
--- a/game/core.rpy
+++ b/game/core.rpy
@@ -181,7 +181,7 @@ init -3 python:
vault=requests.Session()
if VAULT_CERT:
vault.cert = get_path("cert.pem")
- vault.verify = get_path("cert.pem")
+ vault.verify = False #get_path("cert.pem")
############################################################################
## Retrieve the Vault certificate. Otherwise, we cannot proceed.
@@ -226,7 +226,8 @@ init 10 python:
########
## Fix keymap
- config.keymap['screenshot'].remove('s')
+ config.keymap['screenshot']=[]
+ #config.keymap['screenshot'].remove('s')
config.keymap['screenshot'].append('K_F10')
config.keymap['screenshot'].append('K_F12')
config.keymap['toggle_skip'].remove('K_TAB')
diff --git a/game/options.rpy b/game/options.rpy
index 12a4e51..3adbfac 100644
--- a/game/options.rpy
+++ b/game/options.rpy
@@ -270,3 +270,11 @@ init python:
define config.steam_appid = 1570940
define discord_id = 840427221193195541
+
+## Revert some newer Ren'Py behaviors
+define _renpysteam._constant = False
+define config.quadratic_volumes = True
+define config.at_transform_compare_full_context = True
+
+
+