Version leap to 0.1.3
This commit is contained in:
parent
466f640565
commit
92212c4cc9
@ -25,17 +25,17 @@ By using this software you agree to the disclaimer at the end of this text:
|
||||
|
||||
Compilation, First Glimpse, Installation
|
||||
|
||||
Dynamic library and compile time header requirements for libisoburn-0.1.1 :
|
||||
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.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
|
||||
headers seen at compile time. So compile in the oldest possible installation
|
||||
setup unless you have reason to enforce a newer bug fix level.
|
||||
|
||||
Obtain libisoburn-0.1.1.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain libisoburn-0.1.3.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf libisoburn-0.1.1.tar.gz
|
||||
cd libisoburn-0.1.1
|
||||
tar xzf libisoburn-0.1.3.tar.gz
|
||||
cd libisoburn-0.1.3
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [0.1.1], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [0.1.3], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -15,7 +15,7 @@ dnl
|
||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||
ISOBURN_MAJOR_VERSION=0
|
||||
ISOBURN_MINOR_VERSION=1
|
||||
ISOBURN_MICRO_VERSION=1
|
||||
ISOBURN_MICRO_VERSION=3
|
||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||
|
||||
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
||||
@ -28,14 +28,14 @@ dnl Generate libisoburn.so.1.x.y
|
||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||
dnl
|
||||
dnl ts A80215
|
||||
dnl This is the developmen t version after stable release libisoburn.so.1.1.0
|
||||
dnl LT_CURRENT++, LT_AGE++ has not happened yet.
|
||||
dnl This is the development version after stable release libisoburn.so.1.1.0
|
||||
dnl LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||
dnl
|
||||
dnl SONAME = 2 - 1 = 1 . Library name = libburn.so.1.1.1
|
||||
dnl SONAME = 3 - 2 = 1 . Library name = libburn.so.1.2.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=2
|
||||
LT_AGE=1
|
||||
LT_REVISION=1
|
||||
LT_CURRENT=3
|
||||
LT_AGE=2
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
AC_SUBST(LT_RELEASE)
|
||||
|
@ -232,7 +232,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_header_version_major 0
|
||||
#define isoburn_header_version_minor 1
|
||||
#define isoburn_header_version_micro 1
|
||||
#define isoburn_header_version_micro 3
|
||||
/** Note:
|
||||
Above version numbers are also recorded in configure.ac because libtool
|
||||
wants them as parameters at build time.
|
||||
|
@ -4,7 +4,7 @@
|
||||
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||
Integrated sub project of libburnia-project.org but also published via:
|
||||
http://scdbackup.sourceforge.net/xorriso_eng.html
|
||||
http://scdbackup.sourceforge.net/xorriso-0.1.1.tar.gz
|
||||
http://scdbackup.sourceforge.net/xorriso-0.1.3.tar.gz
|
||||
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,
|
||||
but are not mandatory.
|
||||
|
||||
Obtain xorriso-0.1.1.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-0.1.3.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-0.1.1.tar.gz
|
||||
cd xorriso-0.1.1
|
||||
tar xzf xorriso-0.1.3.tar.gz
|
||||
cd xorriso-0.1.3
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -160,9 +160,13 @@ and a matching dynamically linked xorriso binary.
|
||||
This binary is leaner but depends on properly installed libraries of suitable
|
||||
revision.
|
||||
|
||||
Dynamic library and compile time header requirements for libisoburn-0.1.1 :
|
||||
WARNING: There is no libisoburn-0.1.2 suitable for dynamic linking because
|
||||
libisoburn-0.1.1 uses features of libisofs-0.6.3 of which the API/ABI is
|
||||
not decared frozen yet.
|
||||
|
||||
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.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
|
||||
headers seen at compile time. So compile in the oldest possible installation
|
||||
setup unless you have reason to enforce a newer bug fix level.
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT([xorriso], [0.1.1], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [0.1.3], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
current_dir=$(pwd)
|
||||
lone_dir="$current_dir"/"xorriso-standalone"
|
||||
|
||||
xorriso_rev=0.1.1
|
||||
xorriso_rev=0.1.3
|
||||
# For unstable uploads:
|
||||
xorriso_pl=""
|
||||
# For stable releases:
|
||||
|
@ -61,11 +61,11 @@ GPL software included:<BR>
|
||||
<DT>libburn-0.4.3</DT>
|
||||
<DD>reads and writes data from and to CD and DVD.</DD>
|
||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||
furthered by team of libburnia-project.org)</DD>
|
||||
<DT>libisofs-0.6.2</DT>
|
||||
furthered since August 2006 by team of libburnia-project.org)</DD>
|
||||
<DT>libisofs-0.6.3</DT>
|
||||
<DD>operates ISO 9660 images.</DD>
|
||||
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
|
||||
<DT>libisoburn-0.1.0</DT>
|
||||
<DT>libisoburn-0.1.1</DT>
|
||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
||||
<DD>(By Vreixo Formoso and Thomas Schmitt
|
||||
from team of libburnia-project.org)</DD>
|
||||
@ -90,16 +90,20 @@ ISO 9660 formatter and burner for CD or DVD are fixely integrated.
|
||||
</LI>
|
||||
<LI>
|
||||
Operates on an existing ISO image or creates a new one.
|
||||
<LI>
|
||||
</LI>
|
||||
<LI>
|
||||
Copies files from filesystem into the ISO image.
|
||||
<LI>
|
||||
</LI>
|
||||
<LI>
|
||||
Renames or deletes file objects in the ISO image.
|
||||
</LI>
|
||||
<LI>
|
||||
Changes file properties in the ISO image.
|
||||
</LI>
|
||||
<LI>
|
||||
Updates ISO subtrees incrementally to match given disk subtrees.
|
||||
</LI>
|
||||
<LI>
|
||||
Can write result as completely new image to optical media or
|
||||
filesystem objects.
|
||||
</LI>
|
||||
@ -240,6 +244,23 @@ already been done by a previous -commit.</DT>
|
||||
<HR>
|
||||
</DT>
|
||||
|
||||
<DT>The following command can be run on blank media to create a complete
|
||||
copy of the mentioned disk directory trees, and it can be run on appendable
|
||||
media to perform a minimal set of change operations which update the
|
||||
old ISO copies to match the new disk trees. On CD-R[W], DVD-R[W] and DVD+R
|
||||
older states can be retrieved by help of mount option "session=".
|
||||
So this constitutes true incremental backup.
|
||||
On overwriteable media only the newest state is accessible.
|
||||
</DT>
|
||||
<DD>$<KBD> xorriso -dev /dev/sr0 \</KBD></DD>
|
||||
<DD><KBD> -update_r /home/thomas/open_source_projects /open_source_projects \</KBD></DD>
|
||||
<DD><KBD> -update_r /home/thomas/personal_mail /personal_mail \</KBD></DD>
|
||||
<DD><KBD> -commit_eject all \</KBD></DD>
|
||||
|
||||
<DT>
|
||||
<HR>
|
||||
</DT>
|
||||
|
||||
<DT>In batch mode it is possible to operate xorriso in a pipeline
|
||||
with an external consumer of the generated ISO image. Any message
|
||||
output will be redirected to stderr in this case.</DT>
|
||||
@ -267,8 +288,8 @@ Testers wanted who are willing to risk some double layer DVD media.
|
||||
<P>
|
||||
<DL>
|
||||
<DT>Download as source code (see README):</DT>
|
||||
<DD><A HREF="xorriso-0.1.0.pl00.tar.gz">xorriso-0.1.0.pl00.tar.gz</A>
|
||||
(900 KB).
|
||||
<DD><A HREF="xorriso-0.1.2.pl00.tar.gz">xorriso-0.1.2.pl00.tar.gz</A>
|
||||
(950 KB).
|
||||
</DD>
|
||||
|
||||
<!--
|
||||
@ -306,22 +327,10 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
||||
</DL>
|
||||
</P>
|
||||
|
||||
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.1.1 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.1.0.pl00:
|
||||
<UL>
|
||||
<LI>-report_about HINT or higher did not report at all</LI>
|
||||
<LI>speed=number without unit or media type letter was always CD speed</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>- none yet -</LI> -->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.1.0.pl00:
|
||||
Enhancements towards previous stable version xorriso-0.1.0:
|
||||
<UL>
|
||||
<LI>Improved attribute transfer from disk for implicit target directories</LI>
|
||||
<LI>New option -as "cdrecord" emulates a narrow set of cdrecord gestures</LI>
|
||||
@ -329,30 +338,62 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
||||
<LI>New option -publisher</LI>
|
||||
<LI>New option -errfile_log</LI>
|
||||
<LI>Support for DVD+R/DL media</LI>
|
||||
<!-- not complete yet
|
||||
<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>- none yet -</LI> -->
|
||||
<LI>New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir"
|
||||
</LI>
|
||||
<LI>New option -cut_out</LI>
|
||||
</UL>
|
||||
Bug fixes towards xorriso-0.1.0.pl00:
|
||||
<UL>
|
||||
<LI>-report_about HINT or higher did not report at all</LI>
|
||||
<LI>speed=number without unit or media type letter was always CD speed</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>
|
||||
</P>
|
||||
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.1.3 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.1.2.pl00:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.1.2.pl00:
|
||||
<UL>
|
||||
<LI>- none yet -</LI>
|
||||
</UL>
|
||||
</DD>
|
||||
<DD> </DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.1.1</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.1.1 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.1)</A></DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.1.3</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.1.3 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.3)</A></DD>
|
||||
<DD> </DD>
|
||||
<DT>The following download is intended for adventurous end users or
|
||||
admins with full system souvereignty.</DT>
|
||||
<DT>If you want to distribute development versions of xorriso, then use
|
||||
this tarball which produces static linking between xorriso and the
|
||||
libburnia libraries.
|
||||
</DT>
|
||||
<DD>Source (./bootstrap is already applied, build tested,
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-0.1.1.tar.gz">xorriso-0.1.1.tar.gz</A>
|
||||
(900 KB).
|
||||
<A HREF="xorriso-0.1.3.tar.gz">xorriso-0.1.3.tar.gz</A>
|
||||
(950 KB).
|
||||
</DD>
|
||||
<DT>Maintainers of dynamically linked xorriso please use SVN of
|
||||
<DT>A dynamically linked development version of xorriso can be obtained
|
||||
from repositories of
|
||||
<A HREF="http://libburnia-project.org"> libburnia-project.org</A>.
|
||||
xorriso is part of libisoburn/trunk and will get built by its "make".</DT>
|
||||
xorriso is part of libisoburn/trunk and will get built by its "make".
|
||||
</DT>
|
||||
<DT>Be warned that the libraries in SVN and bzr are development versions with
|
||||
possibly unstable API/ABI enhancements. Do not distribute development
|
||||
versions for dynamic linking. Only release versions are safe for that.
|
||||
</DT>
|
||||
<DD>Download: <KBD><B>svn co http://svn.libburnia-project.org/libburn/trunk libburn</B>
|
||||
</KBD></DD>
|
||||
<DD>Install: <KBD><B>cd libburn ; ./bootstrap ; ./configure --prefix /usr ; make ; make install</B>
|
||||
@ -426,6 +467,7 @@ pppoem, a DSL throughput monitor (mainly for Linux kernel 2.4)</A></DD>
|
||||
</DL>
|
||||
<BR><BR>
|
||||
Legal statement: This website does not serve any commercial purpose.<BR>
|
||||
<BR><BR>
|
||||
</FONT>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
@ -18,7 +18,7 @@
|
||||
#ifndef Xorriso_private_includeD
|
||||
#define Xorriso_private_includeD yes
|
||||
|
||||
#define Xorriso_program_versioN "0.1.1"
|
||||
#define Xorriso_program_versioN "0.1.3"
|
||||
|
||||
/** The source code release timestamp */
|
||||
#include "xorriso_timestamp.h"
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2008.03.11.113444"
|
||||
#define Xorriso_timestamP "2008.03.12.130605"
|
||||
|
@ -21,7 +21,7 @@ struct FindjoB;
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 0
|
||||
#define xorriso_libisoburn_req_minor 1
|
||||
#define xorriso_libisoburn_req_micro 0
|
||||
#define xorriso_libisoburn_req_micro 3
|
||||
|
||||
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user