diff --git a/README b/README index de2b563e..0e7e7b0b 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ libisoburn and xorriso. By Vreixo Formoso and Thomas Schmitt Integrated sub project of libburnia-project.org. -http://files.libburnia-project.org/releases/libisoburn-0.5.8.pl00.tar.gz +http://files.libburnia-project.org/releases/libisoburn-0.6.0.pl00.tar.gz Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt. Provided under GPL version 2 or later. ------------------------------------------------------------------------------ @@ -34,17 +34,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.5.8 : -- libburn.so.4 , version libburn-0.8.2 or higher -- libisofs.so.6 , version libisofs-0.6.32 or higher +Dynamic library and compile time header requirements for libisoburn-0.6.0 : +- libburn.so.4 , version libburn-0.8.4 or higher +- libisofs.so.6 , version libisofs-0.6.34 or higher libisoburn and xorriso will not start with libraries which are older than their headers seen at compile time. -Obtain libisoburn-0.5.8.pl00.tar.gz, take it to a directory of your choice +Obtain libisoburn-0.6.0.pl00.tar.gz, take it to a directory of your choice and do: - tar xzf libisoburn-0.5.8.pl00.tar.gz - cd libisoburn-0.5.8 + tar xzf libisoburn-0.6.0.pl00.tar.gz + cd libisoburn-0.6.0 Within that directory execute: diff --git a/configure.ac b/configure.ac index 2b91a9f0..f063c244 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisoburn], [0.5.9], [http://libburnia-project.org]) +AC_INIT([libisoburn], [0.6.1], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -22,8 +22,8 @@ dnl LT_CURREN, LT_AGE, LT_REVISION where SONAME becomes LT_CURRENT - LT_AGE dnl dnl These three are only copies to provide libtool with unused LT_RELEASE ISOBURN_MAJOR_VERSION=0 -ISOBURN_MINOR_VERSION=5 -ISOBURN_MICRO_VERSION=9 +ISOBURN_MINOR_VERSION=6 +ISOBURN_MICRO_VERSION=1 dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION @@ -36,16 +36,16 @@ dnl Libtool versioning dnl Generate libisoburn.so.1.x.y dnl SONAME will become LT_CURRENT - LT_AGE dnl -dnl ts B00613 -dnl ### This is the release version 0.5.8 = libisoburn.so.1.47.0 +dnl ts B00702 +dnl ### This is the release version 0.6.0 = libisoburn.so.1.49.0 dnl This is the development version after above stable release dnl LT_CURRENT++, LT_AGE++ have not happened yet. dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl -dnl SONAME = 48 - 47 = 1 . Library name = libisoburn.so.1.47.0 +dnl SONAME = 50 - 49 = 1 . Library name = libisoburn.so.1.49.0 LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION -LT_CURRENT=48 -LT_AGE=47 +LT_CURRENT=50 +LT_AGE=49 LT_REVISION=0 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` diff --git a/libisoburn/libisoburn.h b/libisoburn/libisoburn.h index 005e278e..69ef45a7 100644 --- a/libisoburn/libisoburn.h +++ b/libisoburn/libisoburn.h @@ -263,8 +263,8 @@ int isoburn_libburn_req(int *major, int *minor, int *micro); @since 0.1.0 */ #define isoburn_header_version_major 0 -#define isoburn_header_version_minor 5 -#define isoburn_header_version_micro 9 +#define isoburn_header_version_minor 6 +#define isoburn_header_version_micro 1 /** Note: Above version numbers are also recorded in configure.ac because libtool wants them as parameters at build time. diff --git a/xorriso/README_gnu_xorriso b/xorriso/README_gnu_xorriso index d080a13f..ddcef58f 100644 --- a/xorriso/README_gnu_xorriso +++ b/xorriso/README_gnu_xorriso @@ -4,7 +4,7 @@ GNU xorriso. By Thomas Schmitt Derived from and supported by libburnia-project.org, published via: http://www.gnu.org/software/xorriso/xorriso_eng.html -ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.5.9.tar.gz +ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.1.tar.gz Provided under GPL version 3 or later. No warranty. ------------------------------------------------------------------------------ @@ -46,10 +46,10 @@ Optional at compile time are: If they were present at compile time, then the optional libraries have to be present at runtime, too. -Obtain xorriso-0.5.9.tar.gz, take it to a directory of your choice and do: +Obtain xorriso-0.6.1.tar.gz, take it to a directory of your choice and do: - tar xzf xorriso-0.5.9.tar.gz - cd xorriso-0.5.9 + tar xzf xorriso-0.6.1.tar.gz + cd xorriso-0.6.1 Within that directory execute: @@ -290,9 +290,9 @@ and a matching dynamically linked xorriso binary. This binary is very lean but depends on properly installed libraries of suitable revision. -Dynamic library and compile time header requirements for libisoburn-0.5.8 : -- libburn.so.4 , version libburn-0.8.2 or higher -- libisofs.so.6 , version libisofs-0.6.32 or higher +Dynamic library and compile time header requirements for libisoburn-0.6.0 : +- libburn.so.4 , version libburn-0.8.4 or higher +- libisofs.so.6 , version libisofs-0.6.34 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. diff --git a/xorriso/configure_ac.txt b/xorriso/configure_ac.txt index 7872b92b..e5d38e61 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -3,7 +3,7 @@ # Copyright (c) 2007 - 2010 Thomas Schmitt # Provided under GPL version 2 or later. -AC_INIT([xorriso], [0.5.8], [http://libburnia-project.org]) +AC_INIT([xorriso], [0.6.1], [http://libburnia-project.org]) AC_PREREQ([2.50]) AC_CANONICAL_HOST diff --git a/xorriso/make_xorriso_standalone.sh b/xorriso/make_xorriso_standalone.sh index 7d3bc7ce..b117ed18 100755 --- a/xorriso/make_xorriso_standalone.sh +++ b/xorriso/make_xorriso_standalone.sh @@ -40,7 +40,7 @@ create_gnu_xorriso="yes" current_dir=$(pwd) lone_dir="$current_dir"/"xorriso-standalone" -xorriso_rev=0.5.9 +xorriso_rev=0.6.1 # For unstable uploads and patch level 0 of stable releases: xorriso_pl="" # For higher patch levels of stable releases: diff --git a/xorriso/xorriso.h b/xorriso/xorriso.h index 978af75b..7bd1e482 100644 --- a/xorriso/xorriso.h +++ b/xorriso/xorriso.h @@ -55,8 +55,8 @@ struct XorrisO; @since 0.5.8 */ #define Xorriso_header_version_majoR 0 -#define Xorriso_header_version_minoR 5 -#define Xorriso_header_version_micrO 9 +#define Xorriso_header_version_minoR 6 +#define Xorriso_header_version_micrO 1 /** Eventually something like ".pl01" to indicate a bug fix. Normally empty. diff --git a/xorriso/xorriso_eng.html b/xorriso/xorriso_eng.html index cd6df486..b305a083 100644 --- a/xorriso/xorriso_eng.html +++ b/xorriso/xorriso_eng.html @@ -15,8 +15,8 @@

