-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README.md and Version
- Loading branch information
Showing
4 changed files
with
45 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,10 @@ namespace EFSAdvent | |
{ | ||
public partial class Form1 : Form | ||
{ | ||
const string VERSION = "1.4 [Venomalia]"; | ||
private string BaseTitel = $"EFSAdvent {VERSION}"; | ||
private const string VERSION = "1.5"; | ||
private const string BaseTitel = "EFSAdvent " + VERSION + " [Venomalia]"; | ||
private const string WikiUrl = "https://github.com/Venomalia/EFSAdvent/wiki"; | ||
private const string SourceCodeUrl = "https://github.com/Venomalia/EFSAdvent"; | ||
|
||
const int ACTOR_PIXELS_PER_COORDINATE = 8; | ||
const string DEFAULT_SPRITE = "ActorDefault"; | ||
|
@@ -1109,11 +1111,23 @@ private void EnsureAllLayersAreEncoded(string path) | |
|
||
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) | ||
{ | ||
MessageBox.Show($"Editor for Four Swords Adventures by JaytheHam. v{VERSION}" | ||
MessageBox.Show($"Editor for Four Swords Adventures by JaytheHam & Venomalia. v{VERSION}" | ||
+ "\nwww.jaytheham.com" | ||
+ "\nSend comments, bug reports etc to: [email protected]", $"EFSAdvent version {VERSION}"); | ||
} | ||
|
||
private void wikiToolStripMenuItem_Click(object sender, EventArgs e) | ||
{ | ||
// Open the Wiki page in the default web browser | ||
System.Diagnostics.Process.Start(WikiUrl); | ||
} | ||
|
||
private void sourceCodeToolStripMenuItem_Click(object sender, EventArgs e) | ||
{ | ||
// Open the Source code page in the default web browser | ||
System.Diagnostics.Process.Start(SourceCodeUrl); | ||
} | ||
|
||
private void saveChangesToolStripMenuItem_Click(object sender, EventArgs e) | ||
{ | ||
ShowSaveChangesDialog(); | ||
|
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