14 Commits
Author SHA1 Message Date
BlubbFish bf047a58e3 Rewrite Bot-Utils so that handlers are threaded
Tiny fix in INIReader
2018-09-11 07:59:10 +00:00
BlubbFish 22d8a9ff2a Cleanups 2018-09-06 20:26:38 +00:00
BlubbFish de32d997fb [BF] Forget to copy library parts 2018-06-10 20:28:32 +00:00
BlubbFish 6ac8ec0cfa [NF] Refactoring Hue-Bot
[NF] Now Running as Service
2018-06-10 19:48:23 +00:00
BlubbFish c215d27841 [NF] Moved CronJob, Overtaker, Statuspolling to Abstract Bot-Utils
[NF] Create NSI Script to produce exe
[NF] Add License.txt
2018-06-09 21:27:15 +00:00
BlubbFish 2e05bde250 [NF] Add Bot-Utils and rewrite code 2018-06-07 20:49:54 +00:00
BlubbFish f8cf31c941 [NF] Thread that checks if a MQTT Connection exists and if not reopen it
[NF] ConnectorDataMqtt now supports user and password
2018-06-05 16:46:56 +00:00
BlubbFish 73ea61487e [BF] new try 2018-06-02 19:38:56 +00:00
BlubbFish b3b9ceb283 [BF] new try 2018-06-02 19:36:32 +00:00
BlubbFish 45f40263ad [BF] new try 2018-06-02 19:32:20 +00:00
BlubbFish d84add4871 [BF] Fixing Bug in after installation script 2018-06-02 19:08:05 +00:00
BlubbFish 884a59b206 [BF] Making service linux running 2018-06-02 18:41:21 +00:00
BlubbFish 6f8cebc25d 2018-06-02 17:14:42 +00:00
BlubbFish 185b4bc00c [NF] Logrotate 2018-05-29 20:07:50 +00:00
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ namespace BlubbFish.Utils {
public class InIReader : IDisposable
{
private Dictionary<String, Dictionary<String, String>> inifile;
private FileSystemWatcher k;
private readonly FileSystemWatcher k;
private readonly String filename;
private static List<String> search_path = new List<String>() {
Directory.GetCurrentDirectory()
+2 -1
View File
@@ -9,7 +9,7 @@ namespace BlubbFish.Utils
public abstract class OwnModel<T> where T : class
{
private static readonly Lazy<T> _instance = new Lazy<T>(() => CreateInstanceOfT());
private List<OwnView> observer = new List<OwnView>();
private readonly List<OwnView> observer = new List<OwnView>();
public static T Instance
{
get {
@@ -35,5 +35,6 @@ namespace BlubbFish.Utils
this.observer.ForEach(delegate (OwnView view) { view.Update(); });
}
abstract protected void Init();
abstract public void Dispose();
}
}
+2 -2
View File
@@ -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.1")]
[assembly: AssemblyFileVersion("1.1.1")]
[assembly: AssemblyVersion("1.1.2")]
[assembly: AssemblyFileVersion("1.1.2")]
Binary file not shown.