diff --git a/Pepperdash Core/Pepperdash Core.suo b/Pepperdash Core/Pepperdash Core.suo index fb8dbb6..30c7c1a 100644 Binary files a/Pepperdash Core/Pepperdash Core.suo and b/Pepperdash Core/Pepperdash Core.suo differ diff --git a/Pepperdash Core/Pepperdash Core/Conversion/Convert.cs b/Pepperdash Core/Pepperdash Core/Conversion/Convert.cs new file mode 100644 index 0000000..2bafdcb --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/Conversion/Convert.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Crestron.SimplSharp; + +namespace PepperDash.Core +{ + public class EncodingHelper + { + public static string ConvertUtf8ToAscii(string utf8String) + { + return Encoding.ASCII.GetString(Encoding.UTF8.GetBytes(utf8String), 0, utf8String.Length); + } + + public static string ConvertUtf8ToUtf16(string utf8String) + { + return Encoding.Unicode.GetString(Encoding.UTF8.GetBytes(utf8String), 0, utf8String.Length); + } + + } +} \ No newline at end of file diff --git a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo index 2060a7f..b273579 100644 Binary files a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo and b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo differ diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log new file mode 100644 index 0000000..ef7c721 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 09-50-31).log @@ -0,0 +1,15 @@ +2/27/2017 9:50:31 AM, Info: Initializing SIMPLSharp Services... +2/27/2017 9:50:32 AM, Info: ProjectInfo successfully initialized. +2/27/2017 10:11:04 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +2/27/2017 10:11:04 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +2/27/2017 10:11:05 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +2/27/2017 10:11:05 AM, Info: Saving project information... +2/27/2017 10:11:36 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +2/27/2017 10:11:36 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +2/27/2017 10:11:36 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +2/27/2017 10:11:37 AM, Info: Saving project information... +2/27/2017 10:20:01 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +2/27/2017 10:20:01 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +2/27/2017 10:20:01 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +2/27/2017 10:20:01 AM, Info: Saving project information... +2/27/2017 1:27:24 PM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log new file mode 100644 index 0000000..28c06f9 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-02-27 12-03-59).log @@ -0,0 +1,11 @@ +2/27/2017 12:03:59 PM, Info: Initializing SIMPLSharp Services... +2/27/2017 12:03:59 PM, Info: ProjectInfo successfully initialized. +2/27/2017 12:04:26 PM, Info: Saving project information... +2/27/2017 12:04:26 PM, Info: Saving project information... +2/27/2017 12:04:26 PM, Info: Saving project information... +2/27/2017 12:04:26 PM, Info: Saving project information... +2/27/2017 12:04:27 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +2/27/2017 12:04:27 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +2/27/2017 12:04:27 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +2/27/2017 12:04:28 PM, Info: Saving project information... +2/27/2017 1:27:24 PM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log new file mode 100644 index 0000000..801a375 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 08-11-51).log @@ -0,0 +1,15 @@ +3/2/2017 8:11:51 AM, Info: Initializing SIMPLSharp Services... +3/2/2017 8:11:51 AM, Info: ProjectInfo successfully initialized. +3/2/2017 8:56:43 AM, Info: Saving project information... +3/2/2017 8:56:43 AM, Info: Saving project information... +3/2/2017 9:01:43 AM, Info: Saving project information... +3/2/2017 9:01:43 AM, Info: Saving project information... +3/2/2017 9:01:51 AM, Info: Saving project information... +3/2/2017 9:01:51 AM, Info: Saving project information... +3/2/2017 9:01:51 AM, Info: Saving project information... +3/2/2017 9:01:51 AM, Info: Saving project information... +3/2/2017 9:01:53 AM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +3/2/2017 9:01:53 AM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +3/2/2017 9:01:53 AM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +3/2/2017 9:01:54 AM, Info: Saving project information... +3/2/2017 9:12:03 AM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log new file mode 100644 index 0000000..6c064af --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-35-18).log @@ -0,0 +1,3 @@ +3/2/2017 9:35:18 AM, Info: Initializing SIMPLSharp Services... +3/2/2017 9:35:18 AM, Info: ProjectInfo successfully initialized. +3/2/2017 9:52:20 AM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log new file mode 100644 index 0000000..586c171 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-02 09-50-44).log @@ -0,0 +1,3 @@ +3/2/2017 9:50:44 AM, Info: Initializing SIMPLSharp Services... +3/2/2017 9:50:44 AM, Info: ProjectInfo successfully initialized. +3/2/2017 9:52:20 AM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log new file mode 100644 index 0000000..9544c37 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-13 12-52-45).log @@ -0,0 +1,3 @@ +3/13/2017 12:52:45 PM, Info: Initializing SIMPLSharp Services... +3/13/2017 12:52:45 PM, Info: ProjectInfo successfully initialized. +3/13/2017 2:48:37 PM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log new file mode 100644 index 0000000..4adad99 --- /dev/null +++ b/Pepperdash Core/Pepperdash Core/SIMPLSharpLogs/(2017-03-19 20-16-46).log @@ -0,0 +1,11 @@ +3/19/2017 8:16:46 PM, Info: Initializing SIMPLSharp Services... +3/19/2017 8:16:46 PM, Info: ProjectInfo successfully initialized. +3/19/2017 8:16:59 PM, Info: Saving project information... +3/19/2017 8:17:00 PM, Info: Saving project information... +3/19/2017 8:17:00 PM, Info: Saving project information... +3/19/2017 8:17:00 PM, Info: Saving project information... +3/19/2017 8:17:02 PM, Info: Validating assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll... +3/19/2017 8:17:02 PM, Info: Verifying assembly C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.dll +3/19/2017 8:17:02 PM, Info: Creating Archive C:\Users\hvolmer\Desktop\working\pepperdash-simplsharp-core\Pepperdash Core\Pepperdash Core\bin\PepperDash_Core.clz... +3/19/2017 8:17:03 PM, Info: Saving project information... +3/19/2017 8:17:07 PM, Info: Terminating SIMPLSharp Services diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz index 85471a9..3ab495a 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz and b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.clz differ diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config index b28fb6d..7b1e168 100644 --- a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config +++ b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.config @@ -10,11 +10,11 @@ - 3/18/2017 5:00:59 PM - 1.0.6286.28828 + 3/19/2017 8:17:02 PM + 1.0.6287.34710 - Crestron.SIMPLSharp, Version=2.0.52.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 - 2.05.020 + Crestron.SIMPLSharp, Version=2.0.48.0, Culture=neutral, PublicKeyToken=812d080f93e2de10 + \ No newline at end of file diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll index acb55a8..88995d8 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll and b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb index f639405..ac2c32e 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb and b/Pepperdash Core/Pepperdash Core/bin/PepperDash_Core.pdb differ diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll index dd68158..6fd71ec 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll and b/Pepperdash Core/Pepperdash Core/bin/SimplSharpCustomAttributesInterface.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll index 03222b5..78ba937 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll and b/Pepperdash Core/Pepperdash Core/bin/SimplSharpHelperInterface.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll index 2111350..81103a7 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll and b/Pepperdash Core/Pepperdash Core/bin/SimplSharpNewtonsoft.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll index 42a55b9..edc2f9f 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll and b/Pepperdash Core/Pepperdash Core/bin/SimplSharpReflectionInterface.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll b/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll index 7f1841c..69b6dc7 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll and b/Pepperdash Core/Pepperdash Core/bin/SimplSharpSQLHelperInterface.dll differ diff --git a/Pepperdash Core/Pepperdash Core/bin/manifest.info b/Pepperdash Core/Pepperdash Core/bin/manifest.info index dde690b..8460d63 100644 --- a/Pepperdash Core/Pepperdash Core/bin/manifest.info +++ b/Pepperdash Core/Pepperdash Core/bin/manifest.info @@ -1,4 +1,4 @@ -MainAssembly=PepperDash_Core.dll:9f208dcbcc49e496f38e91289aee13c4 +MainAssembly=PepperDash_Core.dll:49fe0d78cb676a902c692056067fef4b MainAssemblyMinFirmwareVersion=1.007.0017 MainAssemblyResource=SimplSharpData.dat:315526abf906cded47fb0c7510266a7e ü diff --git a/Pepperdash Core/Pepperdash Core/bin/manifest.ser b/Pepperdash Core/Pepperdash Core/bin/manifest.ser index ecf2682..7eea94b 100644 Binary files a/Pepperdash Core/Pepperdash Core/bin/manifest.ser and b/Pepperdash Core/Pepperdash Core/bin/manifest.ser differ diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll index bc85983..2c679d0 100644 Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll and b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.dll differ diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb index c0dc85d..ac2c32e 100644 Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb and b/Pepperdash Core/Pepperdash Core/obj/Debug/PepperDash_Core.pdb differ diff --git a/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache b/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache index b8689b4..f60ee18 100644 Binary files a/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache and b/Pepperdash Core/Pepperdash Core/obj/Debug/ResolveAssemblyReference.cache differ