mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
Fix language health table not displaying correctly the text color (regression from the changes I made in breeze in current dev branch).
Pump plugins versions.
This commit is contained in:
@@ -397,30 +397,30 @@ TableView#locate_bar_table > tableview::row:selected > tableview::cell:nth-child
|
||||
.custom_output_parser_cont > .capture_positions_cont > * {
|
||||
padding: 2dp;
|
||||
}
|
||||
.theme-error > tableview::cell,
|
||||
.theme-error > treeview::cell,
|
||||
.theme-error > listview::cell,
|
||||
tableview::cell.theme-error,
|
||||
treeview::cell.theme-error,
|
||||
listview::cell.theme-error,
|
||||
.error {
|
||||
color: var(--theme-error);
|
||||
}
|
||||
|
||||
.theme-warning > tableview::cell,
|
||||
.theme-warning > treeview::cell,
|
||||
.theme-warning > listview::cell,
|
||||
tableview::cell.theme-warning,
|
||||
treeview::cell.theme-warning,
|
||||
listview::cell.theme-warning,
|
||||
.warning {
|
||||
color: var(--theme-warning);
|
||||
}
|
||||
|
||||
.theme-success > tableview::cell,
|
||||
.theme-success > treeview::cell,
|
||||
.theme-success > listview::cell,
|
||||
tableview::cell.theme-success,
|
||||
treeview::cell.theme-success,
|
||||
listview::cell.theme-success,
|
||||
.success {
|
||||
color: var(--theme-success);
|
||||
}
|
||||
|
||||
.theme-none > tableview::cell,
|
||||
.theme-none > treeview::cell,
|
||||
.theme-none > listview::cell,
|
||||
tableview::cell.theme-none,
|
||||
treeview::cell.theme-none,
|
||||
listview::cell.theme-none,
|
||||
.none {
|
||||
color: #d48838;
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class AIAssistantPlugin : public PluginBase {
|
||||
|
||||
static PluginDefinition Definition() {
|
||||
return { "aiassistant", "AI Assistant", "Chat with your favorite AI assistant",
|
||||
AIAssistantPlugin::New, { 0, 0, 3 }, AIAssistantPlugin::NewSync };
|
||||
AIAssistantPlugin::New, { 0, 1, 0 }, AIAssistantPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -52,7 +52,7 @@ class DebuggerPlugin : public PluginBase {
|
||||
public:
|
||||
static PluginDefinition Definition() {
|
||||
return { "debugger", "Debugger", "Debugger integration",
|
||||
DebuggerPlugin::New, { 0, 0, 4 }, DebuggerPlugin::NewSync };
|
||||
DebuggerPlugin::New, { 0, 1, 0 }, DebuggerPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
@@ -294,11 +294,10 @@ class DebuggerPlugin : public PluginBase {
|
||||
bool replaceInVal( std::string& val, const std::optional<ProjectBuildStep>& runConfig,
|
||||
ProjectBuild* buildConfig, int randomPort );
|
||||
|
||||
template<typename TCommandRegister, typename Cmd, typename CmdCb>
|
||||
template <typename TCommandRegister, typename Cmd, typename CmdCb>
|
||||
void registerCommand( TCommandRegister* doc, Cmd cmd, CmdCb cb );
|
||||
|
||||
template<typename TCommandRegister>
|
||||
void registerCommands( TCommandRegister* doc );
|
||||
template <typename TCommandRegister> void registerCommands( TCommandRegister* doc );
|
||||
|
||||
void displayBrokenUserConfigFileWarning();
|
||||
};
|
||||
|
||||
@@ -35,7 +35,7 @@ class FormatterPlugin : public Plugin {
|
||||
static PluginDefinition Definition() {
|
||||
return {
|
||||
"autoformatter", "Auto Formatter", "Enables the code formatter/prettifier plugin.",
|
||||
FormatterPlugin::New, { 0, 2, 7 }, FormatterPlugin::NewSync };
|
||||
FormatterPlugin::New, { 0, 3, 0 }, FormatterPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -37,7 +37,7 @@ static constexpr const char* GIT_STASH_TOOLTIP_CLASS = "git-stash-tooltip";
|
||||
class GitPlugin : public PluginBase {
|
||||
public:
|
||||
static PluginDefinition Definition() {
|
||||
return { "git", "Git", "Git integration", GitPlugin::New, { 0, 1, 4 }, GitPlugin::NewSync };
|
||||
return { "git", "Git", "Git integration", GitPlugin::New, { 0, 1, 5 }, GitPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -60,7 +60,7 @@ class LinterPlugin : public Plugin {
|
||||
"Use static code analysis tool used to flag programming errors, bugs, "
|
||||
"stylistic errors, and suspicious constructs.",
|
||||
LinterPlugin::New,
|
||||
{ 0, 2, 9 },
|
||||
{ 0, 3, 0 },
|
||||
LinterPlugin::NewSync };
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ class LSPClientPlugin : public Plugin {
|
||||
public:
|
||||
static PluginDefinition Definition() {
|
||||
return { "lspclient", "LSP Client", "Language Server Protocol Client.",
|
||||
LSPClientPlugin::New, { 0, 3, 0 }, LSPClientPlugin::NewSync };
|
||||
LSPClientPlugin::New, { 0, 3, 1 }, LSPClientPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
Reference in New Issue
Block a user