diff --git a/Documents/ReleaseNotes.md b/Documents/ReleaseNotes.md index 0be09b104..0923a6bf8 100644 --- a/Documents/ReleaseNotes.md +++ b/Documents/ReleaseNotes.md @@ -3,7 +3,7 @@ For preview versions, please read [NanaZip Preview Release Notes](ReleaseNotesPreview.md). -**NanaZip 2.0 Update 1 (2.0.xxx.0)** +**NanaZip 2.0 Update 1 (2.0.450.0)** - Optimize NanaZip binaries via adjusting the WindowsTargetPlatformMinVersion to 10.0.19041.0 in all packaged NanaZip binaries projecta except the Self @@ -14,6 +14,7 @@ For preview versions, please read (https://github.com/ProjectMile/Mile.Xaml/releases/tag/1.1.434.0) - Update Mile.Windows.Helpers to 1.0.8. (https://github.com/ProjectMile/Mile.Windows.Helpers/commits/main) +- Add dark mode support for context menus. - Refresh the about dialog with Windows 11 XAML control styles and the immersive Mica effects. - Fix model dialog style behavior for About dialog. diff --git a/Documents/ReleaseNotesPreview.md b/Documents/ReleaseNotesPreview.md index 929f897f7..b8b379f3e 100644 --- a/Documents/ReleaseNotesPreview.md +++ b/Documents/ReleaseNotesPreview.md @@ -21,6 +21,7 @@ For stable versions, please read [NanaZip Release Notes](ReleaseNotes.md). (https://github.com/ProjectMile/Mile.Xaml/releases/tag/1.1.434.0) - Update Mile.Windows.Helpers to 1.0.8. (Updated in NanaZip 2.0 Update 1.) (https://github.com/ProjectMile/Mile.Windows.Helpers/commits/main) +- Add dark mode support for context menus. (Updated in NanaZip 2.0 Update 1.) - Refresh the about dialog with Windows 11 XAML control styles and the immersive Mica effects. (Updated in NanaZip 2.0 Update 1.) - Fix model dialog style behavior for About dialog. (Updated in NanaZip 2.0 diff --git a/NanaZip/Mile.Project.Properties.h b/NanaZip/Mile.Project.Properties.h index c4c6f6d04..f3b3caffa 100644 Binary files a/NanaZip/Mile.Project.Properties.h and b/NanaZip/Mile.Project.Properties.h differ diff --git a/NanaZipConsole/Mile.Project.Properties.h b/NanaZipConsole/Mile.Project.Properties.h index 068b17bc8..0cc84124a 100644 Binary files a/NanaZipConsole/Mile.Project.Properties.h and b/NanaZipConsole/Mile.Project.Properties.h differ diff --git a/NanaZipCore/Mile.Project.Properties.h b/NanaZipCore/Mile.Project.Properties.h index 9e4b72fd2..823b1d00e 100644 Binary files a/NanaZipCore/Mile.Project.Properties.h and b/NanaZipCore/Mile.Project.Properties.h differ diff --git a/NanaZipInstaller/Mile.Project.Properties.h b/NanaZipInstaller/Mile.Project.Properties.h index a420a2fb1..b7c128e61 100644 Binary files a/NanaZipInstaller/Mile.Project.Properties.h and b/NanaZipInstaller/Mile.Project.Properties.h differ diff --git a/NanaZipInstaller/NanaZipInstaller.rc b/NanaZipInstaller/NanaZipInstaller.rc index 24b4a4a07..a581f5145 100644 Binary files a/NanaZipInstaller/NanaZipInstaller.rc and b/NanaZipInstaller/NanaZipInstaller.rc differ diff --git a/NanaZipPackage/NanaZipPackage.wapproj b/NanaZipPackage/NanaZipPackage.wapproj index e41a55f8f..728d1d6ac 100644 --- a/NanaZipPackage/NanaZipPackage.wapproj +++ b/NanaZipPackage/NanaZipPackage.wapproj @@ -27,7 +27,7 @@ - + true Assets\%(RecursiveDir)%(FileName)%(Extension) diff --git a/NanaZipPackage/Package.appxmanifest b/NanaZipPackage/Package.appxmanifest index 8db669371..ed41efc70 100644 --- a/NanaZipPackage/Package.appxmanifest +++ b/NanaZipPackage/Package.appxmanifest @@ -16,12 +16,12 @@ IgnorableNamespaces="uap rescap desktop uap2 uap3 com desktop4 desktop5 uap8 uap10 virtualization"> + Version="2.0.450.0" /> - NanaZip Preview + NanaZip Kenji Mouri Assets\StoreLogo.png @@ -134,7 +134,7 @@ EntryPoint="Windows.FullTrustApplication"> - + - + - + diff --git a/NanaZipSfxConsole/Mile.Project.Properties.h b/NanaZipSfxConsole/Mile.Project.Properties.h index 300883b37..3e4fbc71a 100644 Binary files a/NanaZipSfxConsole/Mile.Project.Properties.h and b/NanaZipSfxConsole/Mile.Project.Properties.h differ diff --git a/NanaZipSfxSetup/Mile.Project.Properties.h b/NanaZipSfxSetup/Mile.Project.Properties.h index eef69beed..fae3ca8e4 100644 Binary files a/NanaZipSfxSetup/Mile.Project.Properties.h and b/NanaZipSfxSetup/Mile.Project.Properties.h differ diff --git a/NanaZipSfxWindows/Mile.Project.Properties.h b/NanaZipSfxWindows/Mile.Project.Properties.h index 9d89fc39a..eaff1cb24 100644 Binary files a/NanaZipSfxWindows/Mile.Project.Properties.h and b/NanaZipSfxWindows/Mile.Project.Properties.h differ diff --git a/NanaZipShellExtension/Mile.Project.Properties.h b/NanaZipShellExtension/Mile.Project.Properties.h index f82966a00..5159ac174 100644 Binary files a/NanaZipShellExtension/Mile.Project.Properties.h and b/NanaZipShellExtension/Mile.Project.Properties.h differ diff --git a/NanaZipShellExtension/NanaZipShellExtension.cpp b/NanaZipShellExtension/NanaZipShellExtension.cpp index 976a60da3..e44a02b9b 100644 --- a/NanaZipShellExtension/NanaZipShellExtension.cpp +++ b/NanaZipShellExtension/NanaZipShellExtension.cpp @@ -916,7 +916,7 @@ namespace NanaZip::ShellExtension return E_NOTIMPL; } - return ::SHStrDupW(L"NanaZip Preview", ppszName); + return ::SHStrDupW(L"NanaZip", ppszName); } HRESULT STDMETHODCALLTYPE GetIcon( @@ -1042,7 +1042,7 @@ namespace NanaZip::ShellExtension #pragma endregion }; - struct DECLSPEC_UUID("469D94E9-6AF4-4395-B396-99B1308F8CE5") + struct DECLSPEC_UUID("CAE3F1D4-7765-4D98-A060-52CD14D56EAB") ClassFactory : public winrt::implements< ClassFactory, IClassFactory> { diff --git a/NanaZipWindows/Mile.Project.Properties.h b/NanaZipWindows/Mile.Project.Properties.h index 957c36fae..278c87650 100644 Binary files a/NanaZipWindows/Mile.Project.Properties.h and b/NanaZipWindows/Mile.Project.Properties.h differ diff --git a/SevenZip/CPP/7zip/Bundles/SFXCon/resource.rc b/SevenZip/CPP/7zip/Bundles/SFXCon/resource.rc index 24096cc2d..ccf4d5a8e 100644 --- a/SevenZip/CPP/7zip/Bundles/SFXCon/resource.rc +++ b/SevenZip/CPP/7zip/Bundles/SFXCon/resource.rc @@ -1 +1 @@ -101 ICON "../../../../../Assets/NanaZipPreviewSfx.ico" \ No newline at end of file +101 ICON "../../../../../Assets/NanaZipSfx.ico" \ No newline at end of file diff --git a/SevenZip/CPP/7zip/Bundles/SFXSetup/resource.rc b/SevenZip/CPP/7zip/Bundles/SFXSetup/resource.rc index e48d312b0..c98a73ba8 100644 --- a/SevenZip/CPP/7zip/Bundles/SFXSetup/resource.rc +++ b/SevenZip/CPP/7zip/Bundles/SFXSetup/resource.rc @@ -1,6 +1,6 @@ #include "resource.h" -IDI_ICON ICON "../../../../../Assets/NanaZipPreviewSfx.ico" +IDI_ICON ICON "../../../../../Assets/NanaZipSfx.ico" STRINGTABLE BEGIN diff --git a/SevenZip/CPP/7zip/Bundles/SFXWin/resource.rc b/SevenZip/CPP/7zip/Bundles/SFXWin/resource.rc index ef28e4cf0..6aa0729e5 100644 --- a/SevenZip/CPP/7zip/Bundles/SFXWin/resource.rc +++ b/SevenZip/CPP/7zip/Bundles/SFXWin/resource.rc @@ -7,7 +7,7 @@ #define xc 240 #define yc 64 -IDI_ICON ICON "../../../../../Assets/NanaZipPreviewSfx.ico" +IDI_ICON ICON "../../../../../Assets/NanaZipSfx.ico" IDD_EXTRACT DIALOG 0, 0, xs, ys MY_MODAL_DIALOG_STYLE MY_FONT CAPTION "NanaZip SFX" diff --git a/SevenZip/CPP/7zip/UI/FileManager/resource.rc b/SevenZip/CPP/7zip/UI/FileManager/resource.rc index 8c52ab8f8..d2f4abb15 100644 --- a/SevenZip/CPP/7zip/UI/FileManager/resource.rc +++ b/SevenZip/CPP/7zip/UI/FileManager/resource.rc @@ -138,7 +138,7 @@ BEGIN END -IDI_ICON ICON "../../../../../Assets/NanaZipPreview.ico" +IDI_ICON ICON "../../../../../Assets/NanaZip.ico" IDB_ADD BITMAP "../../../../../NanaZip/Assets/Toolbar/Add_32x32.bmp" IDB_EXTRACT BITMAP "../../../../../NanaZip/Assets/Toolbar/Extract_32x32.bmp" diff --git a/SevenZip/CPP/7zip/UI/GUI/resource.rc b/SevenZip/CPP/7zip/UI/GUI/resource.rc index 75203f22e..3dd8afa2a 100644 --- a/SevenZip/CPP/7zip/UI/GUI/resource.rc +++ b/SevenZip/CPP/7zip/UI/GUI/resource.rc @@ -3,7 +3,7 @@ #include "../FileManager/resourceGui.rc" -IDI_ICON ICON "../../../../../Assets/NanaZipPreview.ico" +IDI_ICON ICON "../../../../../Assets/NanaZip.ico" #include "../FileManager/PropertyName.rc" #include "../FileManager/OverwriteDialog.rc"