Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

It's great!!  But so far I haven't found the same options like in the free version, force update and stuff. And also it seems to update it every time even if everything matches up. I thought I triple checked my hash code, maybe I'm wrong. 

(+1)

Hi!

There isn't a force update option in the Advanced Update Utility because it didn't feel necessary, it made a lot more sense to have the game just always be up to date.

To fix your always updating issue: sometimes GitHub adds an extra space to the end of your hash, which will make the Update Utility detect an update when there isn't one.

To have the Update Utility ignore the extra space, find this line in the code:

updateHash = client.DownloadString(hashURL.ToAntiCacheURL());

and replace it with

updateHash = client.DownloadString(hashURL.ToAntiCacheURL()).Trim();
(+1)

Hey, understandable :). That's great, the solution worked. Thanks for the fast response! I appreciate it.