├── GlacierTEXEditor ├── About.Designer.cs ├── About.cs ├── About.resx ├── App.config ├── BMPImage.cs ├── Configuration.cs ├── DisplayImage.Designer.cs ├── DisplayImage.cs ├── DisplayImage.resx ├── DxtUtil.cs ├── ExportAllTextures.Designer.cs ├── ExportAllTextures.cs ├── ExportAllTextures.resx ├── ExportOptions.Designer.cs ├── ExportOptions.cs ├── ExportOptions.resx ├── FileFormats │ ├── DDS │ │ ├── DDSCAPS2.cs │ │ ├── DDSHeaderCaps.cs │ │ ├── DDSPixelFormatFlags.cs │ │ ├── DDSSurfaceDescFlags.cs │ │ ├── DDSURFACEDESC2.cs │ │ ├── DDS_HEADER.cs │ │ └── DDS_PIXELFORMAT.cs │ ├── TEX │ │ ├── FileData.cs │ │ ├── TEX.cs │ │ ├── TEXEntry.cs │ │ └── TEXHeader.cs │ └── TGA │ │ ├── ColorMapSpecification.cs │ │ ├── ImageSpecification.cs │ │ ├── TGA.cs │ │ ├── TGAFlags.cs │ │ ├── TGAFooter.cs │ │ └── TGAHeader.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GameVersion.cs ├── GlacierTEXEditor.csproj ├── GlacierTEXEditor.csproj.user ├── GlacierTEXEditor.sln ├── ObjectExtensions.cs ├── Option.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SelectTextureType.Designer.cs ├── SelectTextureType.cs ├── SelectTextureType.resx ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── SmoothProgressBar.Designer.cs ├── SmoothProgressBar.cs ├── TGAImage.cs ├── TargaImage.cs ├── Texture.cs ├── packages.config └── packages │ ├── DirectXTexNet.1.0.0-rc6 │ ├── .signature.p7s │ ├── DirectXTexNet.1.0.0-rc6.nupkg │ ├── LICENSE │ ├── build │ │ ├── DirectXTexNet.targets │ │ ├── x64 │ │ │ └── DirectXTexNetImpl.dll │ │ └── x86 │ │ │ └── DirectXTexNetImpl.dll │ └── lib │ │ └── netstandard2.0 │ │ ├── DirectXTexNet.XML │ │ └── DirectXTexNet.dll │ ├── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png │ ├── StbImageSharp.2.22.4 │ ├── .signature.p7s │ ├── StbImageSharp.2.22.4.nupkg │ └── lib │ │ ├── net45 │ │ └── StbImageSharp.dll │ │ └── netstandard2.0 │ │ └── StbImageSharp.dll │ └── StbImageWriteSharp.1.13.3 │ ├── .signature.p7s │ ├── StbImageWriteSharp.1.13.3.nupkg │ └── lib │ ├── net45 │ └── StbImageWriteSharp.dll │ └── netstandard2.0 │ └── StbImageWriteSharp.dll └── README.md /GlacierTEXEditor/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/About.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/About.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/About.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/App.config -------------------------------------------------------------------------------- /GlacierTEXEditor/BMPImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/BMPImage.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Configuration.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/DisplayImage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/DisplayImage.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/DisplayImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/DisplayImage.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/DisplayImage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/DisplayImage.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/DxtUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/DxtUtil.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportAllTextures.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportAllTextures.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportAllTextures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportAllTextures.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportAllTextures.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportAllTextures.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportOptions.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportOptions.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/ExportOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ExportOptions.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDSCAPS2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDSCAPS2.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDSHeaderCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDSHeaderCaps.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDSPixelFormatFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDSPixelFormatFlags.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDSSurfaceDescFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDSSurfaceDescFlags.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDSURFACEDESC2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDSURFACEDESC2.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDS_HEADER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDS_HEADER.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/DDS/DDS_PIXELFORMAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/DDS/DDS_PIXELFORMAT.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TEX/FileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TEX/FileData.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TEX/TEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TEX/TEX.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TEX/TEXEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TEX/TEXEntry.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TEX/TEXHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TEX/TEXHeader.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/ColorMapSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/ColorMapSpecification.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/ImageSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/ImageSpecification.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/TGA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/TGA.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/TGAFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/TGAFlags.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/TGAFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/TGAFooter.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/FileFormats/TGA/TGAHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/FileFormats/TGA/TGAHeader.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Form1.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Form1.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Form1.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/GameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/GameVersion.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/GlacierTEXEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/GlacierTEXEditor.csproj -------------------------------------------------------------------------------- /GlacierTEXEditor/GlacierTEXEditor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/GlacierTEXEditor.csproj.user -------------------------------------------------------------------------------- /GlacierTEXEditor/GlacierTEXEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/GlacierTEXEditor.sln -------------------------------------------------------------------------------- /GlacierTEXEditor/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/ObjectExtensions.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Option.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Program.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /GlacierTEXEditor/SelectTextureType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/SelectTextureType.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/SelectTextureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/SelectTextureType.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/SelectTextureType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/SelectTextureType.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Settings.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Settings.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Settings.resx -------------------------------------------------------------------------------- /GlacierTEXEditor/SmoothProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/SmoothProgressBar.Designer.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/SmoothProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/SmoothProgressBar.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/TGAImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/TGAImage.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/TargaImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/TargaImage.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/Texture.cs -------------------------------------------------------------------------------- /GlacierTEXEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages.config -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/.signature.p7s -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/DirectXTexNet.1.0.0-rc6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/DirectXTexNet.1.0.0-rc6.nupkg -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/LICENSE -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/DirectXTexNet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/DirectXTexNet.targets -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/x64/DirectXTexNetImpl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/x64/DirectXTexNetImpl.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/x86/DirectXTexNetImpl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/build/x86/DirectXTexNetImpl.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/lib/netstandard2.0/DirectXTexNet.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/lib/netstandard2.0/DirectXTexNet.XML -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/lib/netstandard2.0/DirectXTexNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/DirectXTexNet.1.0.0-rc6/lib/netstandard2.0/DirectXTexNet.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageSharp.2.22.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageSharp.2.22.4/.signature.p7s -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageSharp.2.22.4/StbImageSharp.2.22.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageSharp.2.22.4/StbImageSharp.2.22.4.nupkg -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageSharp.2.22.4/lib/net45/StbImageSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageSharp.2.22.4/lib/net45/StbImageSharp.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageSharp.2.22.4/lib/netstandard2.0/StbImageSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageSharp.2.22.4/lib/netstandard2.0/StbImageSharp.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/.signature.p7s -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/StbImageWriteSharp.1.13.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/StbImageWriteSharp.1.13.3.nupkg -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/lib/net45/StbImageWriteSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/lib/net45/StbImageWriteSharp.dll -------------------------------------------------------------------------------- /GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/lib/netstandard2.0/StbImageWriteSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/GlacierTEXEditor/packages/StbImageWriteSharp.1.13.3/lib/netstandard2.0/StbImageWriteSharp.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavledev/GlacierTEXEditor/HEAD/README.md --------------------------------------------------------------------------------