Ren'Py 7.4.10 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 7.4.10 Released

#1 Post by PyTom »

I'd like to announce Ren'Py 7.4.10, the tenth patch release of Ren'Py 7.4. This release is a small one, to fix a regression in 7.4.9 that occurred when large images were displayed.

There are also several fixes to the way voice interacts with text with pauses; the performance of drag and drop; and how the android port automatically selects an app store.

The Indonesian and Polish language translation has been updated.


Downloads of 7.4.10 can be found at:

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

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

drKlauz
Veteran
Posts: 239
Joined: Mon Oct 12, 2015 3:04 pm
Contact:

Re: Ren'Py 7.4.10 Released

#2 Post by drKlauz »

7.4.10.2178
Use/transclude/vbox still bugged.
Create new project with this code, open "About" menu, click "Increase", see value not changing, uncomment $pass, click "Increase", value changing.
I seen related issue closed on git. Am i doing something wrong/weird in this code?

Code: Select all

screen about_left(val):
  textbutton "Increase" action SetScreenVariable("test_val",val+1)

screen about_layout(val):
  hbox:
    align (0.5,0.5)
    spacing 100
    use about_left(val)
    vbox:
      transclude

screen about():
  tag menu
  default test_val=0
  use about_layout(test_val):
#    $pass
    text "[test_val]"
  textbutton "Return":
    align (0.5,0.95)
    action Return()
    keysym "game_menu"

label start:
  "test"
  return
I may be available for hire, check my thread: viewtopic.php?f=66&t=51350

User avatar
Alex
Lemma-Class Veteran
Posts: 3098
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Ren'Py 7.4.10 Released

#3 Post by Alex »

Hello, PyTom!
I've got an issue with images and transforms. An image that contains transform (some animation) works fine in ver. 7.3.5, but in ver. 7.4.10 animation doesn't occur. Am I miss something?

Code: Select all

image purple:
    Solid("#f0f")
    size(500, 500)
    
transform stretch:
    "purple"
    xzoom 1.0
    linear 0.5 xzoom 0.5
    
transform shrink:
    "purple"
    xzoom 0.5
    linear 0.5 xzoom 1.0
    
image stretch_to_full_size:
    contains stretch
    
image shrink_to_half:
    contains shrink
    
transform slide_transform(y_anchor=1.0, t=0.5):
    linear t yanchor y_anchor
    
    
screen test_animated_button_scr():
    default full_size = False
    
    default flag = True
    
    frame:
        pos (0.95, 0.15)
        anchor(1.0, 1.0)
        if flag:
            at slide_transform(y_anchor=1.0, t=0.0)
        elif full_size:
            at slide_transform(y_anchor=0.0)
        else:
            at slide_transform
                    
        button:
            if flag:
                add "purple"
            elif full_size:
                add "stretch_to_full_size"
            else:
                add "shrink_to_half"
                
            action [
                SetScreenVariable("flag", False),
                ToggleScreenVariable("full_size", True, False),
                ]

    
# The game starts here.
label start:
    "Animated button test."
    show screen test_animated_button_scr
    "On click rectangle changes its size in ver. 7.3.5, but not in ver. 7.4.10...(("
    "..."

User avatar
HEXdidnt
Regular
Posts: 63
Joined: Tue Aug 11, 2020 1:25 pm
Projects: A Night at the Office, Embracing Christmas, The Masquerade Benefit
Deviantart: HEXdidnt
Location: Harrow, London, UK
Contact:

Re: Ren'Py 7.4.10 Released

#4 Post by HEXdidnt »

PyTom wrote: Sat Oct 23, 2021 9:46 pm There are also several fixes to the way voice interacts with text with pauses
Awesome - just downloaded and tried it, and the issue I raised in another thread has been fixed. Much appreciated, PyTom!
As ever, dropping litter in the zen garden of your mind...

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 7.4.10 Released

#5 Post by PyTom »

Alex, drKlauz>>> Both of these issues should be fixed as of the Nov 4 nightly, which will probably eventually become a Ren'Py 7.4.11.
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

drKlauz
Veteran
Posts: 239
Joined: Mon Oct 12, 2015 3:04 pm
Contact:

