It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
high rated
avatar
foxworks: W7 64bit, 12GB memory, Firefox 43.0.1
Thanks.

So your on Firefox too and can load a hell of a lot of games at once, with the only issue being the lack of images for the legacy shelf... which does suggest either the retrieval or displaying of the images is the main issue.

Let's see if I can easily change the images to the low res ones and see if that helps at all...
high rated
avatar
adaliabooks: So your on Firefox too and can load a hell of a lot of games at once, with the only issue being the lack of images for the legacy shelf... which does suggest either the retrieval or displaying of the images is the main issue.
That supports the theory that the problem for the crashes/freezes are the legacy images. Because I can load all the games when using gog default library mode (aside from the sorting problem).
high rated
avatar
adaliabooks: So your on Firefox too and can load a hell of a lot of games at once, with the only issue being the lack of images for the legacy shelf... which does suggest either the retrieval or displaying of the images is the main issue.
avatar
moonshineshadow: That supports the theory that the problem for the crashes/freezes are the legacy images. Because I can load all the games when using gog default library mode (aside from the sorting problem).
I agree, but I'm not sure which part of displaying the images is the problem as of yet.

I've just downgraded the images to the smaller ones, would you try again and see if that helps at all?
high rated
avatar
adaliabooks: Give it a try, it might make it work again...

[...]
Guess what? With your site blocked, I can load my Library just fine, with "All" and even "Purchase Date". No box covers, but it loads without hiccups, and no freezes.


avatar
adaliabooks: [...]

Sorry... I wasn't actually saying Chrome was better in this case (though it totally is :P) but just that I wouldn't have thought the memory thing would be such a huge problem.

[...]
I was referring more to the "It's working absolutely fine for me" part, it's like hearing GOG Support saying "we can't reproduce it here". The big difference being that they then say "ticket closed", while you're trying really hard to figure out what the problem is. ;-)


avatar
adaliabooks: [...]

It would just be much easier to diagnose things and figure out the issues if I could see them myself, describing the issues over the internet is far from ideal.
Are you saying that we're not good at describing the issues? Are You?!?
high rated
avatar
adaliabooks: I've just downgraded the images to the smaller ones, would you try again and see if that helps at all?
Firefox still freezes when using the legacy shelf with display all games. And it freezes when switching to a different page besides the first one when setting it to 100 games.
So for the moment the legacy shelf only works for me on the first page. Should I need a game from the other pages I need to disable it :D
high rated
avatar
adaliabooks: I've just downgraded the images to the smaller ones, would you try again and see if that helps at all?
avatar
moonshineshadow: Firefox still freezes when using the legacy shelf with display all games. And it freezes when switching to a different page besides the first one when setting it to 100 games.
So for the moment the legacy shelf only works for me on the first page. Should I need a game from the other pages I need to disable it :D
Thanks moon, I think that rules out the size/quality of the images being the issue. I'll re-instate the better ones.
high rated
avatar
foxworks: W7 64bit, 12GB memory, Firefox 43.0.1
avatar
adaliabooks: Thanks.

So your on Firefox too and can load a hell of a lot of games at once, with the only issue being the lack of images for the legacy shelf... which does suggest either the retrieval or displaying of the images is the main issue.

Let's see if I can easily change the images to the low res ones and see if that helps at all...
Legacy images have returned. Now the issue is Firefox slows down to a crawl. I closed it down after the memory surpassed 2GB. I think the lowrez should help ;-)
high rated
avatar
HypersomniacLive: Guess what? With your site blocked, I can load my Library just fine, with "All" and even "Purchase Date". No box covers, but it loads without hiccups, and no freezes.

I was referring more to the "It's working absolutely fine for me" part, it's like hearing GOG Support saying "we can't reproduce it here". The big difference being that they then say "ticket closed", while you're trying really hard to figure out what the problem is. ;-)

Are you saying that we're not good at describing the issues? Are You?!?
Ok, that narrows it down further. Thanks Hyper.

I have a lot more sympathy for GoG's support team after trying to fix issues with my script...
But I do try my best, I never like to give up and leave a problem unsolved.

More like I'm not good at describing where you should look or what you should do to possibly fix them...


Anyway, if someone would mind trying this:

at line 2193 there should be a function:

libraryScope.getLegacyUrl = function (id)
{
if (window.legacyUrls.hasOwnProperty(id))
{
if (window.legacyUrls[id].hasOwnProperty("url"))
{
return window.legacyUrls[id].url;
}
else if (window.legacyUrls.hasOwnProperty(window.legacyUrls[id].bundleId))
{
return window.legacyUrls[window.legacyUrls[id].bundleId].url;
}
}
else
{
angular.element(document.body).injector().get('$http').get("https://gog.bigpizzapies.com/af_legacy_urls.php?report&&id=" + id);
}
}

can you replace it with this and see what happens:

