Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
fix(App): Fix app not starting
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDabrowski committed Feb 3, 2019
1 parent 56933f6 commit ab68b96
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [5.0.0-omega.24](https://github.com/MikeDabrowski/franz/compare/v5.0.0-omega.23...v5.0.0-omega.24) (2019-02-03)


### Bug Fixes

* **App:** Fix app not starting ([76cc98d](https://github.com/MikeDabrowski/franz/commit/76cc98d))
* **App:** Removed delay for non premium users. One of the most vile things to do. ([56933f6](https://github.com/MikeDabrowski/franz/commit/56933f6))
* **DarkMode:** Fix service dark mode ([4512203](https://github.com/MikeDabrowski/franz/commit/4512203)), closes [#d5294105](https://github.com/MikeDabrowski/franz/issues/d5294105)
* **Theme:** Fix loading theme on start ([8ac904c](https://github.com/MikeDabrowski/franz/commit/8ac904c))



# [5.0.0-omega.23](https://github.com/MikeDabrowski/franz/compare/v5.0.0-omega.24...v5.0.0-omega.23) (2019-02-03)



# [5.0.0-omega.23](https://github.com/MikeDabrowski/franz/compare/5.0.0-beta.20...5.0.0-omega.23) (2019-02-02)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "franz",
"productName": "Franz",
"appId": "com.meetfranz.franz",
"version": "5.0.0-omega.23",
"version": "5.0.0-omega.24",
"description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.",
"copyright": "adlk x franz - Stefan Malzner",
"main": "index.js",
Expand Down
7 changes: 0 additions & 7 deletions src/stores/AppStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { isLinux, isMac, isWindows } from '../environment';
import { getLocale } from '../helpers/i18n-helpers';

import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js';
import { onVisibilityChange } from '../helpers/visibility-helper';
import locales from '../i18n/translations';
import Request from './lib/Request';

Expand Down Expand Up @@ -184,12 +183,6 @@ export default class AppStore extends Store {
this._healthCheck();
this.isSystemDarkModeEnabled = systemPreferences.isDarkMode();
onVisibilityChange((isVisible) => {
this.isFocused = isVisible;
debug('Window is visible/focused', isVisible);
});
}
@computed get cacheSize() {
Expand Down

0 comments on commit ab68b96

Please sign in to comment.