https://bugs.winehq.org/show_bug.cgi?id=37419
Bug ID: 37419
Summary: Zbrush takes 20 minutes to load (better bug report)
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fleeky(a)7rnx.net
Distribution: ---
Created attachment 49766
--> https://bugs.winehq.org/attachment.cgi?id=49766
log file for zbrush.exe
I made a previous bug report, but did so incorrectly this is my second attempt.
Installed wine 1.7.28 along with all recommended packages. Ran wine with
Zbrush.exe without any extra dlls ran the latest development version available
from apt-get which is 1.7.28. also am not using any third party wrappers.
Zbrush takes 20 minutes or more to start up, this is not the typical behaviour
on windows ( starts up immediately )
Thanks and hopefully this bug report meets your specifications.
--
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=30129
Bug #: 30129
Summary: Screen in 3d Studio Max v9 refresh badly
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deveee(a)gmail.com
Classification: Unclassified
Problem is with refresh screen in 3d studio max v9.
When I click on object - on screen I don't see any changes. When I click on
second object - I see this first click, not second. All is with one-click
delay.
Problem is only in wine 1.4-*, versions 1.37 and older works fine.
--
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=30893
Bug #: 30893
Summary: No pressure in gimp 2.8 windows version with evdev
tablet
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wintab32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: viktoria.s(a)freemail.hu
Classification: Unclassified
Created attachment 40482
--> http://bugs.winehq.org/attachment.cgi?id=40482
Output of gimp 2.8 windows version with WINEDEBUG=+wintab32
I got an Genius Mousepen i608X tablet. It works only with the evdev driver. (I
am using xubuntu 64 bit with a patched kernel (which includes the driver of
this tablet on a VM.)) I have got no pressure in gimp 2.8 windows version.
(Gimp 2.8 linux version works perfectly on the same operating system.)
In the attachment log you can see that it reports as a tablet:
trace:wintab32:X11DRV_LoadTabletInfo Device 10: [id 12|name Genius MousePen
i608X|type TABLET|num_classes 2|use 4]
but at the end wine writes:
warn:wintab32:X11DRV_LoadTabletInfo Did not find a valid stylus, unable to
determine system context parameters. Wintab is disabled.
Which is wrong. I attached the output of xinput list --long (xinput.txt), so
you can see clearly which device reports what. (I guess I should add that
attachment separately because the bug can contain only one attachment.)
One thing to note: this device comes with a mouse too. And the kernel gives
identical name to both devices. (That is the reason why you can fin 2 mousepens
in the logs. The one with the id=12 is the pen, because this one is reporting
the pressure, the other one is the mouse.)
In my opinion if you modify the wine source/dlls/winex11.drv/wintab.c according
to this:
in line 622 you write this:
if (! is_tablet_cursor(target->name, device_type) && ! devices[loop].type ==
XInternAtom(data->display, XI_TABLET, False))
in line 641 you write this:
if (is_stylus(target->name, device_type) || devices[loop].type ==
XInternAtom(data->display, XI_TABLET, False))
my tablet will be recognised.
Unfortunately I was not able to test if this is going to work or not, because I
was not able to build wine properly so far.
(Gimp 2.8 windows version was always crashed with the one I have built, but the
tablet was recognised as tablet though.)
You can find a list of tablets which are using the evdev driver here:
http://sourceforge.net/apps/mediawiki/digimend/index.php?title=Tablet_suppo…
If you have any questions 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.
http://bugs.winehq.org/show_bug.cgi?id=28158
Summary: [integration] winemenubuilder forces lower case when
searching fd.o mime database
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)rodrigosilva.com
When winemenubuilder searches for freedesktop.org xdg mime database, and build
its list native extensions and mime types, it always searches and tries to
match a lower case string. Windows registry might be case-insensitive, but
native mime database is not, and (unfortunately) some extensions (globs) and
mime types do have upper case chars. Some examples:
audio/AMR:*.amr
audio/AMR-WB:*.awb
text/x-c++src:*.C
application/x-compress:*.Z
application/x-blender:*.BLEND
text/x-iMelody:*.ime
text/x-iMelody:*.imy
text/css:*.CSSL
application/x-gnome-saved-search:*.savedSearch
I am just listing "regular" globs that could be directly mapped to windows
extensions (as opposed to things like README*, Makefile, *.tar.Z, etc)
Take Z for an example of the problem:
- Windows app register "HKCR\.z". Winemenubuilder searches for *.z, can't
match, so it creates the native application/x-wine-extension-z mime/glob.
Unfortunate but unavoidable.
- Windows app register "HKCR\.Z" instead. Winemenubuilder *still* searches for
*.z, because it forces lowercase in its search! There is no match, and it
creates the application/x-wine-extension-z. With *.z glob! And that is a bug.
Currently, there is no way to prevent winemenubuilder to create duplicate (and
buggy) mime extensions when native glob and/or extension contains upper (or
mixed) case chars.
My suggestion for fix: to really mimic Registry case-insensitivity behavior,
winemenubuilder should use case-insensitive search. For example, comparing
lower(win ext)=lower(fd.o glob). And if a match is not found, create the native
glob *exactly* as registered by windows app.
--
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=32317
Bug #: 32317
Summary: 3dsmax 9 32bit - Registration window
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keith(a)ukscifi.net
Classification: Unclassified
Created attachment 42657
--> http://bugs.winehq.org/attachment.cgi?id=42657
3dsmax register window bug.
I am unable to register the product from the trial version of 3dsmax9 32bit, I
can enter the serial code but the Request code is boxes are missing, Next
button is frozen and you can't seem to quit out.
I have to force kill the window to continue.
Other tests have lead to the register tool not finding the Internet?
--
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=22714
Summary: specviewperf10 test 3dsmax-04 doesn't show clouds
wrapping around scene properly
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://www.spec.org/gwpg/gpc.static/vp10info.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Several minutes into test 3dsmax-04, in the domed structure test,
it shows the domed structure with clouds on the world cylinder,
but on Wine the clouds don't wrap around the whole world.
--
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=33380
Bug #: 33380
Summary: Autodesk 3ds Max 2009 unable to activate
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
Classification: Unclassified
Created attachment 44172
--> http://bugs.winehq.org/attachment.cgi?id=44172
Console output without a debug enviorment variable set
Trying to activate 3ds max 2009 does not work as nothing you do will allow you
to proceed past the first page. The input activation code box is missing and
trying to get an activation code does not work.
Clicking on the next button seems to do nothing, although the close and back
buttons work.
Sidenote: I did see http://bugs.winehq.org/show_bug.cgi?id=32317 this bug,
however that seems to be an issue with utf conversions and none of the messages
I get are in the attached log file for that bug.
--
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=23714
Summary: Homeworld : Can't change resolution
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
Created an attachment (id=29711)
--> (http://bugs.winehq.org/attachment.cgi?id=29711)
log +ddraw
Homeworld crashes when we attempt to change the resolution in the game's
options. This is a long lasting problem, this bug report makes mention of it
but it was not it's focus : http://bugs.winehq.org/show_bug.cgi?id=11986
I have attached a +ddraw log. Let me know if you need more.
Gentoo Linux X64
Wine 1.2
nvidia-drivers 256.35
--
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=13859
Summary: Star Wars Race cursor duplicate
Product: Wine
Version: 1.0-rc4
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iugamarian(a)yahoo.com
When entering Star Wars Racer in full screen, all is well except that there are
two mouse cursors on screen that follow the same movement, at different speeds:
-the game drawn cursor, witch is the selector, and is faster
-the classic drawn cursor, witch is slower and disturbs the view
When the race starts the cursors are not an issue, as they dissapear, by game
design.
--
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=32778
Bug #: 32778
Summary: Cannot run windows application when connecting to
unbuntu desktop via RDP
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: meghan(a)islandretreat.co.uk
Classification: Unclassified
I am running an application called YNAB (youneedabudget.com)
This application works perfectly under wine 1.5.
However, when I remote desktop from a windows 7 machine into my ubuntu 12.04
machine the wine application no longer runs and I receive an error :
the programe ynab4.exe has encountered a serious problem and needs to close. We
are sorry for the inconvenience.
The bug details are attached.
I note that other applications do run (notepad.exe for example).
--
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=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=36891
Bug ID: 36891
Summary: Polygon() draws different edges than in Windows
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: sashoalm(a)gmail.com
The Polygon() function does not draw in the same way in Wine as in Windows.
While it looks very similar visually, there are some pixels at the edges that
are different. Since the goal of Wine is to replicate Windows behavior
perfectly, this deviation would be a bug.
The difference is difficult to spot, but it can be noticed if you rapidly
switch between the images, or if you compare them pixel by pixel with a
program.
I have made a test program that draws an inclined rectangle using XFORM and
Polygon() into a memory DC, which I then save to a bitmap. The resulting
bitmaps when ran under Windows and Wine are slightly different.
Image under Windows:
https://drive.google.com/file/d/0B9PGUhmmnsm1Q00waFJLSGtEeEU/edit?usp=shari…
Image under Wine:
https://drive.google.com/file/d/0B9PGUhmmnsm1X1ZVR1UtbDBPMHc/edit?usp=shari…
This is the relevant code I used to draw the image. Note that it's the XFORM
matrix that makes the rectangle be inclined (it would be parallel to the
coordinate system without a world-transform):
XFORM xform;
memset(&xform, 0, sizeof(xform));
double angle = 15*(PI/180); // 15 degrees incline.
xform.eM11 = cos(angle);
xform.eM12 = sin(angle);
xform.eM21 = -sin(angle);
xform.eM22 = cos(angle);
xform.eDx = 0;
xform.eDy = 0;
SetGraphicsMode(hdc, GM_ADVANCED);
SetWorldTransform(hdc, &xform);
HBRUSH hbr = CreateHatchBrush(HS_BDIAGONAL, RGB(255, 0, 0));
SelectObject(hdc, hbr);
POINT p[4]={100,0,200,0,200,100,100,100};
Polygon(hdc, p, 4);
I can provide the full test project if requested.
Note: I have tested on both Windows 7 and Windows XP, and they produce exactly
the same images, only Wine produces a different image.
--
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=18987
Summary: Prototype: Fails to start
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21871)
--> (http://bugs.winehq.org/attachment.cgi?id=21871)
Wine-1.1.23
I'm using Wine 1.1.23 (compiled from source using gcc version 4.4.0 20090506
(Red Hat 4.4.0-4) ) on Fedora 11 i386.
The problem is that game crashes in the begging. It shows something about
registered trademarks and then probably intro movie should start (i can skip or
get crash) and then game makes first save which is failed because crash occurs.
Additional info:
ORM=fbo (backbuffer also causes crash)
GFX: NVIDIA 9xxx (drivers 185.18.14)
during crash: memory 160.1MB and VirtualMemory 2.7GB
I did "winetricks directx9 xact vcrun2005sp1" because application showed error
about Xaudio2 and msvcp80
--
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=38022
Bug ID: 38022
Summary: CertOpenSystemStore with "CA" failed
Product: Wine
Version: 1.7.35
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: fracting(a)gmail.com
Distribution: ---
Steps to reproduce:
$ wget https://bootstrap.pypa.io/ez_setup.py
$ wget http://www.orbitals.com/programs/py.exe
$ wine py.exe ez_setup.py
Expect result:
The python script should start to download files.
Actual result:
Download failed.
The reason is CertOpenSystemStore with "CA" failed.
See also:
https://github.com/python/cpython/blob/6e77979a5dc924c3b5a43aa617559c5f10b6…
--
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=26865
Summary: WinRAR cannot drag-drop extract files
Product: Wine
Version: 1.3.18
Platform: x86-64
URL: http://rarlabs.com/rar/wrar393.exe
OS/Version: Linux
Status: NEW
Keywords: download, integration
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Dragging files FROM Nautilus into WinRAR works fine.
Dragging files TO Nautilus from WinRAR doesn't do anything, it should extract
the relevant files.
Dragging from WinRAR to Winefile has no effect either, but I'm not sure if it
should.
Nothing of relevance in the console.
--
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=25709
Summary: Some apps doesn't recieve focus in Virtual Desktop
Mode
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor-hkr(a)mail.ru
Configure WIne for using Virtual Desktop.
Start(for example) Total Commander(i used 7.55a)
Start (you can use Total Commander for this) regedit(or wordpad or notepad or
winecfg...). TotalCmd loses focus but regedit doesn't recieve it(its caption
still has gray background).
If you'll click on TotalCmd caption or minimize it(and it will recieve focus)
all becames ok(regedit can recieve focus after clicking)
--
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=34694
Bug #: 34694
Summary: Adobe reader 11.0.4 empty search results in PDF
portfolios
Product: Wine
Version: 1.7.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick.payne(a)internode.on.net
Classification: Unclassified
Created attachment 46244
--> http://bugs.winehq.org/attachment.cgi?id=46244
Expanded search results under Wine
Reader 11.0.4 with flash support for viewing PDF portfolios installed on Linux
Mint 15 amd64.
Download of Adobe Reader XI 11.0.4:
ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.04/en_US/AdbeRdr11004_en…
Download of Flash player/plugins:
http://www.adobe.com/support/flashplayer/downloads.html#fp11
Some example portfolio for testing:
http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/feature-detai…
For installation you need to work around bug 12501 -> 'winetricks mspatcha'
After installation you need to work around bug 25834 (disable protected mode),
bug 16144 (work around with 'winetricks atmlib'), and richedit component bug
with 'winetricks riched20'.
You can now search a portfolio and get back a search window showing hits in the
various PDF files in the portfolio, but the results are unusable because the
expanded results window doesn't contain any text for the search hits and they
can't be selected to jump to the relevant location in the PDF file where the
hit occurred. See the two uploaded screen dumps, showing the expanded results
window from performing the same search on a PDF portfolio using firstly Reader
11.0.4 under wine and then Reader 11.0.4 running on winxp.
At the point where I expand the search results (and find they're all empty), I
see the following on the console output:
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),1,3,(nil),0,(nil)) - stub!
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:qmgr:BITS_IBackgroundCopyJob_GetPriority Not implemented
fixme:qmgr:BITS_IBackgroundCopyJob_SetPriority (0x59750,0x00000001) stub
fixme:qmgr:BITS_IBackgroundCopyJob_GetPriority Not implemented
fixme:qmgr:BITS_IBackgroundCopyJob_AddFile Check for valid filenames and
supported protocols
fixme:wininet:InternetLockRequestFile STUB
fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented
--
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=15932
Summary: Adobe Photoshop 7, CS3 can't load images from URLs
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In
http://www.pclinuxos.com/index.php?option=com_smf&Itemid=26&topic=51000.msg…
a user complained
"I am having a problem with PhotoShop7 in PClinux
in windows I can just past in the URL to open files from our servers exsample:
http://www.site.com/file.jpg
but when trying to do this in PClinux I get the error files can not contain
/:<>|"
I verified this with both Photoshop 7 and CS3.
On CS3, the error occurs with the OS dialog. (There's a button
to select OS or Adobe dialog.)
(And on wine, the Adobe dialog just silently doesn't respond to those URLs,
doesn't even highlight the Open button.)
I haven't verified this on Windows, but two people in that thread
confirmed it, so it's probably real.
--
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=12007
Summary: Photoshop 7.0 Dragging Layers between Images dont work
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas(a)holzeisen.de
This bug was tested on Wine 0.9.57 running under Ubuntu Linux:
When dragging a layer from the layer list into another open image window it
should be duplicated for this image. Dragging and holding the layer over the
target-image results in drawing a black border, therefore the image gets
recognized correctly, but dropping gets ignored.
These errors appears on console when dragging layers:
fixme:win:EnumDisplayDevicesW ((null),0,0x34ced8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x34ced8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x34cee0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x34cee0,0x00000000), 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=32707
Bug #: 32707
Summary: Shockwave 11 Installer crash when installing
Product: Wine
Version: 1.5.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fantasticfears(a)gmail.com
Classification: Unclassified
Created attachment 43155
--> http://bugs.winehq.org/attachment.cgi?id=43155
shockwave_installer_full
When installer runs C:\windows\system32\Adobe\Director\SwDnld.exe /regserver,
it crash.
--
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=13088
Summary: Adobe Acrobat Pro 7 / Acrobat Reader 7 -- Comments don't
work
Product: Wine
Version: 1.0-rc1
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Comments cannot be created, modified, viewed, or saved in Acrobat Pro 7 (Tryout
Version).
this bug differs from bug 11835 in the following way:
in Acrobat Pro 6, you can at least see the comment's text by hovering over the
"sticky note"; here that is not possible.
Bug exists in both Acrobat Pro 7 and Acrobat Reader 7.
--
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=10814
Summary: Photoshop 7 main tool window disappears
Product: Wine
Version: 0.9.51.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
In
http://appdb.winehq.org/objectManager.php?sClass=version&iId=1336 ,
Peter Cartright said:
2. Toolbox windows frequently disappear when minimizing main window, they can
be brought back to resetting palette locations.
- Main tool window on the left can disappear and it's not recoverable with the
above method. Definitely a show-stopper.
--
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=19343
Summary: Adobe Photoshop CS2: Edit controls have wrong names
(appinstall)
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.adobe.com/pub/adobe/photoshop/win/cs2/
Photoshop_CS2.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 18934
On windows, the ClassNN's for the Username/company info for Photoshop's
installer are RichEdit20W1/RichEdit20W2. On wine, they're Edit1/Edit2.
May be related to bug 18934, but not an ordering issue, since the names
themselves are wrong. I tried using winetricks riched20, but it didn't help.
--
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.