libraryScope.getLegacyUrl = function (id)
{
return http://static04.gog.com/upload/images/2014/02/9a5c557e581a852723ec90084fdac6992754a2de.jpg
}

Which should make all the games show as Age of Wonders 3, but may at least let them all show.
avatar
foxworks: Legacy images have returned. Now the issue is Firefox slows down to a crawl. I closed it down after the memory surpassed 2GB. I think the lowrez should help ;-)
What. Why?

Don't get me wrong... it's nice that they're showing now, but the fact that it's fixed itself makes it somewhat difficult to diagnose...

But it's further evidence of where the issue is likely to be. I can certainly add low res as an option or something.
Post edited December 21, 2015 by adaliabooks
high rated
Right, I'll be going to bed in a minute. If anyone makes any further findings I'll look into it more in the morning.

In the meantime if you're having real trouble and can't view your library please just roll back to the last configuration until I can sort this out (again).

Thanks for all your help guys :D
high rated
avatar
adaliabooks: Anyway, if someone would mind trying this:

at line 2193 there should be a function:

libraryScope.getLegacyUrl = function (id)
{
if (window.legacyUrls.hasOwnProperty(id))
{
if (window.legacyUrls[id].hasOwnProperty("url"))
{
return window.legacyUrls[id].url;
}
else if (window.legacyUrls.hasOwnProperty(window.legacyUrls[id].bundleId))
{
return window.legacyUrls[window.legacyUrls[id].bundleId].url;
}
}
else
{
angular.element(document.body).injector().get('$http').get("https://gog.bigpizzapies.com/af_legacy_urls.php?report&&id=" + id);
}
}

can you replace it with this and see what happens:

libraryScope.getLegacyUrl = function (id)
{
return http://static04.gog.com/upload/images/2014/02/9a5c557e581a852723ec90084fdac6992754a2de.jpg
}
Seems like I broke the thing with replacing stuff (the menu for fundamentals is not showing anymore, so I can't switch to legacy view)... I need to try and find the problem. Just wanted to let you know, that I am looking into it :D
high rated
avatar
adaliabooks: libraryScope.getLegacyUrl = function (id)
{
return http://static04.gog.com/upload/images/2014/02/9a5c557e581a852723ec90084fdac6992754a2de.jpg
}
avatar
moonshineshadow: Seems like I broke the thing with replacing stuff (the menu for fundamentals is not showing anymore, so I can't switch to legacy view)... I need to try and find the problem. Just wanted to let you know, that I am looking into it :D
That sounds like a syntax error.

Just noticed gog added url tags around the url, those shouldn't be there... not sure if you just copied and pasted, but that may be a problem.

There should also be a ; at the end of the 'return' line, which I missed out XD

Thanks for trying it :)
high rated
avatar
moonshineshadow: Seems like I broke the thing with replacing stuff (the menu for fundamentals is not showing anymore, so I can't switch to legacy view)... I need to try and find the problem. Just wanted to let you know, that I am looking into it :D
Funny, that's exactly what happened to me, and I'm pretty sure I only replaced the relevant part (tried it three times, just to be sure).


avatar
adaliabooks: [...]

I have a lot more sympathy for GoG's support team after trying to fix issues with my script...
[...]
After this, I'm not sure I should be more sympathetic or not.
high rated
avatar
moonshineshadow: Seems like I broke the thing with replacing stuff (the menu for fundamentals is not showing anymore, so I can't switch to legacy view)... I need to try and find the problem. Just wanted to let you know, that I am looking into it :D
avatar
adaliabooks: That sounds like a syntax error.
Just noticed gog added url tags around the url, those shouldn't be there... not sure if you just copied and pasted, but that may be a problem.
There should also be a ; at the end of the 'return' line, which I missed out XD
Thanks for trying it :)
Already added the ; but the menu is still gone. Damn.
And just to be sure, I replaced it again with the original code and it was working again, so it is not like I deleted something I shouldn't have.
Post edited December 21, 2015 by moonshineshadow
high rated
avatar
moonshineshadow: Seems like I broke the thing with replacing stuff (the menu for fundamentals is not showing anymore, so I can't switch to legacy view)... I need to try and find the problem. Just wanted to let you know, that I am looking into it :D
avatar
HypersomniacLive: Funny, that's exactly what happened to me, and I'm pretty sure I only replaced the relevant part (tried it three times, just to be sure).
See above, I think it's probably my fault.

Edit: Or there might be more to it... :/

Got to go, will look into it all further tomorrow.
Post edited December 21, 2015 by adaliabooks
high rated
If I write it like this:

libraryScope.getLegacyUrl = function (id)
{
return ("http://static04.gog.com/upload/images/2014/02/9a5c557e581a852723ec90084fdac6992754a2de.jpg");
}

The menu re-appears, but the library images are just blanks, but without images I can load all games in legacy view without Firefox freezing :D
Post edited December 21, 2015 by moonshineshadow