diff --git a/Yura/Images/ImageStack.png b/Yura/Images/ImageStack.png new file mode 100644 index 0000000..62f6c66 Binary files /dev/null and b/Yura/Images/ImageStack.png differ diff --git a/Yura/MainWindow.xaml.cs b/Yura/MainWindow.xaml.cs index 099903e..bbda566 100644 --- a/Yura/MainWindow.xaml.cs +++ b/Yura/MainWindow.xaml.cs @@ -24,6 +24,7 @@ public partial class MainWindow : Window // icons, todo better way for this? private BitmapImage _folderIcon; private BitmapImage _archiveIcon; + private BitmapImage _stackIcon; private BitmapImage _binaryIcon; private BitmapImage _classIcon; private BitmapImage _imageIcon; @@ -47,6 +48,7 @@ public MainWindow() // icons from VS2019 icon library _folderIcon = new BitmapImage(new Uri("/Images/FolderClosed.png", UriKind.Relative)); _archiveIcon = new BitmapImage(new Uri("/Images/ZipFile.png", UriKind.Relative)); + _stackIcon = new BitmapImage(new Uri("/Images/ImageStack.png", UriKind.Relative)); _binaryIcon = new BitmapImage(new Uri("/Images/BinaryFile.png", UriKind.Relative)); _classIcon = new BitmapImage(new Uri("/Images/ClassFile.png", UriKind.Relative)); _imageIcon = new BitmapImage(new Uri("/Images/Image.png", UriKind.Relative)); @@ -56,13 +58,15 @@ public MainWindow() _fileTypes = new Dictionary> { { ".drm", new Tuple("Data Ram", _classIcon) }, + { ".vrm", new Tuple("Video Ram", _stackIcon) }, { ".mul", new Tuple("MultiplexStream", _soundIcon) }, { ".raw", new Tuple("RAW Image", _imageIcon) }, { ".mus", new Tuple("Music", _soundIcon) }, { ".sam", new Tuple("Music Sample", _soundIcon) }, { ".ids", new Tuple("IDMap", _textIcon) }, { ".txt", new Tuple("Text File", _textIcon) }, - { ".sch", new Tuple("SchemaFile", _textIcon) } + { ".sch", new Tuple("SchemaFile", _textIcon) }, + { ".ini", new Tuple("Text File", _textIcon) } }; } diff --git a/Yura/Yura.csproj b/Yura/Yura.csproj index e3ad3a5..f0cd1ca 100644 --- a/Yura/Yura.csproj +++ b/Yura/Yura.csproj @@ -12,6 +12,7 @@ + @@ -25,6 +26,7 @@ Never +