Updated change log and web page

This commit is contained in:
Thomas Schmitt 2013-10-09 09:26:48 +00:00
parent 5ae4e4eec9
commit 54face7b6c
3 changed files with 119 additions and 2 deletions

View File

@ -1,6 +1,9 @@
SVN trunk (to become libisoburn-1.3.4.tar.gz or higher) SVN trunk (to become libisoburn-1.3.4.tar.gz or higher)
=============================================================================== ===============================================================================
* Bug fix: Command -blank "as_needed" formatted blank BD-R. * Bug fix: Command -blank "as_needed" formatted blank BD-R.
* Bug fix: -as mkisofs option -log-file put the log file into the image
* Bug fix: -cut_out did not add x-permission to r-permission of directory
* New command -read_speed
libisoburn-1.3.2.tar.gz Wed Aug 07 2013 libisoburn-1.3.2.tar.gz Wed Aug 07 2013

View File

@ -15004,7 +15004,7 @@ xorriso/xorriso_private.h
xorriso/write_run.c xorriso/write_run.c
Avoiding a futile re-try when ending after a failed session write attempt Avoiding a futile re-try when ending after a failed session write attempt
[] 27 Aug 2013 [5144]
ChangeLog ChangeLog
xorriso/xorriso_eng.html xorriso/xorriso_eng.html
xorriso/changelog.txt xorriso/changelog.txt
@ -15014,6 +15014,75 @@ Updated change log and web page
* Bug fix: Command -blank "as_needed" formatted blank BD-R. * Bug fix: Command -blank "as_needed" formatted blank BD-R.
2013.09.05.080255 [5149]
xorriso/drive_mgt.c
Keeping -check_media from reading outside of medium readable area
2013.09.05.081703 [5150]
xorriso/text_io.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
Reacted on warnings of PLD Linux build log
2013.09.05.082833 [5151]
xorriso/emulators.c
Bug fix: -as mkisofs option -log-file added the log file to the image
2013.09.07.193824 [5153]
xorriso/iso_manip.c
Reacted on warning of valgrind
07 Sep 2013 [5154]
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
xorriso/xorrisofs.texi
xorriso/xorrisofs.info
xorriso/xorrisofs.1
Mentioned the change of default weight for boot image files
10 Sep 2013 [5155]
xorriso/xorriso_eng.html
Removed false promise from web page example about -osirrox
2013.09.16.164820 [5156]
libisoburn/burn_wrap.c
xorriso/iso_manip.c
Reacted on warnings of Debian buildd with clang
2013.10.05.073918 [5159]
xorriso/iso_manip.c
Bug fix: -cut_out did not add x-permission to r-permission of directory
2013.10.08.175702 [5160]
xorriso/xorriso.h
xorriso/xorriso_private.h
xorriso/base_obj.c
xorriso/parse_exec.c
xorriso/opts_d_h.c
xorriso/opts_p_z.c
xorriso/text_io.c
xorriso/drive_mgt.c
xorriso/write_run.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
New command -read_speed
09 Oct 2013 []
ChangeLog
xorriso/xorriso_eng.html
xorriso/changelog.txt
Updated change log and web page
------------------------------------ cycle - xorriso-1.3.3 -
* Bug fix: -as mkisofs option -log-file put the log file into the image
* Bug fix: -cut_out did not add x-permission to r-permission of directory
* New command -read_speed
[] []
ChangeLog ChangeLog
xorriso/xorriso_eng.html xorriso/xorriso_eng.html
@ -15022,6 +15091,7 @@ Updated change log and web page
------------------------------------ cycle - xorriso-1.3.3 - ------------------------------------ cycle - xorriso-1.3.3 -
[] []
ChangeLog ChangeLog
xorriso/xorriso_eng.html xorriso/xorriso_eng.html
@ -15041,6 +15111,48 @@ Important: When adding a public API function then add its name to file
TODO TODO
=============================================================================== ===============================================================================
------
>> Klingt nach einem Memoryleak. Wie sieht denn Dein Kommando
>> nun aus ? (Gekuerzte Version mit 3 mal -commit wuerde reichen.)
>
> xorriso -outdev '/dev/sr0' -blank deformat_quickest -gid 0 -joliet
on -padding 0 -speed 1 -uid 0 -volid '2013_09_14_21_44' -md5 all -map
'/tmp/test.txt' '/test.txt' -- -chmod_r a+r,go-w,u+w / -- -find /
-type d -exec chmod a+x -- -commit -check_md5_r SORRY / -- -outdev
'/dev/sr0' -map '/tmp/test.txt' '/test.txt' -- -chmod_r a+r,go-w,u+w
/ -- -find / -type d -exec chmod a+x -- -commit -check_md5_r SORRY /
-- -close on -outdev '/dev/sr0' -map '/tmp/test.txt' '/test.txt' --
-chmod_r a+r,go-w,u+w / -- -find / -type d -exec chmod a+x -- -commit
-check_md5_r SORRY / -- -eject out -outdev '/dev/sr0'
>
> Am Ende des 3. Schreibvorganges werden bei mir etwa 11400 KiB
belegt.
-----------------
libjte/sha256.c: In function 'sha256_finish_ctx':
libjte/sha256.c:223:3: warning: dereferencing type-punned pointer
will break strict-aliasing rules [-Wstrict-aliasing]
   *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0]
<< 3);
   ^
libjte/sha256.c:224:3: warning: dereferencing type-punned pointer
will break strict-aliasing rules [-Wstrict-aliasing]
   *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] <<
3) |
   ^
libjte/sha512.c: In function 'sha512_finish_ctx':
libjte/sha512.c:338:3: warning: dereferencing type-punned pointer
will break strict-aliasing rules [-Wstrict-aliasing]
   *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP (ctx->total[0]
<< 3);
   ^
libjte/sha512.c:339:3: warning: dereferencing type-punned pointer
will break strict-aliasing rules [-Wstrict-aliasing]
   *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] <<
3) |
----------------- -----------------

View File

@ -673,6 +673,8 @@ cdrecord and mkisofs.</DT>
<DD>Bug fixes towards xorriso-1.3.2: <DD>Bug fixes towards xorriso-1.3.2:
<UL> <UL>
<LI>Command -blank "as_needed" formatted blank BD-R.</LI> <LI>Command -blank "as_needed" formatted blank BD-R.</LI>
<LI>-as mkisofs option -log-file put the log file into the image</LI>
<LI>-cut_out did not add x-permission to r-permission of directory</LI>
<!-- <!--
<LI>- none yet -</LI> <LI>- none yet -</LI>
--> -->
@ -680,7 +682,7 @@ cdrecord and mkisofs.</DT>
</DD> </DD>
<DD>Enhancements towards stable version 1.3.2: <DD>Enhancements towards stable version 1.3.2:
<UL> <UL>
<LI>- none yet -</LI> <LI>New command -read_speed</LI>
<!-- <!--
<LI>- none yet -</LI> <LI>- none yet -</LI>
--> -->