Skip to content

Commit

Permalink
Readme/about updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthysell committed Oct 23, 2018
1 parent 1d36d99 commit 4ca8941
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
10 changes: 3 additions & 7 deletions Mzinga.SharedUX/ViewModel/MainViewModel.cs
Expand Up @@ -531,21 +531,17 @@ public RelayCommand ShowAbout
{
StringBuilder sb = new StringBuilder();
sb.AppendLine(Title);
sb.AppendLine("Hive Copyright (c) 2016 Gen42 Games. Mzinga is in no way associated with or endorsed by Gen42 Games.");
sb.AppendLine();
sb.AppendLine("Mzinga Copyright (c) 2015-2018 Jon Thysell");
sb.AppendLine("MVVM Light Toolkit Copyright (c) 2009-2018 Laurent Bugnion");
sb.AppendLine();
sb.AppendLine(string.Join(Environment.NewLine + Environment.NewLine, _license));
sb.Append(string.Join(Environment.NewLine + Environment.NewLine, _license));
sb.AppendLine();
sb.Append("Hive Copyright (c) 2016 Gen42 Games. Mzinga is in no way associated with or endorsed by Gen42 Games. To learn more about Hive, see https://gen42.com/games/hive.");
Messenger.Default.Send(new InformationMessage(sb.ToString(), "About Mzinga"));
Messenger.Default.Send(new InformationMessage(sb.ToString(), "About Mzinga.Viewer"));
}
catch (Exception ex)
{
Expand Down
9 changes: 5 additions & 4 deletions README.md
@@ -1,10 +1,10 @@
# Mzinga #

Mzinga is an open-source software project to play the board game [Hive](Hive), with the primary goal of building a community of developers who create Hive-playing AIs.
Mzinga is an open-source software project to play the board game [Hive](https://gen42.com/games/hive), with the primary goal of building a community of developers who create Hive-playing AIs.

To that end, Mzinga proposes a [Universal Hive Protocol](https://github.com/jonthysell/Mzinga/wiki/UniversalHiveProtocol) to support interoperability for Hive-playing software.

For more information, please checkout the [Mzinga Wiki](https://github.com/jonthysell/Mzinga/wiki).
For more information, please check out the [Mzinga Wiki](https://github.com/jonthysell/Mzinga/wiki).

## Projects ##

Expand Down Expand Up @@ -32,7 +32,8 @@ Mzinga.Trainer.exe is a command-line utility with the goal to improve Mzinga's A

## Copyright ##

Hive Copyright (c) 2016 Gen42 Games. Mzinga is in no way associated with or endorsed by Gen42 Games.

Mzinga Copyright (c) 2015-2018 Jon Thysell.
MVVM Light Toolkit Copyright (c) 2009-2018 Laurent Bugnion.

Hive Copyright (c) 2016 Gen42 Games. Mzinga is in no way associated with or endorsed by Gen42 Games. To learn more about Hive, see https://gen42.com/games/hive.
MVVM Light Toolkit Copyright (c) 2009-2018 Laurent Bugnion.

0 comments on commit 4ca8941

Please sign in to comment.