GNU xorriso

-

ISO 9660 Rock Ridge Filesystem Manipulator for GNU/Linux, FreeBSD, Solaris -

+

ISO 9660 Rock Ridge Filesystem Manipulator
+for GNU/Linux, FreeBSD, Solaris

@@ -439,19 +439,19 @@ files or trees to disk:

Download as source code (see README):

-
xorriso-0.5.8.tar.gz -(1640 KB). +
xorriso-0.6.0.tar.gz +(1650 KB).
-
(Released 13 Jun 2010)
-
xorriso-0.5.8.tar.gz.sig
+
(Released 02 Jul 2010)
+
xorriso-0.6.0.tar.gz.sig
(detached GPG signature for verification by -gpg --verify xorriso-0.5.8.tar.gz.sig xorriso-0.5.8.tar.gz). +gpg --verify xorriso-0.6.0.tar.gz.sig xorriso-0.6.0.tar.gz).
Also on mirrors of ftp://ftp.gnu.org/gnu/ -as xorriso/xorriso-0.5.8.tar.gz +as xorriso/xorriso-0.6.0.tar.gz
@@ -479,18 +479,10 @@ as xorriso/xorriso-0.5.8.tar.gz

-Bug fixes towards xorriso-0.5.6: +Bug fixes towards xorriso-0.5.8:

    -
  • -CD TOC was not read if the first track did not start at LBA 0 -
  • -
  • -CD-ROM media got attributed random lead-in and lead-out adresses -
  • -
  • -SIGSEGV of experimental libcdio system adapter if drive list is empty -
  • - +
  • -check_media patch_lba0= could install wrong image size
  • +
  • -as mkisofs option -volset was wrongly interpreted like -volid
  • @@ -508,12 +500,28 @@ Bug fixes in .pl01 towards xorriso-: -->

    -Enhancements towards previous stable version xorriso-0.5.6: +Enhancements towards previous stable version xorriso-0.5.8:

      -
    • A new system adapter allows to burn CD, DVD and BD on OpenSolaris
    • -
    • New -compliance rule no_emul_toc, new -as mkisofs --no-emul-toc
    • -
    • Implemented -as cdrecord -V
    • -
    • Implemented -as mkisofs options -U, -N, -l, -d, -allow-lowercase
    • +
    • Enabled use of libreadline on Solaris
    • +
    • New find test -disk_name
    • +
    • New option -hide, -find action -hide, -find test -hidden
    • +
    • New -boot_image bootspec cat_hidden=on
    • +
    • +New options -copyright_file , -biblio_file , -abstract_file +
    • +
    • +New option -read_mkisofsrc interprets .mkisofsrc +
    • +
    • +Implemented -as mkisofs options -hide, -hide-joliet, -hide-list, -hide-joliet-list +
    • +
    • +New -as mkisofs option --boot-catalog-hide +
    • +
    • +Implemented -as mkisofs options -dir-mode, -file-mode, -abstract, -biblio, -copyright +
    • + @@ -536,18 +544,20 @@ libburnia project and the legal intentions of FSF match completely.
       
      -
      libburn-0.8.3
      +
      libburn-0.8.5
      reads and writes data from and to CD, DVD, BD.
      (founded by Derek Foreman and Ben Jansens, developed and maintained since August 2006 by Thomas Schmitt from team of libburnia-project.org)
      -
      libisofs-0.6.33
      +
      libisofs-0.6.35
      operates on ISO 9660 filesystem images.
      (By Vreixo Formoso, Mario Danic and Thomas Schmitt from team of libburnia-project.org)
      -
      libisoburn-0.5.8
      +
      libisoburn-0.6.0
      coordinates libburn and libisofs, emulates multi-session where needed, and hosts the original source code of program xorriso.
      +
      It provides the complete functionality of xorriso via +a C language API.
      (By Vreixo Formoso and Thomas Schmitt from team of libburnia-project.org)
       
      @@ -560,8 +570,8 @@ cdrecord and mkisofs.

      -

      Development snapshot, version 0.5.9 :

      -
      Bug fixes towards xorriso-0.5.8: +

      Development snapshot, version 0.6.1 :

      +
      Bug fixes towards xorriso-0.6.0:
      • - none yet -
      -
      Enhancements towards stable version 0.5.8: +
      Enhancements towards stable version 0.6.0:
      • - none yet -