Save Game handling #14
|
Hi All, first and foremost: Awesome project!! One thing I did not quite understand yet (and I only started playing recently): How is the app handling save games? Are those stored locally in the Browser Context and is there a way to retrieve those? Did not find anything in the docs around that. Appreciate taking the time to answer this! |
Replies: 5 comments
|
Hi-
Thanks a lot, I really appreciate it!
So, the handling is now done by persisting into the local browser database
(IndexedDB) for the site. You can view the save states by using the
browser's developer tools, looking in the "Applications" section, and then
under "Storage", you drill into "IndexedDB".
In there, you can see the saves. I don't believe there is an easy way to
export them. An upcoming feature is adding support for syncing saves to and
from the cloud (the user provides the target, Dropbox, etc.).
Thanks,
Chris
…On Fri, Jan 14, 2022 at 7:58 AM Frank Steiler ***@***.***> wrote:
Hi All, first and foremost: Awesome project!!
One thing I did not quite understand yet (and I only started playing
recently): How is the app handling save games? Are those stored locally in
the Browser Context and is there a way to retrieve those?
Did not find anything in the docs around that.
Appreciate taking the time to answer this!
—
Reply to this email directly, view it on GitHub
<#14>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKG7CQ4N7AMN2XEGGFYZJDUWBB3TANCNFSM5L7FB4NA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
|
Is this local browser database ever cleared, for example if we clear our web history? |
|
Yeah, if you clear site data, they will be deleted. That is one reason the upcoming saves to Dropbox is being added. |
|
Please consider support for something open source like NextCloud instead of a subscription-based service. |
|
Yeah, would like to support additional providers in the future. Is there a public NextCloud available or is it self-hosting? Thanks, |
Yeah, if you clear site data, they will be deleted. That is one reason the upcoming saves to Dropbox is being added.