From 9664d1a315cfe7bc08327e742a8c1c4221cd4c8a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Fri, 27 Jan 2012 15:12:50 +0000 Subject: [PATCH] Made number transition to 1.2.1 --- Makefile.am | 4 +- README | 16 +++++--- cdrskin/README | 12 +++--- cdrskin/cdrskin.c | 30 +++++++------- cdrskin/cdrskin_eng.html | 80 +++++++++++++++++-------------------- cdrskin/cdrskin_timestamp.h | 2 +- cdrskin/compile_cdrskin.sh | 12 +++--- configure.ac | 15 +++---- libburn/libburn.h | 4 +- 9 files changed, 87 insertions(+), 88 deletions(-) diff --git a/Makefile.am b/Makefile.am index b9196a3..2ab80c9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -118,9 +118,9 @@ test_structest_CPPFLAGS = -Ilibburn test_structest_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS) test_structest_SOURCES = test/structest.c -## cdrskin construction site - ts A60816 - B10808 +## cdrskin construction site - ts A60816 - B20127 cdrskin_cdrskin_CPPFLAGS = -Ilibburn -cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_1_9 +cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_2_1 # cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS) # ts A80123, change proposed by Simon Huggins to cause dynamic libburn linking diff --git a/README b/README index d81b0f4..07ecd5d 100644 --- a/README +++ b/README @@ -6,12 +6,12 @@ This all is under GPL. ------------------------------------------------------------------------------ libburn-project.org By Mario Danic and Thomas Schmitt -Copyright (C) 2006-2011 Mario Danic, Thomas Schmitt +Copyright (C) 2006-2012 Mario Danic, Thomas Schmitt Still containing parts of Libburn. By Derek Foreman and Ben Jansens Copyright (C) 2002-2006 Derek Foreman and Ben Jansens - http://files.libburnia-project.org/releases/libburn-1.1.8.tar.gz + http://files.libburnia-project.org/releases/libburn-1.2.0.tar.gz ------------------------------------------------------------------------------ @@ -19,10 +19,10 @@ Copyright (C) 2002-2006 Derek Foreman and Ben Jansens From tarball -Obtain libburn-1.1.8.tar.gz, take it to a directory of your choice and do: +Obtain libburn-1.2.0.tar.gz, take it to a directory of your choice and do: - tar xzf libburn-1.1.8.tar.gz - cd libburn-1.1.8 + tar xzf libburn-1.2.0.tar.gz + cd libburn-1.2.0 ./configure --prefix=/usr make @@ -666,6 +666,12 @@ Project history as far as known to me: xorriso emulation mode xorrecord now has an own manual. libburn and xorriso were prepared to operate on qemu virtio-blk-pci devices. +- Sat Jan 28 2012 release 1.2.0: + libburn has learned to read and write CD-TEXT with CD SAO audio sessions. + It can now read CDRWIN .cue files which define pure audio or pure data + sessions. libisofs and libisoburn improved timestamp handling. Several + minor bugs were fixed. + ------------------------------------------------------------------------------ diff --git a/cdrskin/README b/cdrskin/README index f55a43a..a7cf9f5 100644 --- a/cdrskin/README +++ b/cdrskin/README @@ -4,9 +4,9 @@ cdrskin. By Thomas Schmitt Integrated sub project of libburnia-project.org but also published via: http://scdbackup.sourceforge.net/cdrskin_eng.html -http://scdbackup.sourceforge.net/cdrskin-1.1.9.tar.gz +http://scdbackup.sourceforge.net/cdrskin-1.2.1.tar.gz -Copyright (C) 2006-2011 Thomas Schmitt, provided under GPL version 2 or later. +Copyright (C) 2006-2012 Thomas Schmitt, provided under GPL version 2 or later. ------------------------------------------------------------------------------ @@ -26,10 +26,10 @@ By using this software you agree to the disclaimer at the end of this text Compilation, First Glimpse, Installation -Obtain cdrskin-1.1.9.tar.gz, take it to a directory of your choice and do: +Obtain cdrskin-1.2.1.tar.gz, take it to a directory of your choice and do: - tar xzf cdrskin-1.1.9.tar.gz - cd cdrskin-1.1.9 + tar xzf cdrskin-1.2.1.tar.gz + cd cdrskin-1.2.1 Within that directory execute: @@ -576,7 +576,7 @@ contributions in a due way. Based on and sub project of: libburnia-project.org By Mario Danic and Thomas Schmitt -Copyright (C) 2006-2011 Mario Danic, Thomas Schmitt +Copyright (C) 2006-2012 Mario Danic, Thomas Schmitt libburnia-project.org is inspired by and in other components still containing parts of diff --git a/cdrskin/cdrskin.c b/cdrskin/cdrskin.c index b103f5e..33bf13c 100644 --- a/cdrskin/cdrskin.c +++ b/cdrskin/cdrskin.c @@ -87,7 +87,7 @@ or /** The official program version */ #ifndef Cdrskin_prog_versioN -#define Cdrskin_prog_versioN "1.1.9" +#define Cdrskin_prog_versioN "1.2.1" #endif /** The official libburn interface revision to use. @@ -97,10 +97,10 @@ or #define Cdrskin_libburn_majoR 1 #endif #ifndef Cdrskin_libburn_minoR -#define Cdrskin_libburn_minoR 1 +#define Cdrskin_libburn_minoR 2 #endif #ifndef Cdrskin_libburn_micrO -#define Cdrskin_libburn_micrO 9 +#define Cdrskin_libburn_micrO 1 #endif @@ -120,34 +120,34 @@ or #undef Cdrskin_libburn_versioN #endif -#ifdef Cdrskin_libburn_1_1_8 -#define Cdrskin_libburn_versioN "1.1.8" +#ifdef Cdrskin_libburn_1_2_0 +#define Cdrskin_libburn_versioN "1.2.0" #endif -#ifdef Cdrskin_libburn_1_1_9 -#define Cdrskin_libburn_versioN "1.1.9" +#ifdef Cdrskin_libburn_1_2_1 +#define Cdrskin_libburn_versioN "1.2.1" #endif #ifndef Cdrskin_libburn_versioN -#define Cdrskin_libburn_1_1_8 -#define Cdrskin_libburn_versioN "1.1.8" +#define Cdrskin_libburn_1_2_0 +#define Cdrskin_libburn_versioN "1.2.0" #endif -#ifdef Cdrskin_libburn_1_1_8 +#ifdef Cdrskin_libburn_1_2_0 #undef Cdrskin_libburn_majoR #undef Cdrskin_libburn_minoR #undef Cdrskin_libburn_micrO #define Cdrskin_libburn_majoR 1 -#define Cdrskin_libburn_minoR 1 -#define Cdrskin_libburn_micrO 8 +#define Cdrskin_libburn_minoR 2 +#define Cdrskin_libburn_micrO 0 #endif -#ifdef Cdrskin_libburn_1_1_9 +#ifdef Cdrskin_libburn_1_2_1 #undef Cdrskin_libburn_majoR #undef Cdrskin_libburn_minoR #undef Cdrskin_libburn_micrO #define Cdrskin_libburn_majoR 1 -#define Cdrskin_libburn_minoR 1 -#define Cdrskin_libburn_micrO 9 +#define Cdrskin_libburn_minoR 2 +#define Cdrskin_libburn_micrO 1 #endif diff --git a/cdrskin/cdrskin_eng.html b/cdrskin/cdrskin_eng.html index dd235cd..277184f 100644 --- a/cdrskin/cdrskin_eng.html +++ b/cdrskin/cdrskin_eng.html @@ -65,7 +65,7 @@ connected via SCSI, PATA (aka IDE, ATA), USB, or SATA. GPL software included:
-
libburn-1.1.8
+
libburn-1.2.0
(founded by Derek Foreman and Ben Jansens, developed and maintained since August 2006 by Thomas Schmitt from team of libburnia-project.org) @@ -200,13 +200,13 @@ Standalone ISO 9660 multi-session CD/DVD/BD tool

Download as source code (see README):
-
cdrskin-1.1.8.tar.gz -(870 KB). +
cdrskin-1.2.0.tar.gz +(930 KB).
-
cdrskin-1.1.8.tar.gz.sig
+
cdrskin-1.2.0.tar.gz.sig
(detached GPG signature for verification by -gpg --verify cdrskin-1.1.8.tar.gz.sig cdrskin-1.1.8.tar.gz +gpg --verify cdrskin-1.2.0.tar.gz.sig cdrskin-1.2.0.tar.gz
after gpg --keyserver keys.gnupg.net --recv-keys ABC0A854).
@@ -257,35 +257,7 @@ cdrskin_0.4.2.pl00-x86-suse9_0-static.tar.gz, (310 KB), -static compiled,

-Enhancements towards previous stable version cdrskin-1.1.6: -

    -
  • -Avoiding to intermediately close and open drive device file -
  • -
  • -Enabled recognition of QEMU DVD-ROM 0.12 -
  • - -
- -Bug fixes towards cdrskin-1.1.6: -
    -
  • -Misinterpreted mode page 2A if block descriptors are present -
  • - -
- -
- -

-

-

Development snapshot, version 1.1.9 :

-
Enhancements towards current stable version 1.1.8: +Enhancements towards previous stable version cdrskin-1.1.8:
  • Implemented option textfile=
  • Implemented option combination -vv -toc for cdtext.dat production @@ -300,29 +272,49 @@ Misinterpreted mode page 2A if block descriptors are present
  • New options sao_pregap=, sao_postgap=
  • -
-
-
Bug fixes towards cdrskin-1.1.8: +Bug fixes towards cdrskin-1.1.8:
  • Memory fault if interupted before writing began
  • Solaris adapter mishandled write commands which failed on first try
  • Interrupting libburn while drive tray is loading led to endless loop
  • Progress report with blanking and formatting could be bogus
  • +
+ +
+ +

+

+

Development snapshot, version 1.2.1 :

+
Enhancements towards current stable version 1.2.0: +
  • none yet
  • + + +
+
+ +
Bug fixes towards cdrskin-1.2.0: +
    +
  • none yet
  • +
 
-
README 1.1.9 -
cdrskin-1.1.9 --help
-
cdrskin-1.1.9 -help
-
man cdrskin (as of 1.1.9)
+
README 1.2.1 +
cdrskin-1.2.1 --help
+
cdrskin-1.2.1 -help
+
man cdrskin (as of 1.2.1)
 
Maintainers of cdrskin unstable packages please use SVN of libburnia-project.org
@@ -342,8 +334,8 @@ admins with full system souvereignty. upcoming README ):
-cdrskin-1.1.9.tar.gz -(870 KB). +cdrskin-1.2.1.tar.gz +(930 KB).