(no message)

Spegeli [2016-07-23 09:37:16]

Filename
PokemonGo.RocketAPI.Console/Program.cs
PokemonGo.RocketAPI.Console/Resources/PokemonsNotToCatch.txt
PokemonGo.RocketAPI.Console/Resources/PokemonsNotToTransfer.txt
PokemonGo.RocketAPI.Console/Resources/PokemonsToEvolve.txt
PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
diff --git a/PokemonGo.RocketAPI.Console/Program.cs b/PokemonGo.RocketAPI.Console/Program.cs
index c7a6017..63e4498 100644
--- a/PokemonGo.RocketAPI.Console/Program.cs
+++ b/PokemonGo.RocketAPI.Console/Program.cs
@@ -15,6 +15,14 @@ namespace PokemonGo.RocketAPI.Console

         private static void Main(string[] args)
         {
+            AppDomain.CurrentDomain.UnhandledException
+                += delegate (object sender, UnhandledExceptionEventArgs eargs)
+                {
+                    Exception exception = (Exception)eargs.ExceptionObject;
+                    System.Console.WriteLine("Unhandled exception: " + exception);
+                    Environment.Exit(1);
+                };
+
             Logger.SetLogger(new Logging.ConsoleLogger(LogLevel.Info));

             Task.Run(() =>
diff --git a/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToCatch.txt b/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToCatch.txt
new file mode 100644
index 0000000..b251c0b
--- /dev/null
+++ b/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToCatch.txt
@@ -0,0 +1,2 @@
+Pidgey
+Rattata
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToTransfer.txt b/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToTransfer.txt
new file mode 100644
index 0000000..2c43f32
--- /dev/null
+++ b/PokemonGo.RocketAPI.Console/Resources/PokemonsNotToTransfer.txt
@@ -0,0 +1,7 @@
+Dragonite
+Charizard
+Zapdos
+Snorlax
+Alakhazam
+Mew
+Mewtwo
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI.Console/Resources/PokemonsToEvolve.txt b/PokemonGo.RocketAPI.Console/Resources/PokemonsToEvolve.txt
new file mode 100644
index 0000000..64c427b
--- /dev/null
+++ b/PokemonGo.RocketAPI.Console/Resources/PokemonsToEvolve.txt
@@ -0,0 +1,38 @@
+Pidgey
+Rattata
+Spearow
+Ekans
+Pikachu
+Sandshrew
+Clefable
+Vulpix
+Jigglypuff
+Zubat
+Paras
+Venonat
+Diglett
+Meowth
+Psyduck
+Mankey
+Growlithe
+Tentacool
+Ponyta
+Slowpoke
+Magnemite
+Doduo
+Seel
+Grimer
+Shellder
+Drowzee
+Krabby
+Voltorb
+Exeggcute
+Cubone
+Koffing
+Rhyhorn
+Horsea
+Goldeen
+Staryu
+Omanyte
+Kabuto
+Dratini
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
index 02363b4..c32bc17 100644
--- a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // 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("2016.7.23.74")]
+[assembly: AssemblyVersion("2016.7.23.75")]
 [assembly: AssemblyFileVersion("1.0.0.0")]
You may download the files in Public Git.