Ren'Py 8.3.4 and 7.8.4 Released
Added 2024-12-08 23:29:45 +0000 UTCI'm happy to announce the release of Ren'Py 8.3.4 and Ren'Py 7.8.4, fix releases that improves earlier versions of Ren'Py 8.3 and 7.8 . Ren'Py 8.3 should be used for all new games. Please see the changelog for a complete list of changes.
Downloads of Ren'Py 8.3.4 can be found at:
https://www.renpy.org/release/8.3.4
Downloads of Ren'Py 7.8.4 can be found at:
https://www.renpy.org/release/7.8.4
A full list of changes to Ren'Py can be found at:
https://www.renpy.org/doc/html/changelog.html
A list of changes that may require you to update your game can be found at:
https://www.renpy.org/doc/html/incompatible.html
Please also check out the credits and list of sponsors.
Comments
Thanks for checking! I’m able to download and execute when it’s in a zip file.
Nessa
2024-12-10 19:56:34 +0000 UTCI ran the newest build through virustotal, and it didn't match. https://www.virustotal.com/gui/file/50c83a9b785711916a4c8946d2d771c1df401c5074a84be087053ba6f09c9399 McAfee refused to scan it, so it may be a problem on there end. I develop Ren'Py on Linux, so it's unlikely to get Windows viruses included.
Renpytom
2024-12-10 19:55:16 +0000 UTCMcAfee
Nessa
2024-12-10 19:16:33 +0000 UTCWhich antivirus is it?
Renpytom
2024-12-10 19:13:09 +0000 UTCMy computer’s antivirus software won’t let me open the latest exe file saying that it’s dangerous. Anyone else getting the same issue?
Nessa
2024-12-10 18:38:18 +0000 UTCThe error looks like you used type (a reserved name) as a variable name.
Renpytom
2024-12-09 13:46:08 +0000 UTCI think there's a bug in this version. When I try to call a python function using the Function action I get this error: While running game code: File "game/marlon.rpy", line 3042, in script call call credits File "game/screens.rpy", line 1807, in script call screen credits() File "game/marlon.rpy", line 3042, in script call call credits File "game/screens.rpy", line 1807, in script call screen credits() File "renpy/common/000statements.rpy", line 671, in execute_call_screen store._return = renpy.call_screen(name, *args, **kwargs) File "game/screens.rpy", line 1786, in execute screen credits(): File "game/screens.rpy", line 1786, in execute screen credits(): File "game/screens.rpy", line 1789, in execute timer 5.0 action Function(ChangeClothes) repeat True File "renpy/common/00action_other.rpy", line 544, in __eq__ if type(self) is not type(other): TypeError: 'str' object is not callable the code is very simple: init python: def ChangeClothes(): global christine_outfit,donna_outfit,marlon_outfit,liz_outfit christine_outfit=renpy.random.choice(["underwear","nurse","jacket","casual","elegant"]) donna_outfit=renpy.random.choice(["doctor","lingerie","elegant"]) marlon_outfit=renpy.random.choice(["gym","casual","sexy","elegant"]) hannah_outfit=renpy.random.choice(["casual","elegant"]) screen credits(): tag menu timer 5.0 action Function(ChangeClothes) repeat True in previous version this was working. Thanks!
Winter Wolves Games
2024-12-09 09:18:14 +0000 UTC