https://bugs.winehq.org/show_bug.cgi?id=44806
Bug ID: 44806
Summary: Photoshop CS6: active preference category background
color is too dark
Product: Wine
Version: 3.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Distribution: ---
Using Adobe Photoshop CS6 in a 32-bit prefix, winetricks msxml3, atmlib,
gdiplus_winxp needed to fix installation and some crashes.
The preferences window uses a very dark blue to show the current category,
making it quite hard to read.
--
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=49601
Bug ID: 49601
Summary: Execution failure for Acrobat Reader download manager
Product: Wine
Version: 5.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: Markus.Elfring(a)web.de
Distribution: ---
I have tried the software “Wine 5.13-1186.1” out again because I would like to
check the collaboration of another well-known PDF tool here.
Thus I chose to store the software “Adobe Acrobat Reader DC 2020.009.20063
German for Windows” in a local directory.
I got the following log during my test attempt.
elfring@Sonne:~> wine /home/elfring/geladen/readerdc_de_a_install.exe
019c:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F7D0, 0031F7E0
0031F7D4
019c:fixme:nls:get_dummy_preferred_ui_language (0x38 0031F7D0 0031F7E0
0031F7D4) returning a dummy value (current locale)
019c:fixme:process:RegisterApplicationRestart (L"
/RestartByRestartManager:D0F8BCD2-B415-4fec-832F-9D832D0E7581",0)
019c:fixme:ver:GetCurrentPackageId (0031F670 00000000): stub
019c:fixme:shell:InitNetworkAddressControl stub
019c:fixme:ieframe:PersistStreamInit_InitNew (00E2DE98)
019c:fixme:ieframe:navigate_url Unsupported args (Flags 0031F078 {VT_I4: 0};
TargetFrameName 0031F068 {VT_BSTR: (null)})
019c:fixme:dwmapi:DwmIsCompositionEnabled 06BBDD14
01ac:fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x333f537,
context 0x7068d78, init_notify 0, handle 0x78afcd8): stub
019c:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
019c:fixme:imm:ImmGetDescriptionW (04070407, 00000000, 0): semi stub
019c:fixme:imm:ImmGetDescriptionW (04070407, 09E455B0, 9): semi stub
019c:fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(02DA21D8)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0031C420)
…
412[7011988]: TSF: 0x9e45528
TSFStaticSink::EnsureInitActiveLanguageProfile(), FAILED to get active TIP
keyboard, hr=0x80004001
019c:fixme:mshtml:ScriptBSC_stop_binding binding failed 80070057
019c:fixme:mshtml:ActiveScriptSite_OnScriptError (00E40AB8)->(02ED3338)
…
How are the chances to get the application “Adobe Download Manager” working for
the desired software installation?
--
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=44165
Bug ID: 44165
Summary: Adobe Connect fails to open meeting room
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Distribution: ---
Created attachment 59926
--> https://bugs.winehq.org/attachment.cgi?id=59926
Terminal output
With standalone installer from
https://helpx.adobe.com/adobe-connect/connect-downloads-updates.html
$ sha1sum ConnectAppSetup.exe
51e2d42c72293012c28d65b7a3456ec5d5a3e797 ConnectAppSetup.exe
tried on a fresh wineprefix, no overrides, win32.
The app installs, can be launched, but when trying to select a room nothing
happens.
There are lots of repeated messages on the console:
fixme:mshtml:OleInPlaceActiveObject_TranslateAccelerator (0x1b1b10)->(0x33fd64)
when filtering that out, the only one that stands out is
err:mshtml:ElementSelector_querySelectorAll QuerySelectorAll failed: 8053000c
Given that AFAICT this is an embedded web app it is a reasonable suspect. I'll
also attach the console log wit the OleInPlace stuff filtered out.
--
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=49965
Bug ID: 49965
Summary: Wine crash upon clicking a password form
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: javi(a)legido.com
Distribution: ---
Created attachment 68360
--> https://bugs.winehq.org/attachment.cgi?id=68360
Backtrace
First of all many thanks to all the people involved in this project for their
time.
A) Steps to reproduce
1.1. Create below Dockerfile:
```
vim Dockerfile
```
With below content:
```
FROM debian:testing
RUN dpkg --add-architecture i386 && apt update
RUN apt install -y \
wine \
wine32 \
wine64 \
libwine \
libwine:i386 \
fonts-wine \
wget
RUN apt-get install -y \
cabextract \
unzip \
p7zip \
wget \
zenity \
kdialog \
winbind
RUN wget
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetric…
RUN chmod +x winetricks
RUN mv winetricks /usr/local/bin
```
1.2. Create a docker container
```
docker run \
--name wine \
--net=host \
-e DISPLAY \
-v $HOME/.Xauthority:/root/.Xauthority \
-d localhost/wine \
/bin/sh -c "while true; do echo hello world; sleep 1; done"
docker exec -ti wine bash
```
1.3. Install dotnet in 32 bits architecture
```
env WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks dotnet461
```
Here I tried with other versions, looks like there's no difference
1.4. Restart docker container (Window$ philosophy):
```
exit
docker restart wine; docker exec -ti wine bash
```
1.5. Install Adobe Digital Editions 4.5
```
cd
env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\
Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe
```
I also tried with version 4.0, but same result
1.6. Try to register
1.6.1. Click 'Help', then 'Authorize computer'
1.6.2. Click the password field in the form
B) Expected behaviour
Being able to type the password
C) Found behaviour
The application crashes and exited. Sometimes I can't even relaunch it with
below command:
```
cd
env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\
Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe
```
D) Error found
Below error appears in the docker terminal:
```
0009:err:eventlog:ReportEventW L"Application: DigitalEditions.exe\nFramework
Version: v4.0.30319\nDescription: The application requested process termination
through System.Environment.FailFast(string message).\nMessage: Unrecoverable
system error.\nStack:\n at System.Environment.FailFast(System.String)\n at
MS.Intern"...
```
Attached a Windows trace that one time I was able to get.
Thanks.
Javier
--
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=45309
Bug ID: 45309
Summary: Program runs fine in Wine, but dies in Wine-dbg
Product: Wine
Version: 3.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: dcoffin(a)cybercom.net
Distribution: ---
Created attachment 61583
--> https://bugs.winehq.org/attachment.cgi?id=61583
winedbg trace, only showing the first two exceptions. In wine, only "fixme"
messages appear, and the program runs perfectly.
I have a program that runs flawlessly in Wine, including the generation of an
output file whose correctness can be independently verified.
However, when I run the same program in Wine-dbg, it generates dozens of
floating point exceptions: stack error, inexact result, and sometimes overflow
and divide by zero. If I "continue" through all these exceptions, the program
opens a window saying that the program "has encountered a serious problem and
needs to close", or "There was an unknown error", and no output file is
generated.
Also notice that the "Thread ID=0034 renamed using MS VC6 extension" messages
only appear with winedbg, not wine.
The program being run is Adobe DNG Converter 10.3, and I deleted my .wine
directory before installing it. I tried converting various raw photos and all
exhibited this behavior.
--
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=34665
Bug #: 34665
Summary: Adobe reader 11.0.4 crashes on PDF portfolio search
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 46208
--> http://bugs.winehq.org/attachment.cgi?id=46208
Backtrace output from Adobe Reader crash.
Reader 11.0.4 with flash support for viewing PDF portfolios installed on Linux
Mint 15 amd64. I can open a fully indexed PDF portfolio, and I can perform a
search and get back the search window with the results for the search across
the PDF files in the portfolio. However, as soon as I try to expand the results
for a file to see the individual search hits, I get a dialog with "Unhandled
exception, page fault...". See attached backtrace.
Same problem happens with older versions of Wine and older versions of Reader.
Can't use the current native Linux version of Adobe Reader for viewing PDF
portfolios because Adobe dropped the flash support needed to view portfolios
correctly quite a number of versions back (I think Reader 9.3.4 was the last
version with this support).
--
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=50400
Bug ID: 50400
Summary: Adobe Audition 2020 13.0.12 installer doesn't work -
0024:fixme:msctf:InputProcessorProfileMgr_GetActivePro
file
(03407CD0)->({34745c63-b2f0-4784-8b67-5e12c8701a31}
0031F274)
Product: Wine
Version: 6.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: consolelogger(a)rhyta.com
Distribution: ---
Created attachment 69022
--> https://bugs.winehq.org/attachment.cgi?id=69022
wine log
The Adobe Audtion 2020 current installer doesn't seem to work and displays just
a white window.
Set Windows version to 10 and installed wine-gecko-2.47.2-x86.msi and
wine-gecko-2.47.2-x86_64.msi.
Log attached
--
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=47529
Bug ID: 47529
Summary: Adobe Premiere Pro CC 2018 doesn't start probably due
to semi-stubs in msvcp
Product: Wine
Version: 4.12.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: julius.schwartzenberg(a)gmail.com
Distribution: ---
Created attachment 64920
--> https://bugs.winehq.org/attachment.cgi?id=64920
output when trying to run
See the attachment for the output. The issue can be worked around using:
winetricks vcrun2017
(And setting the Windows version to Windows 7.)
--
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=42981
Bug ID: 42981
Summary: Photoshop CS6 - pressing down when a menu is open
switches to the next menu
Product: Wine
Version: 2.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Distribution: ---
Created attachment 58115
--> https://bugs.winehq.org/attachment.cgi?id=58115
video clip of the bug
When using the keyboard to navigate menus, the down arrow briefly navigates to
the next menu item and then the next menu ( on the right ) is selected.
In the attached video I pressed Alt+F and then the down arrow.
Tested using wine 2.7, 32-bit prefix, and the following winetricks:
- msxml3 ( for installation )
- atmlib
- gdiplus_winxp
--
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=38231
Bug ID: 38231
Summary: Adobe Lightroom 4.4 and 5.7 - Unable to display all
images in library mode
Product: Wine
Version: 1.7.38
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: roland65(a)free.fr
Distribution: ---
Adobe Lightroom 4.4 (LR) works well with wine 1.7.38 in Windows 7 mode and the
usual 'winetricks gdiplus'. LR 5.7 works well too, using the CreateThreadPool
patch.
Anyway there are important issues in library mode:
- in LR 4.4 and 5.7, the film strip only displays a maximum of 455 images
- in LR 5.7 only the grid only displays a maximum of 655 images
--
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=35500
Bug ID: 35500
Summary: Adobe Lightroom 4.4 - navigator panel has incorrect
border
Product: Wine
Version: 1.7.11
Hardware: x86-64
URL: http://www.adobe.com/support/downloads/detail.jsp?ftpI
D=5567
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Classification: Unclassified
The navigator panel has an asymmetric, thin white border, which does not look
at all like the border when running under windows.
--
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=35497
Bug ID: 35497
Summary: Adobe Lightroom 4.4 - folder icons disappear on hover
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Classification: Unclassified
When selecting an import source, the folder icons disappear on hover. I get the
following messages on the console when that happens:
fixme:wincodecs:PngDecoder_Block_GetCount 0xd62d678,0x33f668: stub
--
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=35517
Bug ID: 35517
Summary: Adobe Lightroom 4.4 - map key is drawn on top of other
windows
Product: Wine
Version: 1.7.11
Hardware: x86-64
URL: http://www.adobe.com/support/downloads/detail.jsp?ftpI
D=5567
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Classification: Unclassified
Lightroom 4.4. contains a map module, which includes a 'Map key' section which
is drawn as a black area. If I drag another window ( e.g. Firefox ) on top of
Lightroom, the 'Map key' section is drawn on top of the Firefox window.
--
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=46415
Bug ID: 46415
Summary: Adobe Lightroom 6.14+: partially invisible images at
1:1 magnification
Product: Wine
Version: 4.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ocirne94(a)gmail.com
Distribution: ---
Created attachment 63181
--> https://bugs.winehq.org/attachment.cgi?id=63181
Wine log: opened lightroom on a 20 megapixel image (Develop module), zoomed in
to 1:1 (image disappears), then panned to the visible lower-left region and
closed lightroom.
In Adobe Lightroom 6.14 and newer (tested on 6.14 and 7.5, while 6.0 works
fine) images partially disappear when zoomed to 1:1 magnification in the
Develop module. In fact the lower-left region does not disappear: after zooming
in a region roughly the size of the previous viewport (about 1920x900 in my
case) remains visible; but the image has in fact become larger, so that it is
mostly invisible.
Kubuntu 16.04.5, Intel graphics.
--
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=46413
Bug ID: 46413
Summary: Lightroom 6.0+: invisible vertical images with
orientation exif
Product: Wine
Version: 4.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ocirne94(a)gmail.com
Distribution: ---
Created attachment 63179
--> https://bugs.winehq.org/attachment.cgi?id=63179
Log of lightroom 6.0 run: program was opened in Library view, then two vertical
tagged photos (invisible) were imported, then the program was closed.
In Lightroom 6.0 and newer (tested on 6.0, 6.14 and 7.5), vertical photos which
include an orientation exif tag are completely invisible, both in the
thumbnails of the Library module and as full-size images in the Develop module.
In the Develop module clicking on the image (which toggles between zoom-to-fit
and 1:1 view) briefly shows a row of colored pixels at the top of the image, as
if all the image was compressed to a 1-pixel horizontal row. Removing all the
exif and then manually rotating the photo by 90 degrees makes the photo visible
again.
Kubuntu 16.04.5, Intel graphics.
--
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=46414
Bug ID: 46414
Summary: Lightroom 6.0+: image thumbnails and previews are
badly cropped
Product: Wine
Version: 4.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ocirne94(a)gmail.com
Distribution: ---
Created attachment 63180
--> https://bugs.winehq.org/attachment.cgi?id=63180
Log of lightroom 6.0 run: program was opened in Library view, then two photos
were imported (cropped thumbnails), then the program was closed.
On Adobe Lightroom 6.0 and newer (tested on 6.0, 6.14 and 7.5) image previews
and thumbnails are cropped, both in the Library grid view and in the navigator
panel of the Develop module. The crop seems to be affected by the image
geometry. The crop only affects at most two sides of an image (for example
bottom and left), as if a viewport was too small for an image with only one
angle correctly placed.
--
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=48428
Bug ID: 48428
Summary: winex11.drv: Broken fullscreen handling in Adobe
Lightroom (tiled screen)
Product: Wine
Version: 4.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: bugs(a)bzatek.net
CC: zzhang(a)codeweavers.com
Regression SHA1: 914b5519b1cd96f9ae19f1eec226e94af96354b9
Distribution: Gentoo
Created attachment 66196
--> https://bugs.winehq.org/attachment.cgi?id=66196
Screenshot at fullscreen mode 3
The winex11.drv changes introduced in wine-4.20 broke fullscreen handling in
Adobe Lightroom 8.x and 9.x:
914b5519b1cd96f9ae19f1eec226e94af96354b9
winex11.drv: Use a separate virtual desktop display device handler.
acf03ed9da0f7d3f94de9b47c44366be3ee47f8e
winex11.drv: Get virtual desktop size limit from the host primary display.
b7b4bacaf99661e07c2f07a0260680b4e8bed4f8
winex11.drv: Move the desktop fullscreen check after desktop init.
427152ec7b4ee85631617b693dbf1deea763c0ba
winex11.drv: Fix NoRes mode handler having an empty mode.
There are three fullscreen modes in Adobe Lightroom, switchable via Ctrl+F
(cycling) or Window -> Screen Mode menu:
1. "Normal" - no fullscreen, regular resizeable window decorated by the WM,
can be maximized. Everything is rendered properly in this case.
2. "Full Screen with Menubar" - no WM decorations, the window takes dimension
of a maximized window, i.e. the desktop environment panels are shown.
3. "Full Screen" - true fullscreen, taking whole screen dimensions, DE panels
are hidden.
Now my screen setup may be a little exotic - I'm using a tiled monitor
connected via two inputs. xrandr sees two connected outputs, 2560x2880 each,
exposing a TILE property that the window manager (marco, a metacity clone)
properly uses and composes final screen of 5120x2880 dimension.
What I think it's missing here in Wine is a tiled monitor awareness. The issue
is that only half of the screen (one tile/output) is rendered in modes 2 and 3,
the other half is "dead" - displaying stale buffer from the WM compositor.
However, the WM sees proper size of the window (5120x2880, confirmed by
sniffing via `xwininfo`), all input events are properly directed there, however
it's the wine that renders only one tile. The running application - Lightroom -
is however rendered properly within the dimensions of that one tile
(2560x2880), meaning all UI elements are visible and working.
The workaround for the time being is to use virtual desktop where rendering is
correct in any of the above mentioned modes.
As a side note, prior to the changes the virtual desktop that equals screen
size will get automatically fullscreened on startup. That's not the case after
the changes where user needs to manually make the virtual desktop fullscreen
via WM keybinding.
--
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=40082
Bug ID: 40082
Summary: Adobe Audition 1.5 Multi-Channel Encoder doesn't sound
into Ubuntu 15.10
Product: Wine
Version: 1.9.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jotape1960(a)yahoo.com
Distribution: ---
Created attachment 53564
--> https://bugs.winehq.org/attachment.cgi?id=53564
The Adobe Audition 1.5 Multi-Channel Encoder. The shown channels don't sound.
Adobe Audition 1.5 was (and still is) a very, very good audio recording,
edition and post-production software.
It runs so fine under WineHQ 1.9.2, into Ubuntu 15.10.
BUT... When we use the Multi-Channel Encoder tool (the tool which lets us to
send the individual tracks to an specific output audio channel), we can not to
hear the surround components (Center, Left Surround, Right Surround and Low
Frecuency Channels).
However, the final result audio file will have all the components (stereo and
surround) and all of them will be heard on any multi-channel audio player (like
GnomePlayer).
The problem is ONLY with the real direct sound which is supposed audible into
the multi-channel mixdown.
Maybe a surround audio issue with Wine? ??? I don't know.
--
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=30239
Bug #: 30239
Summary: Adobe Photoshop CS6 beta installer "failed to
initialize"
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Downloaded
http://labsdownload.adobe.com/pub/labs/photoshopcs6/photoshopcs6_p1_win_032…
unzipped, ran Set-up.exe
Log shows
...
Exiting Installer with Code: 0
...
trace:text:X11DRV_GetTextExtentExPoint L"I" 1
trace:text:X11DRV_GetTextExtentExPoint L"n" 1
trace:text:X11DRV_GetTextExtentExPoint L"s" 1
trace:text:X11DRV_GetTextExtentExPoint L"t" 1
trace:text:X11DRV_GetTextExtentExPoint L"a" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"e" 1
trace:text:X11DRV_GetTextExtentExPoint L"r" 1
trace:text:X11DRV_GetTextExtentExPoint L" " 1
trace:text:X11DRV_GetTextExtentExPoint L"f" 1
trace:text:X11DRV_GetTextExtentExPoint L"a" 1
trace:text:X11DRV_GetTextExtentExPoint L"i" 1
trace:text:X11DRV_GetTextExtentExPoint L"l" 1
trace:text:X11DRV_GetTextExtentExPoint L"e" 1
trace:text:X11DRV_GetTextExtentExPoint L"d" 1
(+relay shows that message whole,
0028:Call gdi32.GetTextExtentPoint32W(00000438,01fdd2e0 L"Installer failed to
initialize. This could be due to a missing file.",00000001,0033cfc4)
ret=00d2caaa )
The log also shows a fair bit of XML, so I tried "winetricks msxml3",
and it got further.
--
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=15572
Summary: Adobe Photoshop CS3 z-order problems
Product: Wine
Version: 1.1.6
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Photoshop CS3, when run with native gdiplus, looks not so bad.
However, the grey frame just inside the window border
always appears on top. Thus when you choose
"Help / Photoshop Online", a nice Firefox window shows up,
but it's partly obscured by the grey frame.
--
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=18048
Summary: Acrobat Pro 8 Crashes on Stick Note Open
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dave(a)higherform.com
Created an attachment (id=20438)
--> (http://bugs.winehq.org/attachment.cgi?id=20438)
Stdout log of crash due to mouseover sticky note
Multiple potentially related issues:
- Insert Text comments, sticky notes, etc popups do not display text or allow
selecting of contents
- Often, when mousing over the icon for a sticky note, application will
segfault (see stdout log attached)
--
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=50788
Bug ID: 50788
Summary: Adobe Dreamweaver CS4: Crashes after update to
wine-6.3 (Staging)
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrea.vai(a)unipv.it
Distribution: ---
Dreamweaver CS4 have been working fine until the last update to staging version
6.3.
Briefly, I can report the most suspected output line:
Fatal EXCEPTION_WINE_CXX_EXCEPTION exception (code=e06d7363) raised
which is repeated many times, and meanwhile the application main window appears
and suddenly disappears.
Sorry but I am not an expert so:
-I am not able (yet) to say which was the working wine version (trying dnf
history, advice are welcome)
-I have seen that Bug 50760 seems related but I don't know if it's the same
bug.
-There is also an error message box from the application itself; I suspect it's
just a consequence of the bug, anyway it's someting like "error 148:3 licensing
has stopped working".
Using Fedora 32.
--
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=29249
Bug #: 29249
Summary: iexplore fails to load ftp.adobe.com
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 37819
--> http://bugs.winehq.org/attachment.cgi?id=37819
Terminal output (builtin iexplore)
Running "wine iexplore ftp.adobe.com" gives only a blank page. Workaround:
winetricks wininet
It doesn't work in IE8, either: it only shows "Internet Explorer cannot display
the webpage" unless I use WINEDLLOVERRIDES=wininet=n.
--
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.