Merge pull request #1821 from hbons/fix/freeze-on-quit

Fix/freeze-on-quit
This commit is contained in:
Hylke Bons 2018-03-08 10:38:40 +00:00 committed by GitHub
commit fee2151054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 24 deletions

View file

@ -180,7 +180,10 @@ namespace SparkleShare {
// Copies text to the clipboard
public abstract void CopyToClipboard (string text);
// Allows for platform-specific quit and cleanup methods to be called on exit
public abstract void PlatformQuit ();
public abstract string EventLogHTML { get; }
public abstract string DayEntryHTML { get; }
public abstract string EventEntryHTML { get; }
@ -715,14 +718,14 @@ namespace SparkleShare {
int suffix = 2 + Directory.GetDirectories (folder_group_path, folder_name + " (*").Length;
return string.Format ("{0} ({1})", folder_path, suffix);
}
public virtual void Quit ()
public void Quit ()
{
foreach (BaseRepository repo in Repositories)
repo.Dispose ();
Environment.Exit (0);
PlatformQuit ();
}

View file

@ -29,8 +29,7 @@ namespace SparkleShare {
public class Controller : BaseController {
public Controller (Configuration config)
: base (config)
public Controller (Configuration config) : base (config)
{
if (InstallationInfo.IsFlatpak)
GitCommand.ExecPath = Path.Combine ("/app", "libexec", "git-core");
@ -142,5 +141,11 @@ namespace SparkleShare {
return Path.Combine (InstallationInfo.Directory, "presets");
}
}
public override void PlatformQuit ()
{
Environment.Exit (0);
}
}
}

View file

@ -80,16 +80,12 @@ namespace SparkleShare {
public override void SetFolderIcon ()
{
if (Environment.OSVersion.Version.Major >= 14) {
NSWorkspace.SharedWorkspace.SetIconforFile (
NSImage.ImageNamed ("sparkleshare-folder-yosemite.icns"),
SparkleShare.Controller.FoldersPath, 0);
string folder_icon_name = "sparkleshare-folder.icns";
} else {
NSWorkspace.SharedWorkspace.SetIconforFile (
NSImage.ImageNamed ("sparkleshare-folder.icns"),
SparkleShare.Controller.FoldersPath, 0);
}
if (Environment.OSVersion.Version.Major >= 14)
folder_icon_name = "sparkleshare-folder-yosemite.icns";
NSWorkspace.SharedWorkspace.SetIconforFile (NSImage.ImageNamed (folder_icon_name), SparkleShare.Controller.FoldersPath, 0);
}
@ -228,5 +224,13 @@ namespace SparkleShare {
new NSObject ().InvokeOnMainThread (() => code ());
}
}
public override void PlatformQuit ()
{
watcher.Dispose ();
NSRunningApplication.CurrentApplication.Terminate ();
}
}
}

View file

@ -71,13 +71,7 @@ namespace SparkleShare {
public partial class AppDelegate : NSApplicationDelegate {
public override void WillTerminate (NSNotification notification)
{
SparkleShare.Controller.Quit ();
}
public override bool ApplicationShouldHandleReopen (NSApplication sender, bool has_visible_windows)
{
if (!has_visible_windows)

View file

@ -664,7 +664,7 @@ namespace Sparkles {
// this.listener.Dispose ();
if (!UseCustomWatcher)
if (!UseCustomWatcher && this.watcher != null)
this.watcher.Dispose ();
}
}