Skip to content

Commit

Permalink
Merge pull request #10 from cech12/develop
Browse files Browse the repository at this point in the history
change ReadMe.txt, fix small bug, change version number to 0.2.5
  • Loading branch information
cech12 committed Apr 27, 2016
2 parents 36dd043 + 602fc15 commit b618ddc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Form1.Designer.cs

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

2 changes: 1 addition & 1 deletion Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ private void saveActiveMods()
private void button_mod_settings_Click(object sender, EventArgs e)
{
int selectedIndex = listBox2.SelectedIndex;
if (selectedIndex >= 0 && selectedIndex < activeMods.Count - 1)
if (selectedIndex >= 0 && selectedIndex < activeMods.Count)
{
Mod mod = activeMods.ElementAt(selectedIndex); //get mod
FormModSettings form = new FormModSettings(mod);
Expand Down
24 changes: 21 additions & 3 deletions ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
GERMAN:

Installationsanleitung:

Legen Sie die "DigglesModManager.exe" und das "Mods" Verzeichnis in das Wiggles Installationsverzeichnis.
Dort wo auch die Wiggles.exe liegt. Dann starten Sie die DigglesModManager.exe und Sie k�nnen loslegen.



Aktualisierungsanleitung:

Zur Aktualisierung des DigglesModManagers l�schen Sie die "DigglesModManager.exe" und das "Mods" Verzeichnis
aus Ihrem Installationsverzeichnis. Danach folgen Sie den Anweisungen der obigen Installationsanleitung.
Danach starten Sie die "DigglesModManager.exe" und klicken dort auf "Let's Mod" um die �nderungen auf
Ihr Spiel anzuwenden.

Hinweis:
Wenn Wiggles im Windows Programme Verzeichnis installiert wurde, dann muss die "DigglesModManager.exe"
als Administrator ausgef�hrt werden.



ENGLISH:

How to install:

Put the "DigglesModManager.exe" and the "Mods" directory in your Diggles directory. (where your Diggles.exe is)
Then you can start the "DigglesModManager.exe".

How to update:

To update the DigglesModManager you should delete the "DigglesModManager.exe" and the "Mods" directory in your
Diggles directory. After this you should do the steps of "How to install".
Then start the "DigglesModManager.exe" and click the button "Let's Mod" to update your active mods.

Viel Spa� damit!
Note:
If Diggles is installed in program directory of windows please run the "DigglesModManager.exe" as
administrator.

0 comments on commit b618ddc

Please sign in to comment.