Page 3 of 4

Re: no inventory information SVN r8349

Posted: 04 Jan 2013, 07:56
by monkeyko
ptcarino wrote:
chenchut20 wrote:
Kiranetix wrote:Here's the temporary fix:

revert your current svn revision to r8344.

The cause of this bug lies within r8345. If this update is base from iRO, then pRO doesn't have this.

how to revert my current svn?
right click src folder
Tortoise SVN > Update to revision...
select Revision and input 8344
press OK
Is tortoise SVN a default content in onpenkore?? or do i still need to install it??

Re: no inventory information SVN r8349

Posted: 04 Jan 2013, 09:27
by Kaspy
monkeyko wrote:Is tortoise SVN a default content in onpenkore?? or do i still need to install it??
Install

Re: no inventory information SVN r8349

Posted: 15 Jan 2013, 00:17
by damnhue
tortoisesvn.net/

Is this the site where i can download the tortoise svn?

Re: no inventory information SVN r8349

Posted: 15 Jan 2013, 00:25
by damnhue
Theres no upgrade to revision

The only got:
repo-browser
properties
settings
help
about

Re: no inventory information SVN r8349

Posted: 15 Jan 2013, 00:29
by flashdbest
damnhue wrote:Theres no upgrade to revision

The only got:
repo-browser
properties
settings
help
about
if you haven't installed Turtle SVN - you have to.

if you already have it, try right click openkore folder itself

Re: no inventory information SVN r8349

Posted: 19 Jan 2013, 22:15
by ptcarino
UPDATE:
you guys can now update to the latest revision. the bug is already fixed.
damnhue wrote:tortoisesvn.net/

Is this the site where i can download the tortoise svn?
you should really look into the openkore site. the guide is already there.

Re: no inventory information SVN r8349

Posted: 20 Jan 2013, 18:08
by tyber
ptcarino wrote:
chenchut20 wrote:
Kiranetix wrote:Here's the temporary fix:

revert your current svn revision to r8344.

The cause of this bug lies within r8345. If this update is base from iRO, then pRO doesn't have this.

how to revert my current svn?
right click src folder
Tortoise SVN > Update to revision...
select Revision and input 8344
press OK
thx for the clue..it's work....

Re: no inventory information SVN r8349

Posted: 20 Jan 2013, 20:09
by sofax222
Anyway !!!!
What means this code line is:

Code: Select all

unless ($local_item = $args->{getter} && $args->{getter}($item))

Re: no inventory information SVN r8349

Posted: 21 Jan 2013, 02:24
by sofax222
How about to do this:

The original code lines:

Code: Select all

unless ($local_item = $args->{getter} && $args->{getter}($item)) {
     $local_item = $args->{class}->new;
     $add = 1;
 }
It should be changed to like:

Code: Select all

unless ($args->{getter} && ($local_item = $args->{getter}($item))) {
     $local_item = $args->{class}->new;
     $add = 1;
 }

Re: no inventory information SVN r8349

Posted: 23 Jan 2013, 21:59
by ratman000
this thread seems to be making more progress so go here instead..

http://forums.openkore.com/viewtopic.ph ... 3&start=90