Skip to content

Commit

Permalink
add wiki and source code MenuItem
Browse files Browse the repository at this point in the history
Update README.md and Version
  • Loading branch information
Venomalia committed Dec 9, 2024
1 parent 1dfd5ff commit 8874f8e
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 10 deletions.
24 changes: 22 additions & 2 deletions EFSAdvent/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions EFSAdvent/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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();
Expand Down
8 changes: 4 additions & 4 deletions EFSAdvent/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("EFSAdvent")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("A level editor for the Nintendo GameCube game Four Swords Adventures.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Tsuri")]
[assembly: AssemblyProduct("EFSAdvent")]
[assembly: AssemblyCopyright("Copyright © Tsuri 2009")]
[assembly: AssemblyCopyright("Copyright © Tsuri 2009 & Venomalia 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ This branch is an unoficial update based on the [source code](https://bitbucket.
- Detailed documentation for a significant number of actors.
- Shadow Battle Map vaules will be loaded and can be edited.
- Highlights used layers.
- Export Level as .png.

## Goals
Fully document all actor variables and their behavior.

## Preview
![grafik](https://github.com/user-attachments/assets/a5c24ac9-2eb2-49de-888c-218d9402205b)
![grafik](https://github.com/user-attachments/assets/b8545f2f-d7f2-4e26-95db-4a959b618be9)

0 comments on commit 8874f8e

Please sign in to comment.