File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [1.0.0-beta.2] - 2025-08-04
88
9- ### Added
9+ ### Changed
1010- Open external links in the system default browser.
11+ - Open login page on app start instead of home page
1112
1213## [1.0.0-beta.1] - 2025-07-31
1314
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const createMainWindow = () => {
7070 }
7171 } )
7272
73- mainWindow . loadURL ( HOST )
73+ mainWindow . loadURL ( HOST + '/login' )
7474
7575 mainWindow . once ( 'ready-to-show' , ( ) => mainWindow . show ( ) )
7676
@@ -181,7 +181,7 @@ app.whenReady().then(async () => {
181181 // Request notification permissions explicitly
182182 if ( systemPreferences . isTrustedAccessibilityClient ( false ) ) {
183183 systemPreferences . registerDefaults ( {
184- ' NSUserNotificationAlertStyle' : 'alert'
184+ NSUserNotificationAlertStyle : 'alert'
185185 } )
186186 }
187187
You can’t perform that action at this time.
0 commit comments