|
From: <mla...@us...> - 2007-12-27 04:24:00
|
Revision: 361
http://g15daemon.svn.sourceforge.net/g15daemon/?rev=361&view=rev
Author: mlampard
Date: 2007-12-26 20:24:05 -0800 (Wed, 26 Dec 2007)
Log Message:
-----------
Revert keyboard delay from previous commit, prepare for 1.9.3.
Modified Paths:
--------------
trunk/g15daemon-wip/ChangeLog
trunk/g15daemon-wip/configure.in
trunk/g15daemon-wip/g15daemon/main.c
trunk/g15daemon-wip/rpm/g15daemon.spec
Modified: trunk/g15daemon-wip/ChangeLog
===================================================================
--- trunk/g15daemon-wip/ChangeLog 2007-12-26 13:39:10 UTC (rev 360)
+++ trunk/g15daemon-wip/ChangeLog 2007-12-27 04:24:05 UTC (rev 361)
@@ -117,6 +117,8 @@
unavailable.
- Bugfix: Write a blank buffer to the LCD before exiting.
- Add --lcdlevel cmdline option to allow setting default LCD brightness level
-1.9.2->SVN:
+1.9.3:
- BugFix: The documentation for --switch was inverted. Fix.
- Print list of commandline args when in debug mode
+- BugFix: The decreased delay caused keypresses to be misread on some
+ machines. REVERT.
Modified: trunk/g15daemon-wip/configure.in
===================================================================
--- trunk/g15daemon-wip/configure.in 2007-12-26 13:39:10 UTC (rev 360)
+++ trunk/g15daemon-wip/configure.in 2007-12-27 04:24:05 UTC (rev 361)
@@ -4,7 +4,7 @@
AC_PREREQ(2.59)
-AC_INIT(g15daemon, [1.9.2], [mla...@us...])
+AC_INIT(g15daemon, [1.9.3], [mla...@us...])
AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_TARGET()
Modified: trunk/g15daemon-wip/g15daemon/main.c
===================================================================
--- trunk/g15daemon-wip/g15daemon/main.c 2007-12-26 13:39:10 UTC (rev 360)
+++ trunk/g15daemon-wip/g15daemon/main.c 2007-12-27 04:24:05 UTC (rev 361)
@@ -179,13 +179,13 @@
while (!leaving) {
pthread_mutex_lock(&g15lib_mutex);
- retval = getPressedKeys(&keypresses, 2);
+ retval = getPressedKeys(&keypresses, 20);
pthread_mutex_unlock(&g15lib_mutex);
/* every 2nd packet contains the codes we want.. immediately try again */
while (retval == G15_ERROR_TRY_AGAIN){
pthread_mutex_lock(&g15lib_mutex);
- retval = getPressedKeys(&keypresses, 2);
+ retval = getPressedKeys(&keypresses, 20);
pthread_mutex_unlock(&g15lib_mutex);
}
Modified: trunk/g15daemon-wip/rpm/g15daemon.spec
===================================================================
--- trunk/g15daemon-wip/rpm/g15daemon.spec 2007-12-26 13:39:10 UTC (rev 360)
+++ trunk/g15daemon-wip/rpm/g15daemon.spec 2007-12-27 04:24:05 UTC (rev 361)
@@ -3,11 +3,11 @@
%define prefix /usr
Summary: Daemon to control logitech G15 keyboards
Name: g15daemon
-Version: 1.9.2
+Version: 1.9.3
Release: 1
Copyright: GPL
Group: Applications/System
-Source: ftp://prdownloads.sf.net/g15daemon-1.9.1.tar.bz2
+Source: ftp://prdownloads.sf.net/g15daemon-1.9.3.tar.bz2
URL: http://g15daemon.sf.net
Distribution: Linux
Vendor: NONE
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|