Compare commits

...

4 Commits

12 changed files with 410 additions and 102 deletions

17
README
View File

@ -4,7 +4,7 @@
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>
Integrated sub project of libburnia-project.org. Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-0.3.8.pl00.tar.gz http://files.libburnia-project.org/releases/libisoburn-0.4.0.pl00.tar.gz
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt. Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2. Provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -29,18 +29,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.3.8 : Dynamic library and compile time header requirements for libisoburn-0.4.0 :
- libburn.so.4 , version libburn-0.6.4 or higher - libburn.so.4 , version libburn-0.6.4 or higher
- libisofs.so.6 , version libisofs-0.6.18 or higher - libisofs.so.6 , version libisofs-0.6.20 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.
setup unless you have reason to enforce a newer level of bug fixes or features.
Obtain libisoburn-0.3.8.pl00.tar.gz, take it to a directory of your choice Obtain libisoburn-0.4.0.pl00.tar.gz, take it to a directory of your choice
and do: and do:
tar xzf libisoburn-0.3.8.pl00.tar.gz tar xzf libisoburn-0.4.0.pl00.tar.gz
cd libisoburn-0.3.8 cd libisoburn-0.4.0
Within that directory execute: Within that directory execute:
@ -49,7 +48,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 and program xorriso. which will make available libisoburn.so.1 and the program xorriso.
For the API concepts and calls see For the API concepts and calls see
./libisoburn/libisoburn.h ./libisoburn/libisoburn.h

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.3.9], [http://libburnia-project.org]) AC_INIT([libisoburn], [0.4.0], [http://libburnia-project.org])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])
@ -20,8 +20,8 @@ dnl LT_CURREN, LT_AGE, LT_REVISION where SONAME becomes LT_CURRENT - LT_AGE
dnl 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=3 ISOBURN_MINOR_VERSION=4
ISOBURN_MICRO_VERSION=9 ISOBURN_MICRO_VERSION=0
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
@ -34,16 +34,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 A90418 dnl ts A90628
dnl ### This is the release version 0.3.8 = libisoburn.so.1.27.0 dnl This is the release version 0.4.0 = libisoburn.so.1.29.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 happened yet. dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
dnl dnl
dnl SONAME = 28 - 27 = 1 . Library name = libisoburn.so.1.27.0 dnl SONAME = 30 - 29 = 1 . Library name = libisoburn.so.1.29.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=28 LT_CURRENT=30
LT_AGE=27 LT_AGE=29
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

@ -259,8 +259,8 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
@since 0.1.0 @since 0.1.0
*/ */
#define isoburn_header_version_major 0 #define isoburn_header_version_major 0
#define isoburn_header_version_minor 3 #define isoburn_header_version_minor 4
#define isoburn_header_version_micro 9 #define isoburn_header_version_micro 0
/** 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.3.9.tar.gz http://scdbackup.sourceforge.net/xorriso-0.4.0.pl00.tar.gz
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2. Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -46,10 +46,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.3.9.tar.gz, take it to a directory of your choice and do: Obtain xorriso-0.4.0.pl00.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.3.9.tar.gz tar xzf xorriso-0.4.0.pl00.tar.gz
cd xorriso-0.3.9 cd xorriso-0.4.0
Within that directory execute: Within that directory execute:
@ -222,9 +222,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.
Dynamic library and compile time header requirements for libisoburn-0.3.8 : Dynamic library and compile time header requirements for libisoburn-0.4.0 :
- libburn.so.4 , version libburn-0.6.4 or higher - libburn.so.4 , version libburn-0.6.4 or higher
- libisofs.so.6 , version libisofs-0.6.18 or higher - libisofs.so.6 , version libisofs-0.6.20 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

@ -5564,11 +5564,6 @@ Last minute correction in xorriso man page
xorriso/changelog.txt xorriso/changelog.txt
Documented changes and release timestamp Documented changes and release timestamp
[]
svn move -m 'Promoted branch to tag' \
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeEight \
http://svn.libburnia-project.org/libisoburn/tags/ZeroThreeEight
----------------------------------- release - xorriso-0.3.8 - 2009.04.18.120001 ----------------------------------- release - xorriso-0.3.8 - 2009.04.18.120001
* New options -set_filter , -set_filter_r, -find -exec set_filter * New options -set_filter , -set_filter_r, -find -exec set_filter
* New option -zisofs, builtin filters --zisofs , --gzip , --gunzip * New option -zisofs, builtin filters --zisofs , --gzip , --gunzip
@ -5578,7 +5573,7 @@ svn move -m 'Promoted branch to tag' \
* New option -auto_charset based on xattr "isofs.cs" * New option -auto_charset based on xattr "isofs.cs"
2009.04.18.150555 [] 2009.04.18.150555 [2602]
configure.ac configure.ac
README README
libisoburn/libisoburn.h libisoburn/libisoburn.h
@ -5591,14 +5586,300 @@ xorriso/configure_ac.txt
xorriso/xorriso_timestamp.h xorriso/xorriso_timestamp.h
Version leap to libisoburn-0.3.9 Version leap to libisoburn-0.3.9
18 Apr 2009 [] 18 Apr 2009 [2603]
xorriso/changelog.txt xorriso/changelog.txt
Documented changes and release timestamp Documented changes and release timestamp
------------------------------------ cycle - xorriso-0.3.9 - ------------------------------------ cycle - xorriso-0.3.9 - 2009.04.18.150555
19 Apr 2009 [2608]
svn move -m 'Promoted branch to tag' \
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeEight \
http://svn.libburnia-project.org/libisoburn/tags/ZeroThreeEight
2009.04.21.173600 [2612]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
Enhanced -find testing by operators -not, -or, -and, (, ), -if, -else, -endif
2009.04.21.184214 [2613]
xorriso/xorriso.c
Allowed implicit -and operator with -not, -if and -sub
22 Apr 2009 [2614]
xorriso/xorriso_eng.html
Updated xorriso web page
------------------------------------ cycle - xorriso-0.3.9 - 2009.04.21.184214
* Operators with option -find : -not, -or, -and, (, ), -if, -then, -else
------------------------------------ cycle - xorriso-0.3.9 - 2009.04.22.173603 [2615]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
libisoburn/burn_wrap.c
New API call isoburn_toc_track_get_emul()
2009.04.22.173648 [2616]
xorriso/xorrisoburn.c
Made use of new libisoburn call to accelerate option -toc for large TOC
2009.04.23.103301 [2617]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New -find tests -wholename, -prune
2009.04.25.160022 [2618]
libisoburn/burn_wrap.c
Used isoburn_toc_track_get_emul() in isoburn_set_msc1()
2009.04.25.162210 [2619]
xorriso/xorrisoburn.c
Moved call of isoburn_set_msgs_submit() to Xorriso_startup_libraries()
2009.04.25.162858 [2620]
libisoburn/burn_wrap.c
Issueing pacifier messages from within isoburn_set_msc1()
------------------------------------ cycle - xorriso-0.3.9 - 2009.04.25.162858
* New -find tests -wholename, -prune
2009.05.06.173600 [2626]
xorriso/xorrisoburn.c
Bug fix: SIGSEGV with option -status and no search string
2009.05.06.174222 [2627]
xorriso/xorrisoburn.c
Bug fix: -load volid did not perform pattern search
2009.05.08.073642 [2638]
xorriso/configure_ac.txt
Adapted xorriso-standalone to version leap libburn-0.6.7
2009.05.09.201241 [2639]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
libisoburn/isofs_wrap.c
New API options isoburn_ropt_noino and isoburn_igopt_hardlinks
2009.05.09.201742 [2640]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New option -hardlinks
2009.05.14.082045 [2641]
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
Enhanced option -extract_cut for handling filtered files
2009.05.16.165616 [2642]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
LBA sorted processing of -compare_r and -update_r for smoother MMC reading
2009.05.16.165940 [2643]
xorriso/xorrisoburn.c
Disabled use of iso_tree_add_new_symlink() in favor of iso_tree_add_new_node()
2009.05.17.115101 [2644]
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
New pseudo test with -find : -sort_lba which is actually an option
2009.05.26.140055 [2647]
xorriso/xorrisoburn.h
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
Enabled -hardlinks for options -extract, -extract_l and -cp*x
2009.05.26.142912 [2648]
xorriso/xorriso.c
Revoked LBA sorted reading with -compare_r. It was ugly.
------------------------------------ cycle - xorriso-0.3.9 - 2009.05.26.172355
Bug fix: SIGSEGV with option -status and no search string
Bug fix: -load volid did not perform pattern search
New option -hardlinks
Improved reading performance with -update_r and -extract
2009.05.29.110831 [2649]
xorriso/xorriso.c
xorriso/xorriso.1
xorriso/xorriso_eng.html
New option -for_backup as shortcut for -acl -xattr -hardlinks
2009.05.29.162300 [2650]
xorriso/xorrisoburn.c
Avoided unnecessary sorting during -extract
2009.05.30.161808 [2561]
xorriso/xorriso.c
Avoided unconditional output of -hardlinks with option -status
2009.05.31.100140 [2652]
configure.ac
libisoburn/libisoburn.h
Requiring libisofs-0.6.20 now
2009.05.31.100315 [2653]
xorriso/configure_ac.txt
Adapted xorriso-standalone to version leap libisofs-0.6.20
2009.05.31.185819 [2654]
xorriso/configure_ac.txt
Adapted xorriso-standalone to version leap libisofs-0.6.21
13 Jun 2009 [2668]
xorriso/configure_ac.txt
xorriso/xorriso_makefile_am.txt
xorriso/make_xorriso_standalone.sh
Removed xorriso.pc.in from xorriso-standalone tarball
2009.06.15.121525 [2670]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
xorriso/xorriso.1
With -update_r : detecting hardlink splits and fusions on disk
2009.06.20.063853 [2671]
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
Wider scope of hardlink reconstruction with extract operations
2009.06.22.112850 [2672]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.h
xorriso/xorrisoburn.c
xorriso/xorriso.1
Gave up risky direct update of hardlink siblings
2009.06.23.065744 [2673]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
+ xorriso/makefile_libxorriso_am.txt
Introduced alternative Makefile.am for libxorriso production
2009.06.23.070934 [2674]
xorriso/xorriso_private.h
Added missing function declaration
2009.06.23.123147 [2675]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
Removed from xorriso main() any dependency on non-API features
2009.06.23.133210 [2676]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/xorriso.c
Rough test for compile time and run time libxorriso version mismatches
2009.06.23.164351 [2677]
xorriso/xorriso.c
xorriso/xorrisoburn.c
Deprecated -hardlinks modes "start_update", "end_update" for "perform_update"
23 Jun 2009 [2678]
xorriso/xorriso.1
Updated xorriso man page
2009.06.24.133521 [2679]
xorriso/xorriso.c
Reverted order of memorized hardlink update parameters
2009.06.25.125048 [2680]
libisoburn/burn_wrap.c
Bug fix: Copies of overwriteable media onto sequential were mistaken in ROM drives
2009.06.27.112408 [2681]
xorriso/xorriso_private.h
xorriso/xorriso.c
xorriso/xorrisoburn.c
xorriso/xorriso.1
With -extract : made hardlink registration combinable with sort_lba
------------------------------------ cycle - xorriso-0.3.9 - 2009.06.27.112408
New option -for_backup as shortcut for -acl -xattr -hardlinks
Bug fix: Copies of overwriteable media on sequential were mistaken in ROM drives
28 Jun 2009 [2681]
svn copy -m "Branching for libisoburn release 0.4.0" \
http://svn.libburnia-project.org/libisoburn/trunk \
http://svn.libburnia-project.org/libisoburn/branches/ZeroFourZero
2009.06.28.090001 [2683]
configure.ac
README
libisoburn/libisoburn.h
xorriso/README
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.4.0
[]
xorriso/changelog.txt
Documented changes and release timestamp
----------------------------------- release - xorriso-0.4.0 - 2009.06.28.090001
* New option -hardlinks
* Improved reading performance with -update_r and -extract
* New option -for_backup as shortcut for -acl -xattr -hardlinks
* Operators with option -find : -not, -or, -and, (, ), -if, -then, -else
* New -find tests -wholename, -prune
* Bug fix: SIGSEGV with option -status and no search string
* Bug fix: -load volid did not perform pattern search
* Bug fix: Copies of overwriteable media on sequential were mistaken in ROM drives
2009.06.28.100124 []
configure.ac
README
libisoburn/libisoburn.h
xorriso/README
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.4.1
[]
xorriso/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - xorriso-0.4.1 - 2009.06.28.100124
------------------------------------ cycle - xorriso-0.4.1 -
------------------------------------ cycle - xorriso-0.4.1 -
=============================================================================== ===============================================================================
TODO TODO
@ -5606,8 +5887,38 @@ Documented changes and release timestamp
------------------------------------------------- bugs ------------------------------------------------- bugs
- what about split files and hard links ?
- xorriso -as cdrecord in rare cases reports intermediate "X of X MB"
xorriso : UPDATE : 3671 MB written (fifo 94%) [buf 100%] 2.3x.
xorriso : UPDATE : 3680 of 3680 MB written (fifo 87%) [buf 100%] 2.3x.
xorriso : UPDATE : 3691 MB written (fifo 78%) [buf 100%] 2.3x.
Direct reason:
burn_drive_get_status(drive, &progress);
if(progress.sector<=progress.sectors)
sprintf(xorriso->info_text, "%4d of %4d MB written",
So this has to be examined in libburn.
------------------------------------------------- important ------------------------------------------------- important
- during -update*
- what about differently filtered streams ?
It is not wrong but a waste to update them as siblings.
- >>> what about stat.st_nlink ?
- Must it be maintained for directories (i.e. nlink == files + 2)?
There are indications that it should either give the number of subdirs
(including . and ..) or be 1
- It would be nice if xorriso -lsl could display the actual nlink number.
But that is not easy with -map /a /x -map /a /y . One would need a fast
lookup of existing inode tuples. I.e. a permanent RBTree of IsoNode.
Current is a sorted array of Ecma119Node, because Ecma119Node can record
the final inode number in the emerging image easily.
??? Should one unite IsoNode and Ecma119 node ???
- libisofs call to create a hard link ?
- sudo and setuid chapter in man page - sudo and setuid chapter in man page
? option -sudo_aware ? option -sudo_aware
@ -5616,12 +5927,11 @@ Documented changes and release timestamp
Can only be done if renaming is made safe with any open IsoDirIter. Can only be done if renaming is made safe with any open IsoDirIter.
- ? New -find test -in_old_image
??? derive a test language from nntpfilter.c
-find in man xorriso could need restructuring
------------------------------------------------- development ------------------------------------------------- development
- Replace Libisofs_new_fs_image_inO by Libisofs_hardlink_prooF
and make the latter unconditional.
- Special pseudo ACL: "--remove-default" - Special pseudo ACL: "--remove-default"
- libisofs , libburn , own system adapter ? : - libisofs , libburn , own system adapter ? :
@ -5674,16 +5984,27 @@ Documented changes and release timestamp
------ problem fixes : ------ problem fixes :
>>> Represent hardlinks
Have better uniqueness with own inode counters
- the error handling system should be comprehensively documented - the error handling system should be comprehensively documented
and eventually rectified where needed. and eventually rectified where needed.
------ feature enhancements : ------ feature enhancements :
- isohybrid
- as of syslinux-3.81pre10/utils/isohybrid.in :
- new signature {0xf7, 0xe3, 0xef, 0x0d}
- read $id from previous session: byte 440, 4 bytes,
if not {0,0,0,0} write the same byte string to new MBR byte 440
- user adjustable parameters
- $pentry {1..4} = 1
- $fstype {0...255} = 0x17
- $offset {0...64} = 0
- $h {1...256} = 64
- $s {1...63} = 32
- $id {0...0xffffffff]
- $hd0 {0...2} = 0
- $partok {0...1} = 0
- File checksums as backpack and as xattr values. - File checksums as backpack and as xattr values.
Problem: If they are scattered over the data section then they will cause Problem: If they are scattered over the data section then they will cause
a lot of random access and thus be slow with BD. They need to be buffered a lot of random access and thus be slow with BD. They need to be buffered
@ -5695,8 +6016,6 @@ Documented changes and release timestamp
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source() - A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
to end before actually data get written. (For -print_size) to end before actually data get written. (For -print_size)
- API: iso_stream_get_dev_ino() to get the source side dev_t and ino_t
- Re-use unchanged sub trees in the previous image in order to - Re-use unchanged sub trees in the previous image in order to
reduce the session overhead. reduce the session overhead.

View File

@ -1,4 +1,4 @@
AC_INIT([xorriso], [0.3.9], [http://libburnia-project.org]) AC_INIT([xorriso], [0.4.0], [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.3.9 xorriso_rev=0.4.0
# 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

@ -20149,7 +20149,7 @@ char *Xorriso__get_version_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.3.9" #define Xorriso_main_program_versioN "0.4.0"
#else /* Xorriso_without_subS */ #else /* Xorriso_without_subS */

View File

@ -16,13 +16,13 @@
struct XorrisO; struct XorrisO;
#define Xorriso_program_versioN "0.3.9" #define Xorriso_program_versioN "0.4.0"
/* --------------------- Fundamental Management ------------------- */ /* --------------------- Fundamental Management ------------------- */
/* Get the version text (e.g. "0.3.9") of the program code. /* Get the version text (e.g. "0.4.0") of the program code.
@param flag unused yet, submit 0 @param flag unused yet, submit 0
@return readonly character string @return readonly character string
*/ */

View File

@ -91,8 +91,7 @@ ISO 9660 formatter and burner for CD, DVD, BD are fixely integrated.
Operates on an existing ISO image or creates a new one. Operates on an existing ISO image or creates a new one.
</LI> </LI>
<LI> <LI>
Copies files from filesystem into the ISO image and vice versa, Copies files from filesystem into the ISO image and vice versa.
with ACL and xattr.
</LI> </LI>
<LI> <LI>
Changes file properties, renames or deletes file objects in the ISO image. Changes file properties, renames or deletes file objects in the ISO image.
@ -101,6 +100,9 @@ Changes file properties, renames or deletes file objects in the ISO image.
Updates ISO subtrees incrementally to match given disk subtrees. Updates ISO subtrees incrementally to match given disk subtrees.
</LI> </LI>
<LI> <LI>
Can record and restore hard link relations, ACL, and xattr.
</LI>
<LI>
File content may get zisofs or gzip compressed or filtered by external File content may get zisofs or gzip compressed or filtered by external
processes. processes.
</LI> </LI>
@ -109,7 +111,7 @@ Writes result as completely new image or as add-on session
to optical media or filesystem objects. to optical media or filesystem objects.
</LI> </LI>
<LI> <LI>
Can activate ISOLINUX boot images by El Torito boot record and by MBR. Can activate ISOLINUX boot images by El Torito boot record.
</LI> </LI>
<LI> <LI>
Can perform multi-session tasks as emulation of mkisofs and cdrecord. Can perform multi-session tasks as emulation of mkisofs and cdrecord.
@ -418,10 +420,10 @@ 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.3.8.pl00.tar.gz">xorriso-0.3.8.pl00.tar.gz</A> <DD><A HREF="xorriso-0.4.0.pl00.tar.gz">xorriso-0.4.0.pl00.tar.gz</A>
(1220 KB). (1260 KB).
</DD> </DD>
<DD>(Released 19 Apr 2009)</DD> <DD>(Released 28 Jun 2009)</DD>
</DL> </DL>
</DD> </DD>
</DL> </DL>
@ -446,10 +448,12 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
<HR> <HR>
<P> <P>
Bug fixes towards xorriso-0.3.6.pl00: Bug fixes towards xorriso-0.3.8.pl00:
<UL> <UL>
<LI>- none -</LI> <LI>SIGSEGV by dereferencing NULL with option -status and no search string</LI>
<LI>-load volid did not perform pattern search</LI>
<!-- <!--
<LI>- none -</LI>
--> -->
</UL> </UL>
@ -457,26 +461,22 @@ Bug fixes towards xorriso-0.3.6.pl00:
</P> </P>
<P> <P>
Enhancements towards previous stable version xorriso-0.3.6.pl00: Enhancements towards previous stable version xorriso-0.3.8.pl00:
<UL> <UL>
<LI> <LI>New option -hardlinks for recording and restoring of hard link relations
New options -set_filter , -set_filter_r, -find -exec set_filter
</LI> </LI>
<LI> <LI>New option -for_backup as shortcut for -acl -xattr -hardlinks
New option -zisofs, built-in filters --zisofs , --gzip , --gunzip</LI>
</LI> </LI>
<LI> <LI>Improved read performance with -update_r
New options -external_filter , -unregister_filter, -close_filter_list
</LI> </LI>
<LI> <LI>Improved read performance with -extract by -osirrox sort_lba
New options -show_stream, -show_stream_r
</LI>
<LI>
New -osirrox mode "banned"
</LI>
<LI>
New option -auto_charset based on xattr "isofs.cs"
</LI> </LI>
<LI>Operators with option -find : -not, -or, -and, (, ), -if, -then, -else</LI>
<LI>New -find tests -wholename, -prune, -sort_lba</LI>
<!--
<LI>- none -</LI>
-->
</UL> </UL>
</P> </P>
@ -487,16 +487,16 @@ New option -auto_charset based on xattr "isofs.cs"
Library copies included in xorriso tarballs: Library copies included in xorriso tarballs:
</H3> </H3>
<DL> <DL>
<DT>libburn-0.6.5</DT> <DT>libburn-0.6.7</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.19</DT> <DT>libisofs-0.6.21</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.3.8</DT> <DT>libisoburn-0.4.0</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>
@ -510,35 +510,25 @@ cdrecord and mkisofs.</DT>
<P> <P>
<DL> <DL>
<DT><H3>Development snapshot, version 0.3.9 :</H3></DT> <DT><H3>Development snapshot, version 0.4.1 :</H3></DT>
<DD>Bug fixes towards xorriso-0.3.8.pl00: <DD>Bug fixes towards xorriso-0.4.0.pl00:
<UL> <UL>
<LI>SIGSEGV by dereferencing NULL with option -status and no search string</LI>
<LI>-load volid did not perform pattern search</LI>
<!--
<LI>- none yet -</LI> <LI>- none yet -</LI>
<!--
--> -->
</UL> </UL>
</DD> </DD>
<DD>Enhancements towards stable version 0.3.8.pl00: <DD>Enhancements towards stable version 0.4.0.pl00:
<UL> <UL>
<LI>New option -hardlinks for recording and restoring of hard link relations
</LI>
<LI>New option -for_backup as shortcut for -acl -xattr -hardlinks
</LI>
<LI>Improved read performance with -update_r and -extract
</LI>
<LI>Operators with option -find : -not, -or, -and, (, ), -if, -then, -else</LI>
<LI>New -find tests -wholename, -prune, -sort_lba</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.3.9</A> <DD><A HREF="README_xorriso_devel">README 0.4.1</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.3.9 -help</A></DD> <DD><A HREF="xorriso_help_devel">xorriso_0.4.1 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.9)</A></DD> <DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.4.1)</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
@ -548,8 +538,8 @@ libburnia libraries.
installation see README) installation see README)
</DD> </DD>
<DD> <DD>
<A HREF="xorriso-0.3.9.tar.gz">xorriso-0.3.9.tar.gz</A> <A HREF="xorriso-0.4.1.tar.gz">xorriso-0.4.1.tar.gz</A>
(1250 KB). (1260 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 "2009.06.27.112408" #define Xorriso_timestamP "2009.06.28.090001"

View File

@ -18,8 +18,8 @@
/* The minimum version of libisoburn to be used with this version of xorriso /* The minimum version of libisoburn to be used with this version of xorriso
*/ */
#define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 3 #define xorriso_libisoburn_req_minor 4
#define xorriso_libisoburn_req_micro 9 #define xorriso_libisoburn_req_micro 0
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag); int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);