mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
i cant wait to get rid of this
This commit is contained in:
parent
d4d4370cb9
commit
e81b5e9f9b
3 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Geode Changelog
|
# Geode Changelog
|
||||||
|
|
||||||
|
## v2.0.0-beta.10
|
||||||
|
*
|
||||||
|
|
||||||
## v2.0.0-beta.9
|
## v2.0.0-beta.9
|
||||||
* Make the index population async as well (3b3e174)
|
* Make the index population async as well (3b3e174)
|
||||||
* Run Android file callbacks on main thread (79d9184)
|
* Run Android file callbacks on main thread (79d9184)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.0.0-beta.9
|
2.0.0-beta.10
|
|
@ -403,7 +403,9 @@ void Index::Impl::checkForUpdates() {
|
||||||
// make sure the downloaded local copy actually exists
|
// make sure the downloaded local copy actually exists
|
||||||
ghc::filesystem::exists(dirs::getIndexDir() / "v0" / "config.json")
|
ghc::filesystem::exists(dirs::getIndexDir() / "v0" / "config.json")
|
||||||
) {
|
) {
|
||||||
this->updateFromLocalTree();
|
std::thread([this](){
|
||||||
|
this->updateFromLocalTree();
|
||||||
|
}).detach();
|
||||||
}
|
}
|
||||||
// otherwise save hash and download source
|
// otherwise save hash and download source
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue