Compare commits

...

4 Commits

12 changed files with 358 additions and 79 deletions

12
README
View File

@ -4,7 +4,7 @@
libisoburn and xorriso. By Vreixo Formoso <metalpain2002@yahoo.es> libisoburn and xorriso. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net> and Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org. Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-0.5.2.pl00.tar.gz http://files.libburnia-project.org/releases/libisoburn-0.5.4.pl00.tar.gz
Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt. Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2 or later. Provided under GPL version 2 or later.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -31,17 +31,17 @@ 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.5.2 : Dynamic library and compile time header requirements for libisoburn-0.5.4 :
- libburn.so.4 , version libburn-0.7.8 or higher - libburn.so.4 , version libburn-0.7.8 or higher
- libisofs.so.6 , version libisofs-0.6.28 or higher - libisofs.so.6 , version libisofs-0.6.30 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. headers seen at compile time.
Obtain libisoburn-0.5.2.pl00.tar.gz, take it to a directory of your choice Obtain libisoburn-0.5.4.pl00.tar.gz, take it to a directory of your choice
and do: and do:
tar xzf libisoburn-0.5.2.pl00.tar.gz tar xzf libisoburn-0.5.4.pl00.tar.gz
cd libisoburn-0.5.2 cd libisoburn-0.5.4
Within that directory execute: Within that directory execute:

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.5.3], [http://libburnia-project.org]) AC_INIT([libisoburn], [0.5.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])
@ -23,7 +23,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=5 ISOBURN_MINOR_VERSION=5
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
@ -36,16 +36,16 @@ 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 B00329 dnl ts B00419
dnl ### This is the release version 0.5.2 = libisoburn.so.1.41.0 dnl This is the release version 0.5.4 = libisoburn.so.1.43.0
dnl This is the development version after above stable release dnl ### This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened yet. dnl LT_CURRENT++, LT_AGE++ have not happened yet.
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
dnl dnl
dnl SONAME = 42 - 41 = 1 . Library name = libisoburn.so.1.41.0 dnl SONAME = 44 - 43 = 1 . Library name = libisoburn.so.1.43.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=42 LT_CURRENT=44
LT_AGE=41 LT_AGE=43
LT_REVISION=0 LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`

View File

@ -261,7 +261,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 5 #define isoburn_header_version_minor 5
#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 @@
GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net> GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Derived from and supported by libburnia-project.org, published via: Derived from and supported by libburnia-project.org, published via:
http://www.gnu.org/software/xorriso/xorriso_eng.html http://www.gnu.org/software/xorriso/xorriso_eng.html
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.5.3.tar.gz ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.5.4.tar.gz
Provided under GPL version 3 or later. No warranty. Provided under GPL version 3 or later. No warranty.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -45,10 +45,10 @@ Optional at compile time are:
If they were present at compile time, then the optional libraries have to If they were present at compile time, then the optional libraries have to
be present at runtime, too. be present at runtime, too.
Obtain xorriso-0.5.3.tar.gz, take it to a directory of your choice and do: Obtain xorriso-0.5.4.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.5.3.tar.gz tar xzf xorriso-0.5.4.tar.gz
cd xorriso-0.5.3 cd xorriso-0.5.4
Within that directory execute: Within that directory execute:

View File

@ -7195,7 +7195,7 @@ Documented changes and release timestamp
* Prepared FreeBSD system adapter to work with ahci driver * Prepared FreeBSD system adapter to work with ahci driver
2010.03.30.082405 [] 2010.03.30.082405 [3140]
configure.ac configure.ac
README README
libisoburn/libisoburn.h libisoburn/libisoburn.h
@ -7207,20 +7207,313 @@ xorriso/xorriso_eng.html
xorriso/make_xorriso_standalone.sh xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt xorriso/configure_ac.txt
xorriso/xorriso_timestamp.h xorriso/xorriso_timestamp.h
Version leap to libisoburn-0.5.2 Version leap to libisoburn-0.5.3
[] 30 Mar 2010 [3142]
xorriso/changelog.txt xorriso/changelog.txt
Documented changes and release timestamp Documented changes and release timestamp
------------------------------------ cycle - xorriso-0.5.3 - 30 Mar 2010 [3143]
------------------------------------ cycle - xorriso-0.5.3 - svn move -m Promoted branch to tag
------------------------------------ cycle - xorriso-0.5.3 - http://svn.libburnia-project.org/libisoburn/branches/ZeroFiveTwo
http://svn.libburnia-project.org/libisoburn/tags/ZeroFiveTwo
------------------------------------ cycle - xorriso-0.5.3 - 2010.03.30.082405
2010.04.01.140653 [3144]
libisoburn/burn_wrap.c
libisoburn refused to recognize ISO images smaller than 64 kB
2010.04.01.140653 [3145]
xorriso/xorriso.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
Disabled isohybrid MBR production on request of H. Peter Anvin
2010.04.05.192817 [3147]
configure.ac
libisoburn/libisoburn.h
Requiring libisofs-0.6.29 now
2010.04.06.125013 [3148]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
New API call isoburn_igopt_set_system_area()
2010.04.06.151750 [3149]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
New -as mkisofs options -G and --protective-msdos-label for GRUB
2010.04.06.192328 [3150]
xorriso/xorriso.c
xorriso/xorriso_eng.html
Polishing of new GRUB supporting features
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.06.192328
* New API call isoburn_igopt_set_system_area()
* New -as mkisofs options -G and --protective-msdos-label for GRUB
2010.04.07.073024 [3151]
libisoburn/burn_wrap.c
Fixed image reading bug introduced with revision 3144
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.07.073024
2010.04.07.202148 [3152]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
New API call isoburn_igopt_set_pvd_times()
2010.04.07.202559 [3153]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
New option -volume_date, for grub-mkrescue: -as mkisofs --modification-date=
2010.04.08.185744 [3154]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
New find action mkisofs_r and emulation -as mkisofs -r
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.08.185744
* New API call isoburn_igopt_set_pvd_times()
* New option -volume_date, for grub-mkrescue: -as mkisofs --modification-date=
* New find action mkisofs_r and emulation -as mkisofs -r
2010.04.09.171108 [3164]
xorriso/configure_ac.txt
Adapted GNU xorriso to version leap libburn-0.8.1
2010.04.10.150747 [3165]
configure.ac
xorriso/configure_ac.txt
Trying to avoid iconv const warning and multiple -liconv options on FreeBSD
2010.04.10.170927 [3166]
libisoburn/libisoburn.h
libisoburn/isoburn.c
New options bit1 of isoburn_igopt_set_system_area() for isohybrid production
2010.04.10.171214 [3167]
xorriso/xorriso.c
xorriso/xorrisoburn.c
New -boot_image isolinux partition_table=on, -as mkisofs -isohybrid-mbr
2010.04.10.180103 [3168]
xorriso/xorriso.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
Updated help text and documentation
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.10.180103
* New options bit1 of isoburn_igopt_set_system_area() for isohybrid production
* New: -boot_image isolinux partition_table=on, -as mkisofs -isohybrid-mbr
2010.04.11.120902 [3169]
xorriso/xorriso.c
test/compare_file.c
Reacted on compiler warnings of cygwin
2010.04.11.121002 [3170]
xorriso/xorrisoburn.c
Avoided printing of possibly uninitialized integer
2010.04.11.121418 [3171]
acinclude.m4
xorriso/configure_ac.txt
Realistic iconv() linking test in ./configure with eventual abort
2010.04.11.122253 [3172]
xorriso/xorriso.c
test/compare_file.c
xorriso/xorrisoburn.c
acinclude.m4
xorriso/configure_ac.txt
(Payload files of revisions 3169, 3170, 3171)
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.11.122253
12 Apr 2010 [3173]
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
Mentioned xorriso alias names in chapter FILES of documentation
2010.04.12.111137 [3174]
xorriso/xorriso.c
test/compare_file.c
Decided to put out uid_t and gid_t as unsigned long
2010.04.13.103037 [3175]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
New isoburn_igopt_set_relaxed() options: only_iso_versions, no_j_force_dots
2010.04.13.103917 [3176]
xorriso/xorrisoburn.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
New -compliance options only_iso_version, no_j_force_dots
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.13.103917
* New isoburn_igopt_set_relaxed() options: only_iso_versions, no_j_force_dots
* New -compliance options only_iso_version, no_j_force_dots
2010.04.13.154201 [3177]
acinclude.m4
configure.ac
xorriso/configure_ac.txt
More carefully checking for libreadline suitability
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.13.154201
2010.04.16.195349 [3178]
libisoburn/isofs_wrap.c
libisoburn now always loads the System Area with the ISO image
2010.04.16.195835 [3179]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
Made -boot_image isolinux|grub patch and partition_table=on patch System Area
2010.04.17.171147 [3180]
configure.ac
libisoburn/libisoburn.h
Requiring libisofs-0.6.30 now
2010.04.17.171232 [3181]
xorriso/configure_ac.txt
Adapted xorriso-standalone to version leap libisofs-0.6.31
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.17.171232
2010.04.18.095808 [3182]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
New -find action sort_weight, new -as mkisofs --sort-weight
2010.04.18.100814 [3183]
xorriso/xorriso.c
Added --sort-weight to -as mkisofs -help
------------------------------------ cycle - xorriso-0.5.3 - 2010.04.18.100814
* New -find action sort_weight, new -as mkisofs --sort-weight
2010.04.18.141143 [3184]
xorriso/xorrisoburn.c
Corrected image size computation for comparison with partition table
18 Apr 2010 [3185]
xorriso/xorriso.texi
xorriso/xorriso.1
xorriso/xorriso.info
Updated documentation about MBR
19 Apr 2010 [3186]
svn copy -m Branching for libisoburn release 0.5.4
http://svn.libburnia-project.org/libisoburn/trunk
http://svn.libburnia-project.org/libisoburn/branches/ZeroFiveFour
2010.04.19.080001 [3187]
configure.ac
README
libisoburn/libisoburn.h
xorriso/README_gnu_xorriso
xorriso/xorriso.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorriso_eng.html
xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt
xorriso/xorriso_timestamp.h
Version leap to libisoburn-0.5.4
19 Apr 2010 []
xorriso/changelog.txt
Documented changes and release timestamp
----------------------------------- release - xorriso-0.5.4 - 2010.04.19.080001
* New API call isoburn_igopt_set_system_area()
* New API call isoburn_igopt_set_pvd_times()
* New isoburn_igopt_set_relaxed() options: only_iso_versions, no_j_force_dots
* New -boot_image any system_area=, -as mkisofs option -G
* New -boot_image grub partition_table=on, --protective-msdos-label
* New -boot_image isolinux partition_table=on, -as mkisofs -isohybrid-mbr
* New option -volume_date, for grub-mkrescue: -as mkisofs --modification-date=
* New -find action mkisofs_r and emulation -as mkisofs -r
* New -compliance options only_iso_version, no_j_force_dots
* New -find action sort_weight, new -as mkisofs --sort-weight
------------------------------------ cycle - xorriso-0.5.5 -
------------------------------------ cycle - xorriso-0.5.5 -
=============================================================================== ===============================================================================
TODO TODO
=============================================================================== ===============================================================================
------------------------------------------------- For GRUB
libisofs:
- allow to adjust the weight of the virtual boot catalog node
(is currently 1000)
- libisofs API to control in write_validation_entry() : ve->platform_id[0] = X;
and multi-boot BIOS + EFI :
Date: Sat, 17 Apr 2010 22:30:45 +0200
From: Vladimir '?-coder/phcoder' Serbinenko <phcoder@gmail.com>
Reply-To: The development of GNU GRUB <grub-devel@gnu.org>
BIOS+EFI one should look like
Validation entry with id = 0
Default entry (BIOS). I would like that on hybrid BIOS always come in
default entry to avoid hitting BIOS bugs
Section header entry: 0x91, 0xef, 0x0001, 0, ..., 0
Section entry: 0x88, 0x00, 0x0000, 0, 0, <number of sectors in EFI boot
image>, <LBA start>, 0, ..., 0
In case of just EFI the Section header entry and Section entry become
Validation entry and default entry.
------------------------------------------------- FreeBSD
- Examine and replay:
http://wiki.freebsd.org/AvgLiveCD
------------------------------------------------- bugs ------------------------------------------------- bugs
- DVD-ROM drives report CD tracks with size up to the next track start. - DVD-ROM drives report CD tracks with size up to the next track start.
@ -7230,9 +7523,6 @@ Documented changes and release timestamp
- make iso_init() and iso_finish() safe against multiple calls - make iso_init() and iso_finish() safe against multiple calls
from multiple threads. from multiple threads.
- ??? disable isohybrid by default ?
- Is it harmless to have an empty xorriso->loaded_boot_cat_path ? - Is it harmless to have an empty xorriso->loaded_boot_cat_path ?
This situation appears if an image gets loaded that was created This situation appears if an image gets loaded that was created
by mkisofs ... -hide boot.catalog ... by mkisofs ... -hide boot.catalog ...
@ -7240,27 +7530,6 @@ Documented changes and release timestamp
Boot bin_path: '/boot/isolinux/isolinux.bin' Boot bin_path: '/boot/isolinux/isolinux.bin'
Boot cat_path: -not-found-at-load-time- Boot cat_path: -not-found-at-load-time-
- Not reproducible any more ?
Sesssion without MD5 does not get loaded if -md5 on
e.g. intenso USB when session 45 was youngest (w/o MD5)
libburn : DEBUG : burn_drive_is_enumerable_adr( stdio:/dev/sdb ) is true
libisoburn: DEBUG : Found 45 ISO sessions by scanning 2880 kB in 0 seconds
xorriso : NOTE : Loading ISO image tree from LBA 0
libisofs: FAILURE : Checksum mismatch between checksum tag and data blocks
libisofs: FAILURE : Image loading aborted due to MD5 mismatch of image tree data
libisofs: HINT : You may override this refusal by disabling MD5 checking
libisofs: FAILURE : Checksum mismatch in System Area, Volume Descriptors, or directory tree
Only the output drive remains. Created empty ISO image.
Drive current: -outdev '/dev/sdb'
Media current: stdio file, overwriteable
Media status : is written , is appendable
Media summary: 45 sessions, 774442 data blocks, 1513m data, 398m free
xorriso : FATAL : Cannot read ISO image tree
xorriso : HINT : You might get a questionable ISO image tree by option -md5 'off'.
xorriso : NOTE : Tolerated problem event of severity 'FATAL'
- what about split files and hard links ? - what about split files and hard links ?
- xorriso -as cdrecord in rare cases reports intermediate "X of X MB" - xorriso -as cdrecord in rare cases reports intermediate "X of X MB"

View File

@ -3,7 +3,7 @@
# Copyright (c) 2007 - 2010 Thomas Schmitt <scdbackup@gmx.net> # Copyright (c) 2007 - 2010 Thomas Schmitt <scdbackup@gmx.net>
# Provided under GPL version 2 or later. # Provided under GPL version 2 or later.
AC_INIT([xorriso], [0.5.3], [http://libburnia-project.org]) AC_INIT([xorriso], [0.5.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

@ -40,7 +40,7 @@ create_gnu_xorriso="yes"
current_dir=$(pwd) current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone" lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.5.3 xorriso_rev=0.5.4
# For unstable uploads and patch level 0 of stable releases: # For unstable uploads and patch level 0 of stable releases:
xorriso_pl="" xorriso_pl=""
# For higher patch levels of stable releases: # For higher patch levels of stable releases:

View File

@ -21220,7 +21220,7 @@ char *Xorriso__get_patch_level_text(int flag)
/* xorriso consists only of a main() stub which has an own version to match /* xorriso consists only of a main() stub which has an own version to match
the version of libxorriso header and runtime code. the version of libxorriso header and runtime code.
*/ */
#define Xorriso_main_program_versioN "0.5.3" #define Xorriso_main_program_versioN "0.5.4"
#else /* Xorriso_without_subS */ #else /* Xorriso_without_subS */

View File

@ -16,7 +16,7 @@
struct XorrisO; struct XorrisO;
#define Xorriso_program_versioN "0.5.3" #define Xorriso_program_versioN "0.5.4"
#define Xorriso_program_patch_leveL "" #define Xorriso_program_patch_leveL ""

View File

@ -436,19 +436,19 @@ files or trees to disk:
<P> <P>
<DL> <DL>
<DT><H3>Download as source code (see README):</H3></DT> <DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-0.5.2.tar.gz">xorriso-0.5.2.tar.gz</A> <DD><A HREF="xorriso-0.5.4.tar.gz">xorriso-0.5.4.tar.gz</A>
(1560 KB). (1580 KB).
</DD> </DD>
<DD>(Released 29 Mar 2010)</DD> <DD>(Released 18 Apr 2010)</DD>
<DD><A HREF="xorriso-0.5.2.tar.gz.sig">xorriso-0.5.2.tar.gz.sig</A></DD> <DD><A HREF="xorriso-0.5.4.tar.gz.sig">xorriso-0.5.4.tar.gz.sig</A></DD>
<DD> <DD>
(detached GPG signature for verification by (detached GPG signature for verification by
<KBD>gpg --verify xorriso-0.5.2.tar.gz.sig xorriso-0.5.2.tar.gz</KBD>). <KBD>gpg --verify xorriso-0.5.4.tar.gz.sig xorriso-0.5.4.tar.gz</KBD>).
</DD> </DD>
<DD> <DD>
Also on <A HREF="http://www.gnu.org/prep/ftp.html"> Also on <A HREF="http://www.gnu.org/prep/ftp.html">
mirrors of ftp://ftp.gnu.org/gnu/ </A> mirrors of ftp://ftp.gnu.org/gnu/ </A>
as xorriso/xorriso-0.5.2.tar.gz as xorriso/xorriso-0.5.4.tar.gz
</DD> </DD>
</DL> </DL>
</DD> </DD>
@ -476,7 +476,7 @@ as xorriso/xorriso-0.5.2.tar.gz
<HR> <HR>
<P> <P>
Bug fixes towards xorriso-0.5.0: Bug fixes towards xorriso-0.5.2:
<UL> <UL>
<LI>- none -</LI> <LI>- none -</LI>
<!-- <!--
@ -487,7 +487,7 @@ Bug fixes towards xorriso-0.5.0:
<!-- <!--
<P> <P>
Bug fixes towards xorriso-0.5.0: Bug fixes in .pl01 towards xorriso-:
<UL> <UL>
<LI> <LI>
</LI> </LI>
@ -496,14 +496,25 @@ Bug fixes towards xorriso-0.5.0:
--> -->
<P> <P>
Enhancements towards previous stable version xorriso-0.4.8.pl00: Enhancements towards previous stable version xorriso-0.5.2.pl00:
<UL> <UL>
<LI> <LI>
Manual now based on hybrid format of Texinfo and man-page. New -as mkisofs options -G and --protective-msdos-label for grub-mkrescue
Copies included: xorriso.texi, xorriso.info , xorriso.1
</LI> </LI>
<LI> <LI>
On FreeBSD: support for upcomming SATA driver "ahci" New option -volume_date, for grub-mkrescue: -as mkisofs --modification-date=
</LI>
<LI>
New: -boot_image isolinux partition_table=on, -as mkisofs -isohybrid-mbr
</LI>
<LI>
New find action mkisofs_r and emulation -as mkisofs -r
</LI>
<LI>
New -find action sort_weight, new -as mkisofs --sort-weight
</LI>
<LI>
New -compliance options only_iso_version, no_j_force_dots
</LI> </LI>
<!-- <!--
<LI>- none -</LI> <LI>- none -</LI>
@ -527,16 +538,16 @@ libburnia project and the legal intentions of
<A HREF="http://www.fsf.org/"> FSF </A> match completely. <A HREF="http://www.fsf.org/"> FSF </A> match completely.
</DT> </DT>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DT>libburn-0.7.9</DT> <DT>libburn-0.8.1</DT>
<DD>reads and writes data from and to CD, DVD, BD.</DD> <DD>reads and writes data from and to CD, DVD, BD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens, <DD>(founded by Derek Foreman and Ben Jansens,
developed and maintained since August 2006 by developed and maintained since August 2006 by
Thomas Schmitt from team of libburnia-project.org)</DD> Thomas Schmitt from team of libburnia-project.org)</DD>
<DT>libisofs-0.6.29</DT> <DT>libisofs-0.6.31</DT>
<DD>operates on ISO 9660 filesystem images.</DD> <DD>operates on ISO 9660 filesystem images.</DD>
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt <DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
from team of libburnia-project.org)</DD> from team of libburnia-project.org)</DD>
<DT>libisoburn-0.5.2</DT> <DT>libisoburn-0.5.4</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed, <DD>coordinates libburn and libisofs, emulates multi-session where needed,
and hosts the original source code of program xorriso.</DD> and hosts the original source code of program xorriso.</DD>
<DD>(By Vreixo Formoso and Thomas Schmitt <DD>(By Vreixo Formoso and Thomas Schmitt
@ -551,8 +562,8 @@ cdrecord and mkisofs.</DT>
<P> <P>
<DL> <DL>
<DT><H3>Development snapshot, version 0.5.3 :</H3></DT> <DT><H3>Development snapshot, version 0.5.5 :</H3></DT>
<DD>Bug fixes towards xorriso-0.5.2: <DD>Bug fixes towards xorriso-0.5.4:
<UL> <UL>
<LI>- none yet -</LI> <LI>- none yet -</LI>
<!-- <!--
@ -560,9 +571,8 @@ cdrecord and mkisofs.</DT>
--> -->
</UL> </UL>
</DD> </DD>
<DD>Enhancements towards stable version 0.5.2: <DD>Enhancements towards stable version 0.5.4:
<UL> <UL>
<LI>- none yet -</LI> <LI>- none yet -</LI>
<!-- <!--
<LI>- none yet -</LI> <LI>- none yet -</LI>
@ -570,9 +580,9 @@ cdrecord and mkisofs.</DT>
</UL> </UL>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 0.5.3</A> <DD><A HREF="README_xorriso_devel">README 0.5.5</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.5.3 -help</A></DD> <DD><A HREF="xorriso_help_devel">xorriso_0.5.5 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.5.3)</A></DD> <DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.5.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
@ -582,8 +592,8 @@ libburnia libraries.
installation see README) installation see README)
</DD> </DD>
<DD> <DD>
<A HREF="xorriso-0.5.3.tar.gz">xorriso-0.5.3.tar.gz</A> <A HREF="xorriso-0.5.5.tar.gz">xorriso-0.5.5.tar.gz</A>
(1560 KB). (1580 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
from repositories of from repositories of

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.04.18.141143" #define Xorriso_timestamP "2010.04.19.080001"

View File

@ -19,7 +19,7 @@
*/ */
#define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 5 #define xorriso_libisoburn_req_minor 5
#define xorriso_libisoburn_req_micro 3 #define xorriso_libisoburn_req_micro 4
struct SpotlisT; /* List of intervals with different read qualities */ struct SpotlisT; /* List of intervals with different read qualities */