Skip to content

Commit

Permalink
Add "ZS" to the file manager's name
Browse files Browse the repository at this point in the history
This will allow for differentiation between standard 7-Zip and 7-Zip ZS
in the start menu.

Signed-off-by: Jevil7452 <98893064+Jevil7452@users.noreply.github.com>
Reviewed-by: Tino Reichardt <milky-7zip@mcmilk.de>
  • Loading branch information
Jevil7452 authored and mcmilk committed May 28, 2023
1 parent 888ea19 commit 92d1609
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion C/Util/7zipInstall/7zipInstall.c
Expand Up @@ -803,7 +803,7 @@ static void SetShellProgramsGroup(HWND hwndOwner)
for (k = 0; k < 2; k++)
{
CpyAscii(link + baseLen, k == 0 ?
"7-Zip File Manager.lnk" :
"7-Zip ZS File Manager.lnk" :
"7-Zip Help.lnk"
);
wcscpy(destPath, path);
Expand Down
2 changes: 1 addition & 1 deletion C/Util/7zipUninstall/7zipUninstall.c
Expand Up @@ -366,7 +366,7 @@ static void SetShellProgramsGroup(HWND hwndOwner)
for (k = 0; k < 2; k++)
{
CpyAscii(link + baseLen, k == 0 ?
"7-Zip File Manager.lnk" :
"7-Zip ZS File Manager.lnk" :
"7-Zip Help.lnk");
wcscpy(destPath, path);
CatAscii(destPath, k == 0 ?
Expand Down
2 changes: 1 addition & 1 deletion CPP/7zip/UI/FileManager/7zFM.exe.manifest
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="7-Zip.7-Zip.7zFM" type="win32"/>
<description>7-Zip File Manager.</description>
<description>7-Zip ZS File Manager.</description>
<dependency>
<dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/></dependentAssembly>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion CPP/7zip/UI/FileManager/resource.rc
Expand Up @@ -2,7 +2,7 @@
#include "../../GuiCommon.rc"
#include "resource.h"

MY_VERSION_INFO_APP("7-Zip File Manager", "7zFM")
MY_VERSION_INFO_APP("7-Zip ZS File Manager", "7zFM")

IDR_ACCELERATOR1 ACCELERATORS
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion DOC/7zip.wxs
Expand Up @@ -187,7 +187,7 @@

<Component Id="Fm" Guid="$(var.CompFm)" DiskId="1" Win64="$(var.Is64)">
<File Id="_7zFM.exe" Name="7zFM.exe">
<Shortcut Id="startmenuFmShortcut" Directory="PMenu" Name="7zipFM" LongName="7-Zip File Manager" />
<Shortcut Id="startmenuFmShortcut" Directory="PMenu" Name="7zipFM" LongName="7-Zip ZS File Manager" />
</File>
</Component>

Expand Down

0 comments on commit 92d1609

Please sign in to comment.