HISTORY-v0.txt 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. @@MODULE(head.txt)@@
  2. @@MODULE(content.txt)@@
  3. *******************************************************************************
  4. ******* HISTORY v0.* *******
  5. *******************************************************************************
  6. wwt v0.00a r116 - 2009-09-28
  7. - First release.
  8. - Supported commands: HELP, ERROR, FIND, SPACE, DUMP, ID6, LIST*,
  9. ADD, EXTRACT, REMOVE
  10. wwt v0.00b r123 - 2009-09-28
  11. - new: command FORMAT
  12. wwt v0.00c r145 - 2009-09-30
  13. - EXTRACT & REMOVE: -tt (--test twice) => print normalized ID6 list and exit.
  14. - EXTRACT: option --unique enabled.
  15. - EXTRACT & ADD: progress info enabled with -vv.
  16. - New processing of ID6 parameters.
  17. - Bug fix: the long option --sort does'n take a parameter.
  18. - Output of LIST improved.
  19. - The read and write file subroutines are rewritten. ==> tests needed.
  20. - The new option --sparse enables improved sparse handling.
  21. wwt v0.00d r164 - 2009-10-03
  22. - Support for WDF images (see file 'WDF.txt', EXPERIMENTAL)
  23. - New tools: wdf-dump, wdf2iso, iso2wdf, wdf-cat
  24. - Option --sparse replaced by --fast.
  25. - Scan environment variable 'WWT_WBFS' for WBFS partitions.
  26. wwt v0.01a r168 - 2009-10-04
  27. - WWT leaves Alpha and goes Beta!
  28. - WDF is now productive; WDF documentation expanded.
  29. - Extracting to WDF is now default. --iso forces ISO output.
  30. - Bug fix: Wrong "end of disc" handling while writing a double layer ISO
  31. and --trunc is not set.
  32. wwt v0.02a r179 - 2009-10-05
  33. - Command abbreviations are allowed if they are unambiguous.
  34. - EXTRACT: Improved filename handling when using 'ID6=filename'.
  35. - Enhanced error management.
  36. - Bug fix [wdf2iso]: Couldn't create zero length files.
  37. - From now on, the distribution has subdirectories: bin lib doc scripts
  38. - Tools wdf-dump, iso2wdf, wdf2iso, wdf-cat: options available.
  39. - New: scripts/test-wdf-tools.sh: test the wdf tools.
  40. -> over 320000 files (mixed user files) testet without failures.
  41. - New: scripts/time-test.sh: run time tests -> see file 'STATISTICS.txt'.
  42. wwt v0.03a r200 - 2009-10-08
  43. - Enhanced error management again.
  44. - Misspelling in --help: The shortcut for 'DUMP' is 'D' and not 'DP'.
  45. - Make: Support of environment variable 'XFLAGS' -> 'XFLAGS=-march=x86-64 make'
  46. - File handling: Support of open() and fopen() as alternatives for testing.
  47. - Script test-wdf-tools.sh: Positive test is now done with >1 million files.
  48. - New option for 'wdf-dump': --chunk: Print chunk header table.
  49. - WDF specification is complete.
  50. wwt v0.04a r212 - 2009-10-11
  51. - ADD: ID6 is now also recognized when source is a WDF.
  52. - New command: FILETYPE: Print a status line for each given file.
  53. - New script: test-ADD+EXTRACT.sh: ADD + EXTRACT test with various options.
  54. - *EXPERIMENTAL*:
  55. - Option --cache enables caching of well known file parts while reading
  56. an ISO image. Perhaps cached areas must be expanded.
  57. - Adding a game from a pipe if option --cache is set. Commands like
  58. "wwt ... ADD --cache <(UNRAR-TO-STDOUT game.rar)" are possible.
  59. - Doc: Explanation of the hidden options: --hole-size, --io and --cache
  60. wwt v0.05a r247 - 2009-10-14
  61. - Complete new interface to the WBFS subsystem:
  62. - unused source files removed.
  63. - improved error messages of libwbfs
  64. - WBFS file handling rewritten. It supports now file (using open() function)
  65. and stream (using fopen() function) methods. Use --io to select method.
  66. - New option: --ignore: Ignore non existing files/discs without warnings.
  67. Can be used with: ADD, EXTRACT, REMOVE (replaces --force) and FILETYPE.
  68. - The lib path moved from '/usr/local/lib/' to '/usr/local/share/wwt/'.
  69. - New option --sector-size: Set logical hd sector size larger than 512
  70. while formatting WBFS => The max disc count of a WBFS will be raised.
  71. - Title database implemented.
  72. - New command: TITLES: Print the internal title database to stdout.
  73. - ADD: ISO image is acepted from stdin if a file is named '-'. For pipes
  74. the experimental option --cache must be set.
  75. wwt v0.06a r258 - 2009-10-15
  76. - If adding from a pipe the cache (option --cache) is enabled automatically.
  77. - Signal handler implemented for INT, TERM, USR1 and USR2. (see docu)
  78. - Bug fix: INIT failed if formatting a block device.
  79. - Bug fix: EXTRACT: Wrong file size calculation for double layer discs if
  80. a zero filled block at the end of the image is found (ISO and WDF).
  81. wwt v0.07a r273 - 2009-10-19
  82. - Check the MAGIC "5d-1c-9e-a3" at position 0x18 of ISO files.
  83. - New script: convert-iso-to-wdf.sh: Find ISO files and convert it to WDF.
  84. The converted WDF will be compared with the source and removed if differ.
  85. - 'iso2wdf' and 'wdf2iso' may convert through stdin->stdout.
  86. - Script test-wdf-tools.sh: Positive test is now done with >2 million files.
  87. I declare WDF as stable. I have converted all my games to WDF.
  88. - The source is now more compatible for non linux/386 machines.
  89. - Source files renamed.
  90. - The binaries are linked without -static now. Hope that makes no problems.
  91. wwt v0.07b r278 - 2009-10-20
  92. - Cygwin support.
  93. - Minor bug fixes.
  94. wwt v0.08a r294 - 2009-10-23
  95. - iso2wdf + wdf2iso: new options: --dest dir_or_file, --overwrite
  96. - The documentation is now divided into more files: Each tool has its own one.
  97. - Some minor bug fixes in libwbfs.
  98. - Option --remove: short option is now -R.
  99. - New options: --exclude and --exclude-path: exclude discs from operation.
  100. - New command: EXCLUDE: print the results of --exclude and --exclude-path.
  101. - New tool: wit = Wiimms ISO Tool. (empty framework yet)
  102. - Scan environment variables 'WWT_OPT' and 'WIT_OPT' for predefined options.
  103. - CYGWIN bug fix: WDF support failed because of non packed data structure.
  104. - CYGWIN: I have done a little test series without failures.
  105. - Allow the wbfs subsystem to read behind end of file marker (print a warning).
  106. wwt v0.09a r309 - 2009-10-27
  107. - Bug fix: progress counter was only shown for first job.
  108. - Hidden option --hole-size removed.
  109. - Option --sort: keyword scanning enabled.
  110. - New option --psel: define a partition selector.
  111. - New option --update for ADD+EXTRACT: copy only new files.
  112. - New wwt command UPDATE: shortcut for 'ADD --update'.
  113. - wit commands: VERSION, HELP, ERROR, TITLES, EXCLUDE, FILELIST, FILETYPE,
  114. ID6, LIST, LIST-L, LIST-LL.
  115. - Title files for: de en es fr it ja ko nl pt (loaded from WiiTDB.com).
  116. wwt v0.10a r325 - 2009-10-31
  117. - wwt+wit DUMP: Output expanded.
  118. - ADD --trunc: WBFS will be truncated/trimmed to minimal size after adding.
  119. - New wwt command: TRUNCATE: truncate/trim a WBFS to minimal size.
  120. - Size options: advanced arguments -> see section "Processing size options".
  121. - All tools: EXPERIMENTAL support of splitted WBFS, WDF and ISO files:
  122. - While generating a file use --split and --split-size to force splitting.
  123. - While opening files for reading splitted files are detected automatically.
  124. wwt v0.11a r339 - 2009-11-02
  125. - wwt "LIST --mixed": output format changed.
  126. - New option --progress: enable progress counter independent of verbose level.
  127. - wdf2iso + iso2wdf:
  128. - Both accept any files as input. If the input is an ISO or a WDF+ISO than
  129. the file is scrubbed (controlled by optiond --psel snd --raw).
  130. - New option --preserve: preserves file times
  131. - New command: wit COPY source... dest -> converting and scrubbing.
  132. - wwt DUMP --long --long: Dump a memory layout map for each disc.
  133. - wwt DUMP --long --long --long: Dump a memory layout map for whole WBFS.
  134. wwt v0.12a r364 - 2009-11-05
  135. - Bug fix showing the progress counter.
  136. - Bug fix in libwbfs/wbfs_trim() -> "ADD --trunc" and "TRUNCATE" failed.
  137. - wit DUMP --long: Dump a memory map.
  138. - wdf2iso + iso2wdf: print progress infos.
  139. - New ISO source alternative: /path/to/WBFS_FILE/SELECTOR (see doc)
  140. - New wit command: COPY: Copy and convert ISO images.
  141. - New wit command: SCRUB: Scrubs ISO images.
  142. wwt v0.13a r383 - 2009-11-06
  143. - Option --cache removed: Cache is activated when needed.
  144. - Bug fix: "wit copy --remove wbfs/selector" removes disc from WBFS.
  145. - Bug fix: wit SCRUB: output file format was controlled by options.
  146. - wwt EXTRACT: Can extract to wbfs files.
  147. - wwt ADD: Accept wbfs files as input (wbfs to wbfs copy)
  148. - New tool: iso2wbfs: Converts ISO images into a splitted WBFS files.
  149. wwt v0.14a r388 - 2009-11-08
  150. - Progress info shows copy rate in MiB/sec too.
  151. - Buf fix: damaged WDF file if copying from WDF to WDF with --raw.
  152. - wwt CHECK: check WBFS for block errors (report only, no repair yet).
  153. wwt v0.15a r402 - 2009-11-10
  154. - Option --progeess has now a short brother: -P
  155. - Bug fix: iso2wbfs had produced ISO images instead of WBFS.
  156. - Bug fix: wwt EXTRACT --wbfs did not work.
  157. - wwt EDIT (not documented): manipulate block assignments (EXPERIMENTAL!).
  158. I need the EDIT command to make invalid WBFS for testing the CHECK command.
  159. - wwt ID6 --long: print list in format WBFS_FILE/ID6 (wbfs+selector).
  160. - wwt CHECK improved.
  161. wwt v0.16a r428 - 2009-11-15
  162. - wwt DUMP layout redesigned.
  163. - libwbfs: free blocks table bug fixes:
  164. - Fix the free block table while formatting or loading
  165. - Allocation of free blocks behind 32 bit boundaries
  166. - Fix table if WBFS if full while adding a game.
  167. - I propagate libwbfs v1 (v0 prior).
  168. - bug fix: progress info failed if writing splitted files.
  169. - wwt ADD/UPDATE/EXTRACT/REMOVE/TRUNCATE: A CHECK is done automatically.
  170. The WBFS will be ignored if problematic errors are detected.
  171. --force: Print messages but ignore result of the check and continue.
  172. --no-check: Disable the automatic check.
  173. - wwt ADD/UPDATE: Cleanup to previous state if the disc is full.
  174. - wwt REMOVE: new option: --no-free: do not free blocks.
  175. - wwt CHECK: new option: --repair=mode: fix the detected errors.
  176. THIS OPTION IS EXPERIMENTAL!
  177. - New wwt command: REPAIR: Shortcut for: CHECK --repair=fbt
  178. (fbt = Free Blocks Table) THIS COMMAND IS EXPERIMENTAL!
  179. wwt v0.16b r431 - 2009-11-15
  180. - wwt EXTRACT and REMOVE denied options --force and --no-check.
  181. - cygwin: REPAIR can't write unaligned free blocks tables.
  182. wwt v0.17a r454 - 2009-11-18
  183. - wwt ADD --ignore: Ignores non exsting sources without message.
  184. - wwt DUMP: show memory range of each inode.
  185. - New command: wit DIFF: Compare ISO images in raw or scrubbed mode.
  186. EXPERIMENTAL, because the DIFF command is not testet very well yet!
  187. - wwt EXTRACT + wit COPY/DIFF: Handle '%'-escapes for output file name.
  188. - New option --esc: Define an alternative escape character, default is '%'.
  189. - Bug fix: Wrong name scheme for splitted WBFS files.
  190. - Some minor bugs fixed.
  191. wwt v0.18a r465 - 2009-11-22
  192. - Bug fix: Wrong temp filename while creating an splitted WBFS.
  193. - Default split size is now 4GiB-32KiB for WBFS and 4GB for all other files.
  194. - wwt CHECK -ll: Print an additional dump if errors found.
  195. - wit SCRUB: Allow type conversion.
  196. - new commands: wwt RENAME+SETTITLE: Set ID and title of discs [EXPERIMENTAL].
  197. - IMPORTAND BUG FIX in libwbfs/wiidisc: All scrubbing operations including
  198. adding to a WBFS could loose sectors.
  199. wwt v0.19a r491 - 2009-11-27
  200. - New ADD option: --sync: Synchronize: remove and add until WBFS contains
  201. the same discs as source list.
  202. - New command: wwt SYNC: Abbreviation for: ADD --sync
  203. - New commands: wit RENAME+SETTITLE: Set ID and title of discs [EXPERIMENTAL].
  204. - New command: wit MOVE: move/rename iso files.
  205. - MAC bug fix: segmentation fault if formatting a drive.
  206. - Bug fix: Interrupt possible while processing a source directory.
  207. wwt v0.20a r504 - 2009-12-05
  208. - wwt FIND -l: List all instead of only WBFS partitions.
  209. - Some minor bug fixes.
  210. - Improved text output.
  211. wwt v0.21a r520 - 2009-12-09
  212. - New command: wwt PHANTOM: add a phantom discs (fast, for tests only).
  213. - libwbfs: I have implemented a little ID6 cache for faster disc access and
  214. less IO when searching discs.
  215. - CYGWIN bug fix: Using mixed reading and writing on files opened with open()
  216. fails and write sometimes to wrong file positions (reproducible).
  217. Switching to fopen() based IO works fine.
  218. - Docu of wwt+wit RENAME+SETTITLE.
  219. wwt v0.21b r524 - 2009-12-13
  220. - Corrections of inline and offline docu.
  221. - New: FAQ.txt (first steps)
  222. wwt v0.22a r535 - 2009-12-25
  223. - New options: --include and --include-path: include only given discs.
  224. - New "wit COPY" option: --update: copy only to non existing files.
  225. wwt v0.23a r544 - 2009-12-31
  226. - Formatting will clear all inodes. That gives undelte a better chance.
  227. In respect to sparse files the inodes will be read before and only zeroed
  228. if non zero data is found.
  229. - CYGWIN: The filenames beginning "x:/" will be replaced by "/cygdrive/x/".
  230. wwt v0.24a r549 - 2010-01-03
  231. - Suppress a read error if reading behind end of file while creating a
  232. growing wbfs (copy to wbfs file with a sinlge disc).
  233. - If the destination path of a copy command contains at least 1 valid
  234. %-escape conversion than the directory path will be created automatically.
  235. - CYGWIN bugfix: Unclear bug while rename "x:/" to "/cygdrive/x/".
  236. Now we have a small memory leak (The original filename is not freed).
  237. - Script 'install.sh' use now the system command 'install'.
  238. wwt v0.25a r558 - 2010-01-04
  239. - wwt REMOVE: Print id6 and (that's new) title of removed discs.
  240. - wwt EXTRACT+REMOVE: No warning if parameters are given, but no disc found
  241. because of exclude and/or include lists.
  242. - New option: --DEST (-D): Works like --dest (-d), but the directory paths
  243. of the destination files will be created automatically.
  244. wwt v0.26a r569 - 2010-01-05
  245. - cygwin: stdout and stderr use windows line ending (CR+LF).
  246. - Allow german umlaut in destination file names.
  247. - Bug fix: Option --include-path was only processed if also option
  248. --exclude-path was set.
  249. - The local title files contain now all titles and not only the local
  250. modifications. This is good for cygwin which do not support automatic
  251. language detection. Just rename 'titles-XY.txt' to 'titles.txt'.
  252. wwt v0.27a r579 - 2010-01-09
  253. - Bug fix: Problems while creating a directory path.
  254. - Option --no-utf-8 did not work, all titles were trash.
  255. - Option --no-utf-8 is now the default for cygwin. This is needed to allow
  256. german umlauts in filebnames.
  257. - wwt ADD: Add files in alphabetic order and print iteration counter.
  258. wwt v0.28a r596 - 2010-01-15
  259. - Little optimization for libwbfs add_disc(): Read only needed wii sectors
  260. from iso and fill others with zeros. This makes adding faster and avoids
  261. reading behind end of file. This is needed for reading from a pipe.
  262. - New error code: JOB_IGNORED: Set if a disc is ignored while adding a game.
  263. - wwt ADD: adding to more than one WBFS failed since v0.27a.
  264. - wit COPY+SCRUB+MOVE: Process files in alphabetic order and print iteration
  265. counter.
  266. - Bug fix: wwt LIST: Not all discs were shown if an invalid disc was found.
  267. - Decompose unusual unicode characters (remove accents...) in title database.
  268. wwt v0.29a r606 - 2010-01-22
  269. - wwt ADD: Adding a complete WBFS is optimized and much faster now.
  270. - Bug fix: Option --preserve didn't work.
  271. - wwt+wit FILETYPE: Print region info if option --long is set twice.
  272. wwt v0.30a r613 - 2010-01-30
  273. - wwt+wit FILETYPE: Print scrubbed size if option --long is set twice.
  274. - New command: wit ISOSIZE: Print scrubbed ISO sizes in up to 4 aspects.
  275. wwt v0.31a r618 - 2010-01-31
  276. - wwt+wit FILETYPE: Print table header.
  277. - wwt FORMAT: new option: --recover: Format a WBFS in recover mode.
  278. The recover feature is EXPERIMENTAL!
  279. wwt v0.32a r632 - 2010-02-14
  280. - wwt+wit: New environment variable: WWT_LANG: Define a default language.
  281. - wwt+wit: New option: --lang= : Define the working language.
  282. - wwt FORMAT --recover: Little optimizations.
  283. - Bug fix: Enable cache for all commands if reading from a pipe.
  284. wwt v0.33a r659 - 2010-03-01
  285. - Support of the new extended WBFS inodes with the data records
  286. 'itime', 'mtime', 'ctime', 'atime' and 'load_count'.
  287. - ADD updates itime, mtime, ctime and atime. mtime is taken from source.
  288. - EXTRACT updates atime. mtime is copied to destination file.
  289. - RENAME+SETTILE @INODE updates ctime and atime.
  290. - RENAME+SETTILE @ISO updates mtime, ctime and atime.
  291. - LIST may show one of the time values (-ll, --*time, --time=mode)
  292. - DUMP show all times if disc dump is enabled (--long).
  293. - wit+wwt LIST: The new options --itime, --mtime, --ctime, --atime
  294. and --time=modelist will force output of a time stamp. The meaning
  295. of --long is changed.
  296. - Option --sort= supports new modes 'DATE', 'ASCENDING' and 'DESCENDING'.
  297. - New wwt command: LIST-LL or LLL: Abbreviation of 'LIST -ll'.
  298. - New wit command: LIST-LLL or LLLL: Abbreviation of 'LIST -lll'.
  299. - Bug fix: wit LIST: The WBFS file size was listed instead the ISO size.
  300. wwt v0.34a r691 - 2010-03-11
  301. - New timestamp: 'dtime' is set when a disc is deleted.
  302. - wwt FORMAT: If formatting a block device empty inodes with empty but valid
  303. extended inode infos are written and the dtime is set.
  304. - wwt PHANTOM: Setup extended inode info (time stamps + ...) too.
  305. - wwt CHECK/REPAIR: new mode: --repair=inode: Setup all missing inode infos.
  306. - New command: wwt TOUCH: Set timestamps of inode info (created if not exist).
  307. Supported time options: --itime --mtime --ctime --atime --set-time=time
  308. - All tools can write to a block or character device if --overwrite is set.
  309. - wwt FIND --quiet: report only via return status if a WBFS is found.
  310. - The split size for WBFS and ISO is now rounded down to a multiple of 32 KiB.
  311. Any split sizes are allowed for WDF.
  312. - wwt bug fix: If extracting to WBFS the extension '.wbfs' was not added.
  313. - New wwt DUMP option: --inode: show status of all inodes (deleted discs too).
  314. - libcrypto is now statically linked, so wwt runs on older linux systems.
  315. - wwt+wit FILETYPE: Support of option --no-header
  316. - Test script test-ADD+EXTRACT.sh runs again.
  317. - Bug fix: Sometimes reading an ISO from a WBFS runs into "Not a ISO image".
  318. wwt v0.34b r701 - 2010-03-12
  319. - Bug fix: Reading from a WBFS with exact one discs without a disc selector
  320. is possible again.
  321. - Bug fix: Progress information is also printed if extracting to wbfs files.
  322. wwt v0.35a r713 - 2010-03-14
  323. - Bug fix: The "wwt TOUCH" command didn't accept most of the allowed options.
  324. - wwt ADD: New option --newer: Copy only newer files if mtime of source and
  325. destination are available and non zero.
  326. - RENAME+SETTITLE: Timestamps are only set if ID or title are really changing.
  327. - Doumentation has been improved a little bit.
  328. wwt v0.36a r728 - 2010-03-19
  329. - Option --sort=key: new keys: 'ITIME', 'MTIME', 'CTIME' and 'ATIME'.
  330. - wwt+wit LIST: Support of multiple time columns.
  331. - wwt+wit LIST+ERROR: new option --sections: print machine readable output
  332. devided into sections "[...]". Each section has lines like "name=value".
  333. - Makefile: Changed some lib settings (explicit naming of libcrypto removed).
  334. wwt v0.37a r753 - 2010-03-26
  335. - wwt: new command: ANALYZE: Analyze files and partitions for WBFS usage.
  336. It try to find existing WBFS structures and make calculations for new WBFS.
  337. - Check WBBS header
  338. - Search INODE-INFO data (includes copy of WBFS header)
  339. - Search discs for valid ID6 and MAGIC.
  340. - Make example calculations for different sector sizes.
  341. All results are printed as table with the main geometry data.
  342. - wwt INIT:
  343. - New option: --wss (Wbfs Sector Size): Defines the WBFS sector size.
  344. - The option --sector-size (defines the HD sector size) was replaced by
  345. the more handy --hss (Hd Sector Size). The old option is still allowed.
  346. - If option --recover is set the command ANALYZE is called to determine
  347. the values of --hss and --wss if not set before.
  348. This points should complete WBFS recovering.
  349. - For the ANALYZE command I have written a complete new function to calculate
  350. the WBFS geometry (outsourcing of the calculation). If formatting a drive
  351. this new function is called to compare the results with the old calculation.
  352. If there are differences the program stops with an assertion failure.
  353. ** Please tell me such errors! **
  354. wwt v0.38a r769 - 2010-03-28
  355. - Some dtime improvements.
  356. - wwt+wit: Option -C is not longer the short version of option --trunc.
  357. - CISO support (EXPERIMENTAL):
  358. - wdf-dump will also dump the structure and memory map of CISO files.
  359. - wdf-cat will copy the extended ISO to standard output.
  360. - On all places where a plain ISO is allowed as source file a CISO is
  361. allowed too.
  362. - To force CISO-output use option --ciso or file type ".ciso" or ".wbi".
  363. wwt v0.38b r771 - 2010-03-28
  364. - Bug fix for wwt INIT: Wrong assertion while comparing old and new
  365. calculation for WBFS geometry.
  366. wwt v0.39a r782 - 2010-03-29
  367. - Bug fix: New CISO files > 4 GiB have been truncated (modulo 2^32 error).
  368. - Character devices are allowed for WBFS.
  369. - wwt --auto: If the file /proc/partitions is not found, than all devices
  370. named '/dev/sd*' and '/dev/rdisk*' are scanned for WBFS. If scanning of
  371. '/dev/rdisk*' fails then also files named '/dev/disk*' are scanned.
  372. Using character devices '/dev/rdisk*' will speed up wwt on apple computers.
  373. wwt v0.40a r790 - 2010-03-31
  374. - Cache handling (pipe support) improved. Discs with update partitions are
  375. problematic (some discs needs a 256 MiB cache). Try --psel=game to ignore
  376. update partitions. The CYGWIN version has real problems with pipes.
  377. - Bug fix: Option "--ciso" was not recognized.
  378. - New test script: scripts/test-wwt+wit.sh
  379. - test "wwt INIT" with different HD sector sizes
  380. - test "wwt ADD" with ISO, CISO, WDF, WBFS
  381. - test "wwt EXTRACT" to ISO, CISO, WDF, WBFS
  382. - test "wit COPY" (convert) to ISO, CISO, WDF, WBFS
  383. wwt v0.41a r824 - 2010-04-16
  384. - New escape sequence for output file names:
  385. %Y = Extended filename: A shortcut for '%T [%I]' (no file extension)
  386. - wit DUMP: new option --files= (-F): dump a list of files.
  387. - New command: wit ILIST: List all files from ISO images.
  388. - New command: wit EXTRACT: Extract all files from ISO images.
  389. This is a first implementation or better a proof of concept.
  390. - New option: --files=rules: Define a rule list as selector for ISO
  391. file operations. A semicolon separate single items. Each item must begin
  392. with '+' (allow) or '-' (deny). Multiple usage of the option is allowed.
  393. This options is used by the commands DUMP, ILIST and EXTRACT. See file
  394. "wit.txt" section "Selecting files with --files=rules" for more details.
  395. - Bug fix: Creating directories (--DEST) with absoulte paths will now work.
  396. - New wit option: --rdepth: Set the maximum recurse depth for option
  397. --recurse in the range 0..100. The default depth is 10.
  398. - New param for wwt+wit LIST --section: used_blocks= (1 block = 32 KiB)
  399. wwt v0.42a r846 - 2010-04-19
  400. - Bug fix: wit option -C was not recognized.
  401. - Bug fix: Print multiple time stamps in listing works now.
  402. - wit ILIST rewritten. It supports now --sort=
  403. - wit EXTRACT rewritten. All needed files for SNEEK are extracted.
  404. - New wit option: --pmode=default|auto|none|point|ident|name
  405. The option defined how the partition type is used to prefix the file path.
  406. - The new wit option --sneek is an abbreviation of --psel=data --pmode=none.
  407. It also suppress creating files that SNEEK don't need.
  408. wwt v0.42b r871 - 2010-04-21 (repository only)
  409. - The wiidisc interface now reads only well aligned (multiple of 512) data.
  410. - When creating a CISO the blocksize is now always a power of 2.
  411. - wwt+wit FILETYPE detect now extracted ISO file systems (FST).
  412. wwt v0.42c r873 - 2010-04-21 (repository only)
  413. - Bug fix for wiidisc aligned reading (since v0.42b).
  414. wwt v0.43a r957 - 2010-04-30
  415. - wwt+wit FILETYPE will detect 'boot.bin', 'fst.bin' and DOL files too.
  416. - wit DUMP prints internal info of 'boot.bin', 'fst.bin' and DOL files too.
  417. - "wit COPY source_dir output_file" is able to compose a fake signed ISO
  418. image from a file system.
  419. wwt v0.44a r973 - 2010-05-02
  420. - wit bug fix: Option --enc was not accepted.
  421. - ISO composing supports now UPDATE, DATA and CHANNEL (new!) partitions.
  422. - wit DIFF: If option --files= (-F) is set then the ISO images (real or
  423. virtual FST) will be compared on file level. The option --files= declares
  424. a file filter.
  425. - Progress counter for "wit EXTRACT" enabled.
  426. - Option --files= (-F): The macros are redifined as positive list.
  427. Now we have the following macros:
  428. =base =nobase =disc =nodisc =sys =nosys =files =nofiles =wit =wwt =sneek
  429. - wit COPY can decrypt or encrypt ISO images on the fly when copying in
  430. scrubbed mode. This does not change the signature.
  431. - Fix some troubles with new cyygwin release 1.7.5-1. The main problem
  432. was file path creation with absolute path names.
  433. wwt v0.45a r1012 - 2010-05-05
  434. - To avoid troubles with platform dependent openssl support I have integrated
  435. the SHA1 sources from openssl into WWT.
  436. - The new command "wit VERIFY" checks the hash signatures of all needed
  437. sectors (keyword "scrubbed"). All five hash levels (H0..H4) are verified.
  438. This means 64 AES decryptions and 1029 SHA1 calculations for each MiB.
  439. wit v0.46a r1043 - 2010-05-13
  440. - The main name have changed from "Wiimms WBFS Tool" to "Wiimms ISO Tools".
  441. The following things are changed too:
  442. - '/usr/local/share/wwt/' moved to '/usr/local/share/wit/'
  443. - Environment variable WWT_LANG moved to WIT_LANG.
  444. - wwt INIT --recover: recover also previous deleted files. Discs with
  445. collisions (use blocks that other discs also use) are never recovered.
  446. - New command: wwt RECOVER: Works like "wwt INIT --recover", but only with
  447. already WBFS formatted files => not formatting, only recovering.
  448. "wwt RECOVER" can be used with the option --test to see what happen.
  449. - wit VERIFY: Output messages redesigned. Verbosity can be controlled in
  450. five levels from -qq up to -vv.
  451. - The new option --limit sets a limit for VERIFY error messages.
  452. - New command: wwt VERIFY: works like "wit VERIFY" but with wwt interface.
  453. It also supports options --remove and --no-free for removing or dropping
  454. invalid discs.
  455. - Docu of wit+wwt VERIFY and "wwt RECOVER" added.
  456. - Minor bug fix for wwt CHECK: It have shown 'free blocks' errors for some
  457. removed discs if this the discs removed with a non wwt tool.
  458. - CGYWIN release: The new batch file 'run-cmd-as-admin.bat' starts a cmd
  459. window in administrator mode. This should simplify the work with wwt.
  460. wit v0.47a r1106 - 2010-05-22
  461. - ID checking redesigned, underscore is now an allowed character.
  462. - Command line parsing rewritten: Commands and command specific options are
  463. defined in a special tool (C file 'gen-ui.c'). If running this tool it
  464. generates C source for all tools to analyse commands and options and to
  465. print help messages.
  466. - Included help was improved: wit and wwt supports now 'HELP command'.
  467. The output is now aligned to the current terminal width.
  468. - The documentation of all new options is now complete.
  469. - Bug fix: wit has shown wrong file size for splitted ISO images.
  470. wit v0.48a r1145 - 2010-05-29
  471. - wit SCRUB: Option --enc= available to encrypt and decrypt disc images.
  472. - Bug fix for wit COPY: Creating a WBFS file with FST as source failed.
  473. - Bug fix: If reading from a CISO a minimal file size is now set.
  474. - Composing bug fix: Forgotten to set offset 0x4fffc to value 0xc3f81a8e.
  475. - New option --id=id: Modify ID in disc header, boot.bin, ticket.bin
  476. and tmd.bin when composing a Wii ISO image.
  477. - New option --name=name: Modify dics title in disc header and boot.bin
  478. when composing a Wii ISO image.
  479. - New option --modify=NONE,DISC,BOOT,TICKET,TMD,ALL,AUTO: decides which
  480. of disc header, boot.bin, ticket.bin and/or tmd.bin is modified when
  481. using the options --id=id or --name=name.
  482. - New option --region=JAPAN,USA,EUROPE,KOREA,FILE,AUTO: Set region when
  483. composing a Wii ISO image. Unsigned numbers are also allowed.
  484. - New option --ios=number or --ios=high-low: Define system version (IOS)
  485. within TMD when composing a Wii ISO image.
  486. - TMD and TICKET (=new) will be fake signed if composing a disc.
  487. - All UTF-8 characters with code >= 0x80 are allowed in filenames.
  488. wit v0.48b r1164 - 2010-06-01 (repository only)
  489. - Bug fix: If reading a very small WBFS file the old and buggy calculation
  490. in libwbfs for the free tables size results in zero. Accessing the non
  491. existent table forces a segmentation fault. For compatibility reasons
  492. the calculation can't be changed.
  493. - Bug fix: wit DUMP had always reported encrypted partitions.
  494. - Composing bug fix: Copy only really needed data from boot.bin if file
  495. header.bin is missed.
  496. wit v0.49a r1177 - 2010-06-06
  497. - Built in help improved.
  498. *******************************************************************************
  499. ******* END *******
  500. *******************************************************************************