Browse Source

updated gitversion

Tig 4 months ago
parent
commit
ca53d331e3
2 changed files with 456 additions and 23 deletions
  1. 82 23
      GitVersion.yml
  2. 374 0
      logs/UICatalog20250301.log

+ 82 - 23
GitVersion.yml

@@ -1,29 +1,88 @@
-mode: ContinuousDeployment
+# This file configures GitVersion 6.x to work with Terminal.Gui's GitFlow branching strategy.
+#
+# Terminal.Gui uses the GitFlow branching strategy.
+# https://gitversion.net/docs/learn/branching-strategies/gitflow/
+#
+# - We have two main branches: `v1_release` and `v1_develop`.
+# - `v1_release` is the main branch for V1 releases and matches the latest NuGet release package (e.g., 1.0.0);
+#   prior to release, it uses pre-release labels (e.g., 1.0.0-prealpha.1).
+# - `v1_develop` is the development branch for V2 and always carries a pre-release label (e.g., 1.1.0-develop.1).
+# - Development happens on feature branches off `v1_develop`.
+# - For releases, we merge feature branches into `v1_develop`, then `v1_develop` into `v1_release`.
+# - The ./.github/workflows/publish.yml builds and publishes on pushes to `v1_develop` and `v1_release`.
+#
+# Branches
+# - v1_release: Main branch for V1 (historical)
+# - v1_develop: Develop branch for V1 (historical)
+#
+# Package Naming:
+# - from v1_develop: 2.1.0-develop.1 (minor version increments)
+# - from v1_release (pre-release): 2.0.0-prealpha.1 or 2.0.0-beta.1
+# - from v1_release (release): 2.0.0 (patch version increments)
+#
+mode: ContinuousDelivery   # GitVersion 6.x uses Mainline mode for GitFlow, focusing on main branch releases
+
+# We prefix our tags with 'v' or 'V' (e.g., v1.0.0)
 tag-prefix: '[vV]'
-continuous-delivery-fallback-tag: pre
+
 branches:
-  v1_develop:
-    mode: ContinuousDeployment
-    tag: pre
-    regex: v1_develop
-    source-branches:
-    - v1_release
-    pre-release-weight: 100
-  v1_release:
-    tag: rc
+
+  # V2 Release Branch
+  main:
+    # Matches the v1_release branch
+    regex: ^v1_release$
+    # Uses 'prealpha' as pre-release label before official release
+    label: 1.0.0-prealpha.1
+    # Increments patch version (x.y.z+1) on commits
     increment: Patch
-    regex: v1_release
-    source-branches:
-    - v1_develop
-    - v1_release
-  v1_feature:
-    tag: useBranchName
-    regex: ^features?[/-]
-    source-branches:
-    - v1_develop
-    - v1_release
+    # Specifies v1_develop as the source branch
+    source-branches: ['develop']
+    pre-release-weight: 100
+
+  # V2 Development Branch
+  develop:
+    # Matches the v1_develop branch
+    regex: v1_develop
+    # Adds 'develop' as pre-release label (e.g., 2.1.0-develop.1)
+    label: develop
+    # Increments minor version (x.y+1.z) on commits
+    increment: Minor
+    # No source branches specified as this is the root of development
+    source-branches: []
+    # Indicates this branch feeds into release branches
+    tracks-release-branches: true
+
+  # # V1 Branches - Included for historical reference
+  # v1_develop:
+  #   regex: v1_develop
+  #   label: v1_develop
+  #   increment: Minor
+  #   source-branches: ['v1_release']
+  #   # Lower weight keeps V1 pre-releases sorted below V2
+  #   pre-release-weight: 100
+
+  # v1_release:
+  #   regex: v1_release
+  #   # Empty label for stable releases
+  #   label: ''
+  #   increment: Patch
+  #   source-branches: ['v1_develop']
+
+  # Pull Request Branches
+  # Configures versioning for PRs (e.g., 2.0.0-pr.feature-123.1)
   pull-request:
-    tag: PullRequest.{BranchName}
+    # Matches typical PR branch names
+    regex: ^(pull|pull\-requests|pr)[/-]
+    # Uses 'pr' prefix with branch name in the label (e.g., pr.feature-123)
+    label: pr.{BranchName}
+    # Inherits increment strategy from source branch
     increment: Inherit
+    source-branches:
+      - develop
+      - main
+    # High weight ensures PR versions sort after regular pre-releases
+    pre-release-weight: 30000
+
+# Ignore specific commits if needed (currently empty)
 ignore:
-  sha: []
+  sha: []

+ 374 - 0
logs/UICatalog20250301.log

@@ -0,0 +1,374 @@
+2025-03-01 16:52:47.593 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:52:47.614 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:47.614 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:47.621 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:52:50.215 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:52:50.219 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:50.219 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:50.224 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:52:52.841 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:52:52.845 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:52.845 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:52.847 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:52:55.450 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:52:55.452 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:55.452 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:55.454 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:52:58.070 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:52:58.072 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:58.072 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:52:58.075 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:00.685 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:00.688 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:00.688 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:00.689 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:03.271 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:03.274 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:03.274 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:03.277 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:05.849 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:05.851 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:05.851 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:05.854 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:08.471 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:08.481 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:08.481 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:08.483 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:11.054 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:11.055 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:11.055 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:11.057 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:13.671 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:13.673 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:13.674 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:13.675 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:16.304 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:16.306 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:16.306 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:16.308 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:18.887 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:18.889 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:18.889 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:18.891 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:21.465 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:21.467 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:21.467 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:21.468 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:24.095 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:24.097 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:24.097 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:24.099 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:26.682 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:26.684 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:26.684 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:26.688 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:29.318 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:29.320 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:29.320 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:29.322 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:31.920 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:31.922 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:31.922 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:31.924 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:34.538 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:34.540 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:34.540 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:34.542 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:37.143 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:37.145 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:37.145 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:37.146 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:39.767 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:39.770 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:39.770 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:39.772 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:42.555 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:42.557 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:42.557 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:42.559 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:45.175 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:45.177 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:45.177 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:45.179 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:47.799 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:47.801 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:47.801 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:47.803 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:50.425 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:50.427 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:50.427 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:50.429 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:53.024 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:53.026 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:53.026 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:53.028 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:54.916 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:54.918 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:54.918 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:54.920 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:55.103 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:55.105 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.105 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.106 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:55.302 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:55.305 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.305 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.307 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:55.431 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:55.433 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.433 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:55.435 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:53:58.011 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:53:58.013 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:58.013 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:53:58.015 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:00.623 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:00.625 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:00.625 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:00.627 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:03.258 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:03.260 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:03.260 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:03.262 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:05.862 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:05.864 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:05.865 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:05.867 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:08.449 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:08.451 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:08.451 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:08.453 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:11.022 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:11.025 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:11.025 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:11.027 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:13.639 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:13.641 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:13.641 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:13.642 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:16.260 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:16.262 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:16.262 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:16.264 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:18.880 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:18.882 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:18.882 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:18.883 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:21.460 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:21.463 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:21.463 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:21.465 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:24.036 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:24.038 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:24.038 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:24.041 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:26.659 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:26.661 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:26.662 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:26.664 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:29.240 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:29.242 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:29.242 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:29.244 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:31.808 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:31.810 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:31.810 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:31.812 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:34.434 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:34.436 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:34.436 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:34.439 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:37.056 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:37.057 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:37.057 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:37.060 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:39.665 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:39.667 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:39.667 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:39.669 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:42.286 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:42.288 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:42.288 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:42.290 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:44.871 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:44.873 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:44.873 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:44.877 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:47.486 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:47.488 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:47.488 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:47.490 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:50.059 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:50.062 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:50.062 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:50.063 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:52.688 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:52.690 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:52.690 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:52.692 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:55.315 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:55.317 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:55.317 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:55.319 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:54:57.948 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:54:57.950 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:57.950 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:54:57.952 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:00.583 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:00.585 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:00.585 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:00.586 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:03.213 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:03.215 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:03.215 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:05.810 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:05.813 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:05.813 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:05.815 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:08.385 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:08.387 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:08.387 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:08.390 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:10.965 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:10.967 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:10.967 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:10.969 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:13.541 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:13.543 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:13.543 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:13.545 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:16.117 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:16.119 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:16.119 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:16.121 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:18.703 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:18.712 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:18.712 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:18.713 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:21.323 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:21.325 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:21.325 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:21.326 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:23.924 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:23.926 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:23.926 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:26.552 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:26.554 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:26.554 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:26.558 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:29.166 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:29.168 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:29.168 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:29.169 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:31.742 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:31.744 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:31.744 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:31.747 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:34.317 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:34.320 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:34.320 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:34.322 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:36.953 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:36.955 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:36.955 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:36.958 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:39.590 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:39.595 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:39.595 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:39.598 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:42.192 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:42.194 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:42.194 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:42.198 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:44.825 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:44.827 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:44.827 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:44.829 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:47.459 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:47.461 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:47.461 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:47.464 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:50.072 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:50.074 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:50.074 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:50.076 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:52.649 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:52.651 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:52.651 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:52.653 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:55.249 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:55.251 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:55.251 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:55.253 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:55:57.871 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:55:57.873 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:57.873 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:55:57.875 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:00.502 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:00.504 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:00.504 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:00.506 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:03.123 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:03.125 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:03.125 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:03.127 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:05.695 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:05.696 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:05.697 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:05.698 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:08.273 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:08.275 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:08.275 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:08.277 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:11.055 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:11.057 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:11.057 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:11.060 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:13.636 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:13.637 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:13.638 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:13.639 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:16.222 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:16.224 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:16.224 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:16.226 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:18.847 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:18.849 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:18.849 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:18.851 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:21.482 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:21.484 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:21.484 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:21.487 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:24.119 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:24.121 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:24.121 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:24.123 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:56:40.645 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:56:40.657 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:40.657 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:56:40.664 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:57:06.706 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:57:06.718 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:57:06.718 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:57:06.725 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:58:42.295 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:58:42.307 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:58:42.307 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:58:42.314 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 16:59:45.477 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 16:59:45.489 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:59:45.489 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 16:59:45.495 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 17:04:32.225 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 17:04:32.237 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:04:32.237 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:04:32.244 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 17:06:24.037 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 17:06:24.050 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:06:24.050 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:06:24.057 -07:00 [ERR] Init called multiple times without shutdown, ignoring.
+2025-03-01 17:21:55.665 -07:00 [WRN] [SettingsScope] [Update] "./.tui/config.json" does not exist.
+2025-03-01 17:21:55.677 -07:00 [WRN] [SettingsScope] [Update] "./.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:21:55.677 -07:00 [WRN] [SettingsScope] [Update] "C:\Users\Tig/.tui/UICatalog.config.json" does not exist.
+2025-03-01 17:21:55.684 -07:00 [ERR] Init called multiple times without shutdown, ignoring.