Added patch to set a proper caption for shell32 Run dialog (by Jared Smudde).

This commit is contained in:
Sebastian Lackner 2015-06-05 01:44:39 +02:00
parent 32c289493f
commit 4d919d4d83
3 changed files with 59 additions and 17 deletions

2
debian/changelog vendored
View File

@ -22,6 +22,8 @@ wine-staging (1.7.45) UNRELEASED; urgency=low
* Added patch to set NamedPipeState to FILE_PIPE_CLOSING_STATE on broken pipe
in NtQueryInformationFile.
* Added patch to allow setting pixel format for desktop window.
* Added patch to set a proper caption for shell32 Run dialog (by Jared
Smudde).
* Removed patch to handle '\r' as whitespace in wbemprox queries (accepted
upstream).
* Removed patch to make sure OpenClipboard with current owner doesn't fail

View File

@ -227,6 +227,7 @@ patch_enable_all ()
enable_shell32_Progress_Dialog="$1"
enable_shell32_Quoted_ShellExecute="$1"
enable_shell32_RunDLL_CallEntry16="$1"
enable_shell32_Run_Dialog="$1"
enable_shell32_SHCreateSessionKey="$1"
enable_shell32_SHFileOperation="$1"
enable_shell32_UnixFS="$1"
@ -751,6 +752,9 @@ patch_enable ()
shell32-RunDLL_CallEntry16)
enable_shell32_RunDLL_CallEntry16="$2"
;;
shell32-Run_Dialog)
enable_shell32_Run_Dialog="$2"
;;
shell32-SHCreateSessionKey)
enable_shell32_SHCreateSessionKey="$2"
;;
@ -4613,6 +4617,18 @@ if test "$enable_shell32_RunDLL_CallEntry16" -eq 1; then
) >> "$patchlist"
fi
# Patchset shell32-Run_Dialog
# |
# | Modified files:
# | * dlls/shell32/shell32.rc
# |
if test "$enable_shell32_Run_Dialog" -eq 1; then
patch_apply shell32-Run_Dialog/0001-shell32-Add-caption-to-Run-dialog.patch
(
echo '+ { "Jared Smudde", "shell32: Add caption to Run dialog.", 1 },';
) >> "$patchlist"
fi
# Patchset shell32-SHCreateSessionKey
# |
# | This patchset fixes the following Wine bugs:
@ -5069,15 +5085,15 @@ if test "$enable_wined3d_CSMT_Helper" -eq 1; then
) >> "$patchlist"
fi
# Patchset wined3d-resource_check_usage
# Patchset wined3d-UnhandledBlendFactor
# |
# | Modified files:
# | * dlls/wined3d/resource.c
# | * dlls/wined3d/state.c
# |
if test "$enable_wined3d_resource_check_usage" -eq 1; then
patch_apply wined3d-resource_check_usage/0001-wined3d-Silence-repeated-resource_check_usage-FIXME.patch
if test "$enable_wined3d_UnhandledBlendFactor" -eq 1; then
patch_apply wined3d-UnhandledBlendFactor/0001-wined3d-Silence-repeated-Unhandled-blend-factor-0-me.patch
(
echo '+ { "Erich E. Hoover", "wined3d: Silence repeated resource_check_usage FIXME.", 2 },';
echo '+ { "Sebastian Lackner", "wined3d: Silence repeated '\''Unhandled blend factor 0'\'' messages.", 1 },';
) >> "$patchlist"
fi
@ -5093,6 +5109,18 @@ if test "$enable_wined3d_wined3d_swapchain_present" -eq 1; then
) >> "$patchlist"
fi
# Patchset wined3d-resource_check_usage
# |
# | Modified files:
# | * dlls/wined3d/resource.c
# |
if test "$enable_wined3d_resource_check_usage" -eq 1; then
patch_apply wined3d-resource_check_usage/0001-wined3d-Silence-repeated-resource_check_usage-FIXME.patch
(
echo '+ { "Erich E. Hoover", "wined3d: Silence repeated resource_check_usage FIXME.", 2 },';
) >> "$patchlist"
fi
# Patchset wined3d-Multisampling
# |
# | This patchset fixes the following Wine bugs:
@ -5142,18 +5170,6 @@ if test "$enable_wined3d_Revert_PixelFormat" -eq 1; then
) >> "$patchlist"
fi
# Patchset wined3d-UnhandledBlendFactor
# |
# | Modified files:
# | * dlls/wined3d/state.c
# |
if test "$enable_wined3d_UnhandledBlendFactor" -eq 1; then
patch_apply wined3d-UnhandledBlendFactor/0001-wined3d-Silence-repeated-Unhandled-blend-factor-0-me.patch
(
echo '+ { "Sebastian Lackner", "wined3d: Silence repeated '\''Unhandled blend factor 0'\'' messages.", 1 },';
) >> "$patchlist"
fi
# Patchset wined3d-CSMT_Main
# |
# | This patchset fixes the following Wine bugs:

View File

@ -0,0 +1,24 @@
From 1bece0c817599701648b4cd177cf13babe1342e8 Mon Sep 17 00:00:00 2001
From: Jared Smudde <computerwhiz02@hotmail.com>
Date: Fri, 5 Jun 2015 01:43:04 +0200
Subject: shell32: Add caption to Run dialog.
---
dlls/shell32/shell32.rc | 1 +
1 file changed, 1 insertion(+)
diff --git a/dlls/shell32/shell32.rc b/dlls/shell32/shell32.rc
index 847d2ce..3a16da3 100644
--- a/dlls/shell32/shell32.rc
+++ b/dlls/shell32/shell32.rc
@@ -330,6 +330,7 @@ FONT 10, "MS Shell Dlg"
SHELL_RUN_DLG DIALOG 0, 0, 235, 83
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
+CAPTION "Run"
FONT 8, "MS Shell Dlg"
{
ICON "", IDC_RUNDLG_ICON, 7, 11, 18, 20, WS_VISIBLE
--
2.4.2