mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix a typo for portable build
This commit is contained in:
parent
ac498885ce
commit
d0e092942b
3 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark;
|
|||
|
||||
public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContextMenu, IDisposable
|
||||
{
|
||||
private static PluginInitContext _context;
|
||||
internal static PluginInitContext _context { get; private set; } = null!;
|
||||
|
||||
private static List<Bookmark> _cachedBookmarks = new List<Bookmark>();
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ namespace Flow.Launcher.Plugin.Caculator
|
|||
private const string comma = ",";
|
||||
private const string dot = ".";
|
||||
|
||||
private PluginInitContext Context { get; set; }
|
||||
internal static PluginInitContext Context { get; set; }
|
||||
|
||||
private static Settings _settings;
|
||||
private static SettingsViewModel _viewModel;
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ artifacts:
|
|||
name: Plugin nupkg
|
||||
- path: 'Releases\FlowLauncher-*.exe'
|
||||
name: Squirrel Installer
|
||||
- path: 'Release\FlowLauncher-*-Portable.zip'
|
||||
- path: 'Releases\FlowLauncher-*-Portable.zip'
|
||||
name: Portable Version
|
||||
- path: 'Releases\FlowLauncher-*-full.nupkg'
|
||||
name: Squirrel nupkg
|
||||
|
|
|
|||
Loading…
Reference in a new issue