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
- Intel;1033
+ x64;1033
Administrator
{EC92BB19-2C2C-43AB-86BA-9A30BCCD0F7B}
@@ -343,32 +343,57 @@
@@ -952,7 +977,8 @@
| DestinationFolder | Cancel | SpawnDialog | CancelSetup | 1 | 1 |
| DestinationFolder | ChangeFolder | SpawnDialog | InstallChangeFolder | 1 | 1 |
| DestinationFolder | ChangeFolder | [_BrowseProperty] | INSTALLDIR | 1 | 2 |
- | DestinationFolder | Next | NewDialog | ReadyToInstall | 1 | 0 |
+ | DestinationFolder | Next | EndDialog | Return | OutOfDiskSpace <> 1 | 1 |
+ | DestinationFolder | Next | NewDialog | ReadyToInstall | 0 | 1 |
| DiskSpaceRequirements | OK | EndDialog | Return | 1 | 0 |
| FilesInUse | Exit | EndDialog | Exit | 1 | 0 |
| FilesInUse | Ignore | EndDialog | Ignore | 1 | 0 |
@@ -1078,10 +1104,17 @@
Directory_
Component_
+ | APP.PUBLISH | Artemis.exe1 |
+ | APP.PUBLISH | ISX_DEFAULTCOMPONENT19 |
+ | EN | ISX_DEFAULTCOMPONENT20 |
+ | EN | System.Windows.Interactivity.resources.dll |
| INSTALLDIR | Artemis.exe |
+ | INSTALLDIR | Artemis.exe1 |
| INSTALLDIR | Artemis.vshost.exe |
| INSTALLDIR | Autofac.dll |
| INSTALLDIR | CUE.NET.dll |
+ | INSTALLDIR | CUESDK_2013.dll |
+ | INSTALLDIR | CUESDK_2013.dll1 |
| INSTALLDIR | Caliburn.Micro.Autofac.dll |
| INSTALLDIR | Caliburn.Micro.Platform.dll |
| INSTALLDIR | Caliburn.Micro.dll |
@@ -1089,6 +1122,27 @@
| INSTALLDIR | Gma.System.MouseKeyHook.dll |
| INSTALLDIR | Hardcodet.Wpf.TaskbarNotification.dll |
| INSTALLDIR | ISX_DEFAULTCOMPONENT |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT1 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT10 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT11 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT12 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT13 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT14 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT15 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT16 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT17 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT18 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT19 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT2 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT20 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT21 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT3 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT4 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT5 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT6 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT7 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT8 |
+ | INSTALLDIR | ISX_DEFAULTCOMPONENT9 |
| INSTALLDIR | LogitechLedEnginesWrapper.dll |
| INSTALLDIR | MahApps.Metro.dll |
| INSTALLDIR | Microsoft.QualityTools.Testing.Fakes.dll |
@@ -1096,6 +1150,7 @@
| INSTALLDIR | Newtonsoft.Json.dll |
| INSTALLDIR | RzChromaSDK64.dll |
| INSTALLDIR | System.Windows.Interactivity.dll |
+ | INSTALLDIR | System.Windows.Interactivity.resources.dll |
| INSTALLDIR | VioletTape.WpfExceptionViewer.dll |
| INSTALLDIR | Xceed.Wpf.AvalonDock.Themes.Aero.dll |
| INSTALLDIR | Xceed.Wpf.AvalonDock.Themes.Metro.dll |
@@ -1104,6 +1159,10 @@
| INSTALLDIR | Xceed.Wpf.DataGrid.dll |
| INSTALLDIR | Xceed.Wpf.Toolkit.dll |
| INSTALLDIR | log4net.dll |
+ | X64 | CUESDK_2013.dll1 |
+ | X64 | ISX_DEFAULTCOMPONENT21 |
+ | X86 | CUESDK_2013.dll |
+ | X86 | ISX_DEFAULTCOMPONENT |
@@ -1184,8 +1243,10 @@
ISAttributes
ISFolderName
| ALLUSERSPROFILE | TARGETDIR | .:ALLUSE~1|All Users | | 0 | |
+ | APP.PUBLISH | INSTALLDIR | APP_PU~1|app.publish | | 0 | |
| ARTEMIS | ProgramFilesFolder | Artemis | | 0 | |
| ARTEMIS1 | ARTEMIS | Artemis | | 0 | |
+ | ARTEMIS2 | ProgramFiles64Folder | Artemis | | 0 | |
| AdminToolsFolder | TARGETDIR | .:Admint~1|AdminTools | | 0 | |
| AppDataFolder | TARGETDIR | .:APPLIC~1|Application Data | | 0 | |
| CommonAppDataFolder | TARGETDIR | .:Common~1|CommonAppData | | 0 | |
@@ -1193,10 +1254,11 @@
| CommonFilesFolder | TARGETDIR | .:Common | | 0 | |
| DATABASEDIR | ISYourDataBaseDir | . | | 0 | |
| DesktopFolder | TARGETDIR | .:Desktop | | 3 | |
+ | EN | INSTALLDIR | en | | 0 | |
| FavoritesFolder | TARGETDIR | .:FAVORI~1|Favorites | | 0 | |
| FontsFolder | TARGETDIR | .:Fonts | | 0 | |
| GlobalAssemblyCache | TARGETDIR | .:Global~1|GlobalAssemblyCache | | 0 | |
- | INSTALLDIR | ARTEMIS1 | . | | 0 | |
+ | INSTALLDIR | ARTEMIS2 | . | | 0 | |
| ISCommonFilesFolder | CommonFilesFolder | Instal~1|InstallShield | | 0 | |
| ISMyCompanyDir | ProgramFilesFolder | MYCOMP~1|My Company Name | | 0 | |
| ISMyProductDir | ISMyCompanyDir | MYPROD~1|My Product Name | | 0 | |
@@ -1224,6 +1286,8 @@
| USERPROFILE | TARGETDIR | .:USERPR~1|UserProfile | | 0 | |
| WindowsFolder | TARGETDIR | .:Windows | | 0 | |
| WindowsVolume | TARGETDIR | .:WinRoot | | 0 | |
+ | X64 | INSTALLDIR | x64 | | 0 | |
+ | X86 | INSTALLDIR | x86 | | 0 | |
| artemis | ProgramMenuFolder | Artemis | | 1 | |
| artemis1 | artemis | Artemis | | 1 | |
@@ -1918,9 +1982,12 @@
Feature_
Component_
| AlwaysInstall | Artemis.exe |
+ | AlwaysInstall | Artemis.exe1 |
| AlwaysInstall | Artemis.vshost.exe |
| AlwaysInstall | Autofac.dll |
| AlwaysInstall | CUE.NET.dll |
+ | AlwaysInstall | CUESDK_2013.dll |
+ | AlwaysInstall | CUESDK_2013.dll1 |
| AlwaysInstall | Caliburn.Micro.Autofac.dll |
| AlwaysInstall | Caliburn.Micro.Platform.dll |
| AlwaysInstall | Caliburn.Micro.dll |
@@ -1928,6 +1995,27 @@
| AlwaysInstall | Gma.System.MouseKeyHook.dll |
| AlwaysInstall | Hardcodet.Wpf.TaskbarNotification.dll |
| AlwaysInstall | ISX_DEFAULTCOMPONENT |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT1 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT10 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT11 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT12 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT13 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT14 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT15 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT16 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT17 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT18 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT19 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT2 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT20 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT21 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT3 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT4 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT5 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT6 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT7 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT8 |
+ | AlwaysInstall | ISX_DEFAULTCOMPONENT9 |
| AlwaysInstall | LogitechLedEnginesWrapper.dll |
| AlwaysInstall | MahApps.Metro.dll |
| AlwaysInstall | Microsoft.QualityTools.Testing.Fakes.dll |
@@ -1935,6 +2023,7 @@
| AlwaysInstall | Newtonsoft.Json.dll |
| AlwaysInstall | RzChromaSDK64.dll |
| AlwaysInstall | System.Windows.Interactivity.dll |
+ | AlwaysInstall | System.Windows.Interactivity.resources.dll |
| AlwaysInstall | VioletTape.WpfExceptionViewer.dll |
| AlwaysInstall | Xceed.Wpf.AvalonDock.Themes.Aero.dll |
| AlwaysInstall | Xceed.Wpf.AvalonDock.Themes.Metro.dll |
@@ -1957,49 +2046,53 @@
ISBuildSourcePath
ISAttributes
ISComponentSubFolder_
- | artemis.application | ISX_DEFAULTCOMPONENT | ARTEMI~1.APP|Artemis.application | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.application | 1 | |
- | artemis.exe | Artemis.exe | Artemis.exe | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe | 1 | |
- | artemis.exe.config | ISX_DEFAULTCOMPONENT | ARTEMI~1.CON|Artemis.exe.config | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe.config | 1 | |
- | artemis.exe.manifest | ISX_DEFAULTCOMPONENT | ARTEMI~1.MAN|Artemis.exe.manifest | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.exe.manifest | 1 | |
- | artemis.pdb | ISX_DEFAULTCOMPONENT | Artemis.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.pdb | 1 | |
- | artemis.vshost.application | ISX_DEFAULTCOMPONENT | ARTEMI~1.APP|Artemis.vshost.application | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.application | 1 | |
- | artemis.vshost.exe | Artemis.vshost.exe | ARTEMI~1.EXE|Artemis.vshost.exe | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe | 1 | |
- | artemis.vshost.exe.config | ISX_DEFAULTCOMPONENT | ARTEMI~1.CON|Artemis.vshost.exe.config | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe.config | 1 | |
- | artemis.vshost.exe.manifest | ISX_DEFAULTCOMPONENT | ARTEMI~1.MAN|Artemis.vshost.exe.manifest | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Artemis.vshost.exe.manifest | 1 | |
- | autofac.dll | Autofac.dll | Autofac.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Autofac.dll | 1 | |
- | autofac.xml | ISX_DEFAULTCOMPONENT | Autofac.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Autofac.xml | 1 | |
- | caliburn.micro.autofac.dll | Caliburn.Micro.Autofac.dll | CALIBU~1.DLL|Caliburn.Micro.Autofac.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Autofac.dll | 1 | |
- | caliburn.micro.dll | Caliburn.Micro.dll | CALIBU~1.DLL|Caliburn.Micro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.dll | 1 | |
- | caliburn.micro.platform.dll | Caliburn.Micro.Platform.dll | CALIBU~1.DLL|Caliburn.Micro.Platform.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Platform.dll | 1 | |
- | caliburn.micro.platform.xml | ISX_DEFAULTCOMPONENT | CALIBU~1.XML|Caliburn.Micro.Platform.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.Platform.xml | 1 | |
- | caliburn.micro.xml | ISX_DEFAULTCOMPONENT | CALIBU~1.XML|Caliburn.Micro.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Caliburn.Micro.xml | 1 | |
- | corale.colore.dll | Corale.Colore.dll | CORALE~1.DLL|Corale.Colore.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Corale.Colore.dll | 1 | |
- | corale.colore.xml | ISX_DEFAULTCOMPONENT | CORALE~1.XML|Corale.Colore.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Corale.Colore.xml | 1 | |
- | cue.net.dll | CUE.NET.dll | CUENET~1.DLL|CUE.NET.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\CUE.NET.dll | 1 | |
- | gma.system.mousekeyhook.dll | Gma.System.MouseKeyHook.dll | GMASYS~1.DLL|Gma.System.MouseKeyHook.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Gma.System.MouseKeyHook.dll | 1 | |
- | hardcodet.wpf.taskbarnotific | Hardcodet.Wpf.TaskbarNotification.dll | HARDCO~1.DLL|Hardcodet.Wpf.TaskbarNotification.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.dll | 1 | |
- | hardcodet.wpf.taskbarnotific1 | ISX_DEFAULTCOMPONENT | HARDCO~1.PDB|Hardcodet.Wpf.TaskbarNotification.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.pdb | 1 | |
- | hardcodet.wpf.taskbarnotific2 | ISX_DEFAULTCOMPONENT | HARDCO~1.XML|Hardcodet.Wpf.TaskbarNotification.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Hardcodet.Wpf.TaskbarNotification.xml | 1 | |
- | log4net.dll | log4net.dll | log4net.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\log4net.dll | 1 | |
- | log4net.xml | ISX_DEFAULTCOMPONENT | log4net.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\log4net.xml | 1 | |
- | logitechledengineswrapper.dl | LogitechLedEnginesWrapper.dll | LOGITE~1.DLL|LogitechLedEnginesWrapper.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\LogitechLedEnginesWrapper.dll | 1 | |
- | mahapps.metro.dll | MahApps.Metro.dll | MAHAPP~1.DLL|MahApps.Metro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.dll | 1 | |
- | mahapps.metro.pdb | ISX_DEFAULTCOMPONENT | MAHAPP~1.PDB|MahApps.Metro.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.pdb | 1 | |
- | mahapps.metro.xml | ISX_DEFAULTCOMPONENT | MAHAPP~1.XML|MahApps.Metro.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\MahApps.Metro.xml | 1 | |
- | microsoft.qualitytools.testi | Microsoft.QualityTools.Testing.Fakes.dll | MICROS~1.DLL|Microsoft.QualityTools.Testing.Fakes.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Microsoft.QualityTools.Testing.Fakes.dll | 1 | |
- | naudio.dll | NAudio.dll | NAudio.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\NAudio.dll | 1 | |
- | naudio.xml | ISX_DEFAULTCOMPONENT | NAudio.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\NAudio.xml | 1 | |
- | newtonsoft.json.dll | Newtonsoft.Json.dll | NEWTON~1.DLL|Newtonsoft.Json.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Newtonsoft.Json.dll | 1 | |
- | newtonsoft.json.xml | ISX_DEFAULTCOMPONENT | NEWTON~1.XML|Newtonsoft.Json.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Newtonsoft.Json.xml | 1 | |
- | rzchromasdk64.dll | RzChromaSDK64.dll | RZCHRO~1.DLL|RzChromaSDK64.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\RzChromaSDK64.dll | 1 | |
- | system.windows.interactivity | System.Windows.Interactivity.dll | SYSTEM~1.DLL|System.Windows.Interactivity.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\System.Windows.Interactivity.dll | 1 | |
- | violettape.wpfexceptionviewe | VioletTape.WpfExceptionViewer.dll | VIOLET~1.DLL|VioletTape.WpfExceptionViewer.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\VioletTape.WpfExceptionViewer.dll | 1 | |
- | xceed.wpf.avalondock.dll | Xceed.Wpf.AvalonDock.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.dll | 1 | |
- | xceed.wpf.avalondock.themes. | Xceed.Wpf.AvalonDock.Themes.Aero.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Aero.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.Aero.dll | 1 | |
- | xceed.wpf.avalondock.themes.1 | Xceed.Wpf.AvalonDock.Themes.Metro.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Metro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.Metro.dll | 1 | |
- | xceed.wpf.avalondock.themes.2 | Xceed.Wpf.AvalonDock.Themes.VS2010.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.VS2010.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.AvalonDock.Themes.VS2010.dll | 1 | |
- | xceed.wpf.datagrid.dll | Xceed.Wpf.DataGrid.dll | XCEEDW~1.DLL|Xceed.Wpf.DataGrid.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.DataGrid.dll | 1 | |
- | xceed.wpf.toolkit.dll | Xceed.Wpf.Toolkit.dll | XCEEDW~1.DLL|Xceed.Wpf.Toolkit.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\Release\Xceed.Wpf.Toolkit.dll | 1 | |
+ | artemis.application | ISX_DEFAULTCOMPONENT1 | ARTEMI~1.APP|Artemis.application | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.application | 1 | |
+ | artemis.exe | Artemis.exe | Artemis.exe | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe | 1 | |
+ | artemis.exe.config | ISX_DEFAULTCOMPONENT2 | ARTEMI~1.CON|Artemis.exe.config | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe.config | 1 | |
+ | artemis.exe.manifest | ISX_DEFAULTCOMPONENT3 | ARTEMI~1.MAN|Artemis.exe.manifest | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.exe.manifest | 1 | |
+ | artemis.exe1 | Artemis.exe1 | Artemis.exe | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\app.publish\Artemis.exe | 1 | |
+ | artemis.pdb | ISX_DEFAULTCOMPONENT4 | Artemis.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.pdb | 1 | |
+ | artemis.vshost.application | ISX_DEFAULTCOMPONENT5 | ARTEMI~1.APP|Artemis.vshost.application | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.application | 1 | |
+ | artemis.vshost.exe | Artemis.vshost.exe | ARTEMI~1.EXE|Artemis.vshost.exe | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe | 1 | |
+ | artemis.vshost.exe.config | ISX_DEFAULTCOMPONENT6 | ARTEMI~1.CON|Artemis.vshost.exe.config | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe.config | 1 | |
+ | artemis.vshost.exe.manifest | ISX_DEFAULTCOMPONENT7 | ARTEMI~1.MAN|Artemis.vshost.exe.manifest | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Artemis.vshost.exe.manifest | 1 | |
+ | autofac.dll | Autofac.dll | Autofac.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Autofac.dll | 1 | |
+ | autofac.xml | ISX_DEFAULTCOMPONENT8 | Autofac.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Autofac.xml | 1 | |
+ | caliburn.micro.autofac.dll | Caliburn.Micro.Autofac.dll | CALIBU~1.DLL|Caliburn.Micro.Autofac.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Autofac.dll | 1 | |
+ | caliburn.micro.dll | Caliburn.Micro.dll | CALIBU~1.DLL|Caliburn.Micro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.dll | 1 | |
+ | caliburn.micro.platform.dll | Caliburn.Micro.Platform.dll | CALIBU~1.DLL|Caliburn.Micro.Platform.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Platform.dll | 1 | |
+ | caliburn.micro.platform.xml | ISX_DEFAULTCOMPONENT9 | CALIBU~1.XML|Caliburn.Micro.Platform.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.Platform.xml | 1 | |
+ | caliburn.micro.xml | ISX_DEFAULTCOMPONENT10 | CALIBU~1.XML|Caliburn.Micro.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Caliburn.Micro.xml | 1 | |
+ | corale.colore.dll | Corale.Colore.dll | CORALE~1.DLL|Corale.Colore.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Corale.Colore.dll | 1 | |
+ | corale.colore.xml | ISX_DEFAULTCOMPONENT11 | CORALE~1.XML|Corale.Colore.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Corale.Colore.xml | 1 | |
+ | cue.net.dll | CUE.NET.dll | CUENET~1.DLL|CUE.NET.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\CUE.NET.dll | 1 | |
+ | cuesdk_2013.dll | CUESDK_2013.dll | CUESDK~1.DLL|CUESDK_2013.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\x86\CUESDK_2013.dll | 1 | |
+ | cuesdk_2013.dll1 | CUESDK_2013.dll1 | CUESDK~1.DLL|CUESDK_2013.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\x64\CUESDK_2013.dll | 1 | |
+ | gma.system.mousekeyhook.dll | Gma.System.MouseKeyHook.dll | GMASYS~1.DLL|Gma.System.MouseKeyHook.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Gma.System.MouseKeyHook.dll | 1 | |
+ | hardcodet.wpf.taskbarnotific | Hardcodet.Wpf.TaskbarNotification.dll | HARDCO~1.DLL|Hardcodet.Wpf.TaskbarNotification.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.dll | 1 | |
+ | hardcodet.wpf.taskbarnotific1 | ISX_DEFAULTCOMPONENT12 | HARDCO~1.PDB|Hardcodet.Wpf.TaskbarNotification.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.pdb | 1 | |
+ | hardcodet.wpf.taskbarnotific2 | ISX_DEFAULTCOMPONENT13 | HARDCO~1.XML|Hardcodet.Wpf.TaskbarNotification.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Hardcodet.Wpf.TaskbarNotification.xml | 1 | |
+ | log4net.dll | log4net.dll | log4net.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\log4net.dll | 1 | |
+ | log4net.xml | ISX_DEFAULTCOMPONENT14 | log4net.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\log4net.xml | 1 | |
+ | logitechledengineswrapper.dl | LogitechLedEnginesWrapper.dll | LOGITE~1.DLL|LogitechLedEnginesWrapper.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\LogitechLedEnginesWrapper.dll | 1 | |
+ | mahapps.metro.dll | MahApps.Metro.dll | MAHAPP~1.DLL|MahApps.Metro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.dll | 1 | |
+ | mahapps.metro.pdb | ISX_DEFAULTCOMPONENT15 | MAHAPP~1.PDB|MahApps.Metro.pdb | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.pdb | 1 | |
+ | mahapps.metro.xml | ISX_DEFAULTCOMPONENT16 | MAHAPP~1.XML|MahApps.Metro.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\MahApps.Metro.xml | 1 | |
+ | microsoft.qualitytools.testi | Microsoft.QualityTools.Testing.Fakes.dll | MICROS~1.DLL|Microsoft.QualityTools.Testing.Fakes.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Microsoft.QualityTools.Testing.Fakes.dll | 1 | |
+ | naudio.dll | NAudio.dll | NAudio.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\NAudio.dll | 1 | |
+ | naudio.xml | ISX_DEFAULTCOMPONENT17 | NAudio.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\NAudio.xml | 1 | |
+ | newtonsoft.json.dll | Newtonsoft.Json.dll | NEWTON~1.DLL|Newtonsoft.Json.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Newtonsoft.Json.dll | 1 | |
+ | newtonsoft.json.xml | ISX_DEFAULTCOMPONENT18 | NEWTON~1.XML|Newtonsoft.Json.xml | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Newtonsoft.Json.xml | 1 | |
+ | rzchromasdk64.dll | RzChromaSDK64.dll | RZCHRO~1.DLL|RzChromaSDK64.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\RzChromaSDK64.dll | 1 | |
+ | system.windows.interactivity | System.Windows.Interactivity.dll | SYSTEM~1.DLL|System.Windows.Interactivity.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\System.Windows.Interactivity.dll | 1 | |
+ | system.windows.interactivity1 | System.Windows.Interactivity.resources.dll | SYSTEM~1.DLL|System.Windows.Interactivity.resources.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\en\System.Windows.Interactivity.resources.dll | 1 | |
+ | violettape.wpfexceptionviewe | VioletTape.WpfExceptionViewer.dll | VIOLET~1.DLL|VioletTape.WpfExceptionViewer.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\VioletTape.WpfExceptionViewer.dll | 1 | |
+ | xceed.wpf.avalondock.dll | Xceed.Wpf.AvalonDock.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.dll | 1 | |
+ | xceed.wpf.avalondock.themes. | Xceed.Wpf.AvalonDock.Themes.Aero.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Aero.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.Aero.dll | 1 | |
+ | xceed.wpf.avalondock.themes.1 | Xceed.Wpf.AvalonDock.Themes.Metro.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.Metro.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.Metro.dll | 1 | |
+ | xceed.wpf.avalondock.themes.2 | Xceed.Wpf.AvalonDock.Themes.VS2010.dll | XCEEDW~1.DLL|Xceed.Wpf.AvalonDock.Themes.VS2010.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.AvalonDock.Themes.VS2010.dll | 1 | |
+ | xceed.wpf.datagrid.dll | Xceed.Wpf.DataGrid.dll | XCEEDW~1.DLL|Xceed.Wpf.DataGrid.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.DataGrid.dll | 1 | |
+ | xceed.wpf.toolkit.dll | Xceed.Wpf.Toolkit.dll | XCEEDW~1.DLL|Xceed.Wpf.Toolkit.dll | 0 | | | | 1 | C:\Users\spoin\Source\Repos\Artemis\Artemis\Artemis\bin\x64\Release\Xceed.Wpf.Toolkit.dll | 1 | |
@@ -2141,32 +2234,57 @@
FTPLocation
HTTPLocation
Miscellaneous
- | 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 | | | | |