https://bugs.winehq.org/show_bug.cgi?id=40127
Bug ID: 40127
Summary: winecfg can't switch fonts script
Product: Wine
Version: 1.9.3
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Created attachment 53613
--> https://bugs.winehq.org/attachment.cgi?id=53613
Two screenshots to illustrate
Open winecfg. Navigate to "desktop integration" tab.
Choose item "Message box text". Font button will activated. Press it.
Choose Tahoma.
It can be "western" or "Cyrillic" depends on prehistory but script chooser is
not active.
Tested on different wine version and with different OS settings. I can make
winecfg speak russian but the chooser is always grey.
--
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=40017
Bug ID: 40017
Summary: Configure cannot locate some installed packages for 32
bit dependencies
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: goochmi(a)gmail.com
Distribution: ---
I am on fedora 23 (64 bit release only afaik)
configure: libgphoto2 32-bit development files not found, digital cameras won't
be supported.
configure: gstreamer-1.0 base plugins 32-bit development files not found,
gstreamer support disabled
I have gone through attempting to install both the 32 bit and 64 bit packages
for these. The 64 bit compile mode finds them, but the 32 bit one does not. I
installed the same package for both using dnf, so unless the version is TOO new
or something is misnamed and the one wine wants is actually not available, i'm
not sure what to do about it.
Not that I necessarily need these features, but I am trying to figure out why
it cannot find them.
---This package cannot be seen by either 32 bit mode or 64 bit mode---
configure: OpenCL 32-bit development files not found, OpenCL won't be
supported.
I have installed several opencl related development packages that I found using
dnf search, but I can't seem to find one that satisfies this for either 32 or
64 bit builds.
--- the following are probably not bugs, but I could not test their
detection---
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be
supported.
I'm not sure which package, if any, provides this functionality on fedora23.
I've been attempting to locate such, but as of yet haven't found it.
configure: libhal development files not found, no legacy dynamic device
support.
^ I don't think fedora even HAS libhal packages anymore, so I can't really test
this one. If i'm wrong feel free to correct me on that.
--
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=40084
Bug ID: 40084
Summary: wine-1.9.2-staging on Fedora23 dies if running on the
update WISOSteuerSparbuch2016Update231316.exe for my
tax program WisoSparbuch
Product: Wine-staging
Version: 1.9.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joachim.backes(a)rhrk.uni-kl.de
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Unhandled exception: unimplemented function shcore.dll.GetDpiForMonitor called
in 32-bit code (0x7b83e46e).
This bug has been filed by myself in
https://bugzilla.redhat.com/show_bug.cgi?id=1304439.
You'll find details there.
--
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=40051
Bug ID: 40051
Summary: Trainz: A New Era doesn't start
Product: Wine
Version: 1.9.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: oebbler(a)live.de
Distribution: ---
Created attachment 53523
--> https://bugs.winehq.org/attachment.cgi?id=53523
Log Wine creates when starting Trainz
When I want to start Trainz: A New Era Wine does nothing except creating its
log.
Installing Trainz doesn't work, too. When I click the "Install" button the
installer freezes, but I found out there's a workaround to get Trainz
installed.
--
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=39942
Bug ID: 39942
Summary: Can't Find 'xaudio2_7.DllGetClassObject'
Product: Wine
Version: 1.9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: fan-wen-jie(a)msn.cn
Distribution: ---
Created attachment 53363
--> https://bugs.winehq.org/attachment.cgi?id=53363
module:find_forwarded_export module not found for forward
'xaudio2_7.DllGetClassObject' used by L"C:\\windows\\system32\\xaudio2_6.dll"
I Write a Program for testing xaudio2
#include <Windows.h>
#include <stdio.h>
void CheckMethod(HINSTANCE hin,char name[])
{
void *func = GetProcAddress(hin, name);
printf("%sFind %s In XAudio2.6\n", func ? "":"Not ", name);
}
int main()
{
GUID clsID;
CLSIDFromString(L"{3eda9b49-2085-498b-9bb2-39a6778493de}", &clsID);//GUID
OF XAUDIO2_6
HINSTANCE hin = LoadLibrary(L"XAudio2_6.dll");
CheckMethod(hin, "DllGetClassObject");
CheckMethod(hin, "DllCanUnloadNow");
CheckMethod(hin, "DllRegisterServer");
CheckMethod(hin, "DllUnregisterServer");
return 0;
}
In Windows ,It shows that:
Find DllGetClassObject In XAudio2.6
Find DllCanUnloadNow In XAudio2.6
Find DllRegisterServer In XAudio2.6
Find DllUnregisterServer In XAudio2.6
But In Wine (Ubuntu 15.10),It shows that
module:find_forwarded_export module not found for forward
'xaudio2_7.DllGetClassObject' used by L"C:\\windows\\system32\\xaudio2_6.dll"
Not Find DllGetClassObject In XAudio2.6
Find DllCanUnloadNow In XAudio2.6
Find DllRegisterServer In XAudio2.6
Find DllUnregisterServer In XAudio2.6
I find "DllGetClassObject" in xaudio_dll.c of Floder "xaudio2_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=40056
Bug ID: 40056
Summary: Some fonts are crashing Geometry Dash
Product: Wine
Version: 1.6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pavluk6(a)mail.ru
Distribution: ---
Created attachment 53530
--> https://bugs.winehq.org/attachment.cgi?id=53530
Backtrace
Geometry Dash is crashing on typing something (For example, you can't log in)
and in pause menu.
--
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=16420
Summary: Certificate chaining error trying to use Microsoft
signcode tool
Product: Wine
Version: 1.1.10
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Jim.Cooper(a)sas.com
Using this command:
wine mssign/signcode.exe -i http://www.mycompany.com -t
http://timestamp.verisign.com/scripts/timstamp.dll -spc mycredentials.spc -v
myprivatekey.pvk unzip.exe
Gets me this error:
Error: Failed to build the certification path as requested
Error: Signing Failed. Result = 800b010a, (-2146762486)
This only started happening with recent certificates from VeriSign, and only
fails when run under Wine. If I run the same command (minus the 'wine' in
front, of course) under Windows, using the same certificate, key, etc., the
signing attempt succeeds with no errors.
I am using a plain-vanilla wine install, under the latest Kubuntu Linux.
I can't supply you with the certificate, but would be willing to test whatever
you suggest.
--
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=35718
Bug ID: 35718
Summary: Path of Exile doesn't start correctly, crashes Xorg
Product: Wine
Version: 1.7.13
Hardware: x86-64
URL: http://webcdn.pathofexile.com/downloads/PathOfExileIns
taller.msi
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: frederic.delanoy(a)gmail.com
CC: ken(a)codeweavers.com
Regression SHA1: 4c4552c5a1910a9d5adf8eccff0ac62d89ffe376
Created attachment 47707
--> http://bugs.winehq.org/attachment.cgi?id=47707
Log wine-1.7.13-22-g4c4552c
After this commit:
4c4552c5a1910a9d5adf8eccff0ac62d89ffe376 is the first bad commit
commit 4c4552c5a1910a9d5adf8eccff0ac62d89ffe376
Author: Ken Thomases <ken(a)codeweavers.com>
Date: Wed Feb 19 16:14:53 2014 -0600
wined3d: Restore the pixel format of the window whose pixel format was
actually changed.
:040000 040000 952ab31d0408cbe5b261faf85e3c02c0febd3416
162b97adb27bd867c3729ff124025d51ac5b57a0 M dlls
Path of Exile doesn't start correctly anymore.
During startup, after going fullscreen, screen flickers a few times, then Xorg
crashes.
To install the game without waiting for hours, you can use patch from bug 33146
(http://www.winehq.org/pipermail/wine-patches/2013-June/124884.html; didn't get
committed, though).
--
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=40058
Bug ID: 40058
Summary: wine
Product: Wine
Version: 1.8-rc4
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hanamirandakiranaputri(a)gmail.com
Created attachment 53536
--> https://bugs.winehq.org/attachment.cgi?id=53536
Text
I can't open a file
--
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=40168
Bug ID: 40168
Summary: UnityHelper.exe error after Unity3D installed
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: r3iko_30(a)yahoo.com
Distribution: ---
Created attachment 53671
--> https://bugs.winehq.org/attachment.cgi?id=53671
UnityHelper.exe error
Hello, i was trying to install Unity3D through Wine app on linux, from some
tries, i got it done, however i get this error with UnityHelper.exe that is
not in the wine app database, can you do something about this, please?
--
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.