From pbrochard at common-lisp.net Sat Dec 8 08:25:44 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Sat, 08 Dec 2012 09:25:44 +0100 Subject: [cl-debian] [ann] [clfswm-announce] CLFSWM 1212 released Message-ID: <87sj7huf07.fsf@common-lisp.net> Hi all, I'm pleased to announce the last CLFSWM 1212 version. There is minor changes since the last 1209 version but some ugly bugs has been fixed. Here is a small resume of the git log information: * load.lisp do no run CLFSWM by default. It build an executable lisp image and can download CLX and ASDF if needed (this will help (I hope) lisp newbies). * The ./configure as been replaced by a simple Makefile which ease the load of load.lisp (it search for available lisp implementations). * New .desktop files to ease the login manager integration. * Some bug fixes on multi heads monitors to add or remove monitors on the fly. Non xinerama configuration are correctly handled. * Add support for numeric keypad with numlock on. * Key bindings for main and second mode are shown in menu entry. * I've added an blank-window-mode in contrib/. This way, we can hide part of the screen with blank window. I'm pretty sure nobody except me will use it but it's very useful in school class to hide some part of the screen on interactive presentation with a video projector. I think this version is pretty clean. So I'll made more announcement about it ((fr.)comp.land.lisp and french slashdot equivalent). I don't know where I can make english announcement/presentation (slashdot doesn't seem the place). So if you like it, feel free to share your feeling about CLFSWM. This way, maybe it will show up again on Wikipedia :-) As always any feedback is very welcome. Have fun, Philippe _______________________________________________ clfswm-announce mailing list clfswm-announce at common-lisp.net http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From binghe.lisp at gmail.com Wed Dec 26 15:59:17 2012 From: binghe.lisp at gmail.com (Chun Tian (binghe)) Date: Wed, 26 Dec 2012 23:59:17 +0800 Subject: [cl-debian] [ann] [usocket-announce] [ANNOUNCE] usocket 0.6.0 Message-ID: Dear Lispers, We're glad to announce the USOCKET 0.6.0 release. Changes in this release: * New feature: SOCKET-OPTION and (setf SOCKET-OPTION) for seting and geting various socket options. * New feature: SOCKET-SEND now support an CCL-like OFFSET keyword for sending only parts of the whole buffer. * New feature: [ECL] Added support for ECL DFFI mode on Windows. (no need for C compilers now) * Bugfix: [ECL] ECL now list sb-bsd-sockets as a dependency but relies on REQUIRE. (patched by Juanjo) * Bugfix: [ABCL] Make USOCKET compile warning-free on ABCL again: MAKE-IMMEDIATE-OBJECT was deprecated a while ago in favor of 2 predefined constants. * Bugfix: [LispWorks] remove redundant call to hcl:flag-special-free-action. (reported by Kamil Shakirov) * Bugfix: [CLISP] improved HANDLE-CONDITION for more CLISP environments. For the new API, SOCKET-OPTION, initially we support following options: * RECEIVE-TIMEOUT (SO_RCVTIMEO) * REUSE-ADDRESS (SO_REUSEADDR), for TCP server * BROADCAST (SO_BROADCAST), for UDP client For usage of SOCKET-OPTION and (SETF SOCKET-OPTION), please directly take a look at "option.lisp" from USOCKET source code. We'll add documentation later. (Unfortunately, not all CL platforms were full supported at current time, but we'll fix the missing part soon) As usual, if you want to download this release, please check http://common-lisp.net/project/usocket/releases/ or just wait for next Quicklisp monthly dist updates. The API documentation page was here (but I haven't updated it for SOCKET-OPTION yet ...): http://common-lisp.net/project/usocket/api-docs.shtml As usual, any feedback - bugs or hugs - is greatly appreciated. P. S. Something currently still in progress: * New feature: CLISP support some advanced TCP features which CLISP's SOCKET interface not provide * New feature: Macintosh Common Lisp (MCL) support Datagram sockets (UDP), based on OpenTransport. * New feature: SOCKET-SHUTDOWN for TCP and UDP sockets. Regards, Chun Tian (binghe) USOCKET Team -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- _______________________________________________ usocket-announce mailing list usocket-announce at common-lisp.net http://lists.common-lisp.net/cgi-bin/mailman/listinfo/usocket-announce -------------- next part -------------- _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From binghe.lisp at gmail.com Thu Dec 27 03:22:21 2012 From: binghe.lisp at gmail.com (Chun Tian (binghe)) Date: Thu, 27 Dec 2012 11:22:21 +0800 Subject: [cl-debian] [ann] [usocket-announce] [ANNOUNCE] usocket 0.6.0 In-Reply-To: References: Message-ID: Sorry ? suddenly found that ECL actually has no 'sb-bsd-sockets:sockopt-broadcast, I've made a small fix to make sure it compiles in ECL correctly. So that's 0.6.0.1 now. I'll do more careful tests next time. Il giorno 26/dic/2012, alle ore 23:59, Chun Tian (binghe) ha scritto: > Dear Lispers, > > We're glad to announce the USOCKET 0.6.0 release. > > Changes in this release: > > * New feature: SOCKET-OPTION and (setf SOCKET-OPTION) for seting and geting various socket options. > * New feature: SOCKET-SEND now support an CCL-like OFFSET keyword for sending only parts of the whole buffer. > * New feature: [ECL] Added support for ECL DFFI mode on Windows. (no need for C compilers now) > * Bugfix: [ECL] ECL now list sb-bsd-sockets as a dependency but relies on REQUIRE. (patched by Juanjo) > * Bugfix: [ABCL] Make USOCKET compile warning-free on ABCL again: MAKE-IMMEDIATE-OBJECT was deprecated a while ago in favor of 2 predefined constants. > * Bugfix: [LispWorks] remove redundant call to hcl:flag-special-free-action. (reported by Kamil Shakirov) > * Bugfix: [CLISP] improved HANDLE-CONDITION for more CLISP environments. > > For the new API, SOCKET-OPTION, initially we support following options: > > * RECEIVE-TIMEOUT (SO_RCVTIMEO) > * REUSE-ADDRESS (SO_REUSEADDR), for TCP server > * BROADCAST (SO_BROADCAST), for UDP client > > For usage of SOCKET-OPTION and (SETF SOCKET-OPTION), please directly take a look at "option.lisp" from USOCKET source code. We'll add documentation later. > > (Unfortunately, not all CL platforms were full supported at current time, but we'll fix the missing part soon) > > As usual, if you want to download this release, please check > > http://common-lisp.net/project/usocket/releases/ > > or just wait for next Quicklisp monthly dist updates. > > The API documentation page was here (but I haven't updated it for SOCKET-OPTION yet ...): > > http://common-lisp.net/project/usocket/api-docs.shtml > > As usual, any feedback - bugs or hugs - is greatly appreciated. > > P. S. Something currently still in progress: > > * New feature: CLISP support some advanced TCP features which CLISP's SOCKET interface not provide > * New feature: Macintosh Common Lisp (MCL) support Datagram sockets (UDP), based on OpenTransport. > * New feature: SOCKET-SHUTDOWN for TCP and UDP sockets. > > Regards, > > Chun Tian (binghe) > USOCKET Team > _______________________________________________ usocket-announce mailing list usocket-announce at common-lisp.net http://lists.common-lisp.net/cgi-bin/mailman/listinfo/usocket-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements