source: public_html/release-notes-1.3.1.shtml

Last change on this file was 15275, checked in by Mark Evenson, 4 years ago

site: clean up HTML

Start moving all presentation logic into CSS.

Declare documents as polyglot HTML5/XHTML
<https://dev.w3.org/html5/html-polyglot/html-polyglot.htm>.

Strip use SVN $Id$ expansion as this doesn't convey any useful
information to the actual reader of the page.

File size: 2.7 KB
Line 
1<!DOCTYPE html>
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4  <title>Release Notes for ABCL 1.3.1</title>
5  <link rel="stylesheet" type="text/css" href="style.css"/>
6  <link rel="rdf" type="application/rdf" href="https://abcl.org/svn/tags/1.2.0/abcl/abcl.rdf"/>
7  <meta charset="utf-8"/>
8</head>
9
10<body>
11 <div id="title" class="header">
12   <h1>Release Notes for ABCL 1.3.1</h1>
13 </div>
14
15<!--#include virtual="left-menu" -->
16
17<div class="rn">
18
19<p>
20  abcl-1.3.1 is a maintenance release.
21</p>
22
23<pre>
24
25http://abcl.org/svn/tags/1.3.1/
2630-APR-2014
27
28## Fixed
29
30*  The underlying Java Function Interface (JFI) now converts CL:T and
31   CL:NIL to JAVA:+TRUE+ and JAVA:+FALSE+.  Users who wish to
32   reference a JAVA:+NULL+ should do so explicitly.
33   <http://abcl.org/trac/changeset/14694>
34
35*  Make JCALL work in more places.  Thanks to Olof-Joachim Frahm.
36   <http://abcl.org/trac/changeset/14683>
37
38*  Interpolate CL:SLEEP and THREADS:OBJECT-WAIT for timeouts below the
39   Planck timer ("1ns") to a nanosecond.
40   <http://abcl.org/trac/changeset/14679>
41
42*  Update to ASDF 3.1.0.103.
43   <http://abcl.org/trac/changeset/14661>
44
45   Fixes loading of Ironclad and other Quicklisp systems.
46
47*  Fix Uniform Naming Convention (aka "UNC" or "network") paths under Windows.
48   <http://abcl.org/trac/changeset/14659>
49
50   DIRECTORY now works again on UNC paths.
51
52   UNC paths may be either specified with either back slash (#\\) or
53   forward slash (#\/) doubled as the first character in a Pathname
54   namestring.
55
56   The patterns in
57
58        //<server>/<share>/[directories-and-files]
59
60   are parsed as
61
62    <server> is stored as HOST.
63
64    <share> is stored as DEVICE.
65
66    [directories-and-files] gets parsed as per the normal rules under
67    Windows.
68
69   Mixing namestrings with both backslash and slash characters can
70   lead to unpredictable results.  It is recommended not to use
71   backslash characters in namestrings if it can be avoided.  The
72   pathname printed representation is always normalized to using
73   forward slash delimiters.
74
75*  Find contrib based on system jar name.
76   <http://abcl.org/trac/changeset/14657>
77
78   From Olof-Joachim Frahm.
79
80
81## Tested
82
83### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.7.0_51-b13" "x86_64-Mac_OS_X-10.9.1"
84
85### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.8.0-b129" "x86_64-Mac_OS_X-10.9.2"
86
87
88</pre>
89
90<p>The distribution (perhaps) contains a more detailed documentation of <a href="http://abcl.org/svn/tags/1.3.1/CHANGES">CHANGES</a>.</p>
91 
92
93<p><a href="release-notes.shtml">Release notes for older releases of ABCL</a>.</p>
94
95</div>
96
97    <div class="footer">
98  <hr />
99  <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
100</div>
101
102</body>
103</html>
Note: See TracBrowser for help on using the repository browser.