From a2c7c523aa064d8d129e72d3c6055172272393dc Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 18 May 2008 08:48:07 +0000 Subject: [PATCH] Version leap to 0.1.7, requiring libburn-0.4.8 now --- README | 16 +- configure.ac | 20 +- libisoburn/libisoburn.h | 4 +- xorriso/README | 12 +- xorriso/changelog.txt | 299 +++++++++++++++++++++++++++-- xorriso/configure_ac.txt | 4 +- xorriso/make_xorriso_standalone.sh | 2 +- xorriso/xorriso_eng.html | 112 +++++------ xorriso/xorriso_private.h | 2 +- xorriso/xorriso_timestamp.h | 2 +- xorriso/xorrisoburn.h | 2 +- 11 files changed, 365 insertions(+), 110 deletions(-) diff --git a/README b/README index 391d3ed7..85e9d32a 100644 --- a/README +++ b/README @@ -25,18 +25,18 @@ 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.5 : -- libburn.so.4 , version libburn-0.4.4 or higher +Dynamic library and compile time header requirements for libisoburn-0.1.7 : +- libburn.so.4 , version libburn-0.4.8 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 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.5.tar.gz, take it to a directory of your choice +Obtain libisoburn-0.1.7.tar.gz, take it to a directory of your choice and do: - tar xzf libisoburn-0.1.5.tar.gz - cd libisoburn-0.1.5 + tar xzf libisoburn-0.1.7.tar.gz + cd libisoburn-0.1.7 Within that directory execute: @@ -58,10 +58,10 @@ as well as libisoburn includes a command line and dialog application named xorriso, 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 standalone tarball as first preference for xorriso installation. -The installation described above produces a dynamically linked xorriso binary -as described in chapter "libisoburn" at the end of that text. +The libisoburn installation described above produces a dynamically linked +xorriso binary depending on libburn.so, libisofs.so, libisoburn.so. After installation documentation is available via man xorriso diff --git a/configure.ac b/configure.ac index 762fe5c1..dac7ad59 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisoburn], [0.1.5], [http://libburnia-project.org]) +AC_INIT([libisoburn], [0.1.7], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -21,7 +21,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=5 +ISOBURN_MICRO_VERSION=7 dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION AC_SUBST(ISOBURN_MAJOR_VERSION) @@ -33,15 +33,15 @@ dnl Libtool versioning dnl Generate libisoburn.so.1.x.y dnl SONAME will become LT_CURRENT - LT_AGE dnl -dnl ts A80512 -dnl ### This was the release version 0.1.4 = libisoburn.so.1.3.0 -dnl This is the development version after stable release libisoburn.so.1.3.0 -dnl LT_CURRENT++, LT_AGE++ have happened happened meanwhile. +dnl ts A80517 +dnl ### This is the release version 0.1.6 = libisoburn.so.1.5.0 +dnl This is the development version after above stable release +dnl LT_CURRENT++, LT_AGE++ have not happened happened yet. dnl -dnl SONAME = 5 - 4 = 1 . Library name = libburn.so.1.4.0 +dnl SONAME = 6 - 5 = 1 . Library name = libburn.so.1.5.0 LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION -LT_CURRENT=5 -LT_AGE=4 +LT_CURRENT=6 +LT_AGE=5 LT_REVISION=0 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` @@ -99,7 +99,7 @@ AC_CHECK_HEADER(libburn/libburn.h) AC_CHECK_HEADER(libisofs/libisofs.h) dnl Check for proper library versions -LIBBURN_REQUIRED=0.4.7 +LIBBURN_REQUIRED=0.4.8 LIBISOFS_REQUIRED=0.6.4 PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED) PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED) diff --git a/libisoburn/libisoburn.h b/libisoburn/libisoburn.h index b161eea1..40d97194 100644 --- a/libisoburn/libisoburn.h +++ b/libisoburn/libisoburn.h @@ -196,7 +196,7 @@ void isoburn_version(int *major, int *minor, int *micro); */ #define isoburn_libburn_req_major 0 #define isoburn_libburn_req_minor 4 -#define isoburn_libburn_req_micro 7 +#define isoburn_libburn_req_micro 8 /** The minimum version of libisofs to be used with this version of libisoburn @@ -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 5 +#define isoburn_header_version_micro 7 /** Note: Above version numbers are also recorded in configure.ac because libtool wants them as parameters at build time. diff --git a/xorriso/README b/xorriso/README index 2edc301d..1e23f246 100644 --- a/xorriso/README +++ b/xorriso/README @@ -4,7 +4,7 @@ xorriso. By Thomas Schmitt 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.5.tar.gz +http://scdbackup.sourceforge.net/xorriso-0.1.7.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.5.tar.gz, take it to a directory of your choice and do: +Obtain xorriso-0.1.7.tar.gz, take it to a directory of your choice and do: - tar xzf xorriso-0.1.5.tar.gz - cd xorriso-0.1.5 + tar xzf xorriso-0.1.7.tar.gz + cd xorriso-0.1.7 Within that directory execute: @@ -160,8 +160,8 @@ 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.5 : -- libburn.so.4 , version libburn-0.4.4 or higher +Dynamic library and compile time header requirements for libisoburn-0.1.7 : +- libburn.so.4 , version libburn-0.4.8 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 headers seen at compile time. So compile in the oldest possible installation diff --git a/xorriso/changelog.txt b/xorriso/changelog.txt index 19290917..d86357ed 100644 --- a/xorriso/changelog.txt +++ b/xorriso/changelog.txt @@ -2346,7 +2346,7 @@ xorriso/xorriso.c xorriso/xorriso.1 New options -not_paths, -not_leaf, -not_list, -not_mgt, -as mkisofs -m -4 May 2008 [] +4 May 2008 [1727] xorriso/xorriso_eng.html xorriso/changelog.txt Mentioned new options @@ -2356,8 +2356,286 @@ Mentioned new options * New options -not_paths, -not_leaf, -not_list, -not_mgt, -as mkisofs -m +2008.05.05.210317 [1728] +xorriso/xorrisoburn.c +After formatting DVD-RW write 128 MB and close track to end Intermediate State + +2008.05.06.084439 [1731] +xorriso/xorrisoburn.c +Calling isoburn_cancel_prepared_write() after failed isoburn_disc_write() + +2008.05.06.144606 [1732] +libisoburn/isoburn.h +libisoburn/isoburn.c +libisoburn/isofs_wrap.c +libisoburn/burn_wrap.c +Experiment for TOC on overwriteables: Keep a target_head copy of session #1 + +2008.05.07.071427 [1737] +libisoburn/isoburn.h +libisoburn/isoburn.c +libisoburn/burn_wrap.c +libisoburn/isofs_wrap.c +Removed some outdated ifdef cases + +2008.05.07.175508 [1738] +libisoburn/libisoburn.h +libisoburn/isoburn.h +libisoburn/burn_wrap.c +Reading emulated toc info from overwriteable media, new API isoburn_toc_*() + +2008.05.07.175640 [1739] +xorriso/xorrisoburn.c +Making use of new isoburn_toc_* functions + +2008.05.07.214343 [1740] +libisoburn/libisoburn.h +libisoburn/burn_wrap.c +New API function isoburn_read_iso_head() + +2008.05.07.214442 [1741] +xorriso/xorrisoburn.c +New format with -toc is more concise and shows volume id + +2008.05.08.141054 [1742] +libisoburn/libisoburn.h +libisoburn/isoburn.h +libisoburn/burn_wrap.c +Try to read header chain from alleged -ROM media (e.g. DVD+RW in -ROM drive) + +2008.05.08.141920 [1743] +xorriso/xorriso.h +xorriso/xorriso_private.h +xorriso/xorriso.c +xorriso/xorrisoburn.c +xorriso/xorriso.1 +xorriso/xorriso_eng.html +New TOC layout with volume id and sbsector=, new option -rom_toc_scan + +8 May 2008 [1744] +xorriso/xorriso_eng.html +Mentioned new features + +------------------------------------ cycle - xorriso-0.1.5 - 2008.05.08.141920 +* Emulated TOC on overwriteable media +* New TOC layout with volume id and sbsector= +* New option -rom_toc_scan + + +2008.05.08.185350 [1745] +libisoburn/isoburn.h +libisoburn/isoburn.c +libisoburn/burn_wrap.c +Adjusted reply of isoburn_disc_get_msc1() to eventual -rom_toc_scan result + +8 May 2008 [1746] +xorriso/xorriso.1 +Updated man page examples + +8 May 2008 [1747] +xorriso/xorriso.1 +Updated man page examples + +------------------------------------ cycle - xorriso-0.1.5 - 2008.05.08.205551 + +9 May 2008 [1751] +xorriso/xorriso_eng.html +Updated details in web page + +2008.05.09.205517 [1752] +libisoburn/isofs_wrap.c +Trying to better handle non ISO images on -indev + +10 May 2008 [1761] +xorriso/configure_ac.txt +Adapted xorriso standalone production to new libburn cycle 0.4.7 + +10 May 2008 [1762] +xorriso/xorriso.1 +xorriso/xorriso_eng.html +Minor change in -update_r example + +2008.05.10.194336 [1763] +xorriso/xorrisoburn.h +xorriso/xorrisoburn.c +xorriso/xorriso.c +Better behavior of update_r with no image present + +2008.05.12.080812 [1765] +configure.ac +libisoburn/libisoburn.h +Switched requirements to libburn-0.4.6 + +2008.05.12.081331 [1766] +libisoburn/libisoburn.h +libisoburn/burn_wrap.c +New API call isoburn_set_msc1() + +2008.05.12.082733 [1767] +xorriso/xorriso_private.h +xorriso/xorriso.c +xorriso/xorrisoburn.c +xorriso/xorriso.1 +xorriso/xorriso_eng.html +New option -load session|track|sbsector|volid + +------------------------------------ cycle - xorriso-0.1.5 - 2008.05.12.082733 +* New option -load session|track|sbsector|volid +* Now depending on libburn-0.4.6 + + +2008.05.12.193341 [1768] +libisoburn/burn_wrap.c +Reacted on harmless compiler warning + +2008.05.12.193642 [1769] +xorriso/xorriso.c +xorriso/xorrisoburn.h +xorriso/xorrisoburn.c +xorriso/xorriso.1 +New -blank and -format modes as_needed + +2008.05.13.115901 [1770] +xorriso/xorriso.h +xorriso/xorriso.c +xorriso/xorrisoburn.h +xorriso/xorrisoburn.c +xorriso/xorriso.1 +xorriso/xorriso_eng.html +New option -list_formats + +2008.05.13.135251 [1771] +libisoburn/isoburn.h +libisoburn/isoburn.c +libisoburn/isofs_wrap.c +libisoburn/burn_wrap.c +xorriso/xorrisoburn.c +xorriso/xorriso.1 +Corrected strange behavior with non-ISO images on overwriteable media + +2008.05.13.153837 [1772] +xorriso/xorrisoburn.c +Prepared Xorriso_get_profile() for potential call without flag bit1 + +2008.05.13.180624 [1773] +xorriso/xorrisoburn.c +Handled -list_format with non MMC drives + +2008.05.13.180912 [1774] +xorriso/xorriso.h +xorriso/xorriso.c +xorriso/xorriso.1 +Eat up leading dashes with command options, convert inner dashes to underscores + +------------------------------------ cycle - xorriso-0.1.5 - 2008.05.13.180912 +* New -blank and -format modes as_needed +* New option -list_formats + +2008.05.14.114548 [1775] +xorriso/xorriso.c +xorriso/xorrisoburn.c +xorriso/xorriso.1 +New -format types by_index and fast_by_index + +2008.05.14.173201 [1779] +configure.ac +libisoburn/libisoburn.h +Required libburn version is now 0.4.7 (because of DVD-RAM BD-RE bug fix) + +2008.05.14.173430 [1780] +xorriso/xorrisoburn.c +Automatic fast format on attempt to write to unformatted DVD-RAM or BD-RE + +2008.05.14.174846 [1781] +xorriso/xorriso_private.h +Uploaded forgotten enhancements + +2008.05.15.092028 [1783] +xorriso/xorriso.c +Enabled a pacifier for compare_r + +2008.05.15.150041 [1784] +xorriso/xorriso.h +xorriso/xorriso.c +xorriso/xorrisoburn.c +xorriso/xorriso.1 +xorriso/xorriso_eng.html +New options -map and -map_single + +2008.05.15.192118 [1785] +xorriso/xorriso.c +Bug fix: -update_r and others did not work properly with relative paths + ------------------------------------ cycle - xorriso-0.1.5 - ------------------------------------- cycle - xorriso-0.1.5 - +* New options -map and -map_single +* Bug fix: -update_r and others did not work properly with relative paths + + +2008.05.17.162753 [1794] +xorriso/xorriso.c +xorriso/xorrisoburn.c +Corrected ugly message with -update_r and root directory + +2008.05.17.170001 [1796] +configure.ac +README +libisoburn/libisoburn.h +xorriso/README +xorriso/xorriso_timestamp.h +xorriso/xorriso_private.h +xorriso/xorrisoburn.h +xorriso/xorriso_eng.html +xorriso/make_xorriso_standalone.sh +xorriso/configure_ac.txt +Version leap to 0.1.6, requiring libburn-0.4.8 now + +2008.05.18.070001 [1797] +xorriso/xorriso.c +xorriso/xorrisoburn.c +Bug fix: -findi operated on nodes which ceased existence shortly before + +18 May 2008 [1799] +xorriso/changelog.txt +Documented changes and release timestamp + +---------------------------------- release - xorriso-0.1.6 - 2008.05.18.070001 +* New option -error_behavior with a first occasion 'image_loading' +* New options -not_paths, -not_leaf, -not_list, -not_mgt, -as mkisofs -m +* Emulated TOC on overwriteable media +* New TOC layout with volume id and sbsector= +* New option -rom_toc_scan +* New option -load session|track|sbsector|volid +* Now depending on libburn-0.4.6 +* New -blank and -format modes as_needed +* New option -list_formats +* New options -map and -map_single +* Bug fix: -update_r and others did not work properly with relative paths +* Bug fix: -findi operated on nodes which ceased existence shortly before + + +2008.05.18.082208 [1798] +xorriso/xorriso.c +xorriso/xorrisoburn.c +Bug fix: -findi operated on nodes which ceased existence shortly before + + [] +configure.ac +README +libisoburn/libisoburn.h +xorriso/README +xorriso/xorriso_timestamp.h +xorriso/xorriso_private.h +xorriso/xorrisoburn.h +xorriso/xorriso_eng.html +xorriso/make_xorriso_standalone.sh +xorriso/configure_ac.txt +xorriso/changelog.txt +Version leap to 0.1.7, requiring libburn-0.4.8 now + +------------------------------------ cycle - xorriso-0.1.7 - 2008.05.18. + +------------------------------------ cycle - xorriso-0.1.7 - +------------------------------------ cycle - xorriso-0.1.7 - =============================================================================== @@ -2366,25 +2644,16 @@ Mentioned new options ------------------------------------------------- bugs -- update_r with no media in drive issues messages about changes updated - ------------------------------------------------- important -- pacifier for -compare_r : try read pacifier without newline +make Xorriso_prescan_args() safe against misunderstandings ------------------------------------------------- development -- evaluate possibility of emulated session table on overwriteables - -- option -map disk_path iso_rr_path for no-fuzz file mapping - - mkisofs,cdrecord multi session - -restore ??? -compare_l -update_l /disk_path_start iso_rr_path_start path[s] -- -??? backup area shaping with -yes -not for -compare_r and -update_r ? - -- Make use of iso_tree_add_new_node() in Xorriso_tree_graft_node() > Relative addressing and pattern matching : @@ -2412,12 +2681,6 @@ Mentioned new options - Introduce an interrupt key for dialog --------------------------------------------- jump to libburn 0.4.4 - -- make use of burn_sev_to_text() in libisoburn and xorriso - -- If iso_msgs_submit() : use it in isoburn_report_iso_error() - =============================================================================== This is the dirty end of the todo list. diff --git a/xorriso/configure_ac.txt b/xorriso/configure_ac.txt index ad78c1d4..1eca2290 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -1,4 +1,4 @@ -AC_INIT([xorriso], [0.1.5], [http://libburnia-project.org]) +AC_INIT([xorriso], [0.1.7], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -9,7 +9,7 @@ AM_INIT_AUTOMAKE([subdir-objects]) BURN_MAJOR_VERSION=0 BURN_MINOR_VERSION=4 -BURN_MICRO_VERSION=7 +BURN_MICRO_VERSION=9 AC_SUBST(BURN_MAJOR_VERSION) AC_SUBST(BURN_MINOR_VERSION) AC_SUBST(BURN_MICRO_VERSION) diff --git a/xorriso/make_xorriso_standalone.sh b/xorriso/make_xorriso_standalone.sh index d146a528..ce839a51 100755 --- a/xorriso/make_xorriso_standalone.sh +++ b/xorriso/make_xorriso_standalone.sh @@ -25,7 +25,7 @@ current_dir=$(pwd) lone_dir="$current_dir"/"xorriso-standalone" -xorriso_rev=0.1.5 +xorriso_rev=0.1.7 # For unstable uploads: xorriso_pl="" # For stable releases: diff --git a/xorriso/xorriso_eng.html b/xorriso/xorriso_eng.html index 3cfad486..5bf1d9f9 100644 --- a/xorriso/xorriso_eng.html +++ b/xorriso/xorriso_eng.html @@ -2,7 +2,7 @@ - + xorriso homepage english @@ -58,14 +58,14 @@ and to MMC-5 for DVD). GPL software included:
-
libburn-0.4.5
+
libburn-0.4.9
reads and writes data from and to CD and DVD.
(founded by Derek Foreman and Ben Jansens, furthered since August 2006 by team of libburnia-project.org)
libisofs-0.6.4
operates ISO 9660 images.
(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)
-
libisoburn-0.1.4
+
libisoburn-0.1.6
coordinates libburn and libisofs, emulates multi-session where needed.
(By Vreixo Formoso and Thomas Schmitt from team of libburnia-project.org)
@@ -115,7 +115,8 @@ to overwriteable media, to regular files, and to block devices. Scans for optical drives, blanks re-useable optical media.
  • -Suitable for: CD-R, CD-RW, DVD-R, DVD-RW, DVD+R, DVD+R/DL, DVD+RW, DVD-RAM. +Suitable for: +CD-R, CD-RW, DVD-R, DVD-RW, DVD+R, DVD+R DL, DVD+RW, DVD-RAM, BD-RE.
  • Reads its instructions from command line arguments, dialog, and batch files. @@ -151,8 +152,9 @@ may accept pathspecs of form target=source as known from program mkisofs.
    Get info about a particular drive and loaded media:
    $ xorriso -indev /dev/sr0 -du / -- -toc 2>&1 | less
    -
    Make re-usable media writable again, delete any ISO 9660 image:
    -
    $ xorriso -outdev /dev/sr0 -blank fast -eject all
    +
    Make re-usable media writable again, delete any ISO 9660 image, +eventually prepare yet unused BD-RE:
    +
    $ xorriso -outdev /dev/sr0 -blank as_needed -eject all

    @@ -174,17 +176,17 @@ adjust permissions to make it publicly read-only, write it to media and immediately eject media without previously reloading the written image.
    -
    $ xorriso -outdev /dev/sr0 -blank fast -pathspecs on \
    -
      -add /sounds=/home/me/sounds \
    -
           -/pictures=/home/me/pictures -- \
    +
    $ cd /home/me
    +
    $ xorriso -outdev /dev/sr0 -blank as_needed \
    +
      -map /home/me/sounds /sounds \
    +
      -map /home/me/pictures /pictures \
      -rm_r /sounds/indecent '/pictures/*private*' -- \
    -
      -add /pictures/private/horses=/home/me/pictures/private/horses -- \
    +
      -cd / \
    +
      -add pictures/private/horses* -- \
      -chmod_r a+r,a-w / -- \
      -find / -type d -exec chmod a+x -- \
      -volid SOUNDS_PICS_2008_01_16 \
      -commit_eject all
    -

    @@ -195,15 +197,14 @@ rename /pictures/private/horses, add new directory trees /sounds and /movies, disallow any access for group and others. Finally write as additional session to media and eject: -
    $ xorriso -dev /dev/sr0 -pathspecs on \
    +
    $ xorriso -dev /dev/sr0 \
      -rm_r /sounds -- \
      -mv /pictures/private/horses /horse_show -- \
    -
      -add /sounds=/home/me/prepared_for_dvd/sounds_dummy \
    -
           /movies=/home/me/prepared_for_dvd/movies -- \
    +
      -map /home/me/prepared_for_dvd/sounds_dummy /sounds \
    +
      -map /home/me/prepared_for_dvd/movies /movies \
      -chmod_r go-rwx / -- \
      -volid SOUNDS_PICS_2008_01_17 \
      -commit_eject all
    -

    @@ -230,9 +231,11 @@ run. It will write eventually pending changes to media, if that has not already been done by a previous -commit.
    $ xorriso -dialog on
    enter option and arguments :
    -
    -dev /dev/sr0 -pathspecs on
    +
    -dev /dev/sr0
    enter option and arguments :
    -
    -add /sounds=/home/me/prepared_for_dvd/sounds_dummy /movies=/home/me/prepared_for_dvd/movies
    +
    -map /home/me/prepared_for_dvd/sounds_dummy /sounds
    +
    enter option and arguments :
    +
    -map /home/me/prepared_for_dvd/movies /movies
    Available navigation commands: -cd, -ls, -du, -find
    enter option and arguments :
    -commit
    @@ -244,27 +247,20 @@ already been done by a previous -commit.
    -
    The following command can be run on blank media to create a complete +
    The following command can be run on blank media to create a 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. Older states can be retrieved -by help of mount option "session=" from CD-R[W], by help of "sbsector=" -from DVD-R[W] and DVD+R. -So this constitutes true incremental backup. -On overwriteable media only the newest state is accessible. - - - +
    +The copies will be complete, except all file names ending +with ".o" or ".swp" which are excluded by options -not_leaf.
    $ xorriso -dev /dev/sr0 \
       -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \
    -
       -update_r /home/thomas/open_source_projects /open_source_projects \
       -update_r /home/thomas/personal_mail /personal_mail \
       -commit -toc -eject all
    @@ -300,8 +296,8 @@ Testers wanted who are willing to risk some double layer DVD media.

    Download as source code (see README):

    -
    xorriso-0.1.4.pl00.tar.gz -(955 KB). +
    xorriso-0.1.6.pl00.tar.gz +(980 KB).
    @@ -325,20 +321,22 @@ an Open Source approved license


    -

    -Enhancements towards previous stable version xorriso-0.1.2.pl00: +Bug fixes towards xorriso-0.1.4.pl00:

      -
    • 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
    • +
    • -update_r and others did not work properly with relative paths
    -Bug fixes towards xorriso-0.1.2.pl00: +

    +

    +Enhancements towards previous stable version xorriso-0.1.4.pl00:

      -
    • -as mkisofs -no-pad was misspelled -nopad
    • -
    • Implicite directory attribute copying with -cut_out was wrong
    • +
    • Support for BD-RE
    • +
    • New options -map and -map_single
    • +
    • New options -not_paths, -not_leaf, -not_list, -not_mgt, -as mkisofs -m
    • +
    • Emulated -toc on overwriteable media, new -toc layout with volume id
    • +
    • New option -load makes alternative sessions accessible
    • +
    • New -blank and -format modes 'as_needed'
    • +
    • New option -list_formats and -format mode 'by_index_'

    @@ -346,31 +344,25 @@ Bug fixes towards xorriso-0.1.2.pl00:

    -

    Development snapshot, version 0.1.5 :

    -
    Bug fixes towards xorriso-0.1.4.pl00: +

    Development snapshot, version 0.1.7 :

    +
    Bug fixes towards xorriso-0.1.6.pl00:
      +
    • - none yet -
    • -
    -
    Enhancements towards stable version 0.1.4.pl00: +
    Enhancements towards stable version 0.1.6.pl00:
      -
    • Support for BD-RE
    • -
    • New options -map and -map_single
    • -
    • New options -not_paths, -not_leaf, -not_list, -not_mgt, -as mkisofs -m
    • -
    • Emulated -toc on overwriteable media, new -toc layout with volume id
    • -
    • New option -rom_toc_scan for read-only drive problems
    • -
    • New option -load makes alternative sessions accessible
    • -
    • New option -error_behavior with a first occasion 'image_loading'
    • -
    • New -blank and -format option 'as_needed'
    • -
    • New option -list_formats
    • - + +
    • - none yet -
     
    -
    README 0.1.5 -
    xorriso_0.1.5 -help
    -
    man xorriso (as of 0.1.5)
    +
    README 0.1.7 +
    xorriso_0.1.7 -help
    +
    man xorriso (as of 0.1.7)
     
    If you want to distribute development versions of xorriso, then use this tarball which produces static linking between xorriso and the @@ -380,7 +372,7 @@ libburnia libraries. installation see README)
    -xorriso-0.1.5.tar.gz +xorriso-0.1.7.tar.gz (980 KB).
    A dynamically linked development version of xorriso can be obtained diff --git a/xorriso/xorriso_private.h b/xorriso/xorriso_private.h index ecec2a81..22cf8f7a 100644 --- a/xorriso/xorriso_private.h +++ b/xorriso/xorriso_private.h @@ -18,7 +18,7 @@ #ifndef Xorriso_private_includeD #define Xorriso_private_includeD yes -#define Xorriso_program_versioN "0.1.5" +#define Xorriso_program_versioN "0.1.7" /** The source code release timestamp */ #include "xorriso_timestamp.h" diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 2281ddac..4e83a48d 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2008.05.18.082208" +#define Xorriso_timestamP "2008.05.18.084729" diff --git a/xorriso/xorrisoburn.h b/xorriso/xorrisoburn.h index c5d876a9..12a2e193 100644 --- a/xorriso/xorrisoburn.h +++ b/xorriso/xorrisoburn.h @@ -21,7 +21,7 @@ struct FindjoB; */ #define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_minor 1 -#define xorriso_libisoburn_req_micro 5 +#define xorriso_libisoburn_req_micro 7 int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);