http://bugs.winehq.org/show_bug.cgi?id=32831
Bug #: 32831
Summary: TurboTax 2012 fails with error 42016 when manually
checking for updates (win2k3 mode)
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: dotnet
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: focht(a)gmx.net
Depends on: 32323, 32471, 32758
Classification: Unclassified
Created attachment 43366
--> http://bugs.winehq.org/attachment.cgi?id=43366
terminal output
Prereqs:
winetricks corefonts d3d9=disabled dotnet40
install the app as normal, don't start it after install.
winecfg > win2k3 windows version (bug 32758)
Apply http://source.winehq.org/patches/data/93995
Start the app up. Click the 'Online' menu, then 'Check for updates'. It will
soon fail.
I'll attach the terminal output.
FWIW:
https://ttlc.intuit.com/questions/1459455-error-42016-unexpected-content-re…
--
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=50012
Bug ID: 50012
Summary: Installer failed to initialize for Photoshop CS6
installer
Product: Wine-staging
Version: 5.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yaomtc(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 68432
--> https://bugs.winehq.org/attachment.cgi?id=68432
Terminal output from running Set-up.exe
The installer for Adobe Creative Suite 6 (Production Premium) fails to
initialize. I've attached the terminal output here.
--
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=52251
Bug ID: 52251
Summary: Airport tycoon crashes
Product: Wine
Version: 7.0-rc2
Hardware: x86-64
URL: https://www.fileplanet.com/archive/p-30575/Airline-Tyc
oon-Demo/download
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeremielapuree(a)yahoo.fr
Distribution: Ubuntu
Created attachment 71372
--> https://bugs.winehq.org/attachment.cgi?id=71372
console output
Airport tycoon crashes when loading. The welcome picture appears but game
crashes early.
--
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=39142
Bug ID: 39142
Summary: Roblox Client/Server connection is dropped with error
"This server has shut down."
Product: Wine
Version: 1.7.50
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alfonsojon1997(a)gmail.com
Distribution: ---
There is an issue with the Roblox Client where communications from client to
server are interrupted. This affects any Wine version, as well as Wine Staging.
There is an issue on GitHub which has been tracking this issue; I will link to
it below so the content isn't duplicated. This issue was caused with the July
16th version of Roblox; previous versions of Roblox work in Wine, but the
client requires the most recent version of the game to be installed.
GitHub issue:
https://github.com/roblox-linux-wrapper/roblox-linux-wrapper/issues/135
Roblox Changelog: http://wiki.roblox.com/index.php?title=Change_log
--
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=53888
Bug ID: 53888
Summary: vbscript does not allow Mid on non VT_BSTR
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While testing some scripts, I ran across a Mid call on a value that wasn't a
string.
The following vbscript should display "3":
Dim string
string = 7530
WScript.echo Mid(string, 3, 1)
Global_Mid returns E_NOTIMPL in this case:
if(V_VT(args) != VT_BSTR) {
FIXME("args[0] = %s\n", debugstr_variant(args));
return E_NOTIMPL;
}
A workaround for this is to match other string functions and use conv_str:
+ BSTR str, conv_str = NULL;
+ if(V_VT(args) != VT_BSTR) {
+ hres = to_string(args, &conv_str);
+ if(FAILED(hres))
+ return hres;
+ str = conv_str;
+ }else {
+ str = V_BSTR(args);
+ }
+ SysFreeString(conv_str);
--
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=53873
Bug ID: 53873
Summary: vbscript fails to compile Else If when If is on same
line
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
We've found some scripts where If statements are placed on the same line as an
Else.
The following works in real vbscript, but fails in wine vbscript:
Dim vrOption
vrOption = 3
If vrOption = 1 Then
Wscript.Echo "vroption is 1"
ElseIf vrOption = 2 Then
Wscript.Echo "vroption is 2"
Else If vrOption = 3 Then
Wscript.Echo "vroption is 3"
End If
End If
As a workaround we've added an additional entry to tELSE, which seems to work:
Else_opt
: /* empty */ { $$ = NULL; }
| tELSE tNL StatementsNl_opt { $$ = $3; }
| tELSE StatementsNl_opt { $$ = $2; }
--
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=53868
Bug ID: 53868
Summary: vbscript fails to return TypeName for VT_DISPATCH
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
I ran into some vbscript where it was trying to get the TypeName of an object:
Private Sub RemoveBall(aBall)
dim x : for x = 0 to uBound(balls)
if TypeName(balls(x) ) = "IBall" then
if aBall.ID = Balls(x).ID Then
balls(x) = Empty
Balldata(x).Reset
End If
End If
Next
End Sub
I was able to work around this by added a VT_DISPATCH case to Global_TypeName
and fetching it from ITypeInfo_GetDocumentation:
case VT_DISPATCH: {
ITypeInfo* typeinfo;
HRESULT hres = IDispatch_GetTypeInfo(V_DISPATCH(arg), 0, 0,
&typeinfo);
if(FAILED(hres)) {
return E_FAIL;
}
BSTR name;
hres = ITypeInfo_GetDocumentation(typeinfo, MEMBERID_NIL, &name,
NULL, NULL, NULL);
if(FAILED(hres)) {
return E_FAIL;
}
hres = return_string(res, name);
SysFreeString(name);
return hres;
}
--
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=53807
Bug ID: 53807
Summary: vbscript fails to redim original array in function
when passed byref
Product: Wine
Version: 7.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While working on leveraging the vbscript engine of Wine for a macos/linux port
of Visual Pinball, I ran into a script that resizes an array in a function by
passing the array in byref. When the function finishes, the array appears to be
at the original size.
Take the following code:
dim ax
redim ax(4)
Function Resize(byref x2)
Wscript.Echo "IN RESIZE BEFORE: " & UBound(x2)
Redim x2(20)
Wscript.Echo "IN RESIZE AFTER: " & UBound(x2)
End Function
Wscript.Echo "BEFORE: " & UBound(ax)
Resize ax
Wscript.Echo "AFTER: " & UBound(ax)
In wine VBS:
BEFORE: 4
IN RESIZE BEFORE: 4
IN RESIZE AFTER: 20
AFTER: 4
In real VBS:
BEFORE: 4
IN RESIZE BEFORE: 4
IN RESIZE AFTER: 20
AFTER: 20
--
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=53782
Bug ID: 53782
Summary: vbscript can not compile ReDim with list of variables
Product: Wine
Version: 7.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
Distribution: ---
While working on leveraging the vbscript engine of Wine for a macos/linux port
of Visual Pinball, I've been testing several user made scripts.
I've found some scripts that have lists when using redim. The following works
in real VBS, but fails here:
dim ax(), ay()
redim ax(4), ay(5)
Wscript.Echo UBound(ax)
Wscript.Echo UBound(ay)
--
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=53100
Bug ID: 53100
Summary: Euphoria: freezes every second while controllers are
plugged in
Product: Wine
Version: 7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lahvuun(a)gmail.com
Regression SHA1: 4f1095a0ee4c7577e5287e56e388c36d0ba659ad
Distribution: Gentoo
Created attachment 72531
--> https://bugs.winehq.org/attachment.cgi?id=72531
Output of WINEDEBUG=trace+winmm wine euphoria.exe
If any controllers are plugged in, approximately every second Euphoria will
freeze for a brief moment.
Euphoria is a Visual Novel made by Clockup. Be warned, it's (very) NSFW. I'm
using the English release by MangaGamer: https://mangagamer.org/euphoria/
The problem affects other games by Clockup. They likely run on the same engine,
since the file structure is very similar.
This wasn't a problem with older versions of wine, git bisect points to
4f1095a0ee4c7577e5287e56e388c36d0ba659ad — winmm: Reimplement joystick APIs on
top of dinput, by Rémi Bernon.
Since this started after a winmm change, I ran the game with
WINEDEBUG=trace+winmm, the log is attached. Looks like find_joysticks is
regularly called, the game freezes at the same time these calls are logged.
My guess is that find_joysticks is slow for some reason, so it blocks the game.
The more controllers are plugged in simultaneously, the longer it freezes for
(I tested with 0, 1 and 4).
The game doesn't freeze on my Windows 10 install at all, even with 4
controllers plugged in.
--
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.