Skip to content

Commit 8128999

Browse files
committed
feat: Check for updates once an hour, better feedback
1 parent 6a344a9 commit 8128999

3 files changed

Lines changed: 168 additions & 110 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
- Fixed an issue where indented LaTeX math equations could crash the editor
2525
instance due to the code marks including superfluous newlines (#4726)
2626
- Fixed missing code block background on YAML Frontmatters
27+
- Improved visual feedback during the update process
28+
- Zettlr now checks for new updates once an hour instead only during startup
2729

2830
## Under the Hood
2931

source/app/app-service-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default class AppServiceContainer {
8282
this._citeprocProvider = new CiteprocProvider(this._logProvider, this._configProvider, this._windowProvider)
8383
this._trayProvider = new TrayProvider(this._logProvider, this._configProvider, this._windowProvider)
8484
this._menuProvider = new MenuProvider(this._logProvider, this._configProvider, this._recentDocsProvider, this._commandProvider, this._windowProvider, this._documentManager)
85-
this._updateProvider = new UpdateProvider(this._logProvider, this._configProvider, this._commandProvider)
85+
this._updateProvider = new UpdateProvider(this._logProvider, this._configProvider, this._commandProvider, this._windowProvider)
8686
}
8787

8888
/**

0 commit comments

Comments
 (0)