Skip to content

Commit

Permalink
Merge pull request #4 from SCHREDDO/releases/1.0.0
Browse files Browse the repository at this point in the history
Releases/1.0.0
  • Loading branch information
SCHREDDO authored Mar 25, 2019
2 parents 9787791 + e6282bd commit ab043a6
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## = 0.5.0-alpha March 25th 2019 =
### Added
- new base setting: check_chatlog_active
## = 0.4.0-alpha March 25th 2019 =
### Added
- new base setting: aion
Expand Down
2 changes: 1 addition & 1 deletion NerdyAion/NerdyAion/NerdyAion.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<MapFileExtensions>true</MapFileExtensions>
<AutorunEnabled>true</AutorunEnabled>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.4.0.0</ApplicationVersion>
<ApplicationVersion>0.5.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
17 changes: 12 additions & 5 deletions NerdyAion/NerdyAion/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,24 @@ static void Main(string[] args)
if (!Commands.Settings.LoudSettings())
{
Commands.Settings.CreateSettingsFile();
Commands.Settings.AddSetting("version", "0.4.0-alpha", true, null);
Commands.Settings.AddSetting("version", "0.5.0-alpha", true, null);
Commands.Settings.AddSetting("aion", @"C:\Program Files\Gameforge\AION Free-To-Play");
Commands.Settings.AddSetting("player", "ich");
Commands.Settings.AddSetting("chatlog_active", "0");
Commands.Settings.SaveSettings();
}
else
{
if (Commands.Settings.GetSetting("version") != "0.4.0 - alpha")
if (Commands.Settings.GetSetting("version") != "0.5.0-alpha")
{
SettingsController temp = new SettingsController(System.AppDomain.CurrentDomain.BaseDirectory + @"\settings.txt", false);
temp.AddSetting("version", "0.4.0-alpha", true, null);
Commands.Settings.AddSetting("aion", @"C:\Program Files\Gameforge\AION Free-To-Play");
temp.AddSetting("version", "0.5.0-alpha", true, null);
temp.AddSetting("aion", @"C:\Program Files\Gameforge\AION Free-To-Play");
temp.AddSetting("check_chatlog_active", "0");

foreach (Setting item in Commands.Settings.GetAllSettings())
{
if (item.Name != "version" && item.Name != "log")
if (item.Name != "version")
{
temp.AddSetting(item.Name, item.Value);
}
Expand All @@ -69,6 +71,11 @@ static void Main(string[] args)
Commands.Settings = temp;
}
}

if (Commands.Settings.GetSetting("check_chatlog_active") == "1")
{
SystemCFGEditor.SetChatLogActive(Commands.Settings.GetSetting("aion") + @"\system.cfg");
}

Commands.ActivCommantLevel = CommantLevel.BaseLevel;

Expand Down
4 changes: 2 additions & 2 deletions NerdyAion/NerdyAion/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# NerdyAion-Aion-Tool-Manager
![build version](https://img.shields.io/badge/version-0.4.0--alpha-brightgreen.svg)
![release version](https://img.shields.io/badge/release-v0.3.0--alpha-blue.svg)
![build version](https://img.shields.io/badge/version-0.5.0--alpha-brightgreen.svg)
![release version](https://img.shields.io/badge/release-v0.5.0--alpha-blue.svg)
![framework or language](https://img.shields.io/badge/.net-4.6.1-blue.svg)
![license](https://img.shields.io/badge/license-AGPL--3.0-lightgrey.svg)

### Current Version 0.3.0-alpha
### Development Version 0.4.0-alpha
### Current Version 0.5.0-alpha
### Development Version 0.5.0-alpha

## About
NerdyAion is a DMG meter for the game Aion. The primary goal of NerdyAion is to provide the user with useful information, especially about his and others players DMG data. NerdyAion is programed in C# (.net 4.6.1).
Expand Down Expand Up @@ -33,8 +33,9 @@ NerdyAion is a DMG meter for the game Aion. The primary goal of NerdyAion is to
2. execute NerdyAion.exe
3. go to settings and check the path to the Aion (setting: aion) example: `C:\Program Files\Gameforge\AION Free-To-Play`
4. activate Aion Chat.log with `chatlog on`
5. start Aion
6. use the dmg commands to get informations
5. [optional] set the setting `check_chatlog_active` to 1
6. start Aion
7. use the dmg commands to get informations

## Supported Languages
- german
Expand Down Expand Up @@ -62,6 +63,7 @@ NerdyAion is a DMG meter for the game Aion. The primary goal of NerdyAion is to
| Name | Description |
|------|-------------|
|aion|the path to Aion|
|check_chatlog_active|check by start from NerdyAion if chatlog is active if not chatlog will be activeed|
|player|name by which the player is displayed|

## Roadmap
Expand Down Expand Up @@ -123,6 +125,9 @@ NerdyAion is a DMG meter for the game Aion. The primary goal of NerdyAion is to
- .net 4.6.1

## Changelog ([complete changelog: CHANGELOG.md](https://github.com/SCHREDDO/NerdyAion-Aion-Tool-Manager/blob/master/CHANGELOG.md))
### = 0.5.0-alpha March 25th 2019 =
#### Added
- new base setting: check_chatlog_active
### = 0.4.0-alpha March 25th 2019 =
#### Added
- new base setting: aion
Expand Down

0 comments on commit ab043a6

Please sign in to comment.