Ren'Py 6.99 Prereleases

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: 16093
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 6.99 Prereleases

#61 Post by PyTom »

There isn't enough information there to help me.

Is there a traceback? A log.txt? A crash dump?
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
philip
Miko-Class Veteran
Posts: 546
Joined: Tue Feb 12, 2013 10:44 pm
Location: southeastern PA
Contact:

Re: Ren'Py 6.99 Prereleases

#62 Post by philip »

@PyTom-

re: AlwaysTheSameBlueSky problem

When I click on the icon to open the game, I get a pop-up box which says:
AlwaysTheSameBlueSky cannot be opened
because of a problem

That's all. I am wondering if the problem is on the Gumroad site; there are three versions of the game listed there, and I clicked on the last option.

I am not a computer whiz, nor do I know anything about RenPy; just know that I have downloaded literally hundreds of games with nary a problem. Maybe I've done something stupid and caused this problem myself? Sure will appreciate any help that you can give.

philip
"One who has never made a mistake has never attempted anything!"
-
and
-
"Finish what you start"

Dharker
Regular
Posts: 99
Joined: Sun Sep 15, 2013 6:45 am
Contact:

Re: Ren'Py 6.99 Prereleases

#63 Post by Dharker »

If you run the game and it crashes, I think Renpy usually created a log.txt file. I imagine Pytom would need you to post that to get some idea of why it is happening.

User avatar
philip
Miko-Class Veteran
Posts: 546
Joined: Tue Feb 12, 2013 10:44 pm
Location: southeastern PA
Contact:

Re: Ren'Py 6.99 Prereleases

#64 Post by philip »

The game did not run and crash, when I try to open it, I get the message that I mentioned in my last post.

philip
"One who has never made a mistake has never attempted anything!"
-
and
-
"Finish what you start"

fk1995
Regular
Posts: 32
Joined: Sat Nov 17, 2012 3:45 am
Contact:

Re: Ren'Py 6.99 Prereleases

#65 Post by fk1995 »

fk1995 wrote:

Code: Select all

CoreFoundation = 847.210000
running /var/mobile/Applications/A6939AAF-CEDF-44AE-9C25-856FDD2FCC49/tutorial.app/base/main.py
iOS device idiom 1
AttributeError("'pyobjus.pyobjus.ObjcMethod' object has no attribute 'UTF8String'",)

Full traceback:
  File "/private/var/mobile/Applications/A6939AAF-CEDF-44AE-9C25-856FDD2FCC49/tutorial.app/base/renpy/bootstrap.py", line 287, in bootstrap
    renpy.main.main()
  File "/private/var/mobile/Applications/A6939AAF-CEDF-44AE-9C25-856FDD2FCC49/tutorial.app/base/renpy/main.py", line 273, in main
    renpy.config.savedir = __main__.path_to_saves(renpy.config.gamedir) # E1101 @UndefinedVariable
  File "/var/mobile/Applications/A6939AAF-CEDF-44AE-9C25-856FDD2FCC49/tutorial.app/base/main.py", line 88, in path_to_saves
    rv = url.path.UTF8String().decode("utf-8")
AttributeError: 'pyobjus.pyobjus.ObjcMethod' object has no attribute 'UTF8String'

After loading the script.
AttributeError: 'pyobjus.pyobjus.ObjcMethod' object has no attribute 'UTF8String'
Tried to build tutorial and got this..
Solved.
Change
rv = url.path.UTF8String().decode("utf-8")
to
rv = url.path().UTF8String().decode("utf-8")
Mac OS X 10.10 + Xcode 6.1.1
iPad 4 7.0.4

Hi Pytom,

After several tests I noticed that this line

Code: Select all

rv = url.path.UTF8String().decode("utf-8")
needs to be dealt with carefully since it works on iOS 8 but not on iOS7!
on iOS 7, this line works instead:

Code: Select all

rv = url.path().UTF8String().decode("utf-8")
Can you modify main.py so we don't have to take care of it when we build our game? Thanks!

User avatar
PyTom
Ren'Py Creator
Posts: 16093
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 6.99 Prereleases

