Ren'Py 8.0.3 and 7.5.3 Released

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Post Reply
Message
Author
User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Ren'Py 8.0.3 and 7.5.3 Released

#1 Post by PyTom »

I'm pleased to announce the releases of Ren'Py 8.0.3 and 7.5.3. These releases upgrade the Android support to support Android 13 and Play Billing 5, adjust how modal timers and pauses work, and add Ukrainian translations of the Tutorial game and The Question. Please see the changelog for a full list of what's changed.

Downloads of 8.0.3 can be found at:

https://www.renpy.org/release/8.0.3

Downloads of 7.5.3 can be found at:

https://www.renpy.org/release/7.5.3

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 sponsor list.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

User avatar
ComputerArt.Club
Veteran
Posts: 427
Joined: Mon May 22, 2017 8:12 am
Completed: Famous Fables, BoPoMoFo: Learn Chinese, Santa's workshop, Cat's Bath, Computer Art Club
Location: Taiwan
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#2 Post by ComputerArt.Club »

Congratulations PyTom! It's great to see RenPy continue to evolve.

User avatar
Andredron
Miko-Class Veteran
Posts: 722
Joined: Thu Dec 28, 2017 2:37 pm
Location: Russia
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#3 Post by Andredron »

PyTom wrote: Sat Sep 10, 2022 8:06 pm I'm pleased to announce the releases of Ren'Py 8.0.3 and 7.5.3. These releases upgrade the Android support to support Android 13 and Play Billing 5, adjust how modal timers and pauses work, and add Ukrainian translations of the Tutorial game and The Question. Please see the changelog for a full list of what's changed.

Downloads of 8.0.3 can be found at:

https://www.renpy.org/release/8.0.3

Downloads of 7.5.3 can be found at:

https://www.renpy.org/release/7.5.3

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 sponsor list.
another ATL glitch. even two.
1) if there is on show or on hide, the picture itself is not displayed (in the example, this is the color)
2) on show works, but on hide doesn't work

Test.zip - https://m.vk.com/doc12125818_643374854? ... Ra0Qy2z6yD

User avatar
Andredron
Miko-Class Veteran
Posts: 722
Joined: Thu Dec 28, 2017 2:37 pm
Location: Russia
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#4 Post by Andredron »

PyTom wrote: Sat Sep 10, 2022 8:06 pm I'm pleased to announce the releases of Ren'Py 8.0.3 and 7.5.3. These releases upgrade the Android support to support Android 13 and Play Billing 5, adjust how modal timers and pauses work, and add Ukrainian translations of the Tutorial game and The Question. Please see the changelog for a full list of what's changed.

Downloads of 8.0.3 can be found at:

https://www.renpy.org/release/8.0.3

Downloads of 7.5.3 can be found at:

https://www.renpy.org/release/7.5.3

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 sponsor list.
renpy 8
It works:
text "1" text_align .5
And this crashes:
label "1" text_align .5

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#5 Post by PyTom »

Andredron wrote: Thu Dec 15, 2022 7:11 pm
renpy 8
It works:
text "1" text_align .5
And this crashes:
label "1" text_align .5
I need to look at how to handle this error better, but fundamentally this isn't work how you think it is. When you give text_align to a label, what you're doing is passing 'align' to the text inside the label. Align expects a pair, so you get this crash. This works:

Code: Select all

label "1" text_text_align .5
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

User avatar
Andredron
Miko-Class Veteran
Posts: 722
Joined: Thu Dec 28, 2017 2:37 pm
Location: Russia
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#6 Post by Andredron »

When I generated the project on android, it runs on the phone, everything works, but when I minimize and go back to the project hangs, is this a bug or what should I enter a command that would work?

Videos

https://m.vk.com/video55409234_45623930 ... mail580338

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: Ren'Py 8.0.3 and 7.5.3 Released

#7 Post by PyTom »

I don't have access to that video. There are some fixes to this in 8.1, though.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

Post Reply

Who is online

Users browsing this forum: Google [Bot]