Re: Ren'Py 7.4.10 Released

#6 Post by drKlauz »

Tested with actual game code, all problematic cases seems to work now. Thanks a lot!
I may be available for hire, check my thread: viewtopic.php?f=66&t=51350

User avatar
Alex
Lemma-Class Veteran
Posts: 3098
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Ren'Py 7.4.10 Released

#7 Post by Alex »

PyTom wrote: Wed Nov 03, 2021 11:04 pm Alex, drKlauz>>> Both of these issues should be fixed as of the Nov 4 nightly, which will probably eventually become a Ren'Py 7.4.11.
Tested on 7.5.0.59n and code worked fine - thank you, PyTom.

But, I've got an issue with launcher itself...))
When I choose one of the projects, its name (Active Project) doesn't changes, but the 'Launch Project' button works correct (runs the chosen project).

User avatar
zmook
Veteran
Posts: 421
Joined: Wed Aug 26, 2020 6:44 pm
Contact:

Re: Ren'Py 7.4.10 Released

#8 Post by zmook »

For the last few versions, has anyone else noticed that running a dev version of a game has gotten rather unstable when run from the Mac Ren'py Launcher ("Launch Project")? I get fairly frequent non-repeatable crashes. I wish I could pin down a specific cause, but it's pretty arbitrary -- the most common trigger seems to be scrolling back in the dev Console.
colin r
➔ if you're an artist and need a bit of help coding your game, feel free to send me a PM

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 7.4.10 Released

#9 Post by PyTom »

zmook>>> Do you have a traceback, or is it a crash without one?
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
Triority
Regular
Posts: 185
Joined: Fri Jul 20, 2018 1:28 pm
Completed: Welcome To... Chichester 0, 1,2 OVN 1, OVN 2, OVN 3, No Regrets For The Future
Projects: Welcome To... Chichester series
Organization: Triority
Tumblr: Sku-te
itch: triority
Location: England
Discord: sku_te
Contact:

Re: Ren'Py 7.4.10 Released

#10 Post by Triority »

Swing doesn't seem to be working again

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 7.4.10 Released

#11 Post by PyTom »

Triority wrote: Mon Nov 08, 2021 1:26 pm Swing doesn't seem to be working again

This should be fixed in 7.4.11, which just went into prerelease.
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
Triority
Regular
Posts: 185
Joined: Fri Jul 20, 2018 1:28 pm
Completed: Welcome To... Chichester 0, 1,2 OVN 1, OVN 2, OVN 3, No Regrets For The Future
Projects: Welcome To... Chichester series
Organization: Triority
Tumblr: Sku-te
itch: triority
Location: England
Discord: sku_te
Contact:

Re: Ren'Py 7.4.10 Released

#12 Post by Triority »

Great !

User avatar
ISAWHIM
Veteran
Posts: 318
Joined: Sun Nov 06, 2016 5:34 pm
Contact:

Re: Ren'Py 7.4.10 Released

#13 Post by ISAWHIM »

Can you update the "suggested ATOM editor", as it is throwing errors after updating many of the package files.

The error suggests that users update to version 1.40.0 at least, but "we" can't. They are currently on version 1.58.0 now and RenPy is still stuck on version 1.34.0 from January 8th in 2019.

I tried manually installing ATOM, but it installed in the stupidest location, with no option to select a location to install. However, it fails to load "project folders", unless you do it manually, each time. (That makes working with individual files of the same name, rather difficult.)

I couldn't even find the executable that RenPy uses... I was going to try to replace the exe with a shortcut to the new version, in hopes that it might open the same way. Instead, I found everything BUT an executable in the ATOM folders, within the RenPy folders. Anyways... it would be nice to have an updated version of ATOM, which our internal packages work with. Even the RenPy language package has more function that isn't available in this version that is included with RenPy. There was a whole list of auto-complete settings that don't show, or may not exist, within the package bound to this 1.34.0 version of ATOM. Just a giant picture of the logo and a few indent options in this version.

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 7.4.10 Released

#14 Post by PyTom »

The version of Atom that comes with Ren'Py is 1.57.0.
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: No registered users