https://bugs.winehq.org/show_bug.cgi?id=57360
Bug ID: 57360
Summary: Wrong Combobox dropdown in 7zFM
Product: Wine
Version: 9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 77328
--> https://bugs.winehq.org/attachment.cgi?id=77328
Too large drop down
Install 7z 24.08
in 7zFM, dropdown combobox => Too large with many "empty" lines
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27245
Summary: Internet Settings security zones not i18n-ed
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Created an attachment (id=34829)
--> (http://bugs.winehq.org/attachment.cgi?id=34829)
Internet Settings screenshot (French)
In the control panel (wine control), tab "Security", the security zones and
their associates descriptions aren't translatable.
They seem to be hardcoded in dll/urlmon/urlmon.inf
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53644
Bug ID: 53644
Summary: vbscript can not compile classes with lists of private
/ public / dim declarations
Product: Wine
Version: 7.16
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
I am working on porting Visual Pinball to MacOS. I am using the vbscript engine
from Wine and just found out that it is having issues compiling classes that
have lists of private / public declarations.
For example:
Class FlipperPolarity
Public DebugOn, Enabled
private Flipper, FlipperStart,FlipperEnd, FlipperEndY, LR,
PartialFlipCoef
Private Balls(20), balldata(20)
dim PolarityIn, PolarityOut
dim VelocityIn, VelocityOut
dim YcoefIn, YcoefOut
.
.
.
End Class
To get this to compile, I had to split everything to a separate line. I also
had to switch the arrays to dim
Class FlipperPolarity
Public DebugOn
Public Enabled
private Flipper
private FlipperStart
private FlipperEnd
private FlipperEndY
private LR
private PartialFlipCoef
dim Balls(20)
dim balldata(20)
dim PolarityIn
dim PolarityOut
dim VelocityIn
dim VelocityOut
dim YcoefIn
dim YcoefOut
.
.
.
End Class
I think an update is required in parser.y, but I'm not sure yet:
ClassBody
: /* empty */ { $$ = new_class_decl(ctx); }
| FunctionDecl { $$ =
add_class_function(ctx, new_class_decl(ctx), $1); CHECK_ERROR; }
| FunctionDecl StSep ClassBody { $$ =
add_class_function(ctx, $3, $1); CHECK_ERROR; }
/* FIXME: We should use DimDecl here to support arrays, but that conflicts
with PropertyDecl. */
| Storage tIdentifier { dim_decl_t *dim_decl =
new_dim_decl(ctx, $2, FALSE, NULL); CHECK_ERROR;
$$ = add_dim_prop(ctx,
new_class_decl(ctx), dim_decl, $1); CHECK_ERROR; }
| Storage tIdentifier StSep ClassBody { dim_decl_t *dim_decl =
new_dim_decl(ctx, $2, FALSE, NULL); CHECK_ERROR;
$$ = add_dim_prop(ctx, $4,
dim_decl, $1); CHECK_ERROR; }
| tDIM DimDecl { $$ = add_dim_prop(ctx,
new_class_decl(ctx), $2, 0); CHECK_ERROR; }
| tDIM DimDecl StSep ClassBody { $$ = add_dim_prop(ctx, $4,
$2, 0); CHECK_ERROR; }
| PropertyDecl { $$ =
add_class_function(ctx, new_class_decl(ctx), $1); CHECK_ERROR; }
| PropertyDecl StSep ClassBody { $$ =
add_class_function(ctx, $3, $1); CHECK_ERROR; }
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57689
Bug ID: 57689
Summary: Menus misplaced on X11 when using dual monitor with
right monitor as primary
Product: Wine
Version: 10.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: sutupud(a)yahoo.com
Distribution: ---
Created attachment 77877
--> https://bugs.winehq.org/attachment.cgi?id=77877
screenshot of misplaced menu entry
In wine 10.0-rc6, when using two monitors with the *right* one set as primary,
the menus are now misplaced, e.g. when opening a menu entry in a window on the
left monitor, then it opens offset by the monitor size to the right, on the
primary monitor, as shown in the attached screenshot.
When the window is on the right monitor that continues, so the menus are not
shown, since they are likely drawn off screen.
Setting the left monitor as primary fixes this as a workaround.
Also, it only happens on X11 / XWayland (not with the wayland driver, where
menu positioning now works correctly)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57698
Bug ID: 57698
Summary: Reason's (DAW) dialog windows stopped registering
mouse events and open at screen's right edge
Product: Wine
Version: 10.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: schroedingerscat(a)disroot.org
Distribution: ---
Reason's (DAW) dialog windows like "Save changes to the document before
quitting?" or the authorization/login startup dialog stopped registering mouse
click events with Wine v10.0-rc6. Additionally, affected dialog windows now
open at the screen's right edge instead of the center (on Windows and up to
Wine v10.0-rc5).
Additionally, the authorization/login startup dialog hides the mouse cursor
once the cursor is over its window.
There's a workaround though: you can move the window to the screen's center and
from that point on are able to move the mouse cursor within the window and
perform mouse clicks.
The regression has been introduced with commit
710b94e212501727b3b1b8deea06a7757df43d51
Steps to reproduce:
Follow the download and installation steps from "Additional Comments" here:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=42495
Then, just wait for the authorization/login startup window.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57529
Bug ID: 57529
Summary: reMarkable application crash on new winehq-devel 10
RC1
Product: Wine
Version: 10.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: olivier.pantale(a)uttop.fr
Distribution: ---
reMarkable-3.16.0.898-win64.exe application installs on new RC1 version but
crash on launching while it works very well on other versions upto 9.22.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=57191
Bug ID: 57191
Summary: Flickering image on Video-surveilance-Software
Product: Wine
Version: 9.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andreas.franz(a)arcor.de
Distribution: ---
With rendering set to D3D11, image of my camera-stream is shown with
flickering.
Software is "SemSyCompact" from https://www.dallmeier.com
Log shows:
01d8:fixme:dxgi:d3d11_swapchain_present Unimplemented flags 0x200.
01d8:fixme:dxgi:d3d11_swapchain_present Unimplemented flags 0x200.
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
01c8:err:d3d:wined3d_debug_callback 0000000002C3F3F0: "GL_INVALID_OPERATION
error generated. Texture is immutable.".
Software-rendering works fine.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47647
Bug ID: 47647
Summary: Laragon hangs while "Initializing data"
Product: Wine
Version: 4.14
Hardware: x86-64
URL: https://github.com/leokhoa/laragon/releases/download/4
.0.15/laragon-full.exe
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
$ openssl sha256 laragon-full.exe
SHA256(laragon-full.exe)=
55f1c421a6631755da5de30dcdc72c361b8dbf688fc8b773bdd5a10f36dd2f73
When trying to start the server in Laragon, it yields the following error
message:
Steps to reproduce:
1. Download and install Laragon from the provided URL.
2. Start the program from the default location (mine was C:/laragon)
3. Click the "Start all" button in the bottom left hand corner.
Laragon hangs while "Initializing data"... C:\laragon\data\mysql
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56387
Bug ID: 56387
Summary: Buttons in Laragon not responding to mouse clicks
Product: Wine
Version: 9.3
Hardware: x86-64
URL: https://github.com/leokhoa/laragon/releases/download/6
.0.0/laragon-wamp.exe
OS: MacOS
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
% wine --version
wine-9.3
% openssl sha256 laragon-wamp.exe
SHA2-256(laragon-wamp.exe)=
333a8eaa06b0d4078027deec2e04fb59c8bbdc06c03398c9253e637aeb2c00d8
When I open Laragon, none of the buttons on the main screen respond to mouse
clicks.
Steps to reproduce:
1. Download and install laragon.
2. Open Laragon from C:/laragon/laragon.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.