http://bugs.winehq.org/show_bug.cgi?id=18601
Summary: Google Sketchup 7 crashes early in wine's imm.dll
Product: Wine
Version: 1.1.21
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download, patch, regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Not sure when this started; I first noticed it about a month ago.
Sketchup 7 installs, but when you start it up, it crashes with
trace:imm:DllMain 0x7ca20000, 2, (nil)
trace:imm:DllMain 0x7ca20000, 3, (nil)
wine: Unhandled page fault on read access to 0x00000006 at address 0x7ca28f69
(thread 0009), starting debugger...
Backtrace:
=>0 0x7ca28f69 ImmAssociateContext+0x229(hWnd=0x100b6, hIMC=(nil))
[imm32/imm.c:476] in imm32 (0x0032f2d4)
1 0x02ca9a9e in xul (+0xaa9a9e) (0x0032f304)
or
wine: Unhandled page fault on write access to 0x00000006 at address 0x7cc626d1
(thread 0009), starting debugger...
Backtrace:
=>0 0x7cc626d1 ImmGetContext+0x61(hWnd=0x10038) [imm32/imm.c:1381] in imm32
(0x0032f938)
1 0x7cc627dd ImmProcessKey+0x3d(hwnd=0x10038, hKL=0x4090409, vKey=39,
lKeyData=21823489, unknown=0) [imm32/imm.c:2775] in imm32 (0x0032fa88)
2 0x7eb28dec peek_message+0x238c(msg=0x142a40, hwnd=(nil), first=0,
last=4294967295, flags=83820545, changed_mask=1279)
[dlls/user32/message.c:1768] in user32 (0x0032fdb8)
1381 data->IMC.hWnd = hWnd;
In both cases it looks like a bogus small value is in
IMM_GetThreadData()->defaultContext
Ignoring that and replacing it with NULL seems to work around
the problem; see attached patch.
--
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=31199
Bug #: 31199
Summary: Google Sketchup Layout crashes when opening a new
document
Product: Wine
Version: 1.5.8
Platform: x86
URL: http://dl.google.com/sketchup/GoogleSketchUpProWEN.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 31193, 31198
Classification: Unclassified
Created attachment 40973
--> http://bugs.winehq.org/attachment.cgi?id=40973
terminal output
After bug 31198, ignore the startup tips and try to create a new document.
You'll get a crash:
Backtrace:
=>0 0x1001060a in atlastrtflib (+0x1060a) (0x0032e46c)
1 0x7eb371fb ME_MakeEditor+0x13a(texthost=0x26d37d8, bEmulateVersion10=0)
[/home/austin/wine-git/dlls/riched20/editor.c:2674] in riched20 (0x0032e4bc)
2 0x7eb54425 CreateTextServices+0x94(pUnkOuter=(nil), pITextHost=0x26d37d8,
ppUnk=0x26d37dc) [/home/austin/wine-git/dlls/riched20/txtsrv.c:410] in riched20
(0x0032e50c)
3 0x10013c03 in atlastrtflib (+0x13c02) (0x026d37dc)
0x1001060a: movl 0x0(%ecx),%eax
but native riched20 doesn't help. Terminal also shows a lot of mshtml stuff,
but native ie7 didn't help either.
--
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=24953
Summary: A generic error occurred in GDI+
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otxando(a)gmail.com
Created an attachment (id=31598)
--> (http://bugs.winehq.org/attachment.cgi?id=31598)
error file
when running google sketchup's layout 3 crash
see attachment of message error
--
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=16164
Summary: Sketchup 7 crashes when you click "Start using Sketchup"
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This is the first bug people run into.
(The next one is bug 14045.)
When you start SketchUp, it puts up a dialog saying
"Welcome to Sketchup". When you click "Start using Sketchup",
it crashes before putting up the main window.
You can work around it by checking "Don't show this again",
and then running the app again, but it would be nice if that
wasn't needed.
Mike Hearn said the cause was mshtml wasn't refcounted
properly, so I checked... and he's right. Hacking DLLCanUnloadNow
in mshtml to always return S_FALSE, like this,
diff --git a/dlls/mshtml/main.c b/dlls/mshtml/main.c
@@ -231,7 +231,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID
riid, LPVOID *ppv)
HRESULT WINAPI DllCanUnloadNow(void)
{
TRACE("() ref=%d\n", module_ref);
- return module_ref ? S_FALSE : S_OK;
+ return S_FALSE; //module_ref ? S_FALSE : S_OK;
gets you past the crash. So presumably it's an mshtml
bug. (In honor of this bug, I created an mshtml category in
bugzilla finally...)
--
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=16166
Summary: Google Sketchup 7 display often corrupt until you click
on it
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://sketchup.google.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Often, Sketchup 7 leaves garbage on the screen
until you click on the main area.
For instance, it always does this when you maximize it;
clicking on the main area brings back the expected display.
--
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=17187
Summary: sketchup 7 display worse in wine 1.1.13 than 1.1.12
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jean-louis.bourdon(a)laposte.net
Created an attachment (id=19078)
--> (http://bugs.winehq.org/attachment.cgi?id=19078)
normal display (fine)
lots of flickering blue,
selection difficult.
--
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=19303
Summary: Sketchup 7 shows toolbars and menus, but work area is
blank
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fester(a)rucls.net
Created an attachment (id=22349)
--> (http://bugs.winehq.org/attachment.cgi?id=22349)
Sketchup started using the command in the Sketchup icon
I am attempting to run Sketchup7 from Wine 1.1.25 under Ubuntu 9.04 (Gnome). I
have installed winetricks, and done the OPEN-GL fix.
Sketchup loaded under Wine, but when running the program, while the toolbars
and menus all display correctly, the work area remains blank (black). The
cursor displays in the work area, but when you draw with it, there aren't any
lines.
I assumed this was a problem which required the use of a new graphics card
until last week when, after downloading lots of updates, Sketchup began to work
the correct way, the display was white with the axis lines showing. I decided I
wanted a different template, so I changed it and re-started Sketchup. After
re-starting, the work area was once again blank (black).
--
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=16187
Summary: Google Sketchup Layout crashes on startup
Product: Wine
Version: 1.1.9
Platform: PC
URL: http://sketchup.google.com
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
"LayOut", which comes with Sketchup Pro, crashes on startup,
just after it puts up the "Tip of the Day".
You have to do "winetricks dotnet20" to even get that far.
Installing gdiplus seems to make things worse; even after
uninstalling it, layout crashes much sooner.
--
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=37596
Bug ID: 37596
Summary: Unimplemented function SHELL32.dll
Product: Wine
Version: 1.7.31
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: roxfoxpox(a)gmail.com
Distribution: ---
Created attachment 50032
--> https://bugs.winehq.org/attachment.cgi?id=50032
Log file of entire execution
Error when using SketchUp 2015
See:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=31190
Error Message just before failure:
wine: Call from 0x7fb76a80ec98 to unimplemented function
SHELL32.dll.SHAssocEnumHandlers, aborting
fixme:dbghelp:elf_search_auxv can't find symbol in module
--
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=34841
Bug #: 34841
Summary: Garmin BaseCamp 4.1.2 fails on startup due to
unimplemented function
msvcr90.dll.__CxxExceptionFilter
Product: Wine
Version: 1.7.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says.
Prerequisite: 'winetricks -q dotnet35'
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Garmin/BaseCamp
...
$ wine ./BaseCamp.exe
...
fixme:wincodecs:PngDecoder_Frame_GetMetadataQueryReader (0x607149c,0x33d3a4):
stub
fixme:wincodecs:PngDecoder_Frame_GetMetadataQueryReader (0x607153c,0x33d3a4):
stub
fixme:wincodecs:PngDecoder_Frame_GetMetadataQueryReader (0x60715dc,0x33d1b0):
stub
wine: Call from 0x7b83a8bf to unimplemented function
msvcr90.dll.__CxxExceptionFilter, aborting
wine: Call from 0x7b83a8bf to unimplemented function
msvcr90.dll.__CxxExceptionFilter, aborting
wine: Call from 0x7b83a8bf to unimplemented function
msvcr90.dll.__CxxExceptionFilter, aborting
wine: Call from 0x7b83a8bf to unimplemented function
msvcr90.dll.__CxxExceptionFilter, aborting
fixme:dbghelp:elf_search_auxv can't find symbol in module
...
--- snip ---
$ sha1sum BaseCamp_412.exe
f48b8813dc7f92f1d4fe3a162c3428ed7095d529 BaseCamp_412.exe
$ du -sh BaseCamp_412.exe
51M BaseCamp_412.exe
$ wine --version
wine-1.7.5-251-gbcf4ded
Regards
Regards
--
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=31198
Bug #: 31198
Summary: Google Sketchup Layout crashes during startup
Product: Wine
Version: 1.5.8
Platform: x86
URL: http://dl.google.com/sketchup/GoogleSketchUpProWEN.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 31193
Classification: Unclassified
I get a crash with builtin gdiplus. Terminal shows:
fixme:gdiplus:GdipGetFamilyName No support for handling of multiple languages!
fixme:gdiplus:GdipCreateBitmapFromGraphics hacked stub
..
image.c:1975: move_bitmap: Assertion `dst->image.stream == ((void *)0)' failed.
winetricks gdiplus works around it.
--
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=26166
Summary: sketchup
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastien.ramage(a)gmail.com
Google Sketchup 8.0.4811
Test on Ubuntu 10.10 with Wine 1.3.14
The selection box tool is not working. When trying to clic and drag, no box
appears AND the display freeze. The application seems working but the display
is not refresh anymore.
So the application can't be used
--
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=35395
Bug ID: 35395
Summary: Sketchup8.2 draw pane freezes after save
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeremy(a)spurway.gotadsl.co.uk
Classification: Unclassified
Created attachment 47222
--> http://bugs.winehq.org/attachment.cgi?id=47222
console output during 'wine "C:\Program Files\Google\SketchUp8\SketchUp.exe"'
using wine 1.7.2 under opensuse 13.1 x86;
After recent upgrade to OS 13.1, which included wine upgrade, Google Sketchup
8.2 now freezes up after saving a file; menus and controls may still be
selected, but the active model can not be interacted with.
Have attempted reinstalling Sketchup in an empty wine prefix, following
instructions here: https://sites.google.com/site/sketchupsage/problems/linux
but with 'winetricks vcrun2005sp1'
--
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=27201
Summary: Google Sketchup version 8 Crash ChoosePixelFormat
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gp1(a)sredmond.com
Created an attachment (id=34759)
--> (http://bugs.winehq.org/attachment.cgi?id=34759)
Terminal Output after Sketchup 8 Crashes
Operating system Puppy Linux 4.3.2
Wine version 1.3.17
Google Sketchup Version 8
IBM Thinkpad T43 Pent 4
Radeon X300
MESA DRI R300
1.3 MESA 6.5.2
Google Sketchup crashes after start up with ChoosePixelFormat error message.
Clicking through that produces a second message with block characters clicking
through that ends program.
I tried the the usual Sketchup Display registry key change of 0 to 1. This
changed the behavior to eliminate the two error messages and the program
crashes silently. The terminal output in this case is more informative and is
attached.
Returning the registry key to 0 brings back the two error messages on start up.
--
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=16699
Summary: OpenGL anti-aliasing capabilities of nVidia gpu not
exposed to Google Sketchup 7
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ethana2(a)gmail.com
I have an nVidia GeForce 8400M GS, WINE 1.1.11 installed from an official .deb,
and Google Sketchup doesn't see the anti-aliasing capabilities of the gpu.
--
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=25488
Summary: wine 1.3.8 fails to successfully start sketchup 8
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dennisgdaniels(a)gmail.com
Here's the vid
http://www.youtube.com/watch?v=7W7UA2mLJD4
--
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=14045
Summary: SketchUp was unable to initialize OpenGL
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brett.jr.alton(a)gmail.com
After installing Google SketchUp 6.4 and trying to run Google SketchUp once
(and it crashing) I tried to run GoogleSketchUp and second and third and fourth
time and new error came up on those last three runs:
"SketchUp was unable to initialize OpenGL!
Please make sure you have installed the correct
drivers for your graphics card.
Error: ChoosePixelFormat failed"
I'm attaching a screenshot of the dialogue and the CLI log.
Log since its so small:
wine /home/brett/.wine/drive_c/Program\ Files/Google/Google\ SketchUp\
6/SketchUp.exe
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT
(30000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_RETRIES: STUB
--
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=27029
Summary: Nvidia hdr sample crashes on
msvcp71.dll.??0?$basic_string@GU?$char_traits@G@std@@V
?$allocator@G@2@@std@@QAE@XZ
Product: Wine
Version: 1.3.19
Platform: x86-64
URL: http://developer.download.nvidia.com/SDK/9.5/Samples/D
EMOS/Direct3D9/HDR_FP16x2.zip
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
According to mscodescan, may need a few more:
msvcp71:??$?9GU?$char_traits@G@std@@V?$allocator@G@1@@std@@YA_NABV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@0@PBG@Z
msvcp71:??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@ABV01@@Z
msvcp71:??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@PBG@Z
msvcp71:??0?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ
msvcp71:??1?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAE@XZ
msvcp71:??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z
msvcp71:??4?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z
msvcp71:??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@ABV01@@Z
msvcp71:??Y?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QAEAAV01@PBG@Z
msvcp71:?_Nomemory@std@@YAXXZ
msvcp71:?find_last_of@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBEIPBGI@Z
msvcp71:?substr@?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@std@@QBE?AV12@II@Z
--
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=28555
Bug #: 28555
Summary: Sketchup 8 does not work when new linux updates were
loaded.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wphred74(a)hotmail.com
Classification: Unclassified
Created attachment 36672
--> http://bugs.winehq.org/attachment.cgi?id=36672
messages that popped up in the xterm when I tried to start Sketchup from the
console.
I have been using Sketchup 8 for some time with only one issue (print gives
black screen). I has some updates installed and now Sketchup doesn't work at
all. When I try to start it I get a message:
The program Sketchup.exe has encountered a serious problem and needs to close.
We are sorry for the inconvenience.
I am attaching the logs and back traces as a single attachment.
--
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=17533
Summary: In SketchUp 7 Component Options displays blank window
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cyberusfaustus(a)gmail.com
When attempting to open the Component Options Dialog on a Dynamic Component a
Window pops up but it contains no content (no dialog form to allow you to alter
the Component's Options). This happens whether you right click on the component
and choose Dynamic Component -> Component Options from the menu or if you have
the Dynamic Component Toolbar up and click on the Component Attributes tool.
Obviously this is quite a problem as one of the major additions to SketchUp 7
was Dynamic Component support. Not being able to access the Component Options
dialog makes it impossible to create useful Dynamic Components.
--
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=29404
Bug #: 29404
Summary: SketchUp 8 crashes under OpenSuse 12.1
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremy(a)spurway.gotadsl.co.uk
Classification: Unclassified
Created attachment 38057
--> http://bugs.winehq.org/attachment.cgi?id=38057
winedebug log file, bugsplat dump and SU log files
on OS upgrade from OpenSUSE 11.4 to 12.1, Sketchup stopped working.
--
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=29743
Bug #: 29743
Summary: SketchUp 8 doesn't start after update - can't load
opengl32.dll
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dag.rende(a)gmail.com
Classification: Unclassified
I have been using Google SketchUp 8 with wine in Ubuntu for long time. It
worked perfect with my new Lenovo ThinkPad T420s in ubuntu 11.10 64 bit with
integrated intel Sandy Bridge graphics, until about a week ago. Then I got a
kernel update and opengl stoped working. I checked and found out that I had to
remove an nvidia driver I had installed. OpenGL started working then, but
SketchUp stpped working.
At start it says:
err:module:load_builtin_dll failed to load .so lib for builtin L"OPENGL32.dll":
libGL.so.1: cannot open shared object file: No such file or directory
err:module:import_dll Loading library OPENGL32.dll (which is needed by
L"C:\\Program Files\\Google\\Google SketchUp 8\\SketchUp.exe") failed (error
c000007a).
err:module:load_builtin_dll failed to load .so lib for builtin L"GLU32.dll":
libGL.so.1: cannot open shared object file: No such file or directory
err:module:import_dll Loading library GLU32.dll (which is needed by
L"C:\\Program Files\\Google\\Google SketchUp 8\\SketchUp.exe") failed (error
c000007a).
The funny thing is that if I apt-get remove nvidia-current and logout/login, I
have a working unity 3d (opengl). If I now apt-get install nvidia-current, I
can run SketchUp without problem. But If I logout/login OpenGL doesn't work.
Is there any trick I can do to get just SketchUp using the so files from the
nvidia driver, without disturbing the other parts of my system?
Regards,
Dag
--
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=27606
Summary: SketchUp 8 garbled working area
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agebosma(a)gmail.com
Created an attachment (id=35286)
--> (http://bugs.winehq.org/attachment.cgi?id=35286)
Example of garbled working area
Installing SketchUp 8 works fine but after launch the complete working area is
garbled (see attachment). It will show distorted images of previously ran Wine
applications. Any attempt to draw something will not show up in any way.
SketchUp 8.0.4811
Wine 1.3.23
Ubuntu 11.04 (x86)
ATI HD6950 (proprietary driver 11.5)
--
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=24285
Summary: SketchUp shows a blank page in integrated iexplore
window
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aerilius(a)googlemail.com
Created an attachment (id=30591)
--> (http://bugs.winehq.org/attachment.cgi?id=30591)
debug log from running SketchUp 8 and opening file -> share model
The SketchUp features "share model", "get models", "Add Location" use an
integrated Internet Explorer window, which does not render the websites, but
shows a blank white page. This worked in SketchUp 6.x and does not work anymore
since 7.0.
component probably shdocvw or wininet (?)
command for debug log:
WINEDEBUG=+heap+relay wine "C:\Programme\Google\Google Sketchup 8\Sketchup.exe"
&> ~/Desktop/winedebug_sketchup_heap+relay.txt
--
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=27906
Summary: Google Sketchup 8 can't initialize OpenGL
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpxsat(a)gmail.com
After selecting the layout, google sketchup sends "Google Sketchup 8 can't
initialize OpenGL"
Trying to re-start the app and it crashes instead of anything.
Any report i can offer PLEASE just ask.
--
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.