mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Removed the plugin attribute, and changed the way the plugins are copied to their destination. This should simplify the packaging, for InnoSetup but also the .zip & protable (which are still missing at this moment)
This commit is contained in:
parent
8e121f25f0
commit
d429e4f6af
26 changed files with 189 additions and 151 deletions
|
@ -33,7 +33,6 @@ namespace Greenshot.Plugin.Confluence
|
|||
/// <summary>
|
||||
/// This is the ConfluencePlugin base code
|
||||
/// </summary>
|
||||
[Plugin("Confluence", true)]
|
||||
public class ConfluencePlugin : IGreenshotPlugin
|
||||
{
|
||||
private static readonly log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(ConfluencePlugin));
|
||||
|
@ -46,11 +45,21 @@ namespace Greenshot.Plugin.Confluence
|
|||
GC.SuppressFinalize(this);
|
||||
}
|
||||
|
||||
protected void Dispose(bool disposing)
|
||||
private void Dispose(bool disposing)
|
||||
{
|
||||
//if (disposing) {}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Name of the plugin
|
||||
/// </summary>
|
||||
public string Name => "Confluence";
|
||||
|
||||
/// <summary>
|
||||
/// Specifies if the plugin can be configured
|
||||
/// </summary>
|
||||
public bool IsConfigurable => true;
|
||||
|
||||
private static void CreateConfluenceConnector()
|
||||
{
|
||||
if (_confluenceConnector == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue