https://bugs.winehq.org/show_bug.cgi?id=44478
Bug ID: 44478
Summary: Wine returns to home screen on S5
Product: Wine
Version: 3.1
Hardware: arm
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jnskeer(a)gmail.com
I can install Wine and have it unpack on my Samsung S5, but as soon as it
unpacks it minimizes the app and returns to the Android home screen. Every
attempt to reopen the Wine app rotates the screen to landscape, minimizes Wine,
and rotates it back to portrait mode.
This isn't the first app to not work right on my S5. I tried the Boardwalk app,
and apparently they stopped supporting Samsung due to some sort of security
issue messing with app compatiblity or something. Wine and Boardwalk works on
my ZTE phone.
--
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=46752
Bug ID: 46752
Summary: error message
Product: Wine
Version: 3.15
Hardware: arm
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: drakemcmannis9876(a)gmail.com
Created attachment 63754
--> https://bugs.winehq.org/attachment.cgi?id=63754
screenshot of the error
my wine app is displaying an error message when running a setup file PLZ FIX
THIS ERROR
--
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=46926
Bug ID: 46926
Summary: wine don't start after installation
Product: Wine
Version: 4.4
Hardware: arm
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: unthend(a)aol.com
hello,
i installed wine-4.4-arm.apk on my huawei mediapad m3, the installation
apparently went well but when i try to launch wine it doesn't start, i also
tried previous versions like 4.0 etc but i get the same problem, i may be doing
something wrong, can you help me,
greetings
lino
--
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=47470
Bug ID: 47470
Summary: UI too big
Product: Wine
Version: 4.12
Hardware: arm
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: browseui
Assignee: wine-bugs(a)winehq.org
Reporter: christianlawton527(a)gmail.com
Created attachment 64844
--> https://bugs.winehq.org/attachment.cgi?id=64844
No "OK" button
When I restarted "Wine" on my android phone the ui was too big,and I couldn't
launch anything using "run" or "explorer"
--
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=40266
Bug ID: 40266
Summary: Latest steam.exe not running after update
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: agasoni(a)yahoo.gr
Distribution: ---
Created attachment 53888
--> https://bugs.winehq.org/attachment.cgi?id=53888
The backtrace as reported by wine itself to gether with the stderr print out
I am running the distributed version of wine from linux mint
3.16.0-38-generic #52~14.04.1-Ubuntu x86_64 x86_64 x86_64 GNU/Linux
I opened the latest windows installer from Steam website
and when opening it updated successfully and then crashed.
It has left some windows with buttons open but without any text on the buttons
or anywhere in the app window.
The crash repeats every time I open the application.
If needed I can provide more accurate symptoms because I have a development
background but not worked on wine so will need some instructions for it.
--
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=34290
Bug #: 34290
Summary: QQ International can't 'Clear All' if there is a GIF
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 45648
--> http://bugs.winehq.org/attachment.cgi?id=45648
where_is_ClearAll.png
0. Download http://dl_dir.qq.com/qqfile/qq/QQ2012/QQIntl1.6.exe
$ sha1sum QQIntl1.6.exe
7a9f585b4d54c3b69fb1049570d9fc59ba25477a QQIntl1.6.exe
1.
winetricks riched20, workaround Bug 29636
winetricks ie8, workaround Bug 29638
winetricks cjkfonts
2. Open a chat-box(with someone or in a group)
3. Click the triangle near 'Message History', then click 'Clear All'
4. Usually, it works well. But if someone had sent a GIF picture, and 'Clear
All' won't work.
--
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=31677
Bug #: 31677
Summary: a child window not opened properly
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tramp(a)sibmail.com
Classification: Unclassified
This code is not working properly:
void PreSubclassWindow()
{
LONG Styles = GetWindowLong(m_hWnd, GWL_STYLE);
LONG ExStyles = GetWindowLong(m_hWnd, GWL_EXSTYLE);
if (Styles == 0 || ExStyles == 0)
return;
Styles |= WS_CHILD;
Styles &= ~WS_OVERLAPPED;
Styles &= ~WS_CAPTION;
Styles &= ~WS_BORDER;
ExStyles &= ~WS_EX_CLIENTEDGE;
ExStyles &= ~WS_EX_DLGMODALFRAME;
ExStyles &= ~WS_EX_WINDOWEDGE;
SetWindowLong(m_hWnd, GWL_STYLE, Styles);
SetWindowLong(m_hWnd, GWL_EXSTYLE, ExStyles);
}
--
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=48375
Bug ID: 48375
Summary: DVD and Bluray drives no longer detected automatically
Product: Wine
Version: 5.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: grimlock4h(a)gmail.com
Distribution: ---
After updating to 5.0 RC3 WINE can no longer detect either a DVD burner nor a
Blu Ray burner. Both drives are detected and fully working in Linux otherwise.
Prior to updating the drives worked fine. Manually selecting the DVD after
mounting in Linux does not work to bypass this bug.
--
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=35513
Bug ID: 35513
Summary: Adobe CC installer stalls (after Bug 35512)
Product: Wine
Version: 1.7.11
Hardware: x86-64
URL: https://creative.adobe.com/products/photoshop
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: ole
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Classification: Unclassified
Created attachment 47407
--> http://bugs.winehq.org/attachment.cgi?id=47407
wine-1.7.11-206-g82b3813 console output
Working around Bug 35510 and Bug 35512 with native winhttp, wintrust and msasn
the Adobe CC installer complains that it cannot connect to the Internet.
fixme:ole:NdrCorrelationInitialize (0x98d378, 0x98cf78, 1024, 0x0): stub
fixme:ole:NdrCorrelationInitialize (0x105dfe8, 0x105dbe8, 1024, 0x0): stub
Surprisingly, rpcrt4.dll from Windows XP allows the installer to get further:
fixme:ntdll:NtConnectPort (0x1628b8,L"\\RPC
Control\\keysvc",0x98d058,(nil),(nil),(nil),0x98d080,0x98d068),stub!
Which may be Bug 30069.
--
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.