From af2b99b1a7d0d933edb693ed224d633e46fe6ad1 Mon Sep 17 00:00:00 2001 From: SpoinkyNL Date: Thu, 18 Feb 2016 21:39:55 +0100 Subject: [PATCH] Implemented keyboard checks --- .../Artemis/KeyboardProviders/Corsair/K70.cs | 89 +++-- .../Artemis/KeyboardProviders/Corsair/K95.cs | 24 +- .../KeyboardProviders/KeyboardProvider.cs | 1 + .../KeyboardProviders/Logitech/Orion.cs | 6 + .../KeyboardProviders/Razer/BlackWidow.cs | 5 + Artemis/Artemis/Models/MainModel.cs | 20 ++ Artemis/ArtemisSetup/ArtemisSetup.isl | 339 ++++++++++++------ 7 files changed, 342 insertions(+), 142 deletions(-) diff --git a/Artemis/Artemis/KeyboardProviders/Corsair/K70.cs b/Artemis/Artemis/KeyboardProviders/Corsair/K70.cs index 270aa7e15..42b77047c 100644 --- a/Artemis/Artemis/KeyboardProviders/Corsair/K70.cs +++ b/Artemis/Artemis/KeyboardProviders/Corsair/K70.cs @@ -1,9 +1,9 @@ -using System.Drawing; +using System; +using System.Drawing; +using System.Windows.Forms; +using Artemis.Utilities; using CUE.NET; -using CUE.NET.Brushes; -using CUE.NET.Devices.Generic.Enums; using CUE.NET.Devices.Keyboard; -using CUE.NET.Devices.Keyboard.Keys; using CUE.NET.Exceptions; namespace Artemis.KeyboardProviders.Corsair @@ -17,6 +17,22 @@ namespace Artemis.KeyboardProviders.Corsair Name = "Corsair Gaming K70 RGB"; } + public override bool CanEnable() + { + try + { + CueSDK.Initialize(); + } + catch (CUEException e) + { + if (e.Message.Contains("not found")) + return false; + } + + return true; + + } + /// /// Enables the SDK and sets updatemode to manual as well as the color of the background to black. /// @@ -28,14 +44,13 @@ namespace Artemis.KeyboardProviders.Corsair } catch (WrapperException) { -/*CUE is already initialized*/ + /*CUE is already initialized*/ } _keyboard = CueSDK.KeyboardSDK; - Height = (int) _keyboard.KeyboardRectangle.Height; - Width = (int) _keyboard.KeyboardRectangle.Width; + Height = (int)_keyboard.KeyboardRectangle.Height; + Width = (int)_keyboard.KeyboardRectangle.Width; - _keyboard.UpdateMode = UpdateMode.Manual; - _keyboard.Brush = new SolidColorBrush(Color.Black); + // _keyboard.UpdateMode = UpdateMode.Manual; _keyboard.Update(true); } @@ -48,38 +63,46 @@ namespace Artemis.KeyboardProviders.Corsair /// size. /// Does not reset the color each time. Uncomment line 48 for collor reset. /// - /// + /// public override void DrawBitmap(Bitmap bitmap) { - var ledRectangles = new RectangleF[bitmap.Width, bitmap.Height]; - var ledGroups = new RectangleKeyGroup[bitmap.Width, bitmap.Height]; - //_keyboard.Brush = new SolidColorBrush(Color.Black); - for (var x = 0; x < bitmap.Width; x++) + using ( + var resized = ImageUtilities.ResizeImage(bitmap, + (int)_keyboard.KeyboardRectangle.Width, + (int)_keyboard.KeyboardRectangle.Height) + ) { - for (var y = 0; y < bitmap.Height; y++) + foreach (var item in _keyboard.Keys) { - ledRectangles[x, y] = - new RectangleF( - _keyboard.KeyboardRectangle.X* - (x*(_keyboard.KeyboardRectangle.Width/bitmap.Width/_keyboard.KeyboardRectangle.X)), - _keyboard.KeyboardRectangle.Y* - (y*(_keyboard.KeyboardRectangle.Height/bitmap.Height/_keyboard.KeyboardRectangle.Y)), - _keyboard.KeyboardRectangle.Width/bitmap.Width, - _keyboard.KeyboardRectangle.Height/bitmap.Height); - ledGroups[x, y] = new RectangleKeyGroup(_keyboard, ledRectangles[x, y], 0.01f) - { - Brush = new SolidColorBrush(bitmap.GetPixel(x, y)) - }; + var ledColor = resized.GetPixel((int)item.KeyRectangle.X, (int)item.KeyRectangle.Y); + if (ledColor == Color.FromArgb(0, 0, 0, 0)) + ledColor = Color.Black; + item.Led.Color = ledColor; } } - _keyboard.Update(); - for (var x = 0; x < bitmap.Width; x++) + _keyboard.Update(true); + } + + /* + RectangleF[,] ledRectangles = new RectangleF[bitmap.Width, bitmap.Height]; + RectangleKeyGroup[,] ledGroups = new RectangleKeyGroup[bitmap.Width, bitmap.Height]; + //_keyboard.Brush = new SolidColorBrush(Color.Black); + for (var x = 0 ; x < bitmap.Width; x++) + { + for (var y = 0; y < bitmap.Height; y++) { - for (var y = 0; y < bitmap.Height; y++) - { - _keyboard.DetachKeyGroup(ledGroups[x, y]); - } + ledRectangles[x, y] = new RectangleF(_keyboard.KeyboardRectangle.X * (x*(_keyboard.KeyboardRectangle.Width / bitmap.Width / _keyboard.KeyboardRectangle.X)), _keyboard.KeyboardRectangle.Y*(y*(_keyboard.KeyboardRectangle.Height / bitmap.Height / _keyboard.KeyboardRectangle.Y)), _keyboard.KeyboardRectangle.Width / bitmap.Width, _keyboard.KeyboardRectangle.Height / bitmap.Height); + ledGroups[x, y] = new RectangleKeyGroup(_keyboard, ledRectangles[x, y], 0.01f) { Brush = new SolidColorBrush(bitmap.GetPixel(x, y)) }; + } + } + _keyboard.Update(); + for (var x = 0; x < bitmap.Width; x++) + { + for (var y = 0; y < bitmap.Height; y++) + { + _keyboard.DetachKeyGroup(ledGroups[x, y]); } } + */ } } \ No newline at end of file diff --git a/Artemis/Artemis/KeyboardProviders/Corsair/K95.cs b/Artemis/Artemis/KeyboardProviders/Corsair/K95.cs index cf9800f98..cb808cacb 100644 --- a/Artemis/Artemis/KeyboardProviders/Corsair/K95.cs +++ b/Artemis/Artemis/KeyboardProviders/Corsair/K95.cs @@ -1,6 +1,9 @@ -using System.Drawing; +using System; +using System.Drawing; +using System.Windows.Forms; using Artemis.Utilities; using CUE.NET; +using CUE.NET.Devices.Generic.Enums; using CUE.NET.Devices.Keyboard; using CUE.NET.Exceptions; @@ -15,6 +18,23 @@ namespace Artemis.KeyboardProviders.Corsair Name = "Corsair Gaming K95 RGB"; } + public override bool CanEnable() + { + try + { + CueSDK.Initialize(); + } + catch (CUEException e) + { + if (e.Error == CorsairError.ServerNotFound) + return false; + throw; + } + + return true; + + } + /// /// Enables the SDK and sets updatemode to manual as well as the color of the background to black. /// @@ -26,7 +46,7 @@ namespace Artemis.KeyboardProviders.Corsair } catch (WrapperException) { -/*CUE is already initialized*/ + /*CUE is already initialized*/ } _keyboard = CueSDK.KeyboardSDK; Height = (int) _keyboard.KeyboardRectangle.Height; diff --git a/Artemis/Artemis/KeyboardProviders/KeyboardProvider.cs b/Artemis/Artemis/KeyboardProviders/KeyboardProvider.cs index 149ee63ca..ecb9a5796 100644 --- a/Artemis/Artemis/KeyboardProviders/KeyboardProvider.cs +++ b/Artemis/Artemis/KeyboardProviders/KeyboardProvider.cs @@ -8,6 +8,7 @@ namespace Artemis.KeyboardProviders public int Height { get; set; } public int Width { get; set; } + public abstract bool CanEnable(); public abstract void Enable(); public abstract void Disable(); public abstract void DrawBitmap(Bitmap bitmap); diff --git a/Artemis/Artemis/KeyboardProviders/Logitech/Orion.cs b/Artemis/Artemis/KeyboardProviders/Logitech/Orion.cs index a8ef91b11..a109c0ad6 100644 --- a/Artemis/Artemis/KeyboardProviders/Logitech/Orion.cs +++ b/Artemis/Artemis/KeyboardProviders/Logitech/Orion.cs @@ -13,6 +13,12 @@ namespace Artemis.KeyboardProviders.Logitech Width = 21; } + public override bool CanEnable() + { + // TODO + return true; + } + public override void Enable() { // Initialize the SDK diff --git a/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs b/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs index 0c17f834c..c577757c3 100644 --- a/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs +++ b/Artemis/Artemis/KeyboardProviders/Razer/BlackWidow.cs @@ -12,6 +12,11 @@ namespace Artemis.KeyboardProviders.Razer Name = "Razer BlackWidow Chroma"; } + public override bool CanEnable() + { + return Chroma.IsSdkAvailable(); + } + public override void Enable() { Chroma.Instance.Initialize(); diff --git a/Artemis/Artemis/Models/MainModel.cs b/Artemis/Artemis/Models/MainModel.cs index 031544dba..53d8f92a0 100644 --- a/Artemis/Artemis/Models/MainModel.cs +++ b/Artemis/Artemis/Models/MainModel.cs @@ -4,6 +4,7 @@ using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading; +using System.Windows.Forms; using Artemis.Events; using Artemis.KeyboardProviders; using Artemis.Settings; @@ -52,6 +53,9 @@ namespace Artemis.Models public void StartEffects() { LoadLastKeyboard(); + // If no keyboard was loaded, don't enable effects. + if (ActiveKeyboard == null) + return; // Start the webserver GameStateWebServer.Start(); @@ -90,6 +94,22 @@ namespace Artemis.Models return; ActiveKeyboard?.Disable(); + + // Disable everything if there's no active keyboard found + if (!keyboardProvider.CanEnable()) + { + ActiveKeyboard = null; + MessageBox.Show( + "Couldn't connect to the " + keyboardProvider.Name + ".\n " + + "Please check your cables and/or drivers (could be outdated).\n\n " + + "If needed, you can select a different keyboard in Artemis under settings", + "Artemis (╯°□°)╯︵ ┻━┻", + MessageBoxButtons.OK, + MessageBoxIcon.Warning); + ShutdownEffects(); + return; + } + ActiveKeyboard = keyboardProvider; ActiveKeyboard.Enable(); diff --git a/Artemis/ArtemisSetup/ArtemisSetup.isl b/Artemis/ArtemisSetup/ArtemisSetup.isl index ce6cb4986..1dd3df318 100644 --- a/Artemis/ArtemisSetup/ArtemisSetup.isl +++ b/Artemis/ArtemisSetup/ArtemisSetup.isl @@ -56,7 +56,7 @@ ##ID_STRING3## Installer,MSI,Database Contact: Your local administrator - + Administrator {EC92BB19-2C2C-43AB-86BA-9A30BCCD0F7B} @@ -343,32 +343,57 @@ ISDotNetInstallerArgsCommit ISDotNetInstallerArgsUninstall ISDotNetInstallerArgsRollback - Artemis.exe{AE545887-5D55-4F70-9F91-DB5FEA5535F1}INSTALLDIR2artemis.exe17/LogFile=/LogFile=/LogFile=/LogFile= - Artemis.vshost.exe{A786DBCC-9549-4570-9501-B69D81129600}INSTALLDIR2artemis.vshost.exe17/LogFile=/LogFile=/LogFile=/LogFile= - Autofac.dll{5E25D325-7083-45DE-B892-5067169B5E66}INSTALLDIR2autofac.dll17/LogFile=/LogFile=/LogFile=/LogFile= - CUE.NET.dll{88A9B4DE-9327-4001-AE80-821E0CFE64AA}INSTALLDIR2cue.net.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Caliburn.Micro.Autofac.dll{24255F48-D48A-4822-845C-1CD3AE52C8B4}INSTALLDIR2caliburn.micro.autofac.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Caliburn.Micro.Platform.dll{94110BC6-B64E-42D1-86C7-47A5F3166787}INSTALLDIR2caliburn.micro.platform.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Caliburn.Micro.dll{3F1F37E8-7A58-458E-9F63-520775D41134}INSTALLDIR2caliburn.micro.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Corale.Colore.dll{7673A790-3E02-4505-B6B6-DC5738F63AFF}INSTALLDIR2corale.colore.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Gma.System.MouseKeyHook.dll{A1493BEE-2789-4682-BE78-2591A1A97D4D}INSTALLDIR2gma.system.mousekeyhook.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Hardcodet.Wpf.TaskbarNotification.dll{2B527944-FF38-4497-96D5-B418C1748EA4}INSTALLDIR2hardcodet.wpf.taskbarnotific17/LogFile=/LogFile=/LogFile=/LogFile= - ISX_DEFAULTCOMPONENT{36900BAB-5A03-4896-844F-704AB82C4BE8}INSTALLDIR217/LogFile=/LogFile=/LogFile=/LogFile= - LogitechLedEnginesWrapper.dll{873B7FD2-DBAB-43EF-8076-FD201D8B25C2}INSTALLDIR2logitechledengineswrapper.dl17/LogFile=/LogFile=/LogFile=/LogFile= - MahApps.Metro.dll{364BD482-3C7F-433D-8152-D76E8E5BEBAD}INSTALLDIR2mahapps.metro.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Microsoft.QualityTools.Testing.Fakes.dll{F5F43626-71B6-49A1-8C2E-D909DA18E438}INSTALLDIR2microsoft.qualitytools.testi17/LogFile=/LogFile=/LogFile=/LogFile= - NAudio.dll{8E1903D2-51A0-4969-9788-C89533096C30}INSTALLDIR2naudio.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Newtonsoft.Json.dll{5CCCDF7F-1449-4613-A51A-C16AC8586B9B}INSTALLDIR2newtonsoft.json.dll17/LogFile=/LogFile=/LogFile=/LogFile= - RzChromaSDK64.dll{CDE3628F-ECCF-4F79-AC47-4009863BDDFC}INSTALLDIR2rzchromasdk64.dll17/LogFile=/LogFile=/LogFile=/LogFile= - System.Windows.Interactivity.dll{37B73ADA-645B-4F87-A988-BB23501EEDE9}INSTALLDIR2system.windows.interactivity17/LogFile=/LogFile=/LogFile=/LogFile= - VioletTape.WpfExceptionViewer.dll{B28ED871-0D73-4850-999F-6F9B3A482B37}INSTALLDIR2violettape.wpfexceptionviewe17/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.AvalonDock.Themes.Aero.dll{9109677E-64B1-48BB-A670-F3FAC884E250}INSTALLDIR2xceed.wpf.avalondock.themes.17/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.AvalonDock.Themes.Metro.dll{20144D29-AFAF-4478-8A66-8EAE3EC648D0}INSTALLDIR2xceed.wpf.avalondock.themes.117/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.AvalonDock.Themes.VS2010.dll{AE11D506-2381-464A-BA43-AC434838BE82}INSTALLDIR2xceed.wpf.avalondock.themes.217/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.AvalonDock.dll{4F466BE2-07E1-48DD-9D8A-7A85B1A30C6D}INSTALLDIR2xceed.wpf.avalondock.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.DataGrid.dll{5245EED9-5622-4DB3-BE31-FFC89C666288}INSTALLDIR2xceed.wpf.datagrid.dll17/LogFile=/LogFile=/LogFile=/LogFile= - Xceed.Wpf.Toolkit.dll{931E8392-8470-4FF8-8AC1-3CB776D074C6}INSTALLDIR2xceed.wpf.toolkit.dll17/LogFile=/LogFile=/LogFile=/LogFile= - log4net.dll{5F695E14-D796-4166-B685-59D67B4AABB2}INSTALLDIR2log4net.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Artemis.exe{B02B4530-74C0-4D59-8543-FF1F3F25D615}INSTALLDIR258artemis.exe17/LogFile=/LogFile=/LogFile=/LogFile= + Artemis.exe1{22E47816-54E8-411A-B041-1D76131D0081}APP.PUBLISH258artemis.exe117/LogFile=/LogFile=/LogFile=/LogFile= + Artemis.vshost.exe{44B48DAA-FA30-487B-8BF4-02FDB0C6460C}INSTALLDIR258artemis.vshost.exe17/LogFile=/LogFile=/LogFile=/LogFile= + Autofac.dll{D8C4FF10-E186-4090-96C3-DAA02CB39A4B}INSTALLDIR258autofac.dll17/LogFile=/LogFile=/LogFile=/LogFile= + CUE.NET.dll{9F510AE0-4297-43FA-A61C-D791E1632AAB}INSTALLDIR258cue.net.dll17/LogFile=/LogFile=/LogFile=/LogFile= + CUESDK_2013.dll{D8C6979F-9879-4906-922E-388CBA26D713}X86258cuesdk_2013.dll17/LogFile=/LogFile=/LogFile=/LogFile= + CUESDK_2013.dll1{0090DBC5-1D73-4172-A460-D7C18950E57B}X64258cuesdk_2013.dll117/LogFile=/LogFile=/LogFile=/LogFile= + Caliburn.Micro.Autofac.dll{4D74839D-58AA-4CE5-8DFC-EE786366D348}INSTALLDIR258caliburn.micro.autofac.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Caliburn.Micro.Platform.dll{4783031F-4312-4F7F-B7AD-00833CA1E55B}INSTALLDIR258caliburn.micro.platform.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Caliburn.Micro.dll{2664ADFE-F14C-4A3E-B9D2-57C692F14009}INSTALLDIR258caliburn.micro.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Corale.Colore.dll{54EC7C55-F41A-4C70-954C-16FF3F779E1D}INSTALLDIR258corale.colore.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Gma.System.MouseKeyHook.dll{2E1F5FC8-A491-47D1-A987-EE98C246E506}INSTALLDIR258gma.system.mousekeyhook.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Hardcodet.Wpf.TaskbarNotification.dll{549B3A3B-5BAF-444C-8BEB-AC590FF70A75}INSTALLDIR258hardcodet.wpf.taskbarnotific17/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT{20846069-F23C-4EB8-AC61-08D8151A81E9}X8625817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT1{46ECAF22-8691-4364-8EE8-F1EFD9268313}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT10{4289E95A-3492-4EBC-81CB-3DFFEBADBB3F}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT11{B523AAF8-A6AF-491D-8A72-711B5EFE824E}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT12{D16D59FC-40C7-43CB-B869-CC25FBBF5FF0}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT13{E5434A8D-E067-4E01-860A-9B04BF267845}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT14{B6C950CC-3CDD-4984-A45D-CAE83891F95F}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT15{D7D8AB7B-DA29-4D0A-B1D3-74AAC7BF02DB}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT16{855A191F-29E6-447C-A7EB-F0D9497A330C}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT17{5A42EEDB-12F4-4515-B3D8-25AABC898CF3}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT18{FDB644F0-E77C-4A15-92D4-232766189FEC}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT19{4D30D212-BED7-4F93-9F8E-ABB3C55CD893}APP.PUBLISH25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT2{DEFEA09F-C9A6-433D-B5D7-587AD795F23A}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT20{A907A13C-78FB-4EA8-AF28-C6CAE9DC3123}EN25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT21{E74EDE95-403D-4B30-8DEE-2ED573A02F49}X6425817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT3{CA29D83B-4508-43A4-875A-F872FFD1A94B}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT4{DD6A5AD4-4ED5-48C3-B03F-CE53531138D8}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT5{A96C208F-B0E6-4E66-87BF-D3BB33FEB984}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT6{6B859E43-5409-4E6F-BF78-F14C4C16343F}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT7{9FD90576-A2EF-4DBD-925A-168677ED4BFC}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT8{D43111C1-9E51-4FC6-BADD-7B75DF55C253}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + ISX_DEFAULTCOMPONENT9{9F6849D8-4D20-4E29-BD00-078D6A90ACB8}INSTALLDIR25817/LogFile=/LogFile=/LogFile=/LogFile= + LogitechLedEnginesWrapper.dll{5378E226-3067-4B44-BD1E-727F3FD18BB7}INSTALLDIR258logitechledengineswrapper.dl17/LogFile=/LogFile=/LogFile=/LogFile= + MahApps.Metro.dll{06CDA28D-FFFC-44BE-A343-08DA7E4F0019}INSTALLDIR258mahapps.metro.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Microsoft.QualityTools.Testing.Fakes.dll{0738241C-E4BF-4787-B1E7-32EAD819E442}INSTALLDIR258microsoft.qualitytools.testi17/LogFile=/LogFile=/LogFile=/LogFile= + NAudio.dll{AF17BC2A-D7EE-4CCF-A2A3-6B2FC57CB7F2}INSTALLDIR258naudio.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Newtonsoft.Json.dll{CB020A96-2229-48B1-ACD0-46C9D7297035}INSTALLDIR258newtonsoft.json.dll17/LogFile=/LogFile=/LogFile=/LogFile= + RzChromaSDK64.dll{42EB96E7-712E-4DFE-B165-14C4A16688E5}INSTALLDIR258rzchromasdk64.dll17/LogFile=/LogFile=/LogFile=/LogFile= + System.Windows.Interactivity.dll{04906B6A-CEA4-4580-920C-5DD0411B7A1F}INSTALLDIR258system.windows.interactivity17/LogFile=/LogFile=/LogFile=/LogFile= + System.Windows.Interactivity.resources.dll{B7A859EA-CC4C-4790-AFC4-DFACBF0B6FC9}EN258system.windows.interactivity117/LogFile=/LogFile=/LogFile=/LogFile= + VioletTape.WpfExceptionViewer.dll{0BC672A2-B55D-4831-9A34-C30E42438B73}INSTALLDIR258violettape.wpfexceptionviewe17/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.AvalonDock.Themes.Aero.dll{A8A2AC15-16EF-46A2-88AD-EB2F075A97E9}INSTALLDIR258xceed.wpf.avalondock.themes.17/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.AvalonDock.Themes.Metro.dll{B16C1971-F7C3-41F1-94CF-3526A0E2FA72}INSTALLDIR258xceed.wpf.avalondock.themes.117/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.AvalonDock.Themes.VS2010.dll{2F7EE82B-FAE0-48B0-8B77-3C9ECBF0FAAE}INSTALLDIR258xceed.wpf.avalondock.themes.217/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.AvalonDock.dll{37254458-3D69-4CE5-AD7C-4436F5E94CB8}INSTALLDIR258xceed.wpf.avalondock.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.DataGrid.dll{BBAD5AA3-0272-4E17-BE05-391A3A8D6AF6}INSTALLDIR258xceed.wpf.datagrid.dll17/LogFile=/LogFile=/LogFile=/LogFile= + Xceed.Wpf.Toolkit.dll{E4F5D675-7BBE-43E8-9FA7-77330F1A6CBD}INSTALLDIR258xceed.wpf.toolkit.dll17/LogFile=/LogFile=/LogFile=/LogFile= + log4net.dll{DDDCB0C0-50CF-4D54-AB3A-07785241C67B}INSTALLDIR258log4net.dll17/LogFile=/LogFile=/LogFile=/LogFile= @@ -952,7 +977,8 @@ - + + @@ -1078,10 +1104,17 @@
DestinationFolderCancelSpawnDialogCancelSetup11 DestinationFolderChangeFolderSpawnDialogInstallChangeFolder11 DestinationFolderChangeFolder[_BrowseProperty]INSTALLDIR12DestinationFolderNextNewDialogReadyToInstall10DestinationFolderNextEndDialogReturnOutOfDiskSpace <> 11DestinationFolderNextNewDialogReadyToInstall01 DiskSpaceRequirementsOKEndDialogReturn10 FilesInUseExitEndDialogExit10 FilesInUseIgnoreEndDialogIgnore10
Directory_Component_ + + + + + + + @@ -1089,6 +1122,27 @@ + + + + + + + + + + + + + + + + + + + + + @@ -1096,6 +1150,7 @@ + @@ -1104,6 +1159,10 @@ + + + +
APP.PUBLISHArtemis.exe1APP.PUBLISHISX_DEFAULTCOMPONENT19ENISX_DEFAULTCOMPONENT20ENSystem.Windows.Interactivity.resources.dll INSTALLDIRArtemis.exeINSTALLDIRArtemis.exe1 INSTALLDIRArtemis.vshost.exe INSTALLDIRAutofac.dll INSTALLDIRCUE.NET.dllINSTALLDIRCUESDK_2013.dllINSTALLDIRCUESDK_2013.dll1 INSTALLDIRCaliburn.Micro.Autofac.dll INSTALLDIRCaliburn.Micro.Platform.dll INSTALLDIRCaliburn.Micro.dllINSTALLDIRGma.System.MouseKeyHook.dll INSTALLDIRHardcodet.Wpf.TaskbarNotification.dll INSTALLDIRISX_DEFAULTCOMPONENTINSTALLDIRISX_DEFAULTCOMPONENT1INSTALLDIRISX_DEFAULTCOMPONENT10INSTALLDIRISX_DEFAULTCOMPONENT11INSTALLDIRISX_DEFAULTCOMPONENT12INSTALLDIRISX_DEFAULTCOMPONENT13INSTALLDIRISX_DEFAULTCOMPONENT14INSTALLDIRISX_DEFAULTCOMPONENT15INSTALLDIRISX_DEFAULTCOMPONENT16INSTALLDIRISX_DEFAULTCOMPONENT17INSTALLDIRISX_DEFAULTCOMPONENT18INSTALLDIRISX_DEFAULTCOMPONENT19INSTALLDIRISX_DEFAULTCOMPONENT2INSTALLDIRISX_DEFAULTCOMPONENT20INSTALLDIRISX_DEFAULTCOMPONENT21INSTALLDIRISX_DEFAULTCOMPONENT3INSTALLDIRISX_DEFAULTCOMPONENT4INSTALLDIRISX_DEFAULTCOMPONENT5INSTALLDIRISX_DEFAULTCOMPONENT6INSTALLDIRISX_DEFAULTCOMPONENT7INSTALLDIRISX_DEFAULTCOMPONENT8INSTALLDIRISX_DEFAULTCOMPONENT9 INSTALLDIRLogitechLedEnginesWrapper.dll INSTALLDIRMahApps.Metro.dll INSTALLDIRMicrosoft.QualityTools.Testing.Fakes.dllINSTALLDIRNewtonsoft.Json.dll INSTALLDIRRzChromaSDK64.dll INSTALLDIRSystem.Windows.Interactivity.dllINSTALLDIRSystem.Windows.Interactivity.resources.dll INSTALLDIRVioletTape.WpfExceptionViewer.dll INSTALLDIRXceed.Wpf.AvalonDock.Themes.Aero.dll INSTALLDIRXceed.Wpf.AvalonDock.Themes.Metro.dllINSTALLDIRXceed.Wpf.DataGrid.dll INSTALLDIRXceed.Wpf.Toolkit.dll INSTALLDIRlog4net.dllX64CUESDK_2013.dll1X64ISX_DEFAULTCOMPONENT21X86CUESDK_2013.dllX86ISX_DEFAULTCOMPONENT
@@ -1184,8 +1243,10 @@ ISAttributesISFolderName
ALLUSERSPROFILETARGETDIR.:ALLUSE~1|All Users0 + APP.PUBLISHINSTALLDIRAPP_PU~1|app.publish0 ARTEMISProgramFilesFolderArtemis0 ARTEMIS1ARTEMISArtemis0 + ARTEMIS2ProgramFiles64FolderArtemis0 AdminToolsFolderTARGETDIR.:Admint~1|AdminTools0 AppDataFolderTARGETDIR.:APPLIC~1|Application Data0 CommonAppDataFolderTARGETDIR.:Common~1|CommonAppData0 @@ -1193,10 +1254,11 @@ CommonFilesFolderTARGETDIR.:Common0 DATABASEDIRISYourDataBaseDir.0 DesktopFolderTARGETDIR.:Desktop3 + ENINSTALLDIRen0 FavoritesFolderTARGETDIR.:FAVORI~1|Favorites0 FontsFolderTARGETDIR.:Fonts0 GlobalAssemblyCacheTARGETDIR.:Global~1|GlobalAssemblyCache0 - INSTALLDIRARTEMIS1.0 + INSTALLDIRARTEMIS2.0 ISCommonFilesFolderCommonFilesFolderInstal~1|InstallShield0 ISMyCompanyDirProgramFilesFolderMYCOMP~1|My Company Name0 ISMyProductDirISMyCompanyDirMYPROD~1|My Product Name0 @@ -1224,6 +1286,8 @@ USERPROFILETARGETDIR.:USERPR~1|UserProfile0 WindowsFolderTARGETDIR.:Windows0 WindowsVolumeTARGETDIR.:WinRoot0 + X64INSTALLDIRx640 + X86INSTALLDIRx860 artemisProgramMenuFolderArtemis1 artemis1artemisArtemis1
@@ -1918,9 +1982,12 @@ Feature_ Component_ AlwaysInstallArtemis.exe + AlwaysInstallArtemis.exe1 AlwaysInstallArtemis.vshost.exe AlwaysInstallAutofac.dll AlwaysInstallCUE.NET.dll + AlwaysInstallCUESDK_2013.dll + AlwaysInstallCUESDK_2013.dll1 AlwaysInstallCaliburn.Micro.Autofac.dll AlwaysInstallCaliburn.Micro.Platform.dll AlwaysInstallCaliburn.Micro.dll @@ -1928,6 +1995,27 @@ AlwaysInstallGma.System.MouseKeyHook.dll AlwaysInstallHardcodet.Wpf.TaskbarNotification.dll AlwaysInstallISX_DEFAULTCOMPONENT + AlwaysInstallISX_DEFAULTCOMPONENT1 + AlwaysInstallISX_DEFAULTCOMPONENT10 + AlwaysInstallISX_DEFAULTCOMPONENT11 + AlwaysInstallISX_DEFAULTCOMPONENT12 + AlwaysInstallISX_DEFAULTCOMPONENT13 + AlwaysInstallISX_DEFAULTCOMPONENT14 + AlwaysInstallISX_DEFAULTCOMPONENT15 + AlwaysInstallISX_DEFAULTCOMPONENT16 + AlwaysInstallISX_DEFAULTCOMPONENT17 + AlwaysInstallISX_DEFAULTCOMPONENT18 + AlwaysInstallISX_DEFAULTCOMPONENT19 + AlwaysInstallISX_DEFAULTCOMPONENT2 + AlwaysInstallISX_DEFAULTCOMPONENT20 + AlwaysInstallISX_DEFAULTCOMPONENT21 + AlwaysInstallISX_DEFAULTCOMPONENT3 + AlwaysInstallISX_DEFAULTCOMPONENT4 + AlwaysInstallISX_DEFAULTCOMPONENT5 + AlwaysInstallISX_DEFAULTCOMPONENT6 + AlwaysInstallISX_DEFAULTCOMPONENT7 + AlwaysInstallISX_DEFAULTCOMPONENT8 + AlwaysInstallISX_DEFAULTCOMPONENT9 AlwaysInstallLogitechLedEnginesWrapper.dll AlwaysInstallMahApps.Metro.dll AlwaysInstallMicrosoft.QualityTools.Testing.Fakes.dll @@ -1935,6 +2023,7 @@ AlwaysInstallNewtonsoft.Json.dll AlwaysInstallRzChromaSDK64.dll AlwaysInstallSystem.Windows.Interactivity.dll + AlwaysInstallSystem.Windows.Interactivity.resources.dll AlwaysInstallVioletTape.WpfExceptionViewer.dll AlwaysInstallXceed.Wpf.AvalonDock.Themes.Aero.dll AlwaysInstallXceed.Wpf.AvalonDock.Themes.Metro.dll @@ -1957,49 +2046,53 @@ ISBuildSourcePath ISAttributes ISComponentSubFolder_ - artemis.applicationISX_DEFAULTCOMPONENTARTEMI~1.APP|Artemis.application01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.application1 - artemis.exeArtemis.exeArtemis.exe01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe1 - artemis.exe.configISX_DEFAULTCOMPONENTARTEMI~1.CON|Artemis.exe.config01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe.config1 - artemis.exe.manifestISX_DEFAULTCOMPONENTARTEMI~1.MAN|Artemis.exe.manifest01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe.manifest1 - artemis.pdbISX_DEFAULTCOMPONENTArtemis.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.pdb1 - artemis.vshost.applicationISX_DEFAULTCOMPONENTARTEMI~1.APP|Artemis.vshost.application01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.application1 - artemis.vshost.exeArtemis.vshost.exeARTEMI~1.EXE|Artemis.vshost.exe01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe1 - artemis.vshost.exe.configISX_DEFAULTCOMPONENTARTEMI~1.CON|Artemis.vshost.exe.config01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe.config1 - artemis.vshost.exe.manifestISX_DEFAULTCOMPONENTARTEMI~1.MAN|Artemis.vshost.exe.manifest01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe.manifest1 - autofac.dllAutofac.dllAutofac.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Autofac.dll1 - autofac.xmlISX_DEFAULTCOMPONENTAutofac.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Autofac.xml1 - caliburn.micro.autofac.dllCaliburn.Micro.Autofac.dllCALIBU~1.DLL|Caliburn.Micro.Autofac.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Autofac.dll1 - caliburn.micro.dllCaliburn.Micro.dllCALIBU~1.DLL|Caliburn.Micro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.dll1 - caliburn.micro.platform.dllCaliburn.Micro.Platform.dllCALIBU~1.DLL|Caliburn.Micro.Platform.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Platform.dll1 - caliburn.micro.platform.xmlISX_DEFAULTCOMPONENTCALIBU~1.XML|Caliburn.Micro.Platform.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Platform.xml1 - caliburn.micro.xmlISX_DEFAULTCOMPONENTCALIBU~1.XML|Caliburn.Micro.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.xml1 - corale.colore.dllCorale.Colore.dllCORALE~1.DLL|Corale.Colore.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Corale.Colore.dll1 - corale.colore.xmlISX_DEFAULTCOMPONENTCORALE~1.XML|Corale.Colore.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Corale.Colore.xml1 - cue.net.dllCUE.NET.dllCUENET~1.DLL|CUE.NET.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\CUE.NET.dll1 - gma.system.mousekeyhook.dllGma.System.MouseKeyHook.dllGMASYS~1.DLL|Gma.System.MouseKeyHook.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Gma.System.MouseKeyHook.dll1 - hardcodet.wpf.taskbarnotificHardcodet.Wpf.TaskbarNotification.dllHARDCO~1.DLL|Hardcodet.Wpf.TaskbarNotification.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.dll1 - hardcodet.wpf.taskbarnotific1ISX_DEFAULTCOMPONENTHARDCO~1.PDB|Hardcodet.Wpf.TaskbarNotification.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.pdb1 - hardcodet.wpf.taskbarnotific2ISX_DEFAULTCOMPONENTHARDCO~1.XML|Hardcodet.Wpf.TaskbarNotification.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.xml1 - log4net.dlllog4net.dlllog4net.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\log4net.dll1 - log4net.xmlISX_DEFAULTCOMPONENTlog4net.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\log4net.xml1 - logitechledengineswrapper.dlLogitechLedEnginesWrapper.dllLOGITE~1.DLL|LogitechLedEnginesWrapper.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\LogitechLedEnginesWrapper.dll1 - mahapps.metro.dllMahApps.Metro.dllMAHAPP~1.DLL|MahApps.Metro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.dll1 - mahapps.metro.pdbISX_DEFAULTCOMPONENTMAHAPP~1.PDB|MahApps.Metro.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.pdb1 - mahapps.metro.xmlISX_DEFAULTCOMPONENTMAHAPP~1.XML|MahApps.Metro.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.xml1 - microsoft.qualitytools.testiMicrosoft.QualityTools.Testing.Fakes.dllMICROS~1.DLL|Microsoft.QualityTools.Testing.Fakes.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Microsoft.QualityTools.Testing.Fakes.dll1 - naudio.dllNAudio.dllNAudio.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\NAudio.dll1 - naudio.xmlISX_DEFAULTCOMPONENTNAudio.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\NAudio.xml1 - newtonsoft.json.dllNewtonsoft.Json.dllNEWTON~1.DLL|Newtonsoft.Json.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Newtonsoft.Json.dll1 - newtonsoft.json.xmlISX_DEFAULTCOMPONENTNEWTON~1.XML|Newtonsoft.Json.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Newtonsoft.Json.xml1 - rzchromasdk64.dllRzChromaSDK64.dllRZCHRO~1.DLL|RzChromaSDK64.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\RzChromaSDK64.dll1 - system.windows.interactivitySystem.Windows.Interactivity.dllSYSTEM~1.DLL|System.Windows.Interactivity.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\System.Windows.Interactivity.dll1 - violettape.wpfexceptionvieweVioletTape.WpfExceptionViewer.dllVIOLET~1.DLL|VioletTape.WpfExceptionViewer.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\VioletTape.WpfExceptionViewer.dll1 - xceed.wpf.avalondock.dllXceed.Wpf.AvalonDock.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.dll1 - xceed.wpf.avalondock.themes.Xceed.Wpf.AvalonDock.Themes.Aero.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Aero.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.Aero.dll1 - xceed.wpf.avalondock.themes.1Xceed.Wpf.AvalonDock.Themes.Metro.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Metro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.Metro.dll1 - xceed.wpf.avalondock.themes.2Xceed.Wpf.AvalonDock.Themes.VS2010.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.VS2010.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.VS2010.dll1 - xceed.wpf.datagrid.dllXceed.Wpf.DataGrid.dllXCEEDW~1.DLL|Xceed.Wpf.DataGrid.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.DataGrid.dll1 - xceed.wpf.toolkit.dllXceed.Wpf.Toolkit.dllXCEEDW~1.DLL|Xceed.Wpf.Toolkit.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.Toolkit.dll1 + artemis.applicationISX_DEFAULTCOMPONENT1ARTEMI~1.APP|Artemis.application01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.application1 + artemis.exeArtemis.exeArtemis.exe01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe1 + artemis.exe.configISX_DEFAULTCOMPONENT2ARTEMI~1.CON|Artemis.exe.config01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe.config1 + artemis.exe.manifestISX_DEFAULTCOMPONENT3ARTEMI~1.MAN|Artemis.exe.manifest01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe.manifest1 + artemis.exe1Artemis.exe1Artemis.exe01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\app.publish\Artemis.exe1 + artemis.pdbISX_DEFAULTCOMPONENT4Artemis.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.pdb1 + artemis.vshost.applicationISX_DEFAULTCOMPONENT5ARTEMI~1.APP|Artemis.vshost.application01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.application1 + artemis.vshost.exeArtemis.vshost.exeARTEMI~1.EXE|Artemis.vshost.exe01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe1 + artemis.vshost.exe.configISX_DEFAULTCOMPONENT6ARTEMI~1.CON|Artemis.vshost.exe.config01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe.config1 + artemis.vshost.exe.manifestISX_DEFAULTCOMPONENT7ARTEMI~1.MAN|Artemis.vshost.exe.manifest01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe.manifest1 + autofac.dllAutofac.dllAutofac.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Autofac.dll1 + autofac.xmlISX_DEFAULTCOMPONENT8Autofac.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Autofac.xml1 + caliburn.micro.autofac.dllCaliburn.Micro.Autofac.dllCALIBU~1.DLL|Caliburn.Micro.Autofac.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Autofac.dll1 + caliburn.micro.dllCaliburn.Micro.dllCALIBU~1.DLL|Caliburn.Micro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.dll1 + caliburn.micro.platform.dllCaliburn.Micro.Platform.dllCALIBU~1.DLL|Caliburn.Micro.Platform.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Platform.dll1 + caliburn.micro.platform.xmlISX_DEFAULTCOMPONENT9CALIBU~1.XML|Caliburn.Micro.Platform.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Platform.xml1 + caliburn.micro.xmlISX_DEFAULTCOMPONENT10CALIBU~1.XML|Caliburn.Micro.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.xml1 + corale.colore.dllCorale.Colore.dllCORALE~1.DLL|Corale.Colore.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Corale.Colore.dll1 + corale.colore.xmlISX_DEFAULTCOMPONENT11CORALE~1.XML|Corale.Colore.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Corale.Colore.xml1 + cue.net.dllCUE.NET.dllCUENET~1.DLL|CUE.NET.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\CUE.NET.dll1 + cuesdk_2013.dllCUESDK_2013.dllCUESDK~1.DLL|CUESDK_2013.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\x86\CUESDK_2013.dll1 + cuesdk_2013.dll1CUESDK_2013.dll1CUESDK~1.DLL|CUESDK_2013.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\x64\CUESDK_2013.dll1 + gma.system.mousekeyhook.dllGma.System.MouseKeyHook.dllGMASYS~1.DLL|Gma.System.MouseKeyHook.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Gma.System.MouseKeyHook.dll1 + hardcodet.wpf.taskbarnotificHardcodet.Wpf.TaskbarNotification.dllHARDCO~1.DLL|Hardcodet.Wpf.TaskbarNotification.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.dll1 + hardcodet.wpf.taskbarnotific1ISX_DEFAULTCOMPONENT12HARDCO~1.PDB|Hardcodet.Wpf.TaskbarNotification.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.pdb1 + hardcodet.wpf.taskbarnotific2ISX_DEFAULTCOMPONENT13HARDCO~1.XML|Hardcodet.Wpf.TaskbarNotification.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.xml1 + log4net.dlllog4net.dlllog4net.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\log4net.dll1 + log4net.xmlISX_DEFAULTCOMPONENT14log4net.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\log4net.xml1 + logitechledengineswrapper.dlLogitechLedEnginesWrapper.dllLOGITE~1.DLL|LogitechLedEnginesWrapper.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\LogitechLedEnginesWrapper.dll1 + mahapps.metro.dllMahApps.Metro.dllMAHAPP~1.DLL|MahApps.Metro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.dll1 + mahapps.metro.pdbISX_DEFAULTCOMPONENT15MAHAPP~1.PDB|MahApps.Metro.pdb01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.pdb1 + mahapps.metro.xmlISX_DEFAULTCOMPONENT16MAHAPP~1.XML|MahApps.Metro.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.xml1 + microsoft.qualitytools.testiMicrosoft.QualityTools.Testing.Fakes.dllMICROS~1.DLL|Microsoft.QualityTools.Testing.Fakes.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Microsoft.QualityTools.Testing.Fakes.dll1 + naudio.dllNAudio.dllNAudio.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\NAudio.dll1 + naudio.xmlISX_DEFAULTCOMPONENT17NAudio.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\NAudio.xml1 + newtonsoft.json.dllNewtonsoft.Json.dllNEWTON~1.DLL|Newtonsoft.Json.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Newtonsoft.Json.dll1 + newtonsoft.json.xmlISX_DEFAULTCOMPONENT18NEWTON~1.XML|Newtonsoft.Json.xml01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Newtonsoft.Json.xml1 + rzchromasdk64.dllRzChromaSDK64.dllRZCHRO~1.DLL|RzChromaSDK64.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\RzChromaSDK64.dll1 + system.windows.interactivitySystem.Windows.Interactivity.dllSYSTEM~1.DLL|System.Windows.Interactivity.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\System.Windows.Interactivity.dll1 + system.windows.interactivity1System.Windows.Interactivity.resources.dllSYSTEM~1.DLL|System.Windows.Interactivity.resources.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\en\System.Windows.Interactivity.resources.dll1 + violettape.wpfexceptionvieweVioletTape.WpfExceptionViewer.dllVIOLET~1.DLL|VioletTape.WpfExceptionViewer.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\VioletTape.WpfExceptionViewer.dll1 + xceed.wpf.avalondock.dllXceed.Wpf.AvalonDock.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.dll1 + xceed.wpf.avalondock.themes.Xceed.Wpf.AvalonDock.Themes.Aero.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Aero.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.Aero.dll1 + xceed.wpf.avalondock.themes.1Xceed.Wpf.AvalonDock.Themes.Metro.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Metro.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.Metro.dll1 + xceed.wpf.avalondock.themes.2Xceed.Wpf.AvalonDock.Themes.VS2010.dllXCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.VS2010.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.VS2010.dll1 + xceed.wpf.datagrid.dllXceed.Wpf.DataGrid.dllXCEEDW~1.DLL|Xceed.Wpf.DataGrid.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.DataGrid.dll1 + xceed.wpf.toolkit.dllXceed.Wpf.Toolkit.dllXCEEDW~1.DLL|Xceed.Wpf.Toolkit.dll01C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.Toolkit.dll1 @@ -2141,32 +2234,57 @@ FTPLocationHTTPLocationMiscellaneous -
Artemis.exe_EBE28BB4_337D_45D8_A05A_7042D9160184_FILTER - Artemis.vshost.exe_A9AED88F_78D7_4406_9F2C_6498F741176F_FILTER - Autofac.dll_F6CE5925_4B50_4E2A_8DBE_B68ABA31C14F_FILTER - CUE.NET.dll_FE06BB55_FA4D_4830_BAC9_FB17A991E081_FILTER - Caliburn.Micro.Autofac.dll_70355146_900F_47ED_BF3A_4FE144C6FAED_FILTER - Caliburn.Micro.Platform.dll_9A557EFB_4F69_4751_97E8_F3EE43DAA4A6_FILTER - Caliburn.Micro.dll_65FF289F_31E5_486A_82FB_7475C226E01D_FILTER - Corale.Colore.dll_DAF356DE_8E9C_45AD_BDC3_D59F18E6344E_FILTER - Gma.System.MouseKeyHook.dll_0BD9270F_2CAD_4B7F_85F5_0A57724F4D78_FILTER - Hardcodet.Wpf.TaskbarNotification.dll_54CF599D_1E84_4DC2_A893_F9206D52B84A_FILTER - ISX_DEFAULTCOMPONENT_B035C80E_078A_46AE_84EC_154B07D733F4_FILTER - LogitechLedEnginesWrapper.dll_D45F9A72_236D_4A1B_9C8C_B0B93DA41C1D_FILTER - MahApps.Metro.dll_E7732D57_04EC_4272_ACB0_C2AEFBCBF8E8_FILTER - Microsoft.QualityTools.Testing.Fakes.dll_784CB380_02F5_4B15_8327_CC2206C1C8F3_FILTER - NAudio.dll_56469CCE_A509_47EF_9FC2_CDD68075E623_FILTER - Newtonsoft.Json.dll_948F1A63_9A42_482A_B3DF_03343AD670B3_FILTER - RzChromaSDK64.dll_DA345AAC_F050_4527_9979_E1D4EC7D2791_FILTER - System.Windows.Interactivity.dll_F5D83CBA_70F6_4EDA_9CBD_77E442B22F00_FILTER - VioletTape.WpfExceptionViewer.dll_26CEABC5_895B_48D5_9941_211B33565D7D_FILTER - Xceed.Wpf.AvalonDock.Themes.Aero.dll_5642DDC4_8010_4079_8A25_426132428AB3_FILTER - Xceed.Wpf.AvalonDock.Themes.Metro.dll_34E6FF71_B266_420A_90B1_87A1931C4A25_FILTER - Xceed.Wpf.AvalonDock.Themes.VS2010.dll_E58B5A59_8472_45FD_B495_A15AD9749C5D_FILTER - Xceed.Wpf.AvalonDock.dll_AF126129_8E8D_4B14_990C_96DADED11A17_FILTER - Xceed.Wpf.DataGrid.dll_C4A4F8C6_2C23_4894_9C59_B3994C8A2EAA_FILTER - Xceed.Wpf.Toolkit.dll_7BCC8FD2_D002_4E25_9FB6_3D795E192424_FILTER - log4net.dll_927C863B_C194_4DB8_A296_FA153412FFF7_FILTER + Artemis.exe_68233B2F_565C_464E_BFFD_8C2F6D07C23D_FILTER + Artemis.exe1_B80D64F0_2EF8_402F_BE8D_08D87DD0FB41_FILTER + Artemis.vshost.exe_F12D01E7_97B1_4AE1_97F3_C19D768F0E82_FILTER + Autofac.dll_A7A0E6AC_B464_487A_B8C3_77385022166C_FILTER + CUE.NET.dll_FDE78EE0_83B0_48DE_890A_9F9C910445CD_FILTER + CUESDK_2013.dll_1F494E4F_D612_49AC_AEB7_2FE55B93F4B8_FILTER + CUESDK_2013.dll1_767F003A_F071_4B27_ACF6_09F5FBCF090A_FILTER + Caliburn.Micro.Autofac.dll_6C2346B0_9872_4AE5_B4FB_E63D003495B5_FILTER + Caliburn.Micro.Platform.dll_16AB3B03_6E7D_42D2_9B19_93909BD0C13D_FILTER + Caliburn.Micro.dll_C15695D4_1943_4889_9568_9B5C6E088E81_FILTER + Corale.Colore.dll_1657F555_F106_476A_A63B_4A501396B84B_FILTER + Gma.System.MouseKeyHook.dll_91E10BF1_DE3A_4AF7_A18C_9D8EB647ACFF_FILTER + Hardcodet.Wpf.TaskbarNotification.dll_44AAF394_2330_4F60_87B1_A6955C7168C3_FILTER + ISX_DEFAULTCOMPONENT_AE754BD4_E4E9_4D0C_989A_A66083D6BA9F_FILTER + ISX_DEFAULTCOMPONENT1_D96A5BA7_64E7_4837_9403_61514AD8A834_FILTER + ISX_DEFAULTCOMPONENT10_531014E5_A318_4701_9226_0484BFCD1DBD_FILTER + ISX_DEFAULTCOMPONENT11_683EC30D_5AD5_4BA1_988A_5CAA113F2CB9_FILTER + ISX_DEFAULTCOMPONENT12_0C721F7A_8942_4514_8A0F_D4B57DF1479B_FILTER + ISX_DEFAULTCOMPONENT13_21103ED8_962C_434C_A5C3_6DCBD37B3066_FILTER + ISX_DEFAULTCOMPONENT14_CB04E5C4_BE06_4D1A_87E2_0E5A35F385FB_FILTER + ISX_DEFAULTCOMPONENT15_BC8845FB_C201_4878_921E_A4C7081E55C2_FILTER + ISX_DEFAULTCOMPONENT16_812C50A0_9266_4A4A_A0CF_FC4F2F46A46C_FILTER + ISX_DEFAULTCOMPONENT17_BF3CF6E8_8133_4E1D_A899_0ED65D43C3A4_FILTER + ISX_DEFAULTCOMPONENT18_33C0DE66_206B_4121_AE0E_FE78F28A6C2D_FILTER + ISX_DEFAULTCOMPONENT19_4BE5608B_8B33_4AF1_8C62_6779A66094C9_FILTER + ISX_DEFAULTCOMPONENT2_542EA1A2_0C6E_4BF0_8A1C_576A273DD1B7_FILTER + ISX_DEFAULTCOMPONENT20_3B3D74CD_46E5_4A43_AE83_2E47F1EDCB99_FILTER + ISX_DEFAULTCOMPONENT21_7543EF4C_D7D1_4493_849A_7532F0CE369E_FILTER + ISX_DEFAULTCOMPONENT3_3AE37FBC_B3A0_493A_8D33_8E52B81D8476_FILTER + ISX_DEFAULTCOMPONENT4_313FB409_A850_4F82_9C69_70F88ACB9F48_FILTER + ISX_DEFAULTCOMPONENT5_DB249CA3_19FD_4261_A2FE_4643700A1CFE_FILTER + ISX_DEFAULTCOMPONENT6_C6AC80CF_C33A_472F_9BB9_67900FA88764_FILTER + ISX_DEFAULTCOMPONENT7_7E62AA24_148B_46D6_9500_7177E6568782_FILTER + ISX_DEFAULTCOMPONENT8_BAD989AC_D0B4_4EB4_975F_FB8FFF28D01F_FILTER + ISX_DEFAULTCOMPONENT9_029BC5F4_6DDB_4E95_BA87_68B01D25800E_FILTER + LogitechLedEnginesWrapper.dll_FEF9BBD0_EA44_466C_9190_D41189AB12C3_FILTER + MahApps.Metro.dll_A92FD2C9_A49C_4B32_B5E2_E0084C33B6BC_FILTER + Microsoft.QualityTools.Testing.Fakes.dll_59AF2DF7_C2DC_46AE_AC35_44D0C3F4D1E6_FILTER + NAudio.dll_3FB28840_52C8_429D_95A1_1D01CE6F9B49_FILTER + Newtonsoft.Json.dll_9965E019_555B_4D94_BD23_1F8919039940_FILTER + RzChromaSDK64.dll_3270DF7A_39C4_404E_945B_694AD678597F_FILTER + System.Windows.Interactivity.dll_8D3E805A_DBC6_484D_A520_632C122E83CC_FILTER + System.Windows.Interactivity.resources.dll_32324EA1_4358_4D7E_B4BD_B36898C4FCA7_FILTER + VioletTape.WpfExceptionViewer.dll_D1C8BD59_977A_4EFB_8CB5_C0A8E0AA7580_FILTER + Xceed.Wpf.AvalonDock.Themes.Aero.dll_342FCEE4_8D1B_41DD_9C77_4F3F96DEDF35_FILTER + Xceed.Wpf.AvalonDock.Themes.Metro.dll_72FEB3F3_CBB7_4F0C_A5C3_B9390FFFEF6C_FILTER + Xceed.Wpf.AvalonDock.Themes.VS2010.dll_B2132F11_CCE4_475E_A456_00A3C95FAF2D_FILTER + Xceed.Wpf.AvalonDock.dll_1985F108_E2C9_4964_8A6C_6F5C6359E022_FILTER + Xceed.Wpf.DataGrid.dll_D3AEB309_ADE2_4482_88B8_9814C821B0C8_FILTER + Xceed.Wpf.Toolkit.dll_CE7B7B86_0B02_4430_ACFA_DAA7E4727BF4_FILTER + log4net.dll_A4DBE1D7_3D25_4FF1_B6F6_467DB7A1FDE9_FILTER
@@ -2754,7 +2872,7 @@ EncodedCommentTimeStamp - + @@ -3569,6 +3687,12 @@ + + + + + + @@ -3858,8 +3982,8 @@ - - + +
COMPANY_NAME1033Artemis0-1994091562COMPANY_NAME1033Artemis0-1859900396 DN_AlwaysInstall1033Always Install0-1994117611 IDPROP_EXPRESS_LAUNCH_CONDITION_COLOR1033The color settings of your system are not adequate for running [ProductName].0-1994117611 IDPROP_EXPRESS_LAUNCH_CONDITION_DOTNETVERSION45FULL1033Microsoft .NET Framework 4.5 Full package or greater needs to be installed for this installation to continue.0-1994070507IDS_SETUPEXE_LAUNCH_COND_E1033This setup was built with an evaluation version of InstallShield and can only be launched from setup.exe.0-1994117611 IDS_SHORTCUT_DISPLAY_NAME11033Artemis0-1994084715 IDS_SHORTCUT_DISPLAY_NAME21033LAUNCH~1.EXE|Launch Artemis.vshost.exe0-1994117483IDS_SHORTCUT_DISPLAY_NAME31033LAUNCH~1.EXE|Launch Artemis.exe0-1859886476IDS_SHORTCUT_DISPLAY_NAME41033LAUNCH~1.EXE|Launch Artemis.vshost.exe0-1859886476IDS_SHORTCUT_DISPLAY_NAME51033LAUNCH~1.EXE|Launch Artemis.exe0-1859900044IDS_SHORTCUT_DISPLAY_NAME61033LAUNCH~1.EXE|Launch Artemis.vshost.exe0-1859900044IDS_SHORTCUT_DISPLAY_NAME71033Artemis0-1859879564IDS_SHORTCUT_DISPLAY_NAME81033Artemis0-1859875276 IDS_SQLBROWSE_INTRO1033From the list of servers below, select the database server you would like to target.0-1994117611 IDS_SQLBROWSE_INTRO_DB1033From the list of catalog names below, select the database catalog you would like to target.0-1994117611 IDS_SQLBROWSE_INTRO_TEMPLATE1033[IS_SQLBROWSE_INTRO]0-1994117611IDS__TargetReq_DESC_RAM1033The amount of RAM is not adequate for running [ProductName].0-1994117611 IDS__TargetReq_DESC_RESOLUTION1033The screen resolution is not adequate for running [ProductName].0-1994117611 ID_STRING110330-1994117611ID_STRING21033http://www.Artemis.com0-1994091562ID_STRING31033Artemis0-1994091562ID_STRING21033https://github.com/SpoinkyNL/Artemis0-1859891724ID_STRING31033Artemis0-1859900396 IIDS_UITEXT_FeatureUninstalled1033This feature will remain uninstalled.0-1994117611
@@ -3974,7 +4098,10 @@ ISBuildSourcePath ISIconIndex ARPPRODUCTICON.exe<ISProductFolder>\redist\Language Independent\OS Independent\setupicon.ico0 + Artemis.exe_7927D36840EA4517BE39ADAC58421976.exeC:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe0 Artemis.exe_A44F9637E487415F88FE56145589B717.exeC:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe0 + Artemis.exe_E4F41C0A6D354DCF9C772473C9F6983E.exeC:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe0 + Artemis.vshost.exe_48ACCE3AC2614742B3A6B47834DE97E9.exe<ISProductFolder>\redist\Language Independent\OS Independent\GenericExe.ico0 @@ -4107,7 +4234,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA= - + DirPropertyInstallMode - -
ISThemeInstallShield Blue.theme ISUSLock{695C565B-3E0B-4AD8-BD3C-17E49DB978DD} ISUSSignature{1B63A73F-5F61-45BA-9762-D491A52141EF}ISVisitedViewsviewAssistantISVisitedViewsviewAssistant,viewProject,viewUI Limited1 LockPermissionMode1 MsiExecCmdLineOptions @@ -4486,7 +4613,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA= PROGRAMFILETOLAUNCHATEND[INSTALLDIR]Artemis.exe ProductCode{01792E9F-90A3-4598-94E1-65F787E2CCED} ProductNameArtemis - ProductVersion1.00.0000 + ProductVersion1.0.0 ProgressType0install ProgressType1Installing ProgressType2installed @@ -4564,8 +4691,6 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
Artemis.exeArtemis.exeartemis12FileKey1Artemis.exeartemis2FileKey2Artemis.exeartemis12
@@ -4651,7 +4776,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA= ISCommentsISShortcutNameISAttributes -
Artemis.exeartemis1##IDS_SHORTCUT_DISPLAY_NAME1##Artemis.exeAlwaysInstallArtemis.exe_A44F9637E487415F88FE56145589B717.exe11INSTALLDIR + Artemis.exeartemis1##IDS_SHORTCUT_DISPLAY_NAME8##Artemis.exeAlwaysInstallArtemis.exe_7927D36840EA4517BE39ADAC58421976.exe11INSTALLDIR
@@ -4678,7 +4803,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
ArialBlueStrike10Arial10167116808 CourierNew8Courier New8 CourierNew9Courier New9 - ExpressDefaultTahoma8 + ExpressDefaultSegoe UI900 MSGothic9MS Gothic9 MSSGreySerif8MS Sans Serif88421504 MSSWhiteSerif8Tahoma816777215