threadwell 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -564,14 +564,8 @@ export class InteractiveMode {
564
564
  */
565
565
  async run() {
566
566
  await this.init();
567
- if (this.settingsManager.getInterfaceSettings().showUpdateNotifications) {
568
- // Start version check asynchronously
569
- checkForNewThreadwellVersion(this.version).then((newVersion) => {
570
- if (newVersion) {
571
- this.showNewVersionNotification(newVersion);
572
- }
573
- });
574
- // Start package update check asynchronously
567
+ if (this.settingsManager.getInterfaceSettings().showUpdateNotifications && !this.startupUpdateVersion) {
568
+ // Start package update check asynchronously. Threadwell version updates are already shown in the startup card.
575
569
  this.checkForPackageUpdates().then((updates) => {
576
570
  if (updates.length > 0) {
577
571
  this.showPackageUpdateNotification(updates);