#66 Post by PyTom »

I believe the current version should work on both. I try it the iOS7 way, and if that fails, try it the iOS 8 way.
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
xela
Lemma-Class Veteran
Posts: 2481
Joined: Sun Sep 18, 2011 10:13 am
Contact:

Re: Ren'Py 6.99 Prereleases

#67 Post by xela »

Thanks for all the hard work! I am going to try this out tonight.
Like what we're doing? Support us at:
Image

User avatar
PyTom
Ren'Py Creator
Posts: 16093
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 6.99 Prereleases

#68 Post by PyTom »

I'm hoping to get a new release out tonight, with a number of fixes.
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
xela
Lemma-Class Veteran
Posts: 2481
Joined: Sun Sep 18, 2011 10:13 am
Contact:

Re: Ren'Py 6.99 Prereleases

#69 Post by xela »

PyTom wrote:I'm hoping to get a new release out tonight, with a number of fixes.
So far I cannot find one thing wrong with it... it's prolly my imagination but everything seems to be working better than before :)
Like what we're doing? Support us at:
Image

User avatar
PyTom
Ren'Py Creator
Posts: 16093
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 6.99 Prereleases

#70 Post by PyTom »

6.99.0.257)

This fixes a problem with the Steam support on windows. If I gave you the link to the steam files, you'll need to redownload them after updating this release. (If I haven't, please contact me again. When things started breaking, I kind of lost track of who I'd sent the link to.)

It also fixes a potential performance problem where file access could require excessive locking, and hence be slower than it should have been.

Lastly, the image location picker has been updated to copy the image locations to the clipboard.

ketskari, I'm aware of your problem and know what I'm going to do to fix it, but I didn't want to hold things up to make the fix.

philip, are you on Ren'Py 6.99?
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
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ren'Py 6.99 Prereleases

#71 Post by nyaatrap »

Exception: Could not create RWops.

Updated and I got this error. What does it mean? It looks sound error.

User avatar
PyTom
Ren'Py Creator
Posts: 16093
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 6.99 Prereleases

#72 Post by PyTom »

!

Can you give me the full traceback, please?
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

Dharker
Regular
Posts: 99
Joined: Sun Sep 15, 2013 6:45 am
Contact:

Re: Ren'Py 6.99 Prereleases

#73 Post by Dharker »

@pytom

Thank you for the update, just tested steam achievements and it worked as I hoped it would. With no crashes or issues. All the issues i was getting seem to have been resolved with the new update.

User avatar
xela
Lemma-Class Veteran
Posts: 2481
Joined: Sun Sep 18, 2011 10:13 am
Contact:

Re: Ren'Py 6.99 Prereleases

#74 Post by xela »

nyaatrap wrote:...
You've reported an issue with Drag&Drop teleporting back to their positions without any kind of visible movement at all. Was that fixed as PyTom reported or does this still persist? I seem to be experiencing the same thing with this and the previous release.

==============================================================
Last edited by xela on Wed Mar 18, 2015 2:42 am, edited 1 time in total.
Like what we're doing? Support us at:
Image

User avatar
Arowana
Miko-Class Veteran
Posts: 531
Joined: Thu May 31, 2012 11:17 pm
Completed: a2 ~a due~
Projects: AXIOM.01, The Pirate Mermaid
Organization: Variable X, Navigame
Tumblr: navigame-media
itch: navigame
Contact:

Re: Ren'Py 6.99 Prereleases

#75 Post by Arowana »

Thanks for the update, PyTom! I love the image location picker update especially. :D

Looks like the screen interpolation issue is still there, though. The example I gave before still doesn't show the line with the interpolated text:
http://lemmasoft.renai.us/forums/viewto ... 45#p361441

It seems a bit strange to me, at least. Sorry for the trouble if it's intended behavior!
Complete: a2 ~a due~ (music, language, love)
In progress: The Pirate Mermaid (fairytale otome)
On hold: AXIOM.01 (girl detective game)

Image

Post Reply

Who is online

Users browsing this forum: Bing [Bot], konimyun