Compare commits
6 Commits
release-1.
...
1.2.8
Author | SHA1 | Date | |
---|---|---|---|
9465591083 | |||
cfc0ebee9f | |||
2431a00a7d | |||
f7cd0c1b03 | |||
70fec9e5bd | |||
a4908a6929 |
@ -8,6 +8,8 @@ SVN trunk (to become libisoburn-1.2.8.tar.gz or higher)
|
||||
* Bug fix: -check_media use=outdev sector_map= stored TOC of input drive
|
||||
* Bug fix: -hide hfsplus and -as mkisofs -hide-hfsplus had no effect.
|
||||
Thanks to Davy Ho.
|
||||
* Bug fix: ./configure did not abort if libburn.h or libisofs.h were missing
|
||||
* New command -move
|
||||
* New -as mkisofs options -eltorito-id , -eltorito-selcrit
|
||||
|
||||
|
||||
|
@ -251,6 +251,7 @@ EXTRA_DIST = \
|
||||
doc/startup_file.txt \
|
||||
frontend/frontend_pipes_xorriso.c \
|
||||
frontend/README-tcltk \
|
||||
frontend/xorriso-tcltk \
|
||||
README \
|
||||
AUTHORS \
|
||||
CONTRIBUTORS \
|
||||
|
14
README
14
README
@ -4,7 +4,7 @@
|
||||
libisoburn and xorriso. By Vreixo Formoso <metalpain2002@yahoo.es>
|
||||
and Thomas Schmitt <scdbackup@gmx.net>
|
||||
Integrated sub project of libburnia-project.org.
|
||||
http://files.libburnia-project.org/releases/libisoburn-1.2.6.tar.gz
|
||||
http://files.libburnia-project.org/releases/libisoburn-1.2.8.tar.gz
|
||||
Copyright (C) 2006-2009 Vreixo Formoso,
|
||||
Copyright (C) 2006-2013 Thomas Schmitt.
|
||||
Provided under GPL version 2 or later.
|
||||
@ -35,17 +35,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-1.2.6 :
|
||||
- libburn.so.4 , version libburn-1.2.6 or higher
|
||||
- libisofs.so.6 , version libisofs-1.2.6 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-1.2.8 :
|
||||
- libburn.so.4 , version libburn-1.2.8 or higher
|
||||
- libisofs.so.6 , version libisofs-1.2.8 or higher
|
||||
libisoburn and xorriso will not start with libraries which are older than their
|
||||
include headers seen at compile time.
|
||||
|
||||
Obtain libisoburn-1.2.6.tar.gz, take it to a directory of your choice
|
||||
Obtain libisoburn-1.2.8.tar.gz, take it to a directory of your choice
|
||||
and do:
|
||||
|
||||
tar xzf libisoburn-1.2.6.tar.gz
|
||||
cd libisoburn-1.2.6
|
||||
tar xzf libisoburn-1.2.8.tar.gz
|
||||
cd libisoburn-1.2.8
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
|
18
configure.ac
18
configure.ac
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [1.2.7], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [1.2.8], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -24,7 +24,7 @@ dnl
|
||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||
ISOBURN_MAJOR_VERSION=1
|
||||
ISOBURN_MINOR_VERSION=2
|
||||
ISOBURN_MICRO_VERSION=7
|
||||
ISOBURN_MICRO_VERSION=8
|
||||
|
||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||
|
||||
@ -37,16 +37,16 @@ dnl Libtool versioning
|
||||
dnl Generate libisoburn.so.1.x.y
|
||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||
dnl
|
||||
dnl ts B30108
|
||||
dnl This is the release version 1.2.6 = libisoburn.so.1.83.0
|
||||
dnl ts B30318
|
||||
dnl This is the release version 1.2.8 = libisoburn.so.1.85.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 = 84 - 83 = 1 . Library name = libisoburn.so.1.83.0
|
||||
dnl SONAME = 86 - 85 = 1 . Library name = libisoburn.so.1.85.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=84
|
||||
LT_AGE=83
|
||||
LT_CURRENT=86
|
||||
LT_AGE=85
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
@ -372,8 +372,8 @@ if test x$enable_pkg_check_modules = xyes; then
|
||||
dnl If PKG_CHECK_MODULES is to be used after this if-block,
|
||||
dnl then it might be necessary to perform PKG_PROG_PKG_CONFIG before the block.
|
||||
|
||||
LIBBURN_REQUIRED=1.2.7
|
||||
LIBISOFS_REQUIRED=1.2.7
|
||||
LIBBURN_REQUIRED=1.2.8
|
||||
LIBISOFS_REQUIRED=1.2.8
|
||||
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
|
||||
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)
|
||||
if test x$LIBCDIO_DEF = x; then
|
||||
|
@ -110,6 +110,11 @@ Options:
|
||||
The log lines will be appended. Path "-" means stderr.
|
||||
--script_log_all_commands
|
||||
With logging of commands log non-essential commands too.
|
||||
--use_command_move
|
||||
Use xorriso command -move for the "Move to: button
|
||||
if xorriso version is >= 1.2.8
|
||||
--use_command_mv
|
||||
Use xorriso command -mv for the "Move to:" button.
|
||||
|
||||
If neither --stdio nor --named_pipes is given, then this script
|
||||
will try to locate itself in the filesystem and start a xorriso
|
||||
|
@ -19,7 +19,7 @@
|
||||
# And, well, a graphical widget set would be nice.
|
||||
|
||||
|
||||
set own_version "1.2.7"
|
||||
set own_version "1.2.8"
|
||||
|
||||
# Minimum version of xorriso to be used as backend process.
|
||||
# Older versions of xorriso do not offer commands -msg_op and -launch_frontend
|
||||
@ -73,6 +73,11 @@ proc print_usage {argv0} {
|
||||
puts stderr " The log lines will be appended. Path \"-\" means stderr."
|
||||
puts stderr " --script_log_all_commands"
|
||||
puts stderr " With logging of commands log non-essential commands too."
|
||||
puts stderr " --use_command_move"
|
||||
puts stderr " Use xorriso command -move for the \"Move to:\" button"
|
||||
puts stderr " if xorriso version is >= 1.2.8"
|
||||
puts stderr " --use_command_mv"
|
||||
puts stderr " Use xorriso command -mv for the \"Move to:\" button."
|
||||
puts stderr ""
|
||||
puts stderr "If neither --stdio nor --named_pipes is given, then this script"
|
||||
puts stderr "will try to locate itself in the filesystem and start a xorriso"
|
||||
@ -139,6 +144,9 @@ set bulk_parse_num_texts ""
|
||||
# This may be expected when xorriso is being shut down by this frontend.
|
||||
set expect_broken_pipes "0"
|
||||
|
||||
# Whether to use command -move rather than -mv. Possible since xorriso-1.2.8.
|
||||
set use_command_move 1
|
||||
|
||||
|
||||
# Local copies of xorriso state
|
||||
|
||||
@ -781,6 +789,7 @@ proc localfs_filetype {path} {
|
||||
#
|
||||
proc check_xorriso_version {} {
|
||||
global sieve_ret result_list pre_msglist xorriso_version min_xorriso_version
|
||||
global use_command_move
|
||||
global reply_conn
|
||||
|
||||
set version "0.0.0 (= unknown)"
|
||||
@ -808,6 +817,9 @@ proc check_xorriso_version {} {
|
||||
"red" "embedded"
|
||||
central_exit 2
|
||||
}
|
||||
if {$xorriso_version < "1.2.8"} {
|
||||
set use_command_move 0
|
||||
}
|
||||
set_display_msg $disp_en_mem
|
||||
}
|
||||
|
||||
@ -1615,7 +1627,7 @@ proc isodir_up {} {
|
||||
proc isomanip_mv {} {
|
||||
global .isolist
|
||||
global isomanip_move_target isolist_names isodir_is_pwd isodir_adr
|
||||
global isodir_return_name
|
||||
global isodir_return_name use_command_move
|
||||
|
||||
if {$isomanip_move_target == ""} {
|
||||
xorriso_tcltk_errmsg \
|
||||
@ -1664,7 +1676,7 @@ proc isomanip_mv {} {
|
||||
set name_ftype [isofs_filetype $name]
|
||||
|
||||
# Ask for confirmation if overwriting is about to happen
|
||||
if {$target_ftype == "d"} {
|
||||
if {$target_ftype == "d" && $use_command_move == 0} {
|
||||
set eff_target [combine_dir_and_name $target $name]
|
||||
set eff_target_ftype [isofs_filetype $eff_target]
|
||||
} else {
|
||||
@ -1673,11 +1685,17 @@ proc isomanip_mv {} {
|
||||
}
|
||||
if {[handle_overwriting "isofs" $eff_target $eff_target_ftype \
|
||||
"isofs" $name $name_ftype $multi_source \
|
||||
"" ""] == "0"} {
|
||||
"" "" "replace"] == "0"} {
|
||||
if {$multi_source == 0} { return "" }
|
||||
continue
|
||||
}
|
||||
send_loggable_cmd "-mv [make_text_shellsafe $name] [make_text_shellsafe $target] --"
|
||||
if {$use_command_move == 0} {
|
||||
send_loggable_cmd \
|
||||
"-mv [make_text_shellsafe $name] [make_text_shellsafe $target] --"
|
||||
} else {
|
||||
send_loggable_cmd \
|
||||
"-move [make_text_shellsafe $name] [make_text_shellsafe $target] --"
|
||||
}
|
||||
}
|
||||
|
||||
if {[llength $selected] == 1} {
|
||||
@ -2032,7 +2050,7 @@ proc refresh_avail {} {
|
||||
#
|
||||
proc handle_overwriting {target_fs target target_ftype
|
||||
source_fs source source_ftype multi_source
|
||||
selected_adr selected_ftype} {
|
||||
selected_adr selected_ftype dir_action} {
|
||||
global overwrite_iso_files overwrite_iso_dirs overwrite_disk_files
|
||||
|
||||
if {$target_fs == "localfs"} {
|
||||
@ -2064,6 +2082,16 @@ proc handle_overwriting {target_fs target target_ftype
|
||||
if {$target_ftype != ""} {
|
||||
if {$target_ftype == "d"} {
|
||||
if {$source_ftype == "d"} {
|
||||
if {$dir_action == "replace"} {
|
||||
if {$overwrite_iso_dirs != 1} {
|
||||
xorriso_tcltk_errmsg "xorriso-tcltk : SORRY : You would have to enable \"Overwrite $overwrite_fs dirs\" for\n[make_text_shellsafe $target]"
|
||||
return "0"
|
||||
}
|
||||
if {[$what_window \
|
||||
"Really replace existing $to_fs directory\n\n[make_text_shellsafe $target]\n\nby $from_fs directory\n[make_text_shellsafe $source]\n?"] \
|
||||
!= 1} { return "0" }
|
||||
return "1"
|
||||
}
|
||||
if {[$what_window \
|
||||
"Really merge existing $to_fs directory\n\n[make_text_shellsafe $target]\n\nwith $from_fs directory\n[make_text_shellsafe $source]\n?"] \
|
||||
!= 1} { return "0" }
|
||||
@ -2142,7 +2170,7 @@ proc insert_from {} {
|
||||
reset_yesno_to_all
|
||||
if {[handle_overwriting "isofs" $target $target_ftype \
|
||||
"localfs" $insert_from_adr $source_ftype 0 \
|
||||
$selected_adr $selected_ftype] == "0"} {
|
||||
$selected_adr $selected_ftype "merge"] == "0"} {
|
||||
return ""
|
||||
}
|
||||
|
||||
@ -2238,7 +2266,7 @@ proc extract_to {} {
|
||||
set source_ftype [isofs_filetype $i]
|
||||
if {[handle_overwriting "localfs" $target $target_ftype \
|
||||
"isofs" $i $source_ftype $multi_source \
|
||||
"" ""] == 0} {
|
||||
"" "" "merge"] == 0} {
|
||||
continue
|
||||
}
|
||||
send_loggable_cmd \
|
||||
@ -4321,7 +4349,7 @@ proc set_overwriting_label {} {
|
||||
# The central storage for help texts.
|
||||
#
|
||||
proc tell_helptext {what} {
|
||||
global own_version argv0 bwidget_version
|
||||
global own_version argv0 bwidget_version use_command_move
|
||||
|
||||
if {$what == "Help"} {
|
||||
return \
|
||||
@ -4536,7 +4564,12 @@ and the frontend is still waiting for its reply messages."
|
||||
if {$what == "Command:"} {
|
||||
return \
|
||||
"The \"Command:\" field can be used to send commands to xorriso.
|
||||
See the manual page of xorriso for its concepts and commands."
|
||||
See the manual page of xorriso for its concepts and commands.
|
||||
|
||||
Normally the other GUI elements will emit xorriso commands for you.
|
||||
This input field is presented only to make accessible those features
|
||||
of xorriso which are not covered by the GUI. Use the \"Refresh disp\"
|
||||
button to update the display after you have manually transmitted commands."
|
||||
}
|
||||
if {$what == "Script/Log"} {
|
||||
return \
|
||||
@ -4998,7 +5031,7 @@ overwritten in the ISO image. See xorriso command -overwrite \"nondir\".
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
The \"Overwrite ISO dirs\" switch controls whether it is allowed to replace
|
||||
an ISO directory by a non-directory file. See xorriso command -overwrite \"on\".
|
||||
an ISO directory by a another file. See xorriso command -overwrite \"on\".
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
@ -5157,7 +5190,8 @@ is written via \"Write ISO session\". Nevertheless they will stay present
|
||||
in earlier sessions beginning from the session where they were inserted."
|
||||
}
|
||||
if {$what == "Move to:"} {
|
||||
return \
|
||||
if {$use_command_move == 0} {
|
||||
return \
|
||||
"The \"Move to:\" button uses command -mv to move each of the selected
|
||||
items to the address that is given by the text field right to the button.
|
||||
|
||||
@ -5165,6 +5199,11 @@ If this address points to an existing ISO directory, then the items will
|
||||
be moved underneath that directory and keep their leaf names.
|
||||
Else there may be only one selected item which will be renamed to the
|
||||
given address."
|
||||
} else {
|
||||
return \
|
||||
"The \"Move to:\" button uses command -move to rename each of the selected
|
||||
items to the address that is given by the text field right to the button."
|
||||
}
|
||||
}
|
||||
if {$what == "Make dir"} {
|
||||
return \
|
||||
@ -5739,7 +5778,7 @@ proc escape_newline {text backslash_too} {
|
||||
proc setup_by_args {argv0 argv} {
|
||||
global cmd_pipe_adr reply_pipe_adr main_window_geometry click_to_focus
|
||||
global have_bwidget cmd_conn reply_conn geometry stdout stdin
|
||||
global osirrox_allowed cmd_logging_all
|
||||
global osirrox_allowed cmd_logging_all use_command_move
|
||||
|
||||
# wish normally eats the -geometry option and puts the result into $geometry
|
||||
catch {set main_window_geometry $geometry}
|
||||
@ -5817,6 +5856,14 @@ proc setup_by_args {argv0 argv} {
|
||||
set ok "1"
|
||||
set have_bwidget "-1"
|
||||
}
|
||||
if {$opt == "--use_command_move"} {
|
||||
set ok "1"
|
||||
set use_command_move 1
|
||||
}
|
||||
if {$opt == "--use_command_mv"} {
|
||||
set ok "1"
|
||||
set use_command_move 0
|
||||
}
|
||||
if {$ok == 0} {
|
||||
puts stderr "$argv0 : Unknown option '$opt'"
|
||||
print_usage $argv0
|
||||
|
@ -242,7 +242,7 @@ void isoburn_version(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_libisofs_req_major 1
|
||||
#define isoburn_libisofs_req_minor 2
|
||||
#define isoburn_libisofs_req_micro 6
|
||||
#define isoburn_libisofs_req_micro 8
|
||||
|
||||
/** The minimum version of libburn to be used with this version of libisoburn
|
||||
at compile time.
|
||||
@ -250,7 +250,7 @@ void isoburn_version(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_libburn_req_major 1
|
||||
#define isoburn_libburn_req_minor 2
|
||||
#define isoburn_libburn_req_micro 7
|
||||
#define isoburn_libburn_req_micro 8
|
||||
|
||||
/** The minimum compile time requirements of libisoburn towards libjte are
|
||||
the same as of a suitable libisofs towards libjte.
|
||||
@ -305,7 +305,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_header_version_major 1
|
||||
#define isoburn_header_version_minor 2
|
||||
#define isoburn_header_version_micro 7
|
||||
#define isoburn_header_version_micro 8
|
||||
/** Note:
|
||||
Above version numbers are also recorded in configure.ac because libtool
|
||||
wants them as parameters at build time.
|
||||
|
@ -4,7 +4,7 @@
|
||||
GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||
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-1.2.7.tar.gz
|
||||
http://www.gnu.org/software/xorriso/xorriso-1.2.8.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-1.2.7.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-1.2.8.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-1.2.7.tar.gz
|
||||
cd xorriso-1.2.7
|
||||
tar xzf xorriso-1.2.8.tar.gz
|
||||
cd xorriso-1.2.8
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -356,9 +356,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-1.2.6 :
|
||||
- libburn.so.4 , version libburn-1.2.6 or higher
|
||||
- libisofs.so.6 , version libisofs-1.2.6 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-1.2.8 :
|
||||
- libburn.so.4 , version libburn-1.2.8 or higher
|
||||
- libisofs.so.6 , version libisofs-1.2.8 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.
|
||||
|
@ -14126,17 +14126,241 @@ xorriso/xorrecord.1
|
||||
xorriso/xorrecord.info
|
||||
Version leap to libisoburn-1.2.7
|
||||
|
||||
[]
|
||||
08 Jan 2013 [4951]
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
[]
|
||||
08 Jan 2013 [4952]
|
||||
svn move -m Promoted branch to tag
|
||||
http://svn.libburnia-project.org/libisoburn/branches/1.2.6
|
||||
http://svn.libburnia-project.org/libisoburn/tags/1.2.6
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 -
|
||||
------------------------------------ cycle - xorriso-1.2.7 - 2013.01.08.151611
|
||||
|
||||
|
||||
09 Jan 2013 [4953]
|
||||
frontend/xorriso-tcltk
|
||||
For now only demanding xorriso >= 1.2.6 for xorriso-tcltk-1.2.7
|
||||
|
||||
11 Jan 2013 [4954]
|
||||
xorriso/xorriso_eng.html
|
||||
Presenting xorriso-tcltk on the GNU xorriso web page
|
||||
|
||||
2013.01.13.093116 [4957]
|
||||
xorriso/match.c
|
||||
Curbed the number of wildcard warnings to 3 for iso and 3 for disk
|
||||
|
||||
2013.01.13.102527 [4958]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libburn-1.2.7
|
||||
|
||||
2013.01.13.200742 [4959]
|
||||
libisoburn/libisoburn.h
|
||||
libisoburn/isoburn.h
|
||||
libisoburn/burn_wrap.c
|
||||
libisoburn/libisoburn.ver
|
||||
New API call isoburn_toc_disc_get_incmpl_sess()
|
||||
|
||||
2013.01.14.094419 [4960]
|
||||
xorriso/drive_mgt.c
|
||||
Making use of new libisoburn API call to show incomplete sessions
|
||||
|
||||
2013.01.15.104804 [4962]
|
||||
frontend/xorriso-tcltk
|
||||
frontend/README-tcltk
|
||||
New feature "Log non-essential commands" and --script_log_all_commands
|
||||
|
||||
15 Jan 2013 [4963]
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.1
|
||||
xorriso/xorriso.info
|
||||
Clarified meaning of "After commit" prediction of -tell_media_space
|
||||
|
||||
16 Jan 2013 [4964]
|
||||
xorriso/xorriso_eng.html
|
||||
ChangeLog
|
||||
Updated change log and web page
|
||||
|
||||
2013.01.16.181831 [4967]
|
||||
xorriso/emulators.c
|
||||
xorriso/opts_p_z.c
|
||||
Updated copyright message of xorriso
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 - 2013.01.16.181831
|
||||
* Bug fix: -print_size and -tell_media_space altered the pointers to MD5
|
||||
of data files which stem from a previous session. This produced
|
||||
false mismatches with -check_md5_r.
|
||||
* Bug fix: CD tracks were reported with the sizes of the tracks in the
|
||||
first session.
|
||||
|
||||
|
||||
12 Feb 2013 [4968]
|
||||
doc/faq.wiki
|
||||
Mentioned xorriso-tcltk in the online FAQ
|
||||
|
||||
12 Feb 2013 [4969]
|
||||
doc/faq.wiki
|
||||
Improved mentioning of xorriso-tcltk in the online FAQ
|
||||
|
||||
2013.02.18.104738 [4970]
|
||||
xorriso/emulators.c
|
||||
xorriso/xorrisofs.texi
|
||||
xorriso/xorrisofs.info
|
||||
xorriso/xorrisofs.1
|
||||
New -as mkisofs options -eltorito-id , -eltorito-selcrit
|
||||
|
||||
18 Feb 2012 [4971]
|
||||
xorriso/xorriso_eng.html
|
||||
ChangeLog
|
||||
Updated change log and web page
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 - 2013.02.18.104738
|
||||
* New -as mkisofs options -eltorito-id , -eltorito-selcrit
|
||||
|
||||
|
||||
2013.02.26.082331 [4973]
|
||||
xorriso/check_media.c
|
||||
Corrected wrong use of sizeof
|
||||
|
||||
2013.02.26.103233 [4974]
|
||||
xorriso/drive_mgt.c
|
||||
Bug fix: -check_media use=outdev sector_map= stored TOC of input drive
|
||||
|
||||
2013.03.06.164347 [4983]
|
||||
xorriso/iso_manip.c
|
||||
Bug fix: -hide hfsplus and -as mkisofs -hide-hfsplus had no effect. Thanks to Davy Ho.
|
||||
|
||||
2013.03.06.164906 [4984]
|
||||
xorriso/drive_mgt.c
|
||||
With -list_speeds : reporting the effective speed 0 if it deviates from speed H
|
||||
|
||||
2013.03.10.193344 [4985]
|
||||
xorriso/xorriso_private.h
|
||||
xorriso/base_obj.c
|
||||
xorriso/opts_a_c.c
|
||||
xorriso/emulators.c
|
||||
xorriso/write_run.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Improved interaction of -as mkisofs command with other commands
|
||||
|
||||
10 Mar 2013 [4986]
|
||||
xorriso/xorriso_eng.html
|
||||
ChangeLog
|
||||
Updated change log and web page
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 - 2013.03.10.193344
|
||||
* Bug fix: -check_media use=outdev sector_map= stored TOC of input drive
|
||||
* Bug fix: -hide hfsplus and -as mkisofs -hide-hfsplus had no effect.
|
||||
Thanks to Davy Ho.
|
||||
|
||||
|
||||
2013.03.12.124913 [4988]
|
||||
configure.ac
|
||||
libisoburn/libisoburn.h
|
||||
Requiring libisofs-1.2.7
|
||||
|
||||
2013.03.12.194637 [4989]
|
||||
xorriso/write_run.c
|
||||
Prevented rollover of El Torito Sector Count of large EFI boot images
|
||||
|
||||
2013.03.12.194842 [4990]
|
||||
configure.ac
|
||||
xorriso/misc_funct.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Corrected the interpretation of user supplied ECMA-119 timestamp strings
|
||||
|
||||
2013.03.12.195052 [4991]
|
||||
xorriso/xorriso.h
|
||||
xorriso/iso_img.c
|
||||
xorriso/text_io.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
Reporting volume timestamps with -pvd_info
|
||||
|
||||
2013.03.13.195851 [4992]
|
||||
xorriso/xorriso.h
|
||||
xorriso/parse_exec.c
|
||||
xorriso/opts_d_h.c
|
||||
xorriso/opts_i_o.c
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorriso.1
|
||||
libisoburn/libisoburn.ver
|
||||
New command -move
|
||||
|
||||
2013.03.17.110559 [4993]
|
||||
configure.ac
|
||||
Bug fix: ./configure did not abort if libburn.h or libisofs.h were missing
|
||||
|
||||
18 Mar 2013 [5000]
|
||||
svn copy -m Branching for libisoburn release 1.2.8
|
||||
http://svn.libburnia-project.org/libisoburn/trunk
|
||||
http://svn.libburnia-project.org/libisoburn/branches/1.2.8
|
||||
|
||||
18 Mar 2013 [5001]
|
||||
frontend/xorriso-tcltk
|
||||
frontend/README-tcltk
|
||||
Making use of command -move in xorriso-tcltk
|
||||
|
||||
2013.03.18.093001 [5002]
|
||||
configure.ac
|
||||
README
|
||||
libisoburn/libisoburn.h
|
||||
xorriso/README_gnu_xorriso
|
||||
xorriso/xorriso.h
|
||||
xorriso/xorrisoburn.h
|
||||
xorriso/xorriso_main.c
|
||||
xorriso/xorriso_eng.html
|
||||
xorriso/make_xorriso_standalone.sh
|
||||
xorriso/configure_ac.txt
|
||||
frontend/xorriso-tcltk
|
||||
xorriso/xorriso_timestamp.h
|
||||
xorriso/xorriso.texi
|
||||
xorriso/xorriso.1
|
||||
xorriso/xorriso.info
|
||||
xorriso/xorrisofs.texi
|
||||
xorriso/xorrisofs.1
|
||||
xorriso/xorrisofs.info
|
||||
xorriso/xorrecord.texi
|
||||
xorriso/xorrecord.1
|
||||
xorriso/xorrecord.info
|
||||
Version leap to libisoburn-1.2.8
|
||||
|
||||
18 Mar 2013 []
|
||||
ChangeLog
|
||||
xorriso/changelog.txt
|
||||
Documented changes and release timestamp
|
||||
|
||||
----------------------------------- release - xorriso-1.2.8 - 2013.03.18.093001
|
||||
* Bug fix: -tell_media_space altered the pointers to MD5 of data files
|
||||
which stem from a previous session. This produced false
|
||||
mismatches with -check_md5_r.
|
||||
* Bug fix: CD tracks were reported with the sizes of the tracks in the
|
||||
first session.
|
||||
* Bug fix: -check_media use=outdev sector_map= stored TOC of input drive
|
||||
* Bug fix: -hide hfsplus and -as mkisofs -hide-hfsplus had no effect.
|
||||
Thanks to Davy Ho.
|
||||
* Bug fix: ./configure did not abort if libburn.h or libisofs.h were missing
|
||||
* New command -move
|
||||
* New -as mkisofs options -eltorito-id , -eltorito-selcrit
|
||||
|
||||
|
||||
18 Mar 2013 []
|
||||
frontend/xorriso-tcltk
|
||||
frontend/README-tcltk
|
||||
Making use of command -move in xorriso-tcltk
|
||||
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.9 -
|
||||
* New command -move
|
||||
* Bug fix: ./configure did not abort if libburn.h or libisofs.h were missing
|
||||
|
||||
|
||||
[]
|
||||
@ -14144,15 +14368,15 @@ xorriso/xorriso_eng.html
|
||||
ChangeLog
|
||||
Updated change log and web page
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 -
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.9 -
|
||||
|
||||
[]
|
||||
xorriso/xorriso_eng.html
|
||||
ChangeLog
|
||||
Updated change log and web page
|
||||
|
||||
------------------------------------ cycle - xorriso-1.2.7 -
|
||||
------------------------------------ cycle - xorriso-1.2.9 -
|
||||
|
||||
|
||||
|
||||
**********************************************************************
|
||||
@ -14168,14 +14392,6 @@ Important: When adding a public API function then add its name to file
|
||||
- make optional use of ttk::treeview instead of BWidget (needs Tk 8.5)
|
||||
|
||||
|
||||
>>> on BD-RE
|
||||
-as cdrecord -v dev='/dev/sr5' blank=as_needed
|
||||
-as cdrecord -v --grow_overwriteable_iso dev='/dev/sr5' '/dvdbuffer/mini.iso' -multi stream_recording=32s
|
||||
-as cdrecord -v --grow_overwriteable_iso dev='/dev/sr5' '/dvdbuffer/mini.iso' -multi stream_recording=32s
|
||||
The second burn on appendable BD-RE does not activate the new session.
|
||||
|
||||
|
||||
>>> Command -rename with unambigous semantics ?
|
||||
|
||||
|
||||
>>> The call of Xorriso_remake_hln_array() lasts long even after small
|
||||
|
@ -3,7 +3,7 @@
|
||||
# Copyright (c) 2007 - 2013 Thomas Schmitt <scdbackup@gmx.net>
|
||||
# Provided under GPL version 2 or later.
|
||||
|
||||
AC_INIT([xorriso], [1.2.7], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [1.2.8], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
@ -23,14 +23,14 @@ AC_DEFINE([Xorriso_standalonE], [])
|
||||
|
||||
BURN_MAJOR_VERSION=1
|
||||
BURN_MINOR_VERSION=2
|
||||
BURN_MICRO_VERSION=7
|
||||
BURN_MICRO_VERSION=8
|
||||
AC_SUBST(BURN_MAJOR_VERSION)
|
||||
AC_SUBST(BURN_MINOR_VERSION)
|
||||
AC_SUBST(BURN_MICRO_VERSION)
|
||||
|
||||
LIBISOFS_MAJOR_VERSION=1
|
||||
LIBISOFS_MINOR_VERSION=2
|
||||
LIBISOFS_MICRO_VERSION=7
|
||||
LIBISOFS_MICRO_VERSION=8
|
||||
AC_SUBST(LIBISOFS_MAJOR_VERSION)
|
||||
AC_SUBST(LIBISOFS_MINOR_VERSION)
|
||||
AC_SUBST(LIBISOFS_MICRO_VERSION)
|
||||
|
@ -40,7 +40,7 @@ create_gnu_xorriso="yes"
|
||||
current_dir=$(pwd)
|
||||
lone_dir="$current_dir"/"xorriso-standalone"
|
||||
|
||||
xorriso_rev=1.2.7
|
||||
xorriso_rev=1.2.8
|
||||
# For unstable uploads and patch level 0 of stable releases:
|
||||
xorriso_pl=""
|
||||
# For higher patch levels of stable releases:
|
||||
|
@ -9,7 +9,7 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH XORRECORD 1 "Version 1.2.7, Jan 08, 2013"
|
||||
.TH XORRECORD 1 "Version 1.2.8, Mar 18, 2013"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
|
@ -15,7 +15,7 @@ xorriso
|
||||
|
||||
File: xorrecord.info, Node: Top, Next: Overview, Up: (dir)
|
||||
|
||||
xorrecord 1.2.7
|
||||
xorrecord 1.2.8
|
||||
***************
|
||||
|
||||
xorrecord - Emulation of CD/DVD/BD program cdrecord by program xorriso
|
||||
|
@ -1,7 +1,7 @@
|
||||
\input texinfo @c -*-texinfo-*-
|
||||
@c %**start of header
|
||||
@setfilename xorrecord.info
|
||||
@settitle GNU xorrecord 1.2.7
|
||||
@settitle GNU xorrecord 1.2.8
|
||||
@c %**end of header
|
||||
@c
|
||||
@c man-ignore-lines begin
|
||||
@ -50,7 +50,7 @@
|
||||
@c man .\" First parameter, NAME, should be all caps
|
||||
@c man .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
@c man .\" other parameters are allowed: see man(7), man(1)
|
||||
@c man .TH XORRECORD 1 "Version 1.2.7, Jan 08, 2013"
|
||||
@c man .TH XORRECORD 1 "Version 1.2.8, Mar 18, 2013"
|
||||
@c man .\" Please adjust this date whenever revising the manpage.
|
||||
@c man .\"
|
||||
@c man .\" Some roff macros, for reference:
|
||||
@ -76,7 +76,7 @@ Permission is granted to distrubute this text freely.
|
||||
@end copying
|
||||
@c man-ignore-lines end
|
||||
@titlepage
|
||||
@title Manual of GNU xorriso personality xorrecord 1.2.7
|
||||
@title Manual of GNU xorriso personality xorrecord 1.2.8
|
||||
@author Thomas Schmitt
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
@ -85,7 +85,7 @@ Permission is granted to distrubute this text freely.
|
||||
@contents
|
||||
@ifnottex
|
||||
@node Top
|
||||
@top xorrecord 1.2.7
|
||||
@top xorrecord 1.2.8
|
||||
@c man-ignore-lines 1
|
||||
|
||||
@c man .SH NAME
|
||||
|
@ -9,7 +9,7 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH XORRISO 1 "Version 1.2.7, Mar 13, 2013"
|
||||
.TH XORRISO 1 "Version 1.2.8, Mar 18, 2013"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
|
@ -68,7 +68,7 @@ struct XorrisO;
|
||||
*/
|
||||
#define Xorriso_header_version_majoR 1
|
||||
#define Xorriso_header_version_minoR 2
|
||||
#define Xorriso_header_version_micrO 7
|
||||
#define Xorriso_header_version_micrO 8
|
||||
|
||||
|
||||
/** If needed: Something like ".pl01" to indicate a bug fix. Normally empty.
|
||||
|
@ -15,7 +15,7 @@ images with Rock Ridge extensions.
|
||||
|
||||
File: xorriso.info, Node: Top, Next: Overview, Up: (dir)
|
||||
|
||||
GNU xorriso 1.2.7
|
||||
GNU xorriso 1.2.8
|
||||
*****************
|
||||
|
||||
xorriso - creates, loads, manipulates and writes ISO 9660 filesystem
|
||||
|
@ -1,7 +1,7 @@
|
||||
\input texinfo @c -*-texinfo-*-
|
||||
@c %**start of header
|
||||
@setfilename xorriso.info
|
||||
@settitle GNU xorriso 1.2.7
|
||||
@settitle GNU xorriso 1.2.8
|
||||
@c %**end of header
|
||||
@c
|
||||
@c man-ignore-lines begin
|
||||
@ -50,7 +50,7 @@
|
||||
@c man .\" First parameter, NAME, should be all caps
|
||||
@c man .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
@c man .\" other parameters are allowed: see man(7), man(1)
|
||||
@c man .TH XORRISO 1 "Version 1.2.7, Mar 13, 2013"
|
||||
@c man .TH XORRISO 1 "Version 1.2.8, Mar 18, 2013"
|
||||
@c man .\" Please adjust this date whenever revising the manpage.
|
||||
@c man .\"
|
||||
@c man .\" Some roff macros, for reference:
|
||||
@ -77,7 +77,7 @@ Permission is granted to distrubute this text freely.
|
||||
@end copying
|
||||
@c man-ignore-lines end
|
||||
@titlepage
|
||||
@title Manual of GNU xorriso 1.2.7
|
||||
@title Manual of GNU xorriso 1.2.8
|
||||
@author Thomas Schmitt
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
@ -86,7 +86,7 @@ Permission is granted to distrubute this text freely.
|
||||
@contents
|
||||
@ifnottex
|
||||
@node Top
|
||||
@top GNU xorriso 1.2.7
|
||||
@top GNU xorriso 1.2.8
|
||||
@c man-ignore-lines 1
|
||||
|
||||
@c man .SH NAME
|
||||
|
@ -194,7 +194,7 @@ libburnia SVN: frontend/xorriso-tcltk
|
||||
You will probably have to give it x-permission after download. Some browsers
|
||||
insist in adding ".htm" to the file name.
|
||||
<BR>
|
||||
Further you need xorriso >= 1.2.6, Tcl, Tk >= 8.4,
|
||||
Further you need xorriso >= 1.2.8, Tcl, Tk >= 8.4,
|
||||
Tcl/Tk package "BWidget".
|
||||
</P>
|
||||
|
||||
@ -502,21 +502,21 @@ This can bring effective read performance near to the raw media reading speed.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Download as source code (see README):</H3></DT>
|
||||
<DD><A HREF="xorriso-1.2.6.tar.gz">xorriso-1.2.6.tar.gz</A>
|
||||
(2315 KB).
|
||||
<DD><A HREF="xorriso-1.2.8.tar.gz">xorriso-1.2.8.tar.gz</A>
|
||||
(2325 KB).
|
||||
</DD>
|
||||
<DD>(Released 08 Jan 2013)</DD>
|
||||
<DD><A HREF="xorriso-1.2.6.tar.gz.sig">xorriso-1.2.6.tar.gz.sig</A></DD>
|
||||
<DD>(Released 18 Mar 2013)</DD>
|
||||
<DD><A HREF="xorriso-1.2.8.tar.gz.sig">xorriso-1.2.8.tar.gz.sig</A></DD>
|
||||
<DD>
|
||||
(detached GPG signature for verification by
|
||||
<KBD>gpg --verify xorriso-1.2.6.tar.gz.sig xorriso-1.2.6.tar.gz</KBD>
|
||||
<KBD>gpg --verify xorriso-1.2.8.tar.gz.sig xorriso-1.2.8.tar.gz</KBD>
|
||||
<BR>
|
||||
after <KBD>gpg --keyserver keys.gnupg.net --recv-keys ABC0A854</KBD>).
|
||||
</DD>
|
||||
<DD>
|
||||
Also on <A HREF="http://www.gnu.org/prep/ftp.html">
|
||||
mirrors of ftp://ftp.gnu.org/gnu/ </A>
|
||||
as xorriso/xorriso-1.2.6.tar.gz
|
||||
as xorriso/xorriso-1.2.8.tar.gz
|
||||
</DD>
|
||||
</DL>
|
||||
</DD>
|
||||
@ -553,11 +553,23 @@ describes the cdrecord emulation</DD>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Bug fixes towards previous stable version xorriso-1.2.4:
|
||||
Bug fixes towards previous stable version xorriso-1.2.6:
|
||||
<UL>
|
||||
<LI>SIGSEGV by uninitialized local variable with -check_media patch_lba0="on". Regression by version 1.0.6</LI>
|
||||
<LI>-partition_offset 16 kept -isohybrid-gpt-basdat from writing MBR entries 0xef</LI>
|
||||
<LI>-rollback did not work if indev and outdev were empty</LI>
|
||||
<LI>
|
||||
-tell_media_space altered the pointers to MD5
|
||||
of data files which stem from a previous session. This produced
|
||||
false mismatches with -check_md5_r.
|
||||
</LI>
|
||||
<LI>
|
||||
CD tracks were reported with the sizes of the tracks in the first session.
|
||||
</LI>
|
||||
<LI>
|
||||
-check_media use=outdev sector_map= stored TOC of input drive
|
||||
</LI>
|
||||
<LI>
|
||||
-hide hfsplus and -as mkisofs -hide-hfsplus had no effect.
|
||||
</LI>
|
||||
<LI>./configure did not abort if libburn.h or libisofs.h were missing</LI>
|
||||
<!--
|
||||
<LI>- none -</LI>
|
||||
-->
|
||||
@ -576,19 +588,10 @@ Bug fixes in xorriso-1.1.0.pl01 towards xorriso-1.1.0:
|
||||
-->
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version xorriso-1.2.4:
|
||||
Enhancements towards previous stable version xorriso-1.2.6:
|
||||
<UL>
|
||||
<LI>New -boot_image partition_cyl_align mode "all"</LI>
|
||||
<LI>New -blank mode prefix "force:"</LI>
|
||||
<LI>New -osirrox settings "blocked" and "unblock"</LI>
|
||||
<LI>New command -lns for creating symbolic links</LI>
|
||||
<LI>New command -toc_of</LI>
|
||||
<LI>New command -msg_op</LI>
|
||||
<LI>New command -launch_frontend</LI>
|
||||
<LI>
|
||||
Proof-of-concept of a GUI frontend program: xorriso-tcltk written in Tcl/Tk.
|
||||
<A HREF="xorriso-tcltk-screen.gif">(See screenshot)</A>
|
||||
</LI>
|
||||
<LI>New command -move</LI>
|
||||
<LI>New -as mkisofs options -eltorito-id , -eltorito-selcrit</LI>
|
||||
<!--
|
||||
<LI>- none -</LI>
|
||||
-->
|
||||
@ -611,16 +614,16 @@ libburnia project and the legal intentions of
|
||||
<A HREF="http://www.fsf.org/"> FSF </A> match completely.
|
||||
</DT>
|
||||
<DD> </DD>
|
||||
<DT>libburn-1.2.6</DT>
|
||||
<DT>libburn-1.2.8</DT>
|
||||
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||
developed and maintained since August 2006 by
|
||||
Thomas Schmitt from team of libburnia-project.org)</DD>
|
||||
<DT>libisofs-1.2.6</DT>
|
||||
<DT>libisofs-1.2.8</DT>
|
||||
<DD>operates on ISO 9660 filesystem images.</DD>
|
||||
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
||||
from team of libburnia-project.org. HFS+ code by Vladimir Serbinenko.)</DD>
|
||||
<DT>libisoburn-1.2.6</DT>
|
||||
<DT>libisoburn-1.2.8</DT>
|
||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed,
|
||||
and hosts the original source code of program xorriso.</DD>
|
||||
<DD>It provides the complete functionality of xorriso via
|
||||
@ -641,31 +644,18 @@ cdrecord and mkisofs.</DT>
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 1.2.7 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-1.2.6:
|
||||
<DT><H3>Development snapshot, version 1.2.9 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-1.2.8:
|
||||
<UL>
|
||||
<LI>
|
||||
-print_size and -tell_media_space altered the pointers to MD5
|
||||
of data files which stem from a previous session. This produced
|
||||
false mismatches with -check_md5_r.
|
||||
</LI>
|
||||
<LI>
|
||||
CD tracks were reported with the sizes of the tracks in the first session.
|
||||
</LI>
|
||||
<LI>
|
||||
-check_media use=outdev sector_map= stored TOC of input drive
|
||||
</LI>
|
||||
<LI>
|
||||
-hide hfsplus and -as mkisofs -hide-hfsplus had no effect.
|
||||
</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
<LI>- none yet -</LI>
|
||||
-->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 1.2.6:
|
||||
<DD>Enhancements towards stable version 1.2.8:
|
||||
<UL>
|
||||
<LI>New -as mkisofs options -eltorito-id , -eltorito-selcrit</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!--
|
||||
<LI>- none yet -</LI>
|
||||
-->
|
||||
@ -675,13 +665,13 @@ CD tracks were reported with the sizes of the tracks in the first session.
|
||||
|
||||
|
||||
<DD> </DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 1.2.7</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso-1.2.7 -help</A></DD>
|
||||
<DD><A HREF="xorrisofs_help_devel">xorriso-1.2.7 -as mkisofs -help</A></DD>
|
||||
<DD><A HREF="xorrecord_help_devel">xorriso-1.2.7 -as cdrecord -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 1.2.7)</A></DD>
|
||||
<DD><A HREF="man_1_xorrisofs_devel.html">man xorrisofs (as of 1.2.7)</A></DD>
|
||||
<DD><A HREF="man_1_xorrecord_devel.html">man xorrecord (as of 1.2.7)</A></DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 1.2.9</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso-1.2.9 -help</A></DD>
|
||||
<DD><A HREF="xorrisofs_help_devel">xorriso-1.2.9 -as mkisofs -help</A></DD>
|
||||
<DD><A HREF="xorrecord_help_devel">xorriso-1.2.9 -as cdrecord -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 1.2.9)</A></DD>
|
||||
<DD><A HREF="man_1_xorrisofs_devel.html">man xorrisofs (as of 1.2.9)</A></DD>
|
||||
<DD><A HREF="man_1_xorrecord_devel.html">man xorrecord (as of 1.2.9)</A></DD>
|
||||
<DD> </DD>
|
||||
<DT>If you want to distribute development versions of xorriso, then use
|
||||
this tarball which produces static linking between xorriso and the
|
||||
@ -691,8 +681,8 @@ libburnia libraries.
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-1.2.7.tar.gz">xorriso-1.2.7.tar.gz</A>
|
||||
(2315 KB).
|
||||
<A HREF="xorriso-1.2.9.tar.gz">xorriso-1.2.9.tar.gz</A>
|
||||
(2325 KB).
|
||||
</DD>
|
||||
<DT>A dynamically linked development version of xorriso can be obtained
|
||||
from repositories of
|
||||
|
@ -111,7 +111,7 @@
|
||||
*/
|
||||
#define Xorriso_req_majoR 1
|
||||
#define Xorriso_req_minoR 2
|
||||
#define Xorriso_req_micrO 7
|
||||
#define Xorriso_req_micrO 8
|
||||
|
||||
|
||||
static void yell_xorriso()
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2013.03.17.110559"
|
||||
#define Xorriso_timestamP "2013.03.18.093001"
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 1
|
||||
#define xorriso_libisoburn_req_minor 2
|
||||
#define xorriso_libisoburn_req_micro 7
|
||||
#define xorriso_libisoburn_req_micro 8
|
||||
|
||||
|
||||
struct SpotlisT; /* List of intervals with different read qualities */
|
||||
|
@ -9,7 +9,7 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH XORRISOFS 1 "Version 1.2.7, Feb 18, 2013"
|
||||
.TH XORRISOFS 1 "Version 1.2.8, Mar 18, 2013"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
|
@ -14,7 +14,7 @@ END-INFO-DIR-ENTRY
|
||||
|
||||
File: xorrisofs.info, Node: Top, Next: Overview, Up: (dir)
|
||||
|
||||
xorrisofs 1.2.7
|
||||
xorrisofs 1.2.8
|
||||
***************
|
||||
|
||||
xorrisofs - Emulation of ISO 9660 program mkisofs by program xorriso
|
||||
|
@ -1,7 +1,7 @@
|
||||
\input texinfo @c -*-texinfo-*-
|
||||
@c %**start of header
|
||||
@setfilename xorrisofs.info
|
||||
@settitle GNU xorrisofs 1.2.7
|
||||
@settitle GNU xorrisofs 1.2.8
|
||||
@c %**end of header
|
||||
@c
|
||||
@c man-ignore-lines begin
|
||||
@ -50,7 +50,7 @@
|
||||
@c man .\" First parameter, NAME, should be all caps
|
||||
@c man .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
@c man .\" other parameters are allowed: see man(7), man(1)
|
||||
@c man .TH XORRISOFS 1 "Version 1.2.7, Feb 18, 2013"
|
||||
@c man .TH XORRISOFS 1 "Version 1.2.8, Mar 18, 2013"
|
||||
@c man .\" Please adjust this date whenever revising the manpage.
|
||||
@c man .\"
|
||||
@c man .\" Some roff macros, for reference:
|
||||
@ -76,7 +76,7 @@ Permission is granted to distrubute this text freely.
|
||||
@end copying
|
||||
@c man-ignore-lines end
|
||||
@titlepage
|
||||
@title Manual of GNU xorriso personality xorrisofs 1.2.7
|
||||
@title Manual of GNU xorriso personality xorrisofs 1.2.8
|
||||
@author Thomas Schmitt
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
@ -85,7 +85,7 @@ Permission is granted to distrubute this text freely.
|
||||
@contents
|
||||
@ifnottex
|
||||
@node Top
|
||||
@top xorrisofs 1.2.7
|
||||
@top xorrisofs 1.2.8
|
||||
@c man-ignore-lines 1
|
||||
|
||||
@c man .SH NAME
|
||||
|
Reference in New Issue
Block a user