1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
This commit is contained in:
Andrew Simachev 2024-01-16 13:36:54 +01:00
commit 92f8e70e83
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
700 changed files with 986 additions and 758 deletions

View file

@ -14,6 +14,11 @@ if (is.development) {
app.setPath('userData', path.join(app.getPath('userData'), '_dev'));
};
// Fix notifications app name
if (is.windows) {
app.setAppUserModelId(app.name);
};
const Api = require('./electron/js/api.js');
const ConfigManager = require('./electron/js/config.js');
const UpdateManager = require('./electron/js/update.js');