https://bugs.winehq.org/show_bug.cgi?id=43459
Bug ID: 43459
Summary: Tally ERP 9 6.02 Accounting Software
Product: Wine
Version: 2.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rkmpalai(a)gmail.com
Distribution: ---
Created attachment 58832
--> https://bugs.winehq.org/attachment.cgi?id=58832
Error log
Hello
We were using Tally ERP9 Version 5.3.8 in wine 1.4.1. It was working fine.
Recently we tried to install the latest version of Tally ERP9 6.0.2
(https://tallysolutions.com/download/) with wine. After installation the
package is working fine in Educational mode. However when we try to "Reactivate
the license" it fails with an error. Request you to kindly help us.
Thank you.
--
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=10600
Summary: ABC Amber LIT Converter has an unusable GUI
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://www.versiontracker.com/dyn/moreinfo/win/48214
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: echidnaman(a)gmail.com
Ok, this is sorta hard to explain. You really have to see it for yourself.
When you start up the program, the main window loads up. The GUI becomes
completely blank and unresponsive. If you can move the Tip of the day window to
any other virtual desktop you can see that it is unresponsive. If you click on
the main window you get a nice machine beep. In short, the UI is unusable.
Console Output:
jonathan@jonathan-desktop:~/.wine/drive_c/Program Files/ABC Amber LIT
Converter$ wine abclit.exe
err:systray:delete_icon invalid tray icon ID specified: 0
err:statusbar:StatusWindowProc unknown msg 3523 wp=0000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:toolbar:ToolbarWindowProc unknown msg 3523 wp=00000000 lp=00000000
err:updown:UpDownWindowProc unknown msg 3523 wp=0000 lp=00000000
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48990
Bug ID: 48990
Summary: Cannot install wine on ubuntu 19.10
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: nikitastepanov113(a)yandex.kz
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 66961
--> https://bugs.winehq.org/attachment.cgi?id=66961
apt log
Cannot install wine on ubuntu 19.10 via apt
--
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=49943
Bug ID: 49943
Summary: ATI Toy Shop Demo does not start
Product: Wine
Version: 5.18
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 68324
--> https://bugs.winehq.org/attachment.cgi?id=68324
WINEDEBUG=+d3d
When I try to run ATI Toy Shop Demo on Wine, an error dialog appears with the
following message:
This demo requires support of DirectX 9.0c, and support for the
1010102 backbuffer format. The graphics processor and/or drivers
in this system do not meet these requirements.
If your graphics processor is an ATI Radeon X1800 or newer, please
visit ATI.COM to download the latest drivers. If you do not have
DirectX 9.0c or newer installed, visit MICROSOFT.COM/DIRECTX
This application will now exit.
This is on a computer with an AMD Radeon RX 550 graphics card that dual-boots
Windows and Linux. In Windows, the program works perfectly.
$ sha256sum ati-demo-toyshop-v1.2.exe
a397b0e08df606ef8552ad807e02acbdb3900f9abdff819a8e4aa4524f5228f8
--
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=45009
Bug ID: 45009
Summary: BASIC783Esetup.exe (Decimal BASIC) fails to install
due to stub SRSetRestorePointA
Product: Wine
Version: 3.4
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
As the title says; returning TRUE in SRSetRestorePointA makes the installer
succeed, but that might other installers of other programs run into
regressions(??). Maybe this could be tested in Staging, see if causes any
regressions.
--
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=14855
Summary: Incorrect FindWindow/GetLastError error result when
window not found
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vesselinpeev(a)hotmail.com
The following program (compiled to a Win32 binary) prints "Window not found
(expected result)" under Microsoft Windows (tested with Vista), whereas it
prints "Unexpected error, GetLastError() return value: 1407" when ran under
Wine (tested with Wine 1.1.2).
It seems that FindWindow does not set the correct error value
(ERROR_FILE_NOT_FOUND) when it doesn't find a window.
#include <windows.h>
#include <stdio.h>
int main()
{
HWND hWnd = FindWindow("SomeWindowThatDoesNotExist", NULL);
if(hWnd) {
printf("hWnd not NULL");
}
else {
DWORD dwResult = GetLastError();
if(dwResult == ERROR_FILE_NOT_FOUND) {
printf("Window not found (expected result)\n");
}
else {
printf("Unexpected error, GetLastError() return value: %lu\n", dwResult);
}
}
return 0;
}
--
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=22892
Summary: winamp [5.572] Modern skins don't update metadata
information
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jason.whipp(a)gmail.com
Affects all "modern" skins tested, existing in this and previous versions on
wine tested (1.1.34, 1.1.23 and 1.0.1).
With normal Winamp behaviour, song metadata normally displayed and updated in
the Winamp main window and in the playlist. With Modern skins, the song data
in the main window doesn't update, including the time. The play list does
update, unless shaded. Tried changing the font mapping, alpha blending and
just about every configurable item under modern skins in the preferences window
but the behaviour remains the same.
I haven't noticed anything strange in console output, but I will do a test and
post what is presented.
--
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=24874
Summary: iTunes 10 32-bit installs - freezes after a few
transactions
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 7bnettles(a)gmail.com
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.10
Release: 10.10
Codename: maverick
wine --version
wine-1.3.5
I opened the iTunes installation file with Archive Manager, then installed the
various files separately. Installing each of the application dependencies first
and then run the overall to get the application working.
The problem I see now - app store doesn't work and the application will freeze
during normal use. I do get an error on load about Bonjour service not starting
but otherwise ok.
I tried to authorize computer but it failed - can see it in the debug.
Application froze when I clicked on the store.
--
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=18926
Summary: In Winamp, the "send to..." submenu in the playlist
menu does not appear
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: olhzilla(a)gmail.com
In Winamp's playlist window, the right-click menu should contain a "send to..."
submenu that lets the user send the selected track to the format transcoder or
the ReplayGain analysis tool, but under wine the submenu does not appear. It
did appear in the previous version of either Winamp or wine (I'm not sure) but
did not work - selecting any item from the submenu simply did nothing. There
used to be a workaround for this bug posted in wine's app database, but it got
deleted.
Steps to reproduce:
1. Install Winamp, making sure that the transcoding tool and/or the ReplayGain
analysis tool are selected.
2. In the playlist window, right-click on any track.
3. The menu should contain a "send to..." submenu, but it does not.
Ubuntu 9.04, Winamp 5.552, wine 1.0.1-0ubuntu6
--
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=48572
Bug ID: 48572
Summary: Sony Xperia Companion installing but not running
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kennedybaird(a)gmail.com
Distribution: ---
Created attachment 66399
--> https://bugs.winehq.org/attachment.cgi?id=66399
xperia backtrace
Latest Xperia Companion (Feb 2020) installs but doesn't run.
The window loads then it crashes and gives me the attached backtrace error.
I'm new to WINE (only using it to try fix my damn phone)
But I'm running wine 4.0
--
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.