Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added Images/firefox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public const string SwitchTabPath = "Images/switch_tab.png";
public const string CloseTabPath = "Images/close_tab.png";

private SettingWindow? SettingWindow;

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

Field 'Main.SettingWindow' is never assigned to, and will always have its default value null

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

Field 'Main.SettingWindow' is never assigned to, and will always have its default value null

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

Field 'Main.SettingWindow' is never assigned to, and will always have its default value null

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

Field 'Main.SettingWindow' is never assigned to, and will always have its default value null

Check warning on line 17 in Main.cs

View workflow job for this annotation

GitHub Actions / build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

public static PluginInitContext Context { get; private set; } = null!;

Expand Down Expand Up @@ -72,6 +72,7 @@
{
"chrome" => "Images/chrome.png",
"msedge" => "Images/msedge.png",
"firefox" => "Images/firefox.png",
_ => "Images/chromium.png",
};
}
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "Browser Tabs",
"Description": "Search, activate, or close browser tabs. A centralized plugin for managing all open tabs in your browser",
"Author": "Jeremy Wu",
"Version": "1.1.0",
"Version": "1.1.1",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher.Plugin.BrowserTabs",
"ExecuteFileName": "Flow.Launcher.Plugin.BrowserTabs.dll",
Expand Down
Loading