Skip to content

Commit

Permalink
7.9.5 release
Browse files Browse the repository at this point in the history
Former-commit-id: 55db129
  • Loading branch information
alderg committed Jan 4, 2018
1 parent 4f85fd2 commit c4ad284
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 18 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
04-JAN-2018: 7.9.5

- Fixes bug with current desktop app launcher

04-JAN-2018: 7.9.4

- Adds Extras, Plugins in desktop app
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.9.4
7.9.5
2 changes: 1 addition & 1 deletion war/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CACHE MANIFEST

# THIS FILE WAS GENERATED. DO NOT MODIFY!
# 01/04/2018 07:34 PM
# 01/04/2018 10:49 PM

app.html
index.html?offline=1
Expand Down
2 changes: 1 addition & 1 deletion war/js/app.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion war/js/atlas.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 3 additions & 12 deletions war/js/diagramly/ElectronApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,12 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
});
});
}

var appLoad = App.prototype.load;

App.prototype.load = function()
{
appLoad.apply(this, arguments);
const {ipcRenderer} = require('electron');

ipcRenderer.on('args-obj', (event, argsObj) =>
Expand All @@ -378,8 +381,6 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
var file = new LocalFile(this, data, '');
file.fileObject = fileEntry;
this.fileLoaded(file);

this.start();
});

var error = mxUtils.bind(this, function(e)
Expand All @@ -396,12 +397,9 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
file.fileObject.type = 'utf-8';
this.fileCreated(file, null, null, null);
this.saveFile();

this.start();
}
else
{
this.start();
this.handleError(e);
}

Expand All @@ -417,13 +415,6 @@ FeedbackDialog.feedbackUrl = 'https://log.draw.io/email';
var data = this.emptyDiagramXml;
var file = new LocalFile(this, data, title, null);
this.fileCreated(file, null, null, null);

this.start();
}
// If no args are passed
else
{
this.start();
}
}

Expand Down
2 changes: 1 addition & 1 deletion war/js/embed-static.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c4ad284

Please sign in to comment.