diff --git a/docs/api/source_Main.bs.html b/docs/api/source_Main.bs.html
index 262592af7..906dbc59b 100644
--- a/docs/api/source_Main.bs.html
+++ b/docs/api/source_Main.bs.html
@@ -74,15 +74,18 @@
end if
end if
- ' has the current user ran this version before?
- usersLastRunVersion = m.global.session.user.settings.lastRunVersion
- if not isValid(usersLastRunVersion) or not versionChecker(m.global.session.user.settings.lastRunVersion, m.global.app.version)
- set_user_setting("LastRunVersion", m.global.app.version)
- ' show what's new popup
- if m.global.session.user.settings["load.allowwhatsnew"]
- dialog = createObject("roSGNode", "WhatsNewDialog")
- m.scene.dialog = dialog
- m.scene.dialog.observeField("buttonSelected", m.port)
+ ' only show whats new popup and update lastRunVersion on prod
+ if not m.global.app.isDev
+ ' has the current user ran this version before?
+ usersLastRunVersion = m.global.session.user.settings.lastRunVersion
+ if not isValid(usersLastRunVersion) or not versionChecker(usersLastRunVersion, m.global.app.version)
+ set_user_setting("LastRunVersion", m.global.app.version)
+ ' show what's new popup
+ if m.global.session.user.settings["load.allowwhatsnew"]
+ dialog = createObject("roSGNode", "WhatsNewDialog")
+ m.scene.dialog = dialog
+ m.scene.dialog.observeField("buttonSelected", m.port)
+ end if
end if
end if