Revert "[SHELL32] Show Product version on About dialog bmp (#3621)" (#7327)

This reverts commit 2636cff09f
by Cătălin Gabriel Drăghiță (@jeffbox12) as well as any subsequent changes.

This was agreed upon by the original author on our official Mattermost
chat (chat.reactos.org)

The reactos.bmp banners are again generated from the file:
  dll/win32/msgina/resources/svg/reactos.svg
This commit is contained in:
Hermès Bélusca-Maïto 2024-09-07 22:34:19 +02:00
parent d9afe73de4
commit c1e642fdb5
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
9 changed files with 3 additions and 1805 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 132 KiB

View file

@ -1,7 +1,5 @@
IDB_REACTOS BITMAP "res/bitmaps/reactos.bmp"
IDB_REACTOS_WORKSTATION BITMAP "res/bitmaps/reactosworkstation.bmp"
IDB_REACTOS_SERVER BITMAP "res/bitmaps/reactosserver.bmp"
IDB_LINEBAR BITMAP "res/bitmaps/line.bmp"
IDB_REACTOS BITMAP "res/bitmaps/reactos.bmp"
IDB_LINEBAR BITMAP "res/bitmaps/line.bmp"
IDB_DLG_BG BITMAP "res/bitmaps/dlg_bg.bmp"
IDB_REACTOS_FLAG BITMAP "res/bitmaps/reactos_flag.bmp"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

View file

@ -28,8 +28,6 @@
/* Bitmaps */
#define IDB_REACTOS 131
#define IDB_REACTOS_WORKSTATION 400
#define IDB_REACTOS_SERVER 401
#define IDB_LINEBAR 138
#define IDB_SHELL_IEXPLORE_LG 204
#define IDB_SHELL_IEXPLORE_LG_HOT 205

View file

@ -45,7 +45,6 @@
#include <reactos/version.h>
#include <reactos/buildno.h>
#include <versionhelpers.h>
WINE_DEFAULT_DEBUG_CHANNEL(shell);
const char * const SHELL_Authors[] = { "Copyright 1993-"COPYRIGHT_YEAR" WINE team", "Copyright 1998-"COPYRIGHT_YEAR" ReactOS Team", 0 };
@ -1085,16 +1084,7 @@ static INT_PTR CALLBACK AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM
WCHAR szAuthorsText[20];
// Preload the ROS bitmap
if (IsWindowsServer())
{
// Load Server Bitmap
hLogoBmp = (HBITMAP)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IDB_REACTOS_SERVER), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
}
else
{
// Load Workstation Bitmap
hLogoBmp = (HBITMAP)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IDB_REACTOS_WORKSTATION), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
}
hLogoBmp = (HBITMAP)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IDB_REACTOS), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
hLineBmp = (HBITMAP)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IDB_LINEBAR), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
if (hLogoBmp && hLineBmp)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB