https://bugs.winehq.org/show_bug.cgi?id=52221
Bug ID: 52221
Summary: GameMaker 8: Missing sound effects
Product: Wine
Version: 6.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dmusic
Assignee: wine-bugs(a)winehq.org
Reporter: sterophonick(a)gmail.com
Distribution: ---
Created attachment 71305
--> https://bugs.winehq.org/attachment.cgi?id=71305
The log of the funny game
Certain games that run on GameMaker 8 will rely on the DMIME functions
IDirectMusicPerformance8Impl_PlaySegmentEx and
IDirectMusicPerformance8Impl_StopEx. As these functions are stubbed, the audio
is completely absent when these functions are called. Usually, the solution
would be to use Winetricks to fetch DirectPlay and the related components, but
the latency this causes is around half a second long.
Attached is a log from the parody game Sunky.MPEG, which when run in Wine, has
audio completely missing as a result of these stubbed functions.
--
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=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=52917
Bug ID: 52917
Summary: d3d11:d3d11 - test_ps_cs_uav_binding() fails in Wine
on cw-rx460
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
d3d11:d3d11's test_ps_cs_uav_binding() fails in Wine on the cw-rx460 machine:
d3d11.c:22459: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22465: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22470: Test failed: Got 1.00000000e+000, expected 2.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22478: Test failed: Got 1.00000000e+000, expected 2.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22481: Test failed: Got 2.00000000e+000, expected 4.00000000e+000 at
(0, 0), sub-resource 0.
https://test.winehq.org/data/patterns.html#d3d11:d3d11
d3d11:d3d11 already had a cw-rx460-specific failure in Wine (see bug 52563) but
a bisect shows that this group of failures started with this commit:
commit 444a513de0a0b704c210d41cc7c185588d899db9
Author: Zebediah Figura <zfigura(a)codeweavers.com>
Date: Fri Apr 22 15:42:54 2022 -0500
wined3d: Clear the texture BO when loading textures into
WINED3D_LOCATION_BUFFER.
Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
I disabled CSMT with WINE_D3D_CONFIG=csmt=0 just in case but I still got this
new set of failures.
--
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=22849
Summary: Printing coupons from online sites results in a blank
coupon
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tribes2player2003(a)yahoo.com
Many stores / sites use a product called "coupon activator" to support online
coupon distribution (Target on-line is my test case), but a quick net search
reveals that many sites use this service.
When printing should take place, the following messages are printed to console:
fixme:psdrv:PSDRV_GetDeviceCaps (0x1f5c): unsupported capability 1, will return
0
fixme:psdrv:PSDRV_GetDeviceCaps (0x1f5c): unsupported capability 3, will return
0
...
(capability numbers go from 1 to 31).
The coupon boarders, expiration date, and scissors icon print, but the
internals of the coupon are blank (bar codes, images, etc).
Steps to reproduce (using Default Fedora 12 wine install):
- Install firefox on wine
- Visit target.com, goto "get coupons"
- Allow install of coupon activator
- Select a coupon to print
- Print
If there's any additional steps I can take to help with this, please let me
know.
--
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=52056
Bug ID: 52056
Summary: TrackMania 2020: Crash on or soon after launch
Product: Wine
Version: 6.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonwsb(a)gmail.com
Distribution: ---
Created attachment 71066
--> https://bugs.winehq.org/attachment.cgi?id=71066
wine-staging 6.21 trackmania 2020 terminal output
It seems any version of wine-staging newer than 5.22 now causes TrackMania 2020
to crash at the main menu or earlier.
wine-staging 5.22 allows the game to work normally as far as I tested.
The game is available freely from "https://ubisoftconnect.com/" but an account
is needed.
--
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=53865
Bug ID: 53865
Summary: MobaXTerm: Local and remote terminals blank in 7.0
through 7.3 - worked in 6.0.3
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kderemie(a)gmail.com
Distribution: ---
Local and remote terminals are blank in 7.0 through 7.3, stable/development -
but - worked in 6.0.3.
--
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=40625
Bug ID: 40625
Summary: photoshop 6 froze after wine upgrade from 1.6 to 1.8
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: site(a)rotasul.net
Distribution: ---
Created attachment 54491
--> https://bugs.winehq.org/attachment.cgi?id=54491
wine error log
Hi,
When I used the wine 1.6 and Ubuntu Wily with kernel 3.4 the Photoshop
6 worked fine (yes a very old 32bit version six just 70MB)!!
After an upgrading the to kernel 4.2 and same wine 1.6 the Photoshop stopped
during the program load!
Now, some upgrades later, with Xenial and kernel 4.4.8 and wine 1.9.9 the
Photoshop load a little more during the opening but froze! I made several tries
winecfg XP and Win7.
Any solution in horizon?
Att.
Art
--
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=33547
Bug #: 33547
Summary: Nokia PC Suite can't connect to phone
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emerson.prado.eng(a)gmail.com
Classification: Unclassified
Created attachment 44402
--> http://bugs.winehq.org/attachment.cgi?id=44402
App output to the shell when run from the command line
I installed Nokia PC Suite 7.1.180.94 on Linux Mint Debian Edition with kernel
3.2.0-3-686-pae i686. The installation required mono-complete and
libwine-gecko-1.4 packages to be installed first. Although the installation
went fine, and menus and buttons worked OK, the application complained of no
connections available thru both the Connection Wizard and Connection Manager.
I ran the app from the command line and redirected the shell output to the file
Log.txt. Most messages went to stdout anyway, so I copied them and pasted in
Shell messages.txt, which I'll attach here in case it helps.
--
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.