Page 1 of 1

Ren'Py 6.11.2 Released

Posted: Sun Oct 31, 2010 6:06 pm
by PyTom
Ren'Py 6.11.2 "It Takes Two" is the second minor release of the Ren'Py 6.11 series. The primary focus of this release is to fix bugs found in previous releases. It also includes four new themes, and updates the included jEdit text editor.

Downloads of 6.11.2 and a full release announcement can be found at:

http://www.renpy.org/wiki/renpy/releases/6.11.2

A list of changes can be found at:

http://www.renpy.org/doc/html/changelog.html

Re: Ren'Py 6.11.2 Released

Posted: Mon Nov 01, 2010 1:39 am
by backansi
Ah; I'm late.
1.JPG
1.JPG (18.63 KiB) Viewed 2018 times
Mmm... Will it be fixed at next release, then?

Re: Ren'Py 6.11.2 Released

Posted: Mon Nov 01, 2010 4:58 am
by PeterM
Image

I am using Ubuntu 10.04. When i press the maximize button my mouseclicks after that seem to produce a double click, so two lines of text appear on clicking ones. If i press maximize again, so go back to the original screen it works as it should be. One mouseclick, one line of text.

Pressing rightclick on my mouse when maximized shows the options screen for a split second and then it returns. Everything works ok when not working maximized.

Re: Ren'Py 6.11.2 Released

Posted: Mon Nov 01, 2010 5:37 am
by Rocket Science
^^ Shouldn't that be a Unicode string?

Re: Ren'Py 6.11.2 Released

Posted: Mon Nov 01, 2010 11:23 pm
by doomonyou
I would like to confirm the bug summited by PeterM. I also have the same issue in Linux Mint 9.

Re: Ren'Py 6.11.2 Released

Posted: Mon Nov 01, 2010 11:46 pm
by PyTom
I'll figure this out when I get a chance, but until then, please resize the window by hand.

Re: Ren'Py 6.11.2 Released

Posted: Fri Nov 12, 2010 7:14 pm
by Rocket Science
I have a custom Yes/No prompt like so:

Code: Select all

transform fade_in_out:
    on show:
        alpha 0
        linear 0.5 alpha 1.0
    on hide:
        linear 0.5 alpha 0
    on yes_action:
        alpha 1.0
        linear 0.5 alpha 0
    on no_action:
        alpha 1.0
        linear 0.5 alpha 0

screen yesno_prompt:
    window id "menu_area":
        style "gm_root"
        xfill True
        yfill True
        at fade_in_out
        text message xalign 0.5 yanchor 0.5 ypos 0.5
        frame id "buttons":
            style_group "yesno_prompt"
            xalign 0.5
            yanchor 0.5
            ypos 0.6
            has hbox
            textbutton u"Yes" action yes_action
            textbutton u"No" action no_action
At the main menu, if I click the program's close button (triggering the prompt) and choose "no", it may cause the game to crash. Usually it takes multiple tries for this to happen.

Re: Ren'Py 6.11.2 Released

Posted: Wed Dec 08, 2010 9:22 pm
by doomonyou
PyTom, it appears the bug is a problem with Ubuntu 10.04. I just tried it again in 10.10 without any issues.