http://bugs.winehq.org/show_bug.cgi?id=3051
------- Additional Comments From Speeddymon(a)gmail.com 2005-11-06 21:06 -------
*** Bug 3054 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3054
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Speeddymon(a)gmail.com 2005-11-06 21:06 -------
dupe of 3051 not 3053
*** This bug has been marked as a duplicate of 3051 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3054
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1434
Bug 1434 depends on bug 882, which changed state.
Bug 882 Summary: Alpha Centauri: Text does not show in the main screen menu
http://bugs.winehq.org/show_bug.cgi?id=882
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=882
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)gmail.com 2005-11-06 21:00 -------
Patch committed to CVS. Resolving. If any issues remain that were previously
mentioned in this bug, reopen it, otherwise, file a new one.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=882
gwurster(a)scs.carleton.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |gwurster(a)scs.carleton.ca
------- Additional Comments From gwurster(a)scs.carleton.ca 2005-11-06 19:28 -------
Color problem should be fixed as a result of patch 18073.
Antialiasing of fonts fixed by patches: 15655, 15656, 15694
Other patches related to the fix: 14186, 14187, 14538, 15655, 15656, 16749
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3002
------- Additional Comments From dclark(a)akamail.com 2005-11-06 18:30 -------
Just to verify that I am looking at the same thing, with an old version of Wine,
I get the application, a splash screen, and then a large dialog entitled
"Attempting to contact target...", with lots of available settings. With a newer
version of Wine, I get to the splash screen, but never get the dialog. This is
with my Wine "Version" set to win2k (my default).
To apply a patch, use a command like:
patch -p0 < patch.diff
To reverse a patch:
patch -p0 -R < patch.diff
The "-p0" can differ depending on how the patch was formed. For example, the
patches in CVS generally require "-p1" instead of "-p0". Read the patch man page
to understand what that is doing.
What is it you want to know about serial ports in Linux? Here is some simple C
code for accessing the serial port:
main(int argc, char *argv[])
{
char *ttyname="/dev/ttyS1";
int fd, i;
struct termios options;
unsigned char cdata[30], *cdata_p;
fd = open(ttyname, O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1) {
sprintf(cdata, "Unable to open %s", ttyname);
perror(cdata);
return;
}
fcntl(fd, F_SETFL, FNDELAY);
/*
* Set to dumb RAW mode with no echo and no character interpretation.
*/
tcgetattr(fd, &options);
cfsetispeed(&options, B19200);
cfsetospeed(&options, B19200);
options.c_cflag &= ~PARENB; /* no parity */
options.c_cflag &= ~CSTOPB; /* a '1' causes 2 stop bits */
options.c_cflag &= ~CSIZE; /* Mask the character size bits */
options.c_cflag |= CS8|CREAD|CLOCAL;
options.c_iflag &= ~(IXON | IXOFF | IXANY); /* no software flow control */
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); /* raw input */
options.c_oflag &= ~OPOST; /* raw output */
tcsetattr(fd, TCSANOW, &options);
sprintf(cdata, "mwr f000000c 0\r");
i = write(fd, cdata, strlen(cdata));
...
Be careful about checking whether all the data was read/written during a call;
that is, check and act on the returned value "i".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3057
Summary: MS Word doesn't work well with mixed language input
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: krakov(a)gmail.com
X11DRV_ KeyboardLayout functions not working / working incorrectly
X11DRV_GetKeyboardLayout and X11DRV_GetKeyboardLayoutList work not as specified
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinU…,
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winu…).
Other KeyboardLayout functions are stubs.
GetKeyboardLayout doesn't return current XKB keyboard layout / group - it
returns the layout of the curent locale, of all things.
Affected programs: Microsoft Word,Powerpoint (2000, maybe other version)
* Word decides paragraph language - thus spell checker to apply, paragraph
direction (right-to-left/left-to-right) and other properties - by the return
value of GetKeyboardLayout. Changing language of input doesn't change Word's
handling. Even using setxkbmap to change the map doesn't work, as the layout is
decided by locale.
* Trying to use Word under any RTL locale as Hebrew makes any LTR text rendered
backwards and caret location incorrect. The language of a paragraph can be
specified manually, but it keeps changing back any time Word checks the keyboard
layout.
* Spell checker sometimes fails to decide which dictionary to use when writing
mixed language text.
* List of possible languages is incorrect.
* Changing language using the language applet in the Word toolbar doesn't work.
Steps to reproduce:
* export LANG=he_IL.UTF-8
* run Word
* try writing in English
[ Note: might not mess paragraph directions if Word version is installed without
BiDi support ? ]
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.