Compare commits

...

4 Commits

Author SHA1 Message Date
16c4e3b5dc And libisoburn 0.1.4 is out soon! 2008-04-30 05:41:57 +00:00
763f8a8fcb Documented changes and release timestamp 2008-04-28 11:53:45 +00:00
c09d5b8a2c Version leap to 0.1.4 2008-04-28 11:50:37 +00:00
08507c3faf Done branch 2008-04-28 10:24:49 +00:00
11 changed files with 276 additions and 109 deletions

19
README
View File

@ -1,5 +1,5 @@
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
libburnia-project.org http:libburnia-project.org
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es> libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net> and Thomas Schmitt <scdbackup@gmx.net>
@ -25,17 +25,18 @@ By using this software you agree to the disclaimer at the end of this text:
Compilation, First Glimpse, Installation Compilation, First Glimpse, Installation
Dynamic library and compile time header requirements for libisoburn-0.1.3 : Dynamic library and compile time header requirements for libisoburn-0.1.4 :
- libburn.so.4 , version libburn-0.4.2 or higher - libburn.so.4 , version libburn-0.4.4 or higher
- libisofs.so.6 , version libisofs-0.6.3 or higher - libisofs.so.6 , version libisofs-0.6.4 or higher
libisoburn and xorriso will not start with libraries which are older than their libisoburn and xorriso will not start with libraries which are older than their
headers seen at compile time. So compile in the oldest possible installation headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level. setup unless you have reason to enforce a newer bug fix level.
Obtain libisoburn-0.1.3.tar.gz, take it to a directory of your choice and do: Obtain libisoburn-0.1.4.pl00.tar.gz, take it to a directory of your choice
and do:
tar xzf libisoburn-0.1.3.tar.gz tar xzf libisoburn-0.1.4.pl00.tar.gz
cd libisoburn-0.1.3 cd libisoburn-0.1.4
Within that directory execute: Within that directory execute:
@ -44,7 +45,7 @@ Within that directory execute:
Then become superuser and execute Then become superuser and execute
make install make install
which will make available libisoburn.so.1 . which will make available libisoburn.so.1 and program xorriso.
For the API concepts and calls see For the API concepts and calls see
./libisoburn/libisoburn.h ./libisoburn/libisoburn.h
@ -59,7 +60,7 @@ libisoburn includes a command line and dialog application named xorriso,
which offers a substantial part of libisoburn features to shell scripts and which offers a substantial part of libisoburn features to shell scripts and
users. Its file xorriso/README describes a standlone tarball as first users. Its file xorriso/README describes a standlone tarball as first
preference for xorriso installation. preference for xorriso installation.
The installation described here produces a dynamically linked xorriso binary The installation described above produces a dynamically linked xorriso binary
as described in chapter "libisoburn" at the end of that text. as described in chapter "libisoburn" at the end of that text.
After installation documentation is available via After installation documentation is available via

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.1.3], [http://libburnia-project.org]) AC_INIT([libisoburn], [0.1.4], [http://libburnia-project.org])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])
@ -7,6 +7,12 @@ AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([subdir-objects]) AM_INIT_AUTOMAKE([subdir-objects])
dnl Hint: Search list for version code aspects:
dnl /AC_INT(
dnl /ISOBURN_.*_VERSION
dnl /LT_.*
dnl /LIB.*_REQUIRED
dnl The API version codes are now defined in libisoburn/libisoburn.h dnl The API version codes are now defined in libisoburn/libisoburn.h
dnl #define isoburn_header_version_* dnl #define isoburn_header_version_*
dnl configure.ac only rules the libtool revision numbering about dnl configure.ac only rules the libtool revision numbering about
@ -15,7 +21,7 @@ dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=0 ISOBURN_MAJOR_VERSION=0
ISOBURN_MINOR_VERSION=1 ISOBURN_MINOR_VERSION=1
ISOBURN_MICRO_VERSION=3 ISOBURN_MICRO_VERSION=4
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
AC_SUBST(ISOBURN_MAJOR_VERSION) AC_SUBST(ISOBURN_MAJOR_VERSION)
@ -27,14 +33,15 @@ dnl Libtool versioning
dnl Generate libisoburn.so.1.x.y dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE dnl SONAME will become LT_CURRENT - LT_AGE
dnl dnl
dnl ts A80215 dnl ts A80428
dnl This is the development version after stable release libisoburn.so.1.1.0 dnl This is the release version 0.1.4 = libisoburn.so.1.3.0
dnl LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl ###This is the development version after stable release libisoburn.so.1.3.0
dnl ### LT_CURRENT++, LT_AGE++ havae not happened yet.
dnl dnl
dnl SONAME = 3 - 2 = 1 . Library name = libburn.so.1.2.0 dnl SONAME = 4 - 3 = 1 . Library name = libburn.so.1.3.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=3 LT_CURRENT=4
LT_AGE=2 LT_AGE=3
LT_REVISION=0 LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
@ -92,8 +99,8 @@ AC_CHECK_HEADER(libburn/libburn.h)
AC_CHECK_HEADER(libisofs/libisofs.h) AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions dnl Check for proper library versions
LIBBURN_REQUIRED=0.4.2 LIBBURN_REQUIRED=0.4.4
LIBISOFS_REQUIRED=0.6.2 LIBISOFS_REQUIRED=0.6.4
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED) PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED) PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)

View File

@ -188,7 +188,7 @@ void isoburn_version(int *major, int *minor, int *micro);
*/ */
#define isoburn_libisofs_req_major 0 #define isoburn_libisofs_req_major 0
#define isoburn_libisofs_req_minor 6 #define isoburn_libisofs_req_minor 6
#define isoburn_libisofs_req_micro 3 #define isoburn_libisofs_req_micro 4
/** The minimum version of libburn to be used with this version of libisoburn /** The minimum version of libburn to be used with this version of libisoburn
at compile time. at compile time.
@ -232,7 +232,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
*/ */
#define isoburn_header_version_major 0 #define isoburn_header_version_major 0
#define isoburn_header_version_minor 1 #define isoburn_header_version_minor 1
#define isoburn_header_version_micro 3 #define isoburn_header_version_micro 4
/** Note: /** Note:
Above version numbers are also recorded in configure.ac because libtool Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time. wants them as parameters at build time.

View File

@ -4,7 +4,7 @@
xorriso. By Thomas Schmitt <scdbackup@gmx.net> xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org but also published via: Integrated sub project of libburnia-project.org but also published via:
http://scdbackup.sourceforge.net/xorriso_eng.html http://scdbackup.sourceforge.net/xorriso_eng.html
http://scdbackup.sourceforge.net/xorriso-0.1.3.tar.gz http://scdbackup.sourceforge.net/xorriso-0.1.4.pl00.tar.gz
Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2. Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -35,10 +35,10 @@ The tarball contains anything that is needed except libc and libpthread.
libreadline and the readline-dev headers will make dialog mode more convenient, libreadline and the readline-dev headers will make dialog mode more convenient,
but are not mandatory. but are not mandatory.
Obtain xorriso-0.1.3.tar.gz, take it to a directory of your choice and do: Obtain xorriso-0.1.4.pl00.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.1.3.tar.gz tar xzf xorriso-0.1.4.pl00.tar.gz
cd xorriso-0.1.3 cd xorriso-0.1.4
Within that directory execute: Within that directory execute:
@ -160,13 +160,9 @@ and a matching dynamically linked xorriso binary.
This binary is leaner but depends on properly installed libraries of suitable This binary is leaner but depends on properly installed libraries of suitable
revision. revision.
WARNING: There is no libisoburn-0.1.2 suitable for dynamic linking because Dynamic library and compile time header requirements for libisoburn-0.1.4 :
libisoburn-0.1.1 uses features of libisofs-0.6.3 of which the API/ABI is - libburn.so.4 , version libburn-0.4.4 or higher
not decared frozen yet. - libisofs.so.6 , version libisofs-0.6.4 or higher
Dynamic library and compile time header requirements for libisoburn-0.1.3 :
- libburn.so.4 , version libburn-0.4.2 or higher
- libisofs.so.6 , version libisofs-0.6.3 or higher
libisoburn and xorriso will not start with libraries which are older than their libisoburn and xorriso will not start with libraries which are older than their
headers seen at compile time. So compile in the oldest possible installation headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level. setup unless you have reason to enforce a newer bug fix level.

View File

@ -2040,7 +2040,7 @@ xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt xorriso/configure_ac.txt
Version leap to xorriso-0.1.2 Version leap to xorriso-0.1.2
------------------------------------ cycle - xorriso-0.1.2 - 2008.03. ---------------------------------- release - xorriso-0.1.2 - 2008.03.12.100001
* Bug fix: -report_about HINT or higher did not report at all * Bug fix: -report_about HINT or higher did not report at all
* Bug fix: speed=number without unit or media type letter was always CD speed * Bug fix: speed=number without unit or media type letter was always CD speed
* Bug fix: it was possible to write to appendable media which was not -indev * Bug fix: it was possible to write to appendable media which was not -indev
@ -2073,9 +2073,208 @@ Version leap to 0.1.3
------------------------------------ cycle - xorriso-0.1.3 - 2008.03.12.130605 ------------------------------------ cycle - xorriso-0.1.3 - 2008.03.12.130605
12 Mar 2008 [XorrisoZeroOneTwo ] [] 12 Mar 2008 [XorrisoZeroOneTwo 1628] [1629]
xorriso/changelog.txt xorriso/changelog.txt
Document changes and release timestamp Documented changes and release timestamp
2008.03.19.081837 [1637]
xorriso/xorriso.c
Bug fix: -as mkisofs -nopad must be -no-pad
19 Mar 2008 [1638]
xorriso/xorriso.1
Added a hint about alternating media with -update_r
------------------------------------ cycle - xorriso-0.1.3 - 2008.03.19.081837
* Bug fix: -as mkisofs -no-pad was misspelled -nopad
20 Mar 2008 [1639]
xorriso/README
Added -commit_eject all to an example which involves mount
2008.03.20.192317 [1640]
xorriso/xorriso.c
Changed messages of -update and -update_r
2008.03.20.210522 [1641]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
Better handling of attempt to manipulate non-existent ISO image
2008.03.22.130031 [1642]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
Working towards coordination of -compare, -update and -cut_out
2008.03.22.130128 [1643]
xorriso/xorrisoburn.c
Bug fix: Implicite directory attribute copying with -cut_out was wrong
------------------------------------ cycle - xorriso-0.1.3 - 2008.03.22.130128
* Bug fix: Implicite directory attribute copying with -cut_out was wrong
22 Mar 2008 [1644]
xorriso/xorriso.1
Correction about Linux mount which does not accept session= with DVD.
2008.03.25.170747 [1645]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
Working towards coordination of -compare, -update and -cut_out
2008.03.26.092120 [1646]
xorriso/xorrisoburn.c
Gave up obsoleted macros and their code branches
2008.03.27.103344 [1647]
xorriso/xorriso.c
xorriso/xorrisoburn.c
Working towards coordination of -update and -cut_out
27 Mar 2008 [1648]
xorriso/xorriso.1
Published coordination rules for -cut_out, -compare and -update
2008.03.29.164038 [1649]
xorriso/xorriso_private.h
xorriso/xorriso.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
xorriso/xorriso.1
New option -split_size, automated splitting of oversized files
------------------------------------ cycle - xorriso-0.1.3 - 2008.03.29.164038
* Coordination of -cut_out, -compare and -update
* New option -split_size, automated splitting of oversized files
2008.03.31.081347 [1650]
xorriso/xorriso.c
xorriso/xorriso.1
Adjusted documentation of -split_size
2008.04.01.213121 [1652]
libisoburn/data_source.c
Replaced single 128 kB cache tile by 32 tiles of 64 kB each
2 Apr 2008 [1653]
COPYRIGHT
Corrected GPL version
------------------------------------ cycle - xorriso-0.1.3 - 2008.04.03.074309
* Improved performance with reading directory trees
2008.04.03.204051 [1657]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New option -session_log
5 Apr 2008 [1658]
xorriso/xorriso.1
Mentioned that drives close full media automatically
2008.04.05.112055 [1659]
xorriso/xorrisoburn.c
Reporting amount of non-data with -toc media summary
5 Apr 2008 [1660]
xorriso/xorriso_eng.html
Mentioned new features
------------------------------------ cycle - xorriso-0.1.3 - 2008.04.05.112055
* New option -session_log
2008.04.07.185727 [1662]
xorriso/xorriso.h
Added prototype of Xorriso_option_session_log()
2008.04.07.201253 [1664]
xorriso/xorriso.c
xorriso/xorrisoburn.c
Removed some unused code
8 Apr 2008 [1677]
xorriso/configure_ac.txt
Followed version leaps of libburn
2008.04.08.153508 [1678]
libisoburn/libisoburn.h
xorriso/xorrisoburn.c
Made libisoburn and xorriso require libburn >= 0.4.4
2008.04.09.114815 [1679]
xorriso/xorriso.c
xorriso/xorrisoburn.c
Corrected behavior around image data read error
2008.04.12.112159 [1682]
xorriso/xorriso.c
Changed behavior of -commit_eject ""
2008.04.18.184517 [1690]
libisoburn/data_source.c
Restricted ds_read_block() messages about unreadable data to actual data block
2008.04.20.111054 [1692]
libisoburn/data_source.c
Corrected maximum age value for read buffer tiles
20 Apr 2008 [1693]
xorriso/xorriso.1
Mentioned stdin with option -path_list
2008.04.20.111419 [1694]
libisoburn/burn_wrap.c
xorriso/xorrisoburn.c
Displaying free space rather than "non-data" on drive aquiry and -toc
28 Apr 2008 [1709]
xorriso/configure_ac.txt
Updated libisofs version number in xorriso-standalone
------------------------------------ cycle - xorriso-0.1.3 - 2008.04.28.082539
* Now depending on libisofs-0.6.4
2008.04.28.120001 [branch ]
configure.ac
README
libisoburn/libisoburn.h (isoburn_header_version_*)
xorriso/README
xorriso/xorriso_timestamp.h
xorriso/xorriso_private.h
xorriso/xorrisoburn.h (xorriso_libisoburn_req_*)
xorriso/xorriso_eng.html
xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt
Version leap to 0.1.4
28 Apr 2008 [branch ]
xorriso/changelog.txt
Documented changes and release timestamp
---------------------------------- release - xorriso-0.1.4 - 2008.04.28.120001
* Bug fix: -as mkisofs -no-pad was misspelled -nopad
* Bug fix: Implicite directory attribute copying with -cut_out was wrong
* Coordination of -cut_out, -compare and -update
* New option -split_size, automated splitting of oversized files
* Improved performance with reading directory trees
* New option -session_log
* Dynamically linkable with release version 0.6.4 of libisofs
------------------------------------ cycle - xorriso-0.1.5 -
=============================================================================== ===============================================================================
TODO TODO
@ -2083,19 +2282,21 @@ Document changes and release timestamp
------------------------------------------------- bugs ------------------------------------------------- bugs
------------------------------------------------- important - downgrade unreadable image from FAILURE to WARNING
- improved read performance: ------------------------------------------------- important
> libisoburn/data_source.c: ds_read_block()
- multi-tile cache for image data reading
- pacifier for -compare_r : try read pacifier without newline - pacifier for -compare_r : try read pacifier without newline
------------------------------------------------- development ------------------------------------------------- development
- report LBA of session start after writing, have LBA log file
- evaluate possibility of emulated session table on overwriteables - evaluate possibility of emulated session table on overwriteables
- exclusion of unwanted files and subtrees
- leaf
- branch
- option -map disk_path iso_rr_path for no-fuzz file mapping
- mkisofs,cdrecord multi session - mkisofs,cdrecord multi session

View File

@ -1,4 +1,4 @@
AC_INIT([xorriso], [0.1.3], [http://libburnia-project.org]) AC_INIT([xorriso], [0.1.4], [http://libburnia-project.org])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])

View File

@ -25,11 +25,11 @@
current_dir=$(pwd) current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone" lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.1.3 xorriso_rev=0.1.4
# For unstable uploads: # For unstable uploads:
xorriso_pl="" # xorriso_pl=""
# For stable releases: # For stable releases:
# xorriso_pl=".pl00" xorriso_pl=".pl00"
with_bootstrap_tarball=1 with_bootstrap_tarball=1

View File

@ -58,14 +58,14 @@ and to MMC-5 for DVD).
GPL software included:<BR> GPL software included:<BR>
</H2> </H2>
<DL> <DL>
<DT>libburn-0.4.3</DT> <DT>libburn-0.4.5</DT>
<DD>reads and writes data from and to CD and DVD.</DD> <DD>reads and writes data from and to CD and DVD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens, <DD>(founded by Derek Foreman and Ben Jansens,
furthered since August 2006 by team of libburnia-project.org)</DD> furthered since August 2006 by team of libburnia-project.org)</DD>
<DT>libisofs-0.6.3</DT> <DT>libisofs-0.6.4</DT>
<DD>operates ISO 9660 images.</DD> <DD>operates ISO 9660 images.</DD>
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD> <DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
<DT>libisoburn-0.1.1</DT> <DT>libisoburn-0.1.4</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD> <DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
<DD>(By Vreixo Formoso and Thomas Schmitt <DD>(By Vreixo Formoso and Thomas Schmitt
from team of libburnia-project.org)</DD> from team of libburnia-project.org)</DD>
@ -287,25 +287,10 @@ Testers wanted who are willing to risk some double layer DVD media.
<A NAME="download"></A> <A NAME="download"></A>
<P> <P>
<DL> <DL>
<DT>Download as source code (see README):</DT> <DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-0.1.2.pl00.tar.gz">xorriso-0.1.2.pl00.tar.gz</A> <DD><A HREF="xorriso-0.1.4.pl00.tar.gz">xorriso-0.1.4.pl00.tar.gz</A>
(950 KB). (955 KB).
</DD> </DD>
<!--
<DD>&nbsp;</DD>
<DT>Download as single x86 binaries (untar and move to /usr/bin/xorriso):</DT>
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0.tar.gz">
xorriso_0.1.0.pl00-x86-suse9_0.tar.gz</A>, ( KB),
<DL>
<DD>runs on SuSE 9.0 (2.4.21) , SuSE 10.2 (2.6.18.2) and others.</DD>
</DL>
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz">
xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz</A>, ( KB), -static compiled,
<DL>
<DD>runs on many other systems.</DD>
-->
</DL> </DL>
</DD> </DD>
</DL> </DL>
@ -330,27 +315,18 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
<HR> <HR>
<P> <P>
Enhancements towards previous stable version xorriso-0.1.0: Enhancements towards previous stable version xorriso-0.1.2.pl00:
<UL> <UL>
<LI>Improved attribute transfer from disk for implicit target directories</LI> <LI>Coordination of -cut_out, -compare and -update</LI>
<LI>New option -as "cdrecord" emulates a narrow set of cdrecord gestures</LI> <LI>New option -split_size, automated splitting of oversized files</LI>
<LI>New option -as "mkisofs" emulates a narrow set of mkisofs gestures</LI> <LI>Improved performance with reading directory trees</LI>
<LI>New option -publisher</LI> <LI>New option -session_log</LI>
<LI>New option -errfile_log</LI> <LI>Dynamically linkable with release version 0.6.4 of libisofs</LI>
<LI>Support for DVD+R/DL media</LI>
<LI>New options -compare , -compare_r and according -find -exec action</LI>
<LI>New options -update , -update_r and according -find -exec action</LI>
<LI>New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir"
</LI>
<LI>New option -cut_out</LI>
</UL> </UL>
Bug fixes towards xorriso-0.1.0.pl00: Bug fixes towards xorriso-0.1.2.pl00:
<UL> <UL>
<LI>-report_about HINT or higher did not report at all</LI> <LI>-as mkisofs -no-pad was misspelled -nopad</LI>
<LI>speed=number without unit or media type letter was always CD speed</LI> <LI>Implicite directory attribute copying with -cut_out was wrong</LI>
<LI>It was possible to write to appendable media which was not -indev</LI>
<LI>-follow param did not work for adding non-directory symbolic links</LI>
<LI>It was not possible to do: -add /THIS=a /b=THIS --</LI>
</UL> </UL>
</P> </P>
@ -358,27 +334,23 @@ Bug fixes towards xorriso-0.1.0.pl00:
<P> <P>
<DL> <DL>
<DT><H3>Development snapshot, version 0.1.3 :</H3></DT> <DT><H3>Development snapshot, version 0.1.5 :</H3></DT>
<DD>Bug fixes towards xorriso-0.1.2.pl00: <DD>Bug fixes towards xorriso-0.1.4.pl00:
<UL> <UL>
<LI>-as mkisofs -no-pad was misspelled -nopad</LI> <LI>- none yet -</LI>
<LI>Implicite directory attribute copying with -cut_out was wrong</LI>
<!-- <LI>- none yet -</LI> --> <!-- <LI>- none yet -</LI> -->
</UL> </UL>
</DD> </DD>
<DD>Enhancements towards stable version 0.1.2.pl00: <DD>Enhancements towards stable version 0.1.4.pl00:
<UL> <UL>
<LI>Coordination of -cut_out, -compare and -update</LI> <LI>- none yet -</LI>
<LI>New option -session_log</LI>
<LI>New option -split_size allows automated splitting of oversized files</LI>
<LI>Improved performance with reading directory trees</LI>
<!-- <LI>- none yet -</LI> --> <!-- <LI>- none yet -</LI> -->
</UL> </UL>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 0.1.3</A> <DD><A HREF="README_xorriso_devel">README 0.1.5</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.1.3 -help</A></DD> <DD><A HREF="xorriso_help_devel">xorriso_0.1.5 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.3)</A></DD> <DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.5)</A></DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DT>If you want to distribute development versions of xorriso, then use <DT>If you want to distribute development versions of xorriso, then use
this tarball which produces static linking between xorriso and the this tarball which produces static linking between xorriso and the
@ -388,7 +360,7 @@ libburnia libraries.
installation see README) installation see README)
</DD> </DD>
<DD> <DD>
<A HREF="xorriso-0.1.3.tar.gz">xorriso-0.1.3.tar.gz</A> <A HREF="xorriso-0.1.5.tar.gz">xorriso-0.1.5.tar.gz</A>
(960 KB). (960 KB).
</DD> </DD>
<DT>A dynamically linked development version of xorriso can be obtained <DT>A dynamically linked development version of xorriso can be obtained
@ -418,16 +390,6 @@ vanilla tools like make and gcc are needed.</DD>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<!--
<DD>Binary (untar and move to /usr/bin/xorriso):</DD>
<DD><A HREF="xorriso_0.1.1-x86-suse9_0.tar.gz">
xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB).
</DD>
<DD><A HREF="xorriso_0.1.1-x86-suse9_0-static.tar.gz">
xorriso_0.1.1-x86-suse9_0-static.tar.gz</A>, ( KB)
</DD>
-->
</DL> </DL>
</P> </P>

View File

@ -18,7 +18,7 @@
#ifndef Xorriso_private_includeD #ifndef Xorriso_private_includeD
#define Xorriso_private_includeD yes #define Xorriso_private_includeD yes
#define Xorriso_program_versioN "0.1.3" #define Xorriso_program_versioN "0.1.4"
/** The source code release timestamp */ /** The source code release timestamp */
#include "xorriso_timestamp.h" #include "xorriso_timestamp.h"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.04.20.111419" #define Xorriso_timestamP "2008.04.28.120001"

View File

@ -21,7 +21,7 @@ struct FindjoB;
*/ */
#define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 1 #define xorriso_libisoburn_req_minor 1
#define xorriso_libisoburn_req_micro 3 #define xorriso_libisoburn_req_micro 4
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag); int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);