Fix bug 70036 - Remove VisualElements

This commit is contained in:
Semyon Bezrukov
2024-09-19 16:56:34 +03:00
parent 1ae56c8a3e
commit 4295542d26
6 changed files with 0 additions and 30 deletions

View File

@ -1057,9 +1057,6 @@ Source: "data\vcredist_{#ARCH}.exe"; DestDir: {app}; Flags: deleteafterinstall;
Check: not checkVCRedist2019;
#endif
Source: "{#BRANDING_DIR}\data\VisualElementsManifest.xml"; DestDir: {app}; DestName: {#VISEFFECTS_MANIFEST_NAME}; MinVersion: 6.3;
Source: "{#BRANDING_DIR}\data\visual_elements_icon_*"; DestDir: {app}\browser; MinVersion: 6.3;
Source: "{#BUILD_DIR}\desktop\*"; DestDir: {app}; Flags: ignoreversion recursesubdirs;
#if defined(_WIN_XP) | defined(EMBED_HELP)
Source: "{#BUILD_DIR}\help\*"; DestDir: {app}; Flags: ignoreversion recursesubdirs;

View File

@ -1,9 +0,0 @@
<Application xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<VisualElements
ShowNameOnSquare150x150Logo='on'
Square150x150Logo='browser\visual_elements_icon_600x600.png'
Square70x70Logo='browser\visual_elements_icon_176x176.png'
Square44x44Logo='browser\visual_elements_icon_176x176.png'
ForegroundText='light'
BackgroundColor='#181b31'/>
</Application>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -22,7 +22,6 @@
#define iconsExe "DesktopEditors.exe"
#define NAME_EXE_OUT "editors.exe"
#define VISEFFECTS_MANIFEST_NAME ChangeFileExt(iconsExe, "VisualElementsManifest.xml")
#define LIC_FILE "agpl-3.0"
#define ASSC_APP_NAME "ONLYOFFICE"

View File

@ -83,23 +83,6 @@ Get-ChildItem -Directory `
####
Write-Host "`n[ Add visual elements ]"
Write-Host "COPY: data\VisualElementsManifest.xml > $BuildDir\desktop\DesktopEditors.VisualElementsManifest.xml"
Copy-Item -Force `
-Path "data\VisualElementsManifest.xml" `
-Destination "$BuildDir\desktop\DesktopEditors.VisualElementsManifest.xml"
Write-Host "CREATE DIR: $BuildDir\desktop\browser"
New-Item -ItemType Directory -Force -Path "$BuildDir\desktop\browser" | Out-Null
Write-Host "COPY: data\visual_elements_icon_* > $BuildDir\desktop\browser"
Copy-Item -Force `
-Path "data\visual_elements_icon_*" `
-Destination "$BuildDir\desktop\browser"
####
Write-Host "`n[ Sign files ]"
if ($Sign) {