We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e7cea commit 7f2ac96Copy full SHA for 7f2ac96
apps/renderer/src/initialize/migrates/index.ts
@@ -20,7 +20,10 @@ export const doMigration = async () => {
20
}
21
// NOTE: Add migration logic here
22
23
+ if (!APP_VERSION.includes("nightly")) {
24
+ window.__app_is_upgraded__ = true
25
+ }
26
appLog(`Upgrade from ${lastVersion} to ${APP_VERSION}`)
- window.__app_is_upgraded__ = true
27
+
28
localStorage.setItem(appVersionKey, APP_VERSION)
29
apps/renderer/src/modules/upgrade/container.tsx
@@ -66,7 +66,8 @@ const AppNotificationContainer: FC = () => {
66
, enjoy the new features! 🎉
67
</div>,
68
{
69
- duration: 10e8,
+ closeButton: true,
70
+ duration: 5000,
71
action: CHANGELOG_CONTENT
72
? {
73
label: "What's new?",
0 commit comments