https://bugs.winehq.org/show_bug.cgi?id=47305
Bug ID: 47305
Summary: Notepad doesn't adjust caret and scroll position
properly
Product: Wine
Version: 4.9
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
This is just to track the issue here, I'll send in a patch soon. Found on
https://jira.reactos.org/browse/CORE-15780.
Issue description from ReactOS JIRA:
How to reproduce:
Open Notepad
Make sure you disabled word wrapping (it usually disabled by default)
Type in very long string to activate horizontal scroll bar
Make a new string (hit Enter)
Now your caret position would be somewhere at the beginning of line 2, but the
whole text box is not scrolled to the first character position, and horizontal
scroll bar position is not changed (see attached screenshot).
If you move your caret back to line 1 ending, and move with arrow keys to line
2, the bug will appear again (it does not matter whether right or down arrow
key will be used).
--
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=40442
Bug ID: 40442
Summary: Unexplained new random comctl32:header failure
(cross-compiler issue?)
Product: Wine
Version: 1.9.6
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
comctl32:header started having regular failures on newtb-wxppro right after the
WineHQ upgrade (2016/03/17).
https://test.winehq.org/data/tests/comctl32:header.html
The failure:
header.c:1148: Test failed: expected 0, got 1
Things that point to a cross-compiling issue:
* Since 2016/03/18 comctl32:header has had an almost systematic failure on
newtb-wxppro (68.7%) and more rarely on newtb-w2003std (12.5%).
* In the 27 runs from 2016/02/09 to 2016/03/17 it had no failure (neither on
these two platforms nor on any other).
* There has been no change to comctl32:header before it started failing.
* The tests that run before comctl32:header don't seem to have undergone
changes that could cause the following tests to fail (see 'git log
62277fb7779f..6bc0ce26a853 dlls/[abc]*/tests').
Unexplained mysteries:
* Cross-compiling the test with i686-w64-mingw32-gcc (GCC) 5.3.1 20160205, the
standard '-g -O2' options and uploading it to the TestBot does not yield the
expected failure (changing that to '-g -O0' does not make a difference either).
* None of the other platforms is affected.
* And even more strange, newtb-xppro is the only Windows XP to be affected by
the new failure.
--
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=46683
Bug ID: 46683
Summary: TopoEdit crashes with unimplemented function
mf.dll.MFCreateVideoRendererActivate
Product: Wine
Version: 4.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mfplat
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Depends on: 46105
Distribution: ---
Topology -> Add EVR
wine: Call from 0x7b43d59b to unimplemented function
mf.dll.MFCreateVideoRendererActivate
wine-4.2-26-g5e86cc0a8f
--
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=41106
Bug ID: 41106
Summary: Lethe - Episode One crashes without native dotnet4.0
Product: Wine
Version: 1.9.16
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 55312
--> https://bugs.winehq.org/attachment.cgi?id=55312
log
Stacktrace:
at <unknown> <0xffffffff>
at <Module>.?A0x6845bc90.??__EGPickColorStruct@@YMXXZ () <0x00027>
at <Module>._initterm_m (*()*,*()*) <0x00029>
at <Module>.<CrtImplementationDetails>.LanguageSupport.InitializePerProcess
(<CrtImplementationDetails>.LanguageSupport*) <0x00063>
at <Module>.<CrtImplementationDetails>.LanguageSupport._Initialize
(<CrtImplementationDetails>.LanguageSupport*) <0x00207>
at <Module>.<CrtImplementationDetails>.LanguageSupport.Initialize
(<CrtImplementationDetails>.LanguageSupport*) <0x0006f>
at <Module>..cctor () <0x0002f>
at (wrapper runtime-invoke) object.runtime_invoke_void
(object,intptr,intptr,intptr) <0xffffffff>
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
wine-1.9.16-38-g84b3218
--
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=41119
Bug ID: 41119
Summary: vbscript fails to parse
'createobject("wscript.shell").run' statement
Product: Wine
Version: 1.9.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: aihujianfei(a)qq.com
Distribution: ---
The vbscript file for test is :
createobject("wscript.shell").run "calc.exe"
I see the vbs bison parse file in
https://github.com/alexhenrie/wine/blob/master/dlls/vbscript/parser.y ,
the parse failed at the pos [.run] in this file.
I think the fail reason is there has one confilct .
for more information , I run command [bison -v -d -pparser_ parser.y], then it
generate file parser.output .
In the file parser.output , part of the file show this confilct which mentioned
above .
"
state 160
77 ArgumentList: Expression .
78 | Expression . ',' ArgumentList
85 Expression: Expression . tIMP EqvExpression
138 PrimaryExpression: '(' Expression . ')'
tIMP shift, and go to state 123
',' shift, and go to state 162
')' shift, and go to state 156
')' [reduce using rule 77 (ArgumentList)]
"
As we can see above , there has one shift/reduce conflict . to parse this file
success , we need a reduce to ArgumentList , instead of shift to
PrimaryExpression .
I will appreciate your fix.
--
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=13499
Summary: The Odyssey: Winds Of Athena: access violation when
trying to run
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://gamecenter.oberon-media.com/game.htm?code=111299413&RefId=&origin=pcat_gm_
u
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msclrhd(a)gmail.com
Steps to reproduce:
1. Install The Odyssey: Winds Of Athena
2. Run directly from its install directory
When it is trying to start up, the application will crash with an access
violation.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=10728
Summary: LEGO Island character models are textureless
Product: Wine
Version: 0.9.50.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Created an attachment (id=9570)
--> (http://bugs.winehq.org/attachment.cgi?id=9570)
Console log
The character models in Lego Island (the original) are textureless. The
attached log contains the console output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16644
Summary: SimGolf v1.03 does not render terrain
Product: Wine
Version: 1.1.11
Platform: PC-x86-64
URL: http://www.simgolf.ea.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tom78999(a)gmail.com
Simgolf, with the latest patch, does not render any terrain and instead simply
renders a black background. The attached screenshot illustrates this.
--
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.