Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d02d6b5
Add enterprise config support via env vars & Windows registry
SommerEngineering May 31, 2025
ea3271b
Fixed the Unix implementation
SommerEngineering May 31, 2025
1fb04a7
Refactor enterprise config functions to return String instead of Option
SommerEngineering May 31, 2025
86f5255
Fixed config plugins action column
SommerEngineering Jun 1, 2025
f4b2038
Added delete endpoint for enterprise config ID
SommerEngineering Jun 1, 2025
ed006f3
Added SettingsLocker service and implementation
SommerEngineering Jun 1, 2025
03bf288
Refactor TemporaryChatService for cleaner logging and improvements
SommerEngineering Jun 1, 2025
944f4a8
Add method to remove enterprise config ID
SommerEngineering Jun 1, 2025
72ea91d
Add EnterpriseEnvironmentService and plugin management
SommerEngineering Jun 1, 2025
3f97264
Disable update frequency when locked via SettingsLocker
SommerEngineering Jun 1, 2025
f1fcae3
Inject SettingsLocker into SettingsPanelBase
SommerEngineering Jun 1, 2025
ab84cf1
Add enterprise configuration handling in SettingsPanelProviders
SommerEngineering Jun 1, 2025
9404e83
Manage IsEnterpriseConfiguration for manual providers
SommerEngineering Jun 1, 2025
c320d05
Add enterprise environment details to About page
SommerEngineering Jun 1, 2025
fa48dd8
Added example config plugin
SommerEngineering Jun 1, 2025
a44eaa4
Update IsPluginEnabled to include configuration plugins
SommerEngineering Jun 1, 2025
28484da
Added config plugin class
SommerEngineering Jun 1, 2025
d51093b
Remove enterprise environment configuration logging
SommerEngineering Jun 1, 2025
e1478d9
Mark configuration plugins as partially implemented
SommerEngineering Jun 1, 2025
7903f13
Add enterprise config plugin support in Provider
SommerEngineering Jun 1, 2025
85fcb4a
Refactor hot reload system to improve event handling & monitor delete…
SommerEngineering Jun 1, 2025
f1d0549
Log warning on plugin load cancellation due to timeout
SommerEngineering Jun 1, 2025
e573b4d
Remove unavailable enterprise configuration plugins and reset related…
SommerEngineering Jun 1, 2025
0077875
Add support for configuration plugins in PluginFactory
SommerEngineering Jun 1, 2025
83d7ab6
Refactored startup code of the plugin factory & handle config plugins…
SommerEngineering Jun 1, 2025
a8d96c9
Add EnterpriseEnvironment record struct to manage configuration state
SommerEngineering Jun 1, 2025
98aaea4
Updated I18M
SommerEngineering Jun 1, 2025
441cc0f
Updated changelog
SommerEngineering Jun 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Log warning on plugin load cancellation due to timeout
  • Loading branch information
SommerEngineering committed Jun 1, 2025
commit f1d0549a4fe3d02db1691c77c0cb72b79cfd5d60
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@ public static async Task LoadAll(CancellationToken cancellationToken = default)
try
{
if (cancellationToken.IsCancellationRequested)
{
LOG.LogWarning("Was not able to load all plugins, because the operation was cancelled. It seems to be a timeout.");
break;

}

LOG.LogInformation($"Try to load plugin: {pluginMainFile}");
var fileInfo = new FileInfo(pluginMainFile);
string code;
Expand Down