From 0eea1b8e010b8d014f6221af5abfff3a48234404 Mon Sep 17 00:00:00 2001 From: TheCyberBrick Date: Wed, 22 Sep 2021 23:21:34 +0200 Subject: [PATCH] Added .fts extension --- README.md | 2 +- installer/COMRegistryComponents.wxs | 3 +++ installer/COMRegistryComponents.xslt | 2 +- shellextension/constants.h | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f997ae6..581e13f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # FITS Explorer Extension -This application enables the Windows Explorer to show thumbnails for .fit/.fits images which are commonly used in astrophotography. +This application enables the Windows Explorer to show thumbnails for .fit/.fits/.fts images which are commonly used in astrophotography. ##### Features - Auto stretch based on the PixInsight algorithm diff --git a/installer/COMRegistryComponents.wxs b/installer/COMRegistryComponents.wxs index e8eadcd..fc4ea61 100644 --- a/installer/COMRegistryComponents.wxs +++ b/installer/COMRegistryComponents.wxs @@ -8,6 +8,8 @@ + + @@ -22,6 +24,7 @@ + diff --git a/installer/COMRegistryComponents.xslt b/installer/COMRegistryComponents.xslt index 36c7b7b..be07632 100644 --- a/installer/COMRegistryComponents.xslt +++ b/installer/COMRegistryComponents.xslt @@ -21,7 +21,7 @@ - + diff --git a/shellextension/constants.h b/shellextension/constants.h index 188a4f5..49158ab 100644 --- a/shellextension/constants.h +++ b/shellextension/constants.h @@ -12,7 +12,7 @@ struct PROPERTYLIST const LPWSTR SZ_PROG_ID = L"FITSExplorerExtension"; const LPWSTR SZ_PROG_NAME = L"FITS Explorer Extension"; -const LPWSTR SZ_FILE_EXT[] = { L"fit", L"fits" }; +const LPWSTR SZ_FILE_EXT[] = { L"fit", L"fits", L"fts" }; const PROPERTYLIST PROPERTY_LISTS[] = { { L"InfoTip", L"prop:System.Image.Dimensions;System.Image.BitDepth;System.Photo.ExposureTime;System.Photo.FocalLength;System.Photo.Aperture;System.Size" },