1.1.7 hotfix

This commit is contained in:
tobspr 2020-06-04 20:50:27 +02:00
parent 905be7a463
commit 9d0a218882
4 changed files with 9 additions and 3 deletions

View File

@ -121,7 +121,7 @@ export class Application {
* Initializes all platform instances
*/
initPlatformDependentInstances() {
logger.log("Creating platform dependent instances");
logger.log("Creating platform dependent instances (standalone=", G_IS_STANDALONE, ")");
if (G_IS_STANDALONE) {
this.platformWrapper = new PlatformWrapperImplElectron(this);

View File

@ -1,4 +1,9 @@
export const CHANGELOG = [
{
version: "1.1.7",
date: "04.06.2020",
entries: ["HOTFIX: Fix savegames not showing up on the standalone version"],
},
{
version: "1.1.6",
date: "04.06.2020",

View File

@ -2,13 +2,14 @@ import { PlatformWrapperImplBrowser } from "../browser/wrapper";
import { getIPCRenderer } from "../../core/utils";
import { createLogger } from "../../core/logging";
import { StorageImplElectron } from "./storage";
import { PlatformWrapperInterface } from "../wrapper";
const logger = createLogger("electron-wrapper");
export class PlatformWrapperImplElectron extends PlatformWrapperImplBrowser {
initialize() {
this.app.storage = new StorageImplElectron(this);
return super.initialize();
return PlatformWrapperInterface.prototype.initialize.call(this);
}
getId() {

View File

@ -1 +1 @@
1.1.6
1.1.7