2001-06-06 20:40:57 +01:00
|
|
|
=================================================================
|
|
|
|
Logtalk - Object oriented extension to Prolog
|
2004-04-02 15:39:36 +01:00
|
|
|
Release 2.16.2
|
2001-06-06 20:40:57 +01:00
|
|
|
|
2004-02-09 14:18:27 +00:00
|
|
|
Copyright (c) 1998-2004 Paulo Moura. All Rights Reserved.
|
2001-06-06 20:40:57 +01:00
|
|
|
=================================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Upgrading from Logtalk 1.x
|
|
|
|
==========================
|
|
|
|
|
|
|
|
Logtalk 2.x is not compatible with programs written for version 1.x.
|
|
|
|
However, you should be able to translate most programs to make them
|
|
|
|
run under this new version. Most of the examples provided with previous
|
|
|
|
versions have been rewritten to run under version 2.x. Use them as
|
|
|
|
translation examples.
|
|
|
|
|
|
|
|
|
|
|
|
Upgrading from a previous Logtalk 2.x version
|
|
|
|
=============================================
|
|
|
|
|
|
|
|
If your Logtalk programs depend on some of the example files, it is
|
|
|
|
advisable that you check your code against the new version before
|
|
|
|
throwing away the older release.
|
|
|
|
|
|
|
|
Logtalk source files will need to be recompiled because of the changes
|
|
|
|
done in the version 2.5.0 to improve message sending performance.
|
|
|
|
|
|
|
|
Logtalk version 2.7.0 provides the first cut of the Logtalk standard library.
|
|
|
|
Most examples have been rewritten to take advantage of the library.
|
|
|
|
|
|
|
|
Logtalk version 2.8.0 introduces a small change on the logtalk_compile/1-2
|
|
|
|
and logtalk_load/1-2 predicates that may imply updating your loader utility
|
|
|
|
files: the first argument is now always a list of entities even if we want
|
2002-01-07 22:59:00 +00:00
|
|
|
to compile or load a single entity.
|
|
|
|
|
|
|
|
Logtalk version 2.9.0 changes compiled code functors postfixes from "_sdcl"
|
2004-03-03 04:07:59 +00:00
|
|
|
and "_sdef" to "_idcl" and "_idef", implying recompilation of all objects,
|
2002-01-07 22:59:00 +00:00
|
|
|
protocols, and categories.
|
2002-04-03 14:26:59 +01:00
|
|
|
|
|
|
|
Logtalk version 2.10.0 changes some of the semantics of object dynamic
|
|
|
|
predicates. See the release notes for a description of the changes.
|
2002-11-04 21:29:14 +00:00
|
|
|
|
2004-03-03 04:07:59 +00:00
|
|
|
Logtalk version 2.14.4 removes the definition of the deprecated built-in
|
2002-11-04 21:29:14 +00:00
|
|
|
predicate logtalk_version/3 (use current_logtalk_flag/3 instead).
|
2002-12-20 02:06:55 +00:00
|
|
|
|
|
|
|
Logtalk version 2.14.5 changes compiled code in order to correct a bug
|
|
|
|
where sending messages such as true/0 to an unknown object will succeeded
|
2004-03-03 04:07:59 +00:00
|
|
|
instead of throwing the expected exception, implying recompilation of all
|
2002-12-20 02:06:55 +00:00
|
|
|
objects, protocols, and categories.
|
2003-01-09 21:29:22 +00:00
|
|
|
|
|
|
|
Logtalk version 2.14.7 changes compiled code in order to optimize the
|
|
|
|
code generated by the compilation of dynamic predicate clauses.
|
2003-02-05 00:15:28 +00:00
|
|
|
|
|
|
|
Logtalk version 2.15.0 changes the "authors" key in the directive info/1 to
|
|
|
|
"author". All the XSLT, DTD, and XSD files have been update to conform to
|
|
|
|
this change. If you use the directive info/1 in your programs, you will need
|
|
|
|
to apply this change to take advantage of automatic generation of documenting
|
|
|
|
files.
|
2003-06-26 15:52:54 +01:00
|
|
|
|
|
|
|
Logtalk version 2.15.3 changes the format of the runtime entity tables,
|
2004-03-03 04:07:59 +00:00
|
|
|
implying recompilation of all objects, protocols, and categories.
|
2004-02-09 14:18:27 +00:00
|
|
|
|
|
|
|
Logtalk version 2.15.6 renamed the compiler option "named_anonymous_vars" to
|
|
|
|
"underscore_vars" and changed the possible option values form "on/off" to
|
|
|
|
"dont_care/singletons".
|
2004-03-03 04:07:59 +00:00
|
|
|
|
|
|
|
Logtalk 2.16.0 improves support for the declaration and use of operators
|
|
|
|
local to objects and categories. Recompilation of any objects and categories
|
2004-03-23 17:51:43 +00:00
|
|
|
containing operator declarations is needed in order to take advantage of the
|
2004-03-03 04:07:59 +00:00
|
|
|
improvements made.
|
2004-04-02 15:39:36 +01:00
|
|
|
|
|
|
|
Logtalk 2.16.1 now checks for attempts to redefined built-in Logtalk control
|
|
|
|
constructs when compiling source files. These checks may generate compilation
|
|
|
|
errors on files containing bugs that are not detected on previous versions of
|
|
|
|
the compiler.
|
|
|
|
|
|
|
|
Logtalk version 2.16.2 changed the possible option values of the read-only
|
|
|
|
compiler option "startup_message" to "none", "banner", and "flags". Default
|
|
|
|
value is "flags" (print both banner and default flag values).
|