http://bugs.winehq.org/show_bug.cgi?id=13533
Summary: Pelink DC++ bug: while connecting to hub: error: 0x2743
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://pepelink.narod.ru
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pzinin(a)gmail.com
I am install pelinkdc++ 4.97 in wine 1.0 rc2. When it connect to hub:
[07:28:50] *** Соединение с p2p.nln.ru:411...
[07:28:50] *** Неизвестная ошибка: 0x2743
--
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=20463
Summary: Planetary battle mode don't work
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Created an attachment (id=24338)
--> (http://bugs.winehq.org/attachment.cgi?id=24338)
console log when switch to the battle mode
When game switch to the planetary battle mode, resolution change to native
(1280x800) and loading is freeze
--
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=7150
Alexander Scott-Johns <alexander.scott.johns+winebug(a)googlemail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |alexander.scott.johns+wineb
| |ug(a)googlemail.com
--- Comment #11 from Alexander Scott-Johns <alexander.scott.johns+winebug(a)googlemail.com> 2009-10-25 16:43:39 ---
(In reply to comment #10)
> (In reply to comment #9)
> > Created an attachment (id=23239)
--> (http://bugs.winehq.org/attachment.cgi?id=23239)
> > faster as it skips shaping if there is nothing to shape
>
> Muayyad, wine developers don't grab patches from bugzilla, see
> http://wiki.winehq.org/SubmittingPatches on how to submit a patch.
A few comments about your patch (the maintainer is quite picky about the
patches that get into Wine, and it might get silently dropped):
* Please keep the spacing of your code consistent with the rest of the file (4
space indentation, spaces around binary operators, etc).
* You don't need to include your email address in the code itself (as the Wine
Git repository tracks authorship information).
* Can you please use slightly more descriptive variable names than p, c, cn,
ch, jx, jcn, jpc, j, i and ix?
* Is it possible to write conformance tests for this? (If so, please include
some, as the patch will be much more likely to get in.)
* You may find it easier to manage and generate your patches with Git.
--
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=19703
Summary: Vypress Chat: crashes
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://www.vypress.com/download/?prod=chat
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Created an attachment (id=23005)
--> (http://bugs.winehq.org/attachment.cgi?id=23005)
console output
I try to execute this program, but it crashes when load main window.
--
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=6971
--- Comment #264 from haarp <liquitsnake(a)gmx.net> 2009-10-25 15:03:36 ---
This is not a good solution, since it will waste a LOT of CPU time running that
loop. On top of that, it will not catch fast mouse movements. It's essentially
the same as Attachment 11303, only slower since it's based on bash. And even
for 11303, Vitaliy said that it could be too slow.
--
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=6971
--- Comment #263 from Manuel Soukup <linuxuser-sky(a)gmx.de> 2009-10-25 14:57:52 ---
Hi
I found a workaround for the mouse escape bug.
First: get xwarppointer from the internet and compile it.
Second: Change the Game Res to 1280xYYYY
Third use this script to start:
---------------------------------
#!/bin/bash
# Resolution in game : 1280xYYYY !!!!!!
cd /mnt/daten/wine/win_c/programme/Thief3/
MWINE_VERSION=wine1132 WINEPREFIX=~/.wine/thief3 mwine System/T3.exe &
while [ 1 = 1 ]
do
getX=$(./xwarppointer get | cut -d" " -f1,1)
getY=$(./xwarppointer get | cut -d" " -f2,2)
#echo $getX
if [ $getX -lt 2 ]; then
./xwarppointer abspos 1277 .
else
if [ $getX -gt 1278 ]; then
./xwarppointer abspos 3 .
fi
fi
#if [ $getY -lt 10 ]; then
# ./xwarppointer abspos . 385
# else
#if [ $getY -gt 758 ]; then
# ./xwarppointer abspos . 385
# fi
# fi
# ./System/xwarppointer abspos 700 450
done
---------------------------------
This works for Thief 3 , Deadly Shadows
--
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=8532
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adys.wh(a)gmail.com
--- Comment #4 from Jerome Leclanche <adys.wh(a)gmail.com> 2009-10-25 14:23:08 ---
Still present in wine-1.1.32.
--
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=20464
Summary: iphlpapi fixme when upgrading to 1.1.32 on jaunty64
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dyvazar(a)numericable.fr
output seen in .xsession-errors at the end of upgrade installation:
fixme:system:SetProcessDPIAware stub!
fixme:dwmapi:DwmIsCompositionEnabled 0x33cee4
fixme:iphlpapi:NotifyAddrChange (Handle 0xa7de908, overlapped 0xa7de910): stub
fixme:iphlpapi:GetAdaptersAddresses no support for IPv6 addresses
fixme:shell:DllCanUnloadNow stub
wine: configuration in '/home/oem/.wine' has been updated.
/var/lib/python-support/python2.6/dbus/connection.py:242: DeprecationWarning:
object.__init__() takes no parameters
super(Connection, self).__init__(*args, **kwargs)
--
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.