5 Commits
Author SHA1 Message Date
BlubbFish 47fb4f8c27 Zway-Bot [v1.7.2] Add Logging to some Modules, fixing a bug in overtaker (now it not removes every time all events, so only the latest event are watched)
[Utils] Fixing a bug if more than one argument with params
2018-10-02 14:53:59 +00:00
BlubbFish f2706b2b29 Zway-Bot [v1.7.1] Tiny fix for nullpointer exception 2018-09-29 18:13:17 +00:00
BlubbFish ab40973980 Zway [v1.5.0] Throw Exception if 3 times failed to connect to Raspberry server, add 3 new commandlcasses to IgnoredClasses
Zway-Bot [v1.7.0] rewrite to Threaded Modules, edit service file for systemd
2018-09-29 12:15:37 +00:00
BlubbFish f8f28105d9 Add more Logging
On Module load catch Exceptions and not load the plugin
2018-09-13 22:03:19 +00:00
BlubbFish f310d2a1df Make Deb of 1.2.0 of Lorabot 2018-09-11 13:47:29 +00:00
3 changed files with 7 additions and 8 deletions
+4 -5
View File
@@ -38,7 +38,7 @@ namespace BlubbFish.Utils
public ArgTouple(String type)
{
this.Type = type;
this.Data = "";
this.Data = null;
}
public String Type { get; private set; }
public String Data { get; private set; }
@@ -100,7 +100,8 @@ namespace BlubbFish.Utils
if (this.args.Length > i + 1) {
arg.SetData(this.args[++i]);
} else {
throw new ArgumentException();
Console.WriteLine(this.GetUsageList(""));
throw new ArgumentException("Argument: "+this.args[i]+" missing second argument.");
}
}
this.argList.Add(arg);
@@ -142,11 +143,9 @@ namespace BlubbFish.Utils
foreach (ArgTouple t in this.argList) {
if (t.Type == name && t.Data != null) {
return t.Data;
} else {
throw new ArgumentNullException();
}
}
return null;
throw new ArgumentNullException();
}
public Boolean HasAllRequiredArguments()
+3 -3
View File
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Utils")]
[assembly: AssemblyCopyright("Copyright © 2014 - 15.05.2018")]
[assembly: AssemblyCopyright("Copyright © 2014 - 02.10.2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.2")]
[assembly: AssemblyFileVersion("1.1.2")]
[assembly: AssemblyVersion("1.1.3")]
[assembly: AssemblyFileVersion("1.1.3")]
Binary file not shown.