-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* "last n stations": fixed logic bug when updating from EDDB files
* switched all "DateTime.Now" to "DateTime.UtcNow", import of EDDN messages should work again * date filter now also takes the time into account * Commander's Log: new context menu for quick filtering by cell content
- Loading branch information
1 parent
c737c13
commit 00ab27c
Showing
22 changed files
with
151 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace System.Windows.Forms | ||
{ | ||
class MessageBoxInvoked | ||
{ | ||
public static DialogResult Show(Form parent, string message, string headline, MessageBoxButtons messageBoxButtons, MessageBoxIcon messageBoxIcon, MessageBoxDefaultButton messageBoxDefaultButton = MessageBoxDefaultButton.Button1) | ||
{ | ||
if (parent.InvokeRequired) | ||
{ | ||
return (DialogResult) parent.Invoke(new Func<DialogResult>( | ||
() => { return MessageBox.Show(parent, message, headline, messageBoxButtons, messageBoxIcon, messageBoxDefaultButton); })); | ||
} | ||
else | ||
{ | ||
return MessageBox.Show(parent, message, headline, messageBoxButtons, messageBoxIcon, messageBoxDefaultButton); | ||
} | ||
} | ||
} | ||
class FolderBrowserDialogInvoked | ||
{ | ||
public DialogResult ShowDialog(Form primaryGUI) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.