From 565793b85c276ea3ab2be57b6e692da6ecf7aefb Mon Sep 17 00:00:00 2001 From: BDisp Date: Mon, 12 Aug 2024 13:44:09 +0100 Subject: [PATCH 01/13] V1 Fixes #3541. Checking if clipboard is available on windows. (#3658) * V1 Fixes #3541. Checking if clipboard is available on windows. * Fix nuget packages with vulnerabilities. --- Terminal.Gui/ConsoleDrivers/WindowsDriver.cs | 16 +++++++++++++++- UICatalog/UICatalog.csproj | 2 +- UnitTests/UnitTests.csproj | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index f575de14b..01d13b80d 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -1970,7 +1970,21 @@ namespace Terminal.Gui { class WindowsClipboard : ClipboardBase { public WindowsClipboard () { - IsSupported = IsClipboardFormatAvailable (cfUnicodeText); + IsSupported = CheckClipboardIsAvailable (); + } + + private static bool CheckClipboardIsAvailable () + { + // Attempt to open the clipboard + if (OpenClipboard (IntPtr.Zero)) { + // Clipboard is available + // Close the clipboard after use + CloseClipboard (); + + return true; + } + // Clipboard is not available + return false; } public override bool IsSupported { get; } diff --git a/UICatalog/UICatalog.csproj b/UICatalog/UICatalog.csproj index 89dcd4c0c..a05ebdf02 100644 --- a/UICatalog/UICatalog.csproj +++ b/UICatalog/UICatalog.csproj @@ -21,7 +21,7 @@ - + diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj index d7e5c2d2a..63f2ba107 100644 --- a/UnitTests/UnitTests.csproj +++ b/UnitTests/UnitTests.csproj @@ -19,10 +19,10 @@ - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 433df8b9c96726131021fd731d8de7d26c056eef Mon Sep 17 00:00:00 2001 From: BDisp Date: Mon, 16 Sep 2024 15:29:20 +0100 Subject: [PATCH 02/13] Fixes #3738. CursesDriver stops responding. --- Terminal.Gui/ConsoleDrivers/CursesDriver/UnixMainLoop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/ConsoleDrivers/CursesDriver/UnixMainLoop.cs b/Terminal.Gui/ConsoleDrivers/CursesDriver/UnixMainLoop.cs index 3e23b78a5..7ffa43eea 100644 --- a/Terminal.Gui/ConsoleDrivers/CursesDriver/UnixMainLoop.cs +++ b/Terminal.Gui/ConsoleDrivers/CursesDriver/UnixMainLoop.cs @@ -97,7 +97,7 @@ namespace Terminal.Gui { this.mainLoop = mainLoop; pipe (wakeupPipes); AddWatch (wakeupPipes [0], Condition.PollIn, ml => { - read (wakeupPipes [1], ignore, (IntPtr)1); + read (wakeupPipes [0], ignore, (IntPtr)1); return true; }); } From 186068783950a79b6772b2e31bcf36ddce6ae90d Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 18 Sep 2024 22:34:09 +0100 Subject: [PATCH 03/13] Fixes #3740. Disabled MenuItem triggers exception. --- Terminal.Gui/Views/Menu.cs | 2 +- UnitTests/Menus/MenuTests.cs | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Terminal.Gui/Views/Menu.cs b/Terminal.Gui/Views/Menu.cs index 444f695a6..464fa3b4d 100644 --- a/Terminal.Gui/Views/Menu.cs +++ b/Terminal.Gui/Views/Menu.cs @@ -1238,7 +1238,7 @@ namespace Terminal.Gui { mi = openCurrentMenu.barItems.Children [openCurrentMenu.current]; } else if (openCurrentMenu.barItems.IsTopLevel) { mi = openCurrentMenu.barItems; - } else { + } else if (openCurrentMenu?.current > -1) { mi = openMenu.barItems.Children [openMenu.current]; } MenuOpened?.Invoke (mi); diff --git a/UnitTests/Menus/MenuTests.cs b/UnitTests/Menus/MenuTests.cs index 35b0a18ae..d62b7b709 100644 --- a/UnitTests/Menus/MenuTests.cs +++ b/UnitTests/Menus/MenuTests.cs @@ -219,8 +219,7 @@ Edit View = mCurrent })); Assert.True (menu.IsMenuOpen); - Assert.Equal ("_File", miCurrent.Parent.Title); - Assert.Equal ("_New", miCurrent.Title); + Assert.Null (miCurrent); Assert.True (mCurrent.MouseEvent (new MouseEvent () { X = 1, @@ -229,8 +228,7 @@ Edit View = mCurrent })); Assert.True (menu.IsMenuOpen); - Assert.Equal ("_File", miCurrent.Parent.Title); - Assert.Equal ("_New", miCurrent.Title); + Assert.Null (miCurrent); Assert.True (mCurrent.MouseEvent (new MouseEvent () { X = 1, @@ -239,8 +237,7 @@ Edit View = mCurrent })); Assert.True (menu.IsMenuOpen); - Assert.Equal ("_File", miCurrent.Parent.Title); - Assert.Equal ("_Save", miCurrent.Title); + Assert.Null (miCurrent); // close the menu Assert.True (menu.MouseEvent (new MouseEvent () { @@ -265,8 +262,7 @@ Edit Assert.True (mCurrent.ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ()))); Assert.True (menu.IsMenuOpen); - Assert.Equal ("_File", miCurrent.Parent.Title); - Assert.Equal ("_New", miCurrent.Title); + Assert.Null (miCurrent); // close the menu Assert.True (menu.ProcessHotKey (new KeyEvent (Key.F9, new KeyModifiers ()))); From 486f129c8a9e70237615ad985dd971d5d709d841 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 6 Nov 2024 16:16:17 +0000 Subject: [PATCH 04/13] Fixes #3752. Tracking Windows Terminal Preview Issue - App size is corrupted --- Terminal.Gui/ConsoleDrivers/WindowsDriver.cs | 243 ++++++++++--------- 1 file changed, 125 insertions(+), 118 deletions(-) diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index 01d13b80d..0abcc6024 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -18,7 +18,6 @@ namespace Terminal.Gui { public const int STD_ERROR_HANDLE = -12; internal IntPtr InputHandle, OutputHandle; - IntPtr ScreenBuffer; readonly uint originalConsoleMode; CursorVisibility? initialCursorVisibility = null; CursorVisibility? currentCursorVisibility = null; @@ -40,47 +39,47 @@ namespace Terminal.Gui { public bool WriteToConsole (Size size, CharInfo [] charInfoBuffer, Coord coords, SmallRect window) { - if (ScreenBuffer == IntPtr.Zero) { - ReadFromConsoleOutput (size, coords, ref window); - } + //if (OutputHandle == IntPtr.Zero) { + // ReadFromConsoleOutput (size, coords, ref window); + //} - return WriteConsoleOutput (ScreenBuffer, charInfoBuffer, coords, new Coord () { X = window.Left, Y = window.Top }, ref window); + return WriteConsoleOutput (OutputHandle, charInfoBuffer, coords, new Coord () { X = window.Left, Y = window.Top }, ref window); } - public void ReadFromConsoleOutput (Size size, Coord coords, ref SmallRect window) - { - ScreenBuffer = CreateConsoleScreenBuffer ( - DesiredAccess.GenericRead | DesiredAccess.GenericWrite, - ShareMode.FileShareRead | ShareMode.FileShareWrite, - IntPtr.Zero, - 1, - IntPtr.Zero - ); - if (ScreenBuffer == INVALID_HANDLE_VALUE) { - var err = Marshal.GetLastWin32Error (); + //public void ReadFromConsoleOutput (Size size, Coord coords, ref SmallRect window) + //{ + // OutputHandle = CreateConsoleScreenBuffer ( + // DesiredAccess.GenericRead | DesiredAccess.GenericWrite, + // ShareMode.FileShareRead | ShareMode.FileShareWrite, + // IntPtr.Zero, + // 1, + // IntPtr.Zero + // ); + // if (ScreenBuffer == INVALID_HANDLE_VALUE) { + // var err = Marshal.GetLastWin32Error (); - if (err != 0) - throw new System.ComponentModel.Win32Exception (err); - } + // if (err != 0) + // throw new System.ComponentModel.Win32Exception (err); + // } - if (!initialCursorVisibility.HasValue && GetCursorVisibility (out CursorVisibility visibility)) { - initialCursorVisibility = visibility; - } + // if (!initialCursorVisibility.HasValue && GetCursorVisibility (out CursorVisibility visibility)) { + // initialCursorVisibility = visibility; + // } - if (!SetConsoleActiveScreenBuffer (ScreenBuffer)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } + // if (!SetConsoleActiveScreenBuffer (ScreenBuffer)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } - OriginalStdOutChars = new CharInfo [size.Height * size.Width]; + // OriginalStdOutChars = new CharInfo [size.Height * size.Width]; - if (!ReadConsoleOutput (ScreenBuffer, OriginalStdOutChars, coords, new Coord () { X = 0, Y = 0 }, ref window)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - } + // if (!ReadConsoleOutput (ScreenBuffer, OriginalStdOutChars, coords, new Coord () { X = 0, Y = 0 }, ref window)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + //} public bool SetCursorPosition (Coord position) { - return SetConsoleCursorPosition (ScreenBuffer, position); + return SetConsoleCursorPosition (OutputHandle, position); } public void SetInitialCursorVisibility () @@ -92,11 +91,11 @@ namespace Terminal.Gui { public bool GetCursorVisibility (out CursorVisibility visibility) { - if (ScreenBuffer == IntPtr.Zero) { + if (OutputHandle == IntPtr.Zero) { visibility = CursorVisibility.Invisible; return false; } - if (!GetConsoleCursorInfo (ScreenBuffer, out ConsoleCursorInfo info)) { + if (!GetConsoleCursorInfo (OutputHandle, out ConsoleCursorInfo info)) { var err = Marshal.GetLastWin32Error (); if (err != 0) { throw new System.ComponentModel.Win32Exception (err); @@ -149,7 +148,7 @@ namespace Terminal.Gui { bVisible = ((uint)visibility & 0xFF00) != 0 }; - if (!SetConsoleCursorInfo (ScreenBuffer, ref info)) + if (!SetConsoleCursorInfo (OutputHandle, ref info)) return false; currentCursorVisibility = visibility; @@ -165,28 +164,28 @@ namespace Terminal.Gui { } ConsoleMode = originalConsoleMode; - if (!SetConsoleActiveScreenBuffer (OutputHandle)) { - var err = Marshal.GetLastWin32Error (); - Console.WriteLine ("Error: {0}", err); - } + //if (!SetConsoleActiveScreenBuffer (OutputHandle)) { + // var err = Marshal.GetLastWin32Error (); + // Console.WriteLine ("Error: {0}", err); + //} - if (ScreenBuffer != IntPtr.Zero) { - CloseHandle (ScreenBuffer); - } + //if (ScreenBuffer != IntPtr.Zero) { + // CloseHandle (ScreenBuffer); + //} - ScreenBuffer = IntPtr.Zero; + //ScreenBuffer = IntPtr.Zero; } internal Size GetConsoleBufferWindow (out Point position) { - if (ScreenBuffer == IntPtr.Zero) { + if (OutputHandle == IntPtr.Zero) { position = Point.Empty; return Size.Empty; } var csbi = new CONSOLE_SCREEN_BUFFER_INFOEX (); csbi.cbSize = (uint)Marshal.SizeOf (csbi); - if (!GetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { + if (!GetConsoleScreenBufferInfoEx (OutputHandle, ref csbi)) { //throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); position = Point.Empty; return Size.Empty; @@ -212,65 +211,65 @@ namespace Terminal.Gui { return sz; } - internal Size SetConsoleWindow (short cols, short rows) - { - var csbi = new CONSOLE_SCREEN_BUFFER_INFOEX (); - csbi.cbSize = (uint)Marshal.SizeOf (csbi); + //internal Size SetConsoleWindow (short cols, short rows) + //{ + // var csbi = new CONSOLE_SCREEN_BUFFER_INFOEX (); + // csbi.cbSize = (uint)Marshal.SizeOf (csbi); - if (!GetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - var maxWinSize = GetLargestConsoleWindowSize (ScreenBuffer); - var newCols = Math.Min (cols, maxWinSize.X); - var newRows = Math.Min (rows, maxWinSize.Y); - csbi.dwSize = new Coord (newCols, Math.Max (newRows, (short)1)); - csbi.srWindow = new SmallRect (0, 0, newCols, newRows); - csbi.dwMaximumWindowSize = new Coord (newCols, newRows); - if (!SetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - var winRect = new SmallRect (0, 0, (short)(newCols - 1), (short)Math.Max (newRows - 1, 0)); - if (!SetConsoleWindowInfo (OutputHandle, true, ref winRect)) { - //throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - return new Size (cols, rows); - } - SetConsoleOutputWindow (csbi); - return new Size (winRect.Right + 1, newRows - 1 < 0 ? 0 : winRect.Bottom + 1); - } + // if (!GetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + // var maxWinSize = GetLargestConsoleWindowSize (ScreenBuffer); + // var newCols = Math.Min (cols, maxWinSize.X); + // var newRows = Math.Min (rows, maxWinSize.Y); + // csbi.dwSize = new Coord (newCols, Math.Max (newRows, (short)1)); + // csbi.srWindow = new SmallRect (0, 0, newCols, newRows); + // csbi.dwMaximumWindowSize = new Coord (newCols, newRows); + // if (!SetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + // var winRect = new SmallRect (0, 0, (short)(newCols - 1), (short)Math.Max (newRows - 1, 0)); + // if (!SetConsoleWindowInfo (OutputHandle, true, ref winRect)) { + // //throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // return new Size (cols, rows); + // } + // SetConsoleOutputWindow (csbi); + // return new Size (winRect.Right + 1, newRows - 1 < 0 ? 0 : winRect.Bottom + 1); + //} - void SetConsoleOutputWindow (CONSOLE_SCREEN_BUFFER_INFOEX csbi) - { - if (ScreenBuffer != IntPtr.Zero && !SetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - } + //void SetConsoleOutputWindow (CONSOLE_SCREEN_BUFFER_INFOEX csbi) + //{ + // if (ScreenBuffer != IntPtr.Zero && !SetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + //} - internal Size SetConsoleOutputWindow (out Point position) - { - if (ScreenBuffer == IntPtr.Zero) { - position = Point.Empty; - return Size.Empty; - } + //internal Size SetConsoleOutputWindow (out Point position) + //{ + // if (ScreenBuffer == IntPtr.Zero) { + // position = Point.Empty; + // return Size.Empty; + // } - var csbi = new CONSOLE_SCREEN_BUFFER_INFOEX (); - csbi.cbSize = (uint)Marshal.SizeOf (csbi); - if (!GetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - var sz = new Size (csbi.srWindow.Right - csbi.srWindow.Left + 1, - Math.Max (csbi.srWindow.Bottom - csbi.srWindow.Top + 1, 0)); - position = new Point (csbi.srWindow.Left, csbi.srWindow.Top); - SetConsoleOutputWindow (csbi); - var winRect = new SmallRect (0, 0, (short)(sz.Width - 1), (short)Math.Max (sz.Height - 1, 0)); - if (!SetConsoleScreenBufferInfoEx (OutputHandle, ref csbi)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } - if (!SetConsoleWindowInfo (OutputHandle, true, ref winRect)) { - throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); - } + // var csbi = new CONSOLE_SCREEN_BUFFER_INFOEX (); + // csbi.cbSize = (uint)Marshal.SizeOf (csbi); + // if (!GetConsoleScreenBufferInfoEx (ScreenBuffer, ref csbi)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + // var sz = new Size (csbi.srWindow.Right - csbi.srWindow.Left + 1, + // Math.Max (csbi.srWindow.Bottom - csbi.srWindow.Top + 1, 0)); + // position = new Point (csbi.srWindow.Left, csbi.srWindow.Top); + // SetConsoleOutputWindow (csbi); + // var winRect = new SmallRect (0, 0, (short)(sz.Width - 1), (short)Math.Max (sz.Height - 1, 0)); + // if (!SetConsoleScreenBufferInfoEx (OutputHandle, ref csbi)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } + // if (!SetConsoleWindowInfo (OutputHandle, true, ref winRect)) { + // throw new System.ComponentModel.Win32Exception (Marshal.GetLastWin32Error ()); + // } - return sz; - } + // return sz; + //} //bool ContinueListeningForConsoleEvents = true; @@ -734,7 +733,7 @@ namespace Terminal.Gui { WinConsole = new WindowsConsole (); clipboard = new WindowsClipboard (); - isWindowsTerminal = Environment.GetEnvironmentVariable ("WT_SESSION") != null; + isWindowsTerminal = Environment.GetEnvironmentVariable ("WT_SESSION") != null || Environment.GetEnvironmentVariable ("VSAPPIDNAME") != null; } public override void PrepareToRun (MainLoop mainLoop, Action keyHandler, Action keyDownHandler, Action keyUpHandler, Action mouseHandler) @@ -748,28 +747,28 @@ namespace Terminal.Gui { mLoop.ProcessInput = (e) => ProcessInput (e); - mLoop.WinChanged = (e) => { - ChangeWin (e); - }; + //mLoop.WinChanged = (e) => { + // ChangeWin (e); + //}; } - private void ChangeWin (Size e) - { - var w = e.Width; - if (w == cols - 3 && e.Height < rows) { - w += 3; - } - var newSize = WinConsole.SetConsoleWindow ( - (short)Math.Max (w, 16), (short)Math.Max (e.Height, 0)); + //private void ChangeWin (Size e) + //{ + // var w = e.Width; + // if (w == cols - 3 && e.Height < rows) { + // w += 3; + // } + // var newSize = WinConsole.SetConsoleWindow ( + // (short)Math.Max (w, 16), (short)Math.Max (e.Height, 0)); - left = 0; - top = 0; - cols = newSize.Width; - rows = newSize.Height; - ResizeScreen (); - UpdateOffScreen (); - TerminalResized.Invoke (); - } + // left = 0; + // top = 0; + // cols = newSize.Width; + // rows = newSize.Height; + // ResizeScreen (); + // UpdateOffScreen (); + // TerminalResized.Invoke (); + //} void ProcessInput (WindowsConsole.InputRecord inputEvent) { @@ -893,6 +892,14 @@ namespace Terminal.Gui { case WindowsConsole.EventType.Focus: keyModifiers = null; break; + + case WindowsConsole.EventType.WindowBufferSize: + cols = inputEvent.WindowBufferSizeEvent.size.X; + rows = inputEvent.WindowBufferSizeEvent.size.Y; + + ResizeScreen (); + TerminalResized.Invoke (); + break; } } From ca53d331e39c73251fb54bbace75aa2cfa33aba2 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:09:55 +0100 Subject: [PATCH 05/13] updated gitversion --- GitVersion.yml | 105 ++++++++--- logs/UICatalog20250301.log | 374 +++++++++++++++++++++++++++++++++++++ 2 files changed, 456 insertions(+), 23 deletions(-) create mode 100644 logs/UICatalog20250301.log diff --git a/GitVersion.yml b/GitVersion.yml index 138dc2ac9..285ade168 100644 --- a/GitVersion.yml +++ b/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: [] \ No newline at end of file diff --git a/logs/UICatalog20250301.log b/logs/UICatalog20250301.log new file mode 100644 index 000000000..474a7ad17 --- /dev/null +++ b/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. From 278484023acbf0b7fca55f6ad2e97536d7edb5cd Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:15:09 +0100 Subject: [PATCH 06/13] gitignore --- .gitignore | 68 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 57 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 6c06d23ff..e2b23118e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,70 @@ -bin -obj -~$* -*.userprefs -*~ -packages -.vs -# User-specific files +# Build artifacts +[Bb]in/ +[Oo]bj/ +[Rr]elease/ +[Dd]ebug/ +[Xx]64/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ + +# User-local settings and caches +*.rsuser +*.suo *.user +*.userosscache +*.sln.docstates +*.userprefs +_ReSharper.** +*.[Rr]e[Ss]harper +*.DotSettings.user +.devcontainer/ +.vscode/ +.vs/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Roslyn generated cs files +**.g.cs + +# Common temporary files +~$* +*~ + +# Exclude everything in packages directory except the packages/build directory +**/[Pp]ackages/* +!**/[Pp]ackages/build/ # API Docs docfx/api docfx/_site +# Test Results UnitTests/TestResults +TestResults -#git merge files +# git merge files *.orig - -.vscode/ +*.theirs +*.ours demo.* *.deb + +*.tui/ + +*.dotCover + +logs/ + +BenchmarkDotNet.Artifacts/ + +*.log + +*.log.* + +log.* From ce20ba6cc5fd209a89d41f31d38b324366d08374 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:15:30 +0100 Subject: [PATCH 07/13] gitignore --- logs/UICatalog20250301.log | 374 ------------------------------------- 1 file changed, 374 deletions(-) delete mode 100644 logs/UICatalog20250301.log diff --git a/logs/UICatalog20250301.log b/logs/UICatalog20250301.log deleted file mode 100644 index 474a7ad17..000000000 --- a/logs/UICatalog20250301.log +++ /dev/null @@ -1,374 +0,0 @@ -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. From 39fb8a7ffb3ca138e8915b704246973d2c041dc2 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:21:51 +0100 Subject: [PATCH 08/13] gitignore --- .github/workflows/publish.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 39ba8ccd5..0f1bc9b8a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,7 +2,7 @@ name: Publish Terminal.Gui on: push: - branches: [ v1_release, v1_develop, v2_release, v2_develop ] + branches: [ v1_release, v1_develop ] tags: - v* paths-ignore: @@ -18,17 +18,16 @@ jobs: with: fetch-depth: 0 # fetch-depth is needed for GitVersion - - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v1 + - name: Install GitVersion + uses: gittools/actions/gitversion/setup@v3.1.11 with: - versionSpec: '5.x' - includePrerelease: true + versionSpec: '6.0.x' - name: Determine Version - uses: gittools/actions/gitversion/execute@v1 + uses: gittools/actions/gitversion/execute@v3.1.11 with: useConfigFile: true - #additionalArguments: /b develop + updateAssemblyInfo: true id: gitversion # step id used as reference for output values - name: Setup dotnet @@ -42,11 +41,11 @@ jobs: - name: Build Release run: | - dotnet-gitversion /updateprojectfiles - dotnet build --no-restore -c Release + dotnet build Terminal.Gui/Terminal.Gui.csproj --no-incremental --nologo --force --configuration Release + dotnet test Terminal.Gui/Terminal.Gui.csproj --configuration Release - name: Pack - run: dotnet pack -c Release --include-symbols -p:Version='${{ steps.gitversion.outputs.SemVer }}' + run: dotnet pack Terminal.Gui/Terminal.Gui.csproj -c Release --include-symbols -p:Version='${{ steps.gitversion.outputs.SemVer }}' # - name: Test to generate Code Coverage Report # run: | @@ -71,4 +70,4 @@ jobs: # echo "Badge data: ${{steps.create_coverage_badge.outputs.badge}}" - name: Publish to NuGet.org - run: dotnet nuget push Terminal.Gui/bin/Release/Terminal.Gui.${{ steps.gitversion.outputs.SemVer }}.nupkg --api-key ${{ secrets.NUGET_API_KEY }} + run: dotnet nuget push Terminal.Gui/bin/Release/Terminal.Gui.${{ steps.gitversion.outputs.SemVer }}.nupkg --api-key ${{ secrets.NUGET_API_KEY }} \ No newline at end of file From f4d84c83ce852371ebc37e59bdb60a2f6cfa5c69 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:28:04 +0100 Subject: [PATCH 09/13] dotnet.yml --- .github/workflows/dotnet-core.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 750f7d93f..0833838a1 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -9,27 +9,34 @@ on: branches: [ v1_release, v1_develop ] paths-ignore: - '**.md' - jobs: - build: - runs-on: ubuntu-latest + non_parallel_unittests: + name: Non-Parallel Unit Tests + runs-on: ${{ matrix.os }} + strategy: + # Turn off fail-fast to let all runners run even if there are errors + fail-fast: true + matrix: + os: [ ubuntu-latest, windows-latest, macos-latest ] + timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + + - name: Checkout code + uses: actions/checkout@v4 - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 7.0 + dotnet-version: 8.x dotnet-quality: 'ga' - name: Install dependencies run: | dotnet restore - - name: Build Debug - run: | - dotnet build --configuration Debug --no-restore + - name: Build Solution Debug + run: dotnet build --configuration Debug --no-restore - name: Test run: | From d1c9f1a772ce9575b9ad5d0d958690d67b5dfea6 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:31:16 +0100 Subject: [PATCH 10/13] dotnet.yml --- .github/workflows/dotnet-core.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 0833838a1..1b4dd45a0 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -41,7 +41,8 @@ jobs: - name: Test run: | sed -i 's/"stopOnFail": false/"stopOnFail": true/g' UnitTests/xunit.runner.json - dotnet test --no-restore --verbosity normal #--collect:"XPlat Code Coverage" --settings UnitTests/coverlet.runsettings + dotnet test --no-restore --verbosity normal + #--collect:"XPlat Code Coverage" --settings UnitTests/coverlet.runsettings #mv -v UnitTests/TestResults/*/*.* UnitTests/TestResults/ # Note: this step is currently not writing to the gist for some reason From c3d682a2f063f30f52ddd49f07000727d87f9aca Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 15:38:07 +0100 Subject: [PATCH 11/13] dotnet.yml --- .github/workflows/dotnet-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 1b4dd45a0..2cf7c9339 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -17,7 +17,7 @@ jobs: # Turn off fail-fast to let all runners run even if there are errors fail-fast: true matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] + os: [ ubuntu-latest ] timeout-minutes: 10 steps: @@ -40,7 +40,7 @@ jobs: - name: Test run: | - sed -i 's/"stopOnFail": false/"stopOnFail": true/g' UnitTests/xunit.runner.json + #sed -i 's/"stopOnFail": false/"stopOnFail": true/g' UnitTests/xunit.runner.json dotnet test --no-restore --verbosity normal #--collect:"XPlat Code Coverage" --settings UnitTests/coverlet.runsettings #mv -v UnitTests/TestResults/*/*.* UnitTests/TestResults/ From 6af1bd66d23fb6ff9fdf1673f9fecd939bb3acc7 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 16:34:39 +0100 Subject: [PATCH 12/13] dotnet.yml --- .github/workflows/publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0f1bc9b8a..6d5fac6b6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,6 +18,12 @@ jobs: with: fetch-depth: 0 # fetch-depth is needed for GitVersion + - name: Setup .NET Core + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.x + dotnet-quality: 'ga' + - name: Install GitVersion uses: gittools/actions/gitversion/setup@v3.1.11 with: @@ -30,12 +36,6 @@ jobs: updateAssemblyInfo: true id: gitversion # step id used as reference for output values - - name: Setup dotnet - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0 - dotnet-quality: 'ga' - - name: Install dependencies run: dotnet restore From 70eed39760870581f78b586aa92afc87108c7646 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 16 Mar 2025 16:39:56 +0100 Subject: [PATCH 13/13] merged2 --- GitVersion.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitVersion.yml b/GitVersion.yml index 285ade168..5c97c6a86 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -32,7 +32,7 @@ branches: # Matches the v1_release branch regex: ^v1_release$ # Uses 'prealpha' as pre-release label before official release - label: 1.0.0-prealpha.1 + label: '' # Increments patch version (x.y.z+1) on commits increment: Patch # Specifies v1_develop as the source branch