diff --git a/CHANGELOG b/CHANGELOG index 6699299..683d795 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +0.79.3 21-11-2010 + - Switched Linux SCSI driver default to SG_IO ioctl(). + - Michael Klein provided Altivec optimization for + the RS03 encoder and valuable hints for general + RS03 encoding speedup + - included Debian patches 04-manpage.patch, + 06-remove-encoding-from-desktop-file.patch, + 07-fix-spelling-errors-in-binaries.patch + - fixed and documented -n command line options for RS02. + Thanks to Jack Giles for noting this. + - reworked configure for current NetBSD release + - removed inofficial Solaris support + 0.79.2 28-02-2010 Semantic Changes The new missing sector marking method is now the default. @@ -49,6 +62,16 @@ - removed ASPI driver and ASPI/SPTI splitting logic - removed 2GB file splitting +0.72 (pl-2) 31-10-2010 + - changed sources for clean compile on gcc 4.4.3 + - Using the CDROM_SEND_PACKET ioctl() will hang parallel + SCSI adapters. Added tests to determine the SCSI bus type, + and switch to the SG_IO ioctl() when in doubt. + Thanks to S. Seidl and R. Manfredi for the respective bug reports. + - fixed recognition of dvdisaster 0.79 RS03-augmented image + - minor cosmetic changes for regression test compatibility + with 0.79 + 0.72 (pl-1) 08-08-2009 - Pablo Almeida provided a Portuguese translation for the screen text. diff --git a/GNUmakefile.template b/GNUmakefile.template index 9df0ff8..09cea1b 100644 --- a/GNUmakefile.template +++ b/GNUmakefile.template @@ -48,6 +48,7 @@ WITH_OPTIONS = $(CFG_WITH_OPTIONS) OTHER_OPTIONS = $(CFG_OTHER_OPTIONS) -DVERSION=\"$(VERSION)\" EXE_SUFFIX = $(CFG_EXE_SUFFIX) SSE2_OPTIONS = $(CFG_SSE2_OPTIONS) +ALTIVEC_OPTIONS = $(CFG_ALTIVEC_OPTIONS) LOCATIONS = -DSRCDIR=\"$(SRCDIR)\" -DBINDIR=\"$(BINDIR)\" -DDOCDIR=\"$(DOCSUBDIR)\" -DLOCALEDIR=\"$(LOCALEDIR)\" COPTS = $(CFLAGS) $(LOCATIONS) $(SYS_OPTIONS) $(HAVE_OPTIONS) $(WITH_OPTIONS) $(OTHER_OPTIONS) $(INTL_INCL) $(CAM_INCL) $(GTK_CFLAGS) @@ -125,6 +126,10 @@ rs-encoder-sse2.o: rs-encoder-sse2.c @echo "Compiling:" $*.c @$(CC) $(SSE2_OPTIONS) $(COPTS) -c $*.c +rs-encoder-altivec.o: rs-encoder-altivec.c + @echo "Compiling:" $*.c + @$(CC) $(ALTIVEC_OPTIONS) $(COPTS) -c $*.c + locale: @$(MAKE) --no-print-directory -C locale @@ -302,6 +307,7 @@ show: @echo "WITH_OPTIONS = " $(WITH_OPTIONS) @echo "OTHER_OPTIONS= " $(OTHER_OPTIONS) @echo "SSE2_OPTIONS = " $(SSE2_OPTIONS) + @echo "ALTIVEC_OPTIONS= " $(ALTIVEC_OPTIONS) @echo @echo "CFLAGS = " $(CFLAGS) @echo "COPTS = " $(COPTS) @@ -428,6 +434,9 @@ clean: @if test -e $(SRCDIR)/papers; then \ $(MAKE) --no-print-directory -C papers clean; \ fi + @if test -e $(SRCDIR)/regtest; then \ + $(MAKE) --no-print-directory -C regtest clean; \ + fi BUILD=`grep BUILD $(SRCDIR)/build.h | cut -d ' ' -f 3` arch: archclean time-stamp diff --git a/INSTALL b/INSTALL index 1ae682c..2d08bc6 100644 --- a/INSTALL +++ b/INSTALL @@ -148,11 +148,11 @@ Please change into a directory which is writeable for you and unpack the source code archive: user@host> cd /var/tmp -user@host> tar xjf dvdisaster-0.72.rc1.tar.bz2 +user@host> tar xjf dvdisaster-0.79.3.tar.bz2 Then change into the newly created directory: -user@host> cd /var/tmp/dvdisaster-0.72.rc1 +user@host> cd /var/tmp/dvdisaster-0.79.3 3.2. Configuring the package ---------------------------- @@ -231,7 +231,7 @@ please remove the directory you have created as described in section 3.1: user@host> cd /var/tmp -user@host> rm -rf dvdisaster-0.72.rc1 +user@host> rm -rf dvdisaster-0.79.3 5. Program documentation diff --git a/build.h b/build.h index cdb34f0..794a5b7 100644 --- a/build.h +++ b/build.h @@ -1,2 +1,2 @@ -#define BUILD 130 -#define BDATE "27.02.10 (Samstag, 19:41)" +#define BUILD 24 +#define BDATE "20.11.10 (Samstag, 21:11)" diff --git a/closure.c b/closure.c index fd9a868..5b10c63 100644 --- a/closure.c +++ b/closure.c @@ -197,7 +197,7 @@ static void get_base_dirs() but tricky when app bundles are used. In that case we use GTK_PATH to find out our location. */ -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_NETBSD) || defined(SYS_UNKNOWN) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_NETBSD) || defined(SYS_UNKNOWN) if(DirStat(BINDIR)) Closure->binDir = g_strdup(BINDIR); @@ -714,6 +714,7 @@ void InitClosure() Closure->spinupDelay = 5; Closure->fillUnreadable = -1; Closure->welcomeMessage = 1; + Closure->useSCSIDriver = DRIVER_SG; Closure->dsmVersion = 1; /* default sizes for typical CD and DVD media */ diff --git a/configure b/configure index 36e5010..62e3503 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ fi PACKAGE dvdisaster 0.79 -REL_MICRO=2 +REL_MICRO=3 #REL_STATUS=patch REL_STATUS=devel #REL_STATUS=rc @@ -41,7 +41,7 @@ esac # Last stable version (used only in WWW pages) DEFINE_VAR HAVE_EXPERIMENTAL "yes" -DEFINE_VAR STABLE_VERSION "0.72.1" +DEFINE_VAR STABLE_VERSION "0.72.2" # Check for some essential tools. @@ -114,6 +114,7 @@ echo CHECK_ENDIAN CHECK_BITNESS CHECK_SSE2 +CHECK_ALTIVEC # Look for required tools @@ -263,12 +264,7 @@ if test -n "$BUILDROOT"; then echo fi -if test $cfg_system == "solaris"; then - id_binary="/usr/xpg4/bin/id" -else - id_binary="id" -fi - +id_binary="id" if test `$id_binary -u` -eq 0; then echo "* WARNING: Compiling the project as ROOT USER is not recommended" echo "* and may cause unexpected problems. If compilation fails" diff --git a/contrib/dvdisaster.desktop b/contrib/dvdisaster.desktop index 63f2e4f..c7661ec 100644 --- a/contrib/dvdisaster.desktop +++ b/contrib/dvdisaster.desktop @@ -10,4 +10,3 @@ Icon=dvdisaster48.png Terminal=false Type=Application Categories=Application;System; -Encoding=UTF-8 diff --git a/documentation/de/download.html b/documentation/de/download.html index 006aacb..08a29d1 100644 --- a/documentation/de/download.html +++ b/documentation/de/download.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@ Herunterladen ·Systemvoraussetzungen + ·(Keine) Bedingungen zum Herunterladen ·Digitale Unterschrift ·Installation ·Alpha-/Entwicklerversionen @@ -104,30 +105,37 @@ rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog. Sie sind eingeladen, die nächste dvdisaster-Version auszuprobieren, aber beachten Sie bitte, daß diese Version noch Fehler und Kompatibilitätsprobleme enthalten kann. Die neueste experimentelle Version -ist 0.79 (devel-2). +ist 0.79 (devel-3).

Stabile Version - zum Einstieg empfohlen

- + @@ -150,6 +158,21 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl2 +Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. +Die Aufwärtskompatibilität mit Version 0.79.x wurde verbessert.
+Die Windows- und Mac OS X-Versionen werden nun mit der aktuellen +Entwicklungsumgebung von dvdisaster 0.79.x erzeugt und mit neueren +Versionen der GTK+-Benutzeroberflächenbibliothek ausgeliefert. +Für diesen Update wurden noch kleinere Änderungen an einigen Skripten + erforderlich so daß sich die Prüfsumme des Quellkode-Pakets geändert hat +(das Paket vom 31.10. hatte die md5-Prüfsumme +86110e212aa1bf336a52ba89d3daa93d und kann selbstverständlich für +Linux, FreeBSD und NetBSD weiter verwendet +werden). (07-11-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde eine Umgehungslösung eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)
@@ -185,10 +208,16 @@ zu bekommen.

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7207-Nov-2010
- + - + + + + - + - + + + + - + - - + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5-Prüfsumme: 312bceef3bf9c0754cf633ed3b12eb71
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5-Prüfsumme: 52243c1fafb9d2e496b6eb318c3e534f
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5-Prüfsumme: f80258d27354061fd9e28850ec4701a6
Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
dvdisaster-0.70.6.tar.bz2
Digitale Unterschrift:  dvdisaster-0.70.6.tar.bz2.gpg
MD5-Prüfsumme: c6d2215d7dd582475b19593dfa4fbdc2
Binärversion für Windows:  dvdisaster-0.70.6-setup.exe
Digitale Unterschrift:  dvdisaster-0.70.6-setup.exe.gpg
MD5-Prüfsumme: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/de/download.php b/documentation/de/download.php index c1f72a7..54b734e 100644 --- a/documentation/de/download.php +++ b/documentation/de/download.php @@ -57,23 +57,42 @@ ist . - + diff --git a/documentation/de/download10.html b/documentation/de/download10.html index 9e6ab2a..de7423a 100644 --- a/documentation/de/download10.html +++ b/documentation/de/download10.html @@ -11,7 +11,7 @@ + @@ -79,29 +80,68 @@

Systemanforderungen

-

Betriebssysteme

+

Unterstützte Betriebssysteme

-Das dvdisaster-Projekt empfiehlt GNU/Linux. +Die folgende Tabelle enthält Informationen zu den unterstützten +Betriebssystemen. Die angegebenen Versionen wurde zum Entwickeln +und Testen der momentanen dvdisaster-Version verwendet. +Es ist wahrscheinlich, daß etwas ältere oder neuere Betriebssystem-Versionen +ebenfalls verwendet werden können.

-

+Das dvdisaster-Projekt empfiehlt GNU/Linux.

+ +

dvdisaster-0.7208-Aug-2009
dvdisaster-0.7207-Nov-2010
- + - + + +"; +?> + + - + - + + +"; +?> + + - + - + +"; +?> + @@ -83,19 +102,56 @@ ist . else { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -120,6 +176,21 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl2 +Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. +Die Aufwärtskompatibilität mit Version 0.79.x wurde verbessert.
+Die Windows- und Mac OS X-Versionen werden nun mit der aktuellen +Entwicklungsumgebung von dvdisaster 0.79.x erzeugt und mit neueren +Versionen der GTK+-Benutzeroberflächenbibliothek ausgeliefert. +Für diesen Update wurden noch kleinere Änderungen an einigen Skripten + erforderlich so daß sich die Prüfsumme des Quellkode-Pakets geändert hat +(das Paket vom 31.10. hatte die md5-Prüfsumme +86110e212aa1bf336a52ba89d3daa93d und kann selbstverständlich für +Linux, FreeBSD und NetBSD weiter verwendet +werden). (07-11-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde eine Umgehungslösung eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)
@@ -155,10 +226,16 @@ zu bekommen.

+ + + + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5-Prüfsumme: 312bceef3bf9c0754cf633ed3b12eb71
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5-Prüfsumme: 52243c1fafb9d2e496b6eb318c3e534f
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5-Prüfsumme: f80258d27354061fd9e28850ec4701a6
Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
Version 0.72.1
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
MD5-Prüfsumme: 4da96566bc003be93d9dfb0109b4aa1d
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
MD5-Prüfsumme: 924b5677f69473b6b87991e01779a541
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
MD5-Prüfsumme: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Quellkode für alle Betriebssysteme:  dvdisaster-0.72.tar.bz2
Digitale Unterschrift:  dvdisaster-0.72.tar.bz2.gpg
MD5-Prüfsumme: efa35607d91412a7ff185722f270fb8a
Binärversion für Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift:  dvdisaster-0.72.app.zip.gpg
MD5-Prüfsumme: 1f28385b2b6d64b664fd416eb4c85e80
Binärversion für Windows:  dvdisaster-0.72-setup.exe
Digitale Unterschrift:  dvdisaster-0.72-setup.exe.gpg
MD5-Prüfsumme: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Digitale Unterschrift:  dvdisaster-0.70.6.tar.bz2.gpg
MD5-Prüfsumme: c6d2215d7dd582475b19593dfa4fbdc2
Binärversion für Windows:  dvdisaster-0.70.6-setup.exe
Digitale Unterschrift:  dvdisaster-0.70.6-setup.exe.gpg
MD5-Prüfsumme: 82f74bebd08ab7ae783ddc5dd0bba731
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@
Herunterladen
·Systemvoraussetzungen
·(Keine) Bedingungen zum Herunterladen
·Digitale Unterschrift
·Installation
·Alpha-/Entwicklerversionen
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BetriebssystemVersion32bit-Version64bit-Version
GNU/LinuxDebian Lenny (5.0.3)
Kernel 2.6.26
jaja
FreeBSD1)8.0jaja
NetBSD5.02jaja
Mac OS X10.5 (Leopard)janein2)
Windows4)Windows 2000 SP43)janein2)

+ +1)FreeBSD: für ATAPI-Laufwerke muß das Kernelmodul atapicam geladen sein -- siehe das INSTALL-Dokument
+2)Aufgrund von Problemen mit der Entwicklungsumgebung. Allerdings bietet +die 64bit-Unterstützung momentan auch keine großen Vorteile gegenüber der 32bit-Version.
+3)Nutzer haben positive Rückmeldungen über den Einsatz mit +späteren Versionen bis einschließlich Windows 7 gegeben.
+4)Die Unterstützung von Mehrkernprozessoren hängt von der jeweiligen +Windows-"Edition" ab. Bei einigen ergeben zusätzliche Prozessorkerne mit +dvdisaster keine Verbesserung der Gechwindigkeit. diff --git a/documentation/de/download10.php b/documentation/de/download10.php index b09af8b..94910b3 100644 --- a/documentation/de/download10.php +++ b/documentation/de/download10.php @@ -17,29 +17,68 @@ begin_page();

Systemanforderungen

-

Betriebssysteme

+

Unterstützte Betriebssysteme

-Das dvdisaster-Projekt empfiehlt GNU/Linux. +Die folgende Tabelle enthält Informationen zu den unterstützten +Betriebssystemen. Die angegebenen Versionen wurde zum Entwickeln +und Testen der momentanen dvdisaster-Version verwendet. +Es ist wahrscheinlich, daß etwas ältere oder neuere Betriebssystem-Versionen +ebenfalls verwendet werden können.

-

+Das dvdisaster-Projekt empfiehlt GNU/Linux.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
BetriebssystemVersion32bit-Version64bit-Version
GNU/LinuxDebian Lenny (5.0.3)
Kernel 2.6.26
jaja
FreeBSD1)8.0jaja
NetBSD5.02jaja
Mac OS X10.5 (Leopard)janein2)
Windows4)Windows 2000 SP43)janein2)

+ +1)FreeBSD: für ATAPI-Laufwerke muß das Kernelmodul atapicam geladen sein -- siehe das INSTALL-Dokument
+2)Aufgrund von Problemen mit der Entwicklungsumgebung. Allerdings bietet +die 64bit-Unterstützung momentan auch keine großen Vorteile gegenüber der 32bit-Version.
+3)Nutzer haben positive Rückmeldungen über den Einsatz mit +späteren Versionen bis einschließlich Windows 7 gegeben.
+4)Die Unterstützung von Mehrkernprozessoren hängt von der jeweiligen +Windows-"Edition" ab. Bei einigen ergeben zusätzliche Prozessorkerne mit +dvdisaster keine Verbesserung der Gechwindigkeit. diff --git a/documentation/de/download20.html b/documentation/de/download20.html index d6ed843..cc4dd2c 100644 --- a/documentation/de/download20.html +++ b/documentation/de/download20.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@ Herunterladen ·Systemvoraussetzungen + ·(Keine) Bedingungen zum Herunterladen ·Digitale Unterschrift ·Installation ·Alpha-/Entwicklerversionen @@ -99,6 +100,15 @@ den Entwicklern erhalten, indem Sie eine E-Mail an schreiben. Bitte verwenden Sie den Betreff "GPG finger print". +

MD5-Prüfsummen

+ +MD5-Prüfsummen sind im Gegensatz zu der digitalen Unterschrift +kryptographisch schwach: Es ist möglich, ein +manipuliertes Softwarepaket zu erzeugen, das die gleiche Prüfsumme +wie das Original hat. Die Prüfsummen reichen jedoch aus, um schnell +zu testen ob das Softwarepaket vollständig und korrekt heruntergeladen +worden ist. + diff --git a/documentation/de/download20.php b/documentation/de/download20.php index 34ac93b..51e04ec 100644 --- a/documentation/de/download20.php +++ b/documentation/de/download20.php @@ -37,6 +37,15 @@ den Entwicklern erhalten, indem Sie eine E-Mail an schreiben. Bitte verwenden Sie den Betreff "GPG finger print". +

MD5-Prüfsummen

+ +MD5-Prüfsummen sind im Gegensatz zu der digitalen Unterschrift +kryptographisch schwach: Es ist möglich, ein +manipuliertes Softwarepaket zu erzeugen, das die gleiche Prüfsumme +wie das Original hat. Die Prüfsummen reichen jedoch aus, um schnell +zu testen ob das Softwarepaket vollständig und korrekt heruntergeladen +worden ist. + dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@ Herunterladen ·Systemvoraussetzungen + ·(Keine) Bedingungen zum Herunterladen ·Digitale Unterschrift ·Installation ·Alpha-/Entwicklerversionen @@ -118,7 +119,7 @@ Für die Windows-Version gilt übrigens sinngemäß das Gleiche ;-)

Installieren der Binärversion für Windows

Zum Installieren der Windows-Version führen Sie bitte das -Installations-Programm (z.B. dvdisaster-0.79.2-setup.exe) +Installations-Programm (z.B. dvdisaster-0.79.3-setup.exe) aus. Es enthält einen Dialog zum Einrichten von dvdisaster.

Warnung: Sie können dvdisaster nicht installieren, indem Sie diff --git a/documentation/de/download40.html b/documentation/de/download40.html index 6ccba13..0396be8 100644 --- a/documentation/de/download40.html +++ b/documentation/de/download40.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@ Herunterladen ·Systemvoraussetzungen + ·(Keine) Bedingungen zum Herunterladen ·Digitale Unterschrift ·Installation ·Alpha-/Entwicklerversionen @@ -133,22 +134,24 @@ Die Alpha-Versionen verwenden das gleiche Paketformat wie die normalen Versionen.

- + + @@ -104,30 +105,37 @@ rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog. Sie sind eingeladen, die nächste dvdisaster-Version auszuprobieren, aber beachten Sie bitte, daß diese Version noch Fehler und Kompatibilitätsprobleme enthalten kann. Die neueste experimentelle Version -ist 0.79 (devel-2). +ist 0.79 (devel-3).

Stabile Version - zum Einstieg empfohlen

dvdisaster-0.7928-Feb-2010
dvdisaster-0.7921-Nov-2010
- + - + + - + - + + - + - +
  Quellkode für alle Betriebssysteme: dvdisaster-0.79.2.tar.bz2
dvdisaster-0.79.3.tar.bz2
Digitale Unterschrift: dvdisaster-0.79.2.tar.bz2.gpg
dvdisaster-0.79.3.tar.bz2.gpg
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.79.3.app.zip
Digitale Unterschrift: dvdisaster-0.79.2.app.zip.gpg
dvdisaster-0.79.3.app.zip.gpg
Binärversion für Windows: dvdisaster-0.79.2-setup.exe
dvdisaster-0.79.3-setup.exe
Digitale Unterschrift: dvdisaster-0.79.2-setup.exe.gpg
dvdisaster-0.79.3-setup.exe.gpg
Ältere Veröffentlichungen des 0.79er-Versionszweiges anzeigen
@@ -160,6 +163,18 @@ Versionen.

den inneren Strukturen im Vergleich zu Version 0.72.x. Bitte verwenden Sie sie mit Vorsicht.

+0.79.3 (21-Nov-2010)
+

    +
  • Unter Linux wird ab dieser Version als Voreinstellung +der SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet; der +bisher benutzte CDROM_SEND_PACKET-Treiber kann optional ausgewählt werden. +In den vorherigen dvdisaster-Versionen war es genau anders herum; in +den gegenwärtigen Linux-Kerneln hat der SG_IO-Treiber aber die +bessere Kompatibilität.
  • +
  • Michael Klein hat eine Altivec-Optimierung für den RS03-Kodierer +beigesteuert.
  • +
+ 0.79.2 (28-Feb-2010)
  • Für Mac OS X ist wieder ein Binärpaket verfügbar. Die Entwicklungsumgebung diff --git a/documentation/de/download40.php b/documentation/de/download40.php index ffb3c20..a165048 100644 --- a/documentation/de/download40.php +++ b/documentation/de/download40.php @@ -9,6 +9,7 @@ # navigation and news if appropriate. require("../include/dvdisaster.php"); +require("../include/download.php"); begin_page(); $show_all=$_GET["showall"]; ?> @@ -72,49 +73,24 @@ Die Alpha-Versionen verwenden das gleiche Paketformat wie die normalen Versionen.

    - + @@ -125,6 +101,18 @@ Versionen.

    den inneren Strukturen im Vergleich zu Version 0.72.x. Bitte verwenden Sie sie mit Vorsicht.

    +0.79.3 (21-Nov-2010)
    +

      +
    • Unter Linux wird ab dieser Version als Voreinstellung +der SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet; der +bisher benutzte CDROM_SEND_PACKET-Treiber kann optional ausgewählt werden. +In den vorherigen dvdisaster-Versionen war es genau anders herum; in +den gegenwärtigen Linux-Kerneln hat der SG_IO-Treiber aber die +bessere Kompatibilität.
    • +
    • Michael Klein hat eine Altivec-Optimierung für den RS03-Kodierer +beigesteuert.
    • +
    + 0.79.2 (28-Feb-2010)
    • Für Mac OS X ist wieder ein Binärpaket verfügbar. Die Entwicklungsumgebung diff --git a/documentation/de/download40_showall=0.html b/documentation/de/download40_showall=0.html index 6ccba13..0396be8 100644 --- a/documentation/de/download40_showall=0.html +++ b/documentation/de/download40_showall=0.html @@ -11,7 +11,7 @@
    + @@ -133,22 +134,24 @@ Die Alpha-Versionen verwenden das gleiche Paketformat wie die normalen Versionen.

    dvdisaster-0.7928-Feb-2010
    dvdisaster-0.7921-Nov-2010
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n"; + } + else + { echo " \n"; + echo " \n"; + + download_version("0.79.2", 1, "378ed135c2faf0eaf643125d1f7726c6", "f673e41b5ddc31a6ecb48a5f053de885", "0b4c0b46e827c7f796416473511ab036"); + + download_version("0.79.1", 1, "ba6d0178dc03119080e07ef0a2967c38", "none", "b4c62833a2447097950b563e4a7b2065"); + } ?>
      Quellkode für alle Betriebssysteme: dvdisaster-0.79.2.tar.bz2
    Digitale Unterschrift: dvdisaster-0.79.2.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- bitte erst den Hinweis lesen
    Digitale Unterschrift: dvdisaster-0.79.2.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.79.2-setup.exe
    Digitale Unterschrift: dvdisaster-0.79.2-setup.exe.gpg
    Ältere Veröffentlichungen des 0.79er-Versionszweiges anzeigen
    Ältere Veröffentlichungen des 0.79er-Versionszweiges verbergen
      Quellkode für alle Betriebssysteme: dvdisaster-0.79.1.tar.bz2
    Digitale Unterschrift: dvdisaster-0.79.1.tar.bz2.gpg
    Binärversion für Windows: dvdisaster-0.79.1-setup.exe
    Digitale Unterschrift: dvdisaster-0.79.1-setup.exe.gpg
    Ältere Veröffentlichungen des 0.79er-Versionszweiges anzeigen
    Ältere Veröffentlichungen des 0.79er-Versionszweiges verbergen
    dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@
    Herunterladen
    ·Systemvoraussetzungen
    ·(Keine) Bedingungen zum Herunterladen
    ·Digitale Unterschrift
    ·Installation
    ·Alpha-/Entwicklerversionen
    - + + @@ -133,40 +134,59 @@ Die Alpha-Versionen verwenden das gleiche Paketformat wie die normalen Versionen.

    dvdisaster-0.7928-Feb-2010
    dvdisaster-0.7921-Nov-2010
    - + - + + - + - + + - + - +
      Quellkode für alle Betriebssysteme: dvdisaster-0.79.2.tar.bz2
    dvdisaster-0.79.3.tar.bz2
    Digitale Unterschrift: dvdisaster-0.79.2.tar.bz2.gpg
    dvdisaster-0.79.3.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- bitte erst den Hinweis lesen
    dvdisaster-0.79.3.app.zip
    Digitale Unterschrift: dvdisaster-0.79.2.app.zip.gpg
    dvdisaster-0.79.3.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.79.2-setup.exe
    dvdisaster-0.79.3-setup.exe
    Digitale Unterschrift: dvdisaster-0.79.2-setup.exe.gpg
    dvdisaster-0.79.3-setup.exe.gpg
    Ältere Veröffentlichungen des 0.79er-Versionszweiges anzeigen
    @@ -160,6 +163,18 @@ Versionen.

    den inneren Strukturen im Vergleich zu Version 0.72.x. Bitte verwenden Sie sie mit Vorsicht.

    +0.79.3 (21-Nov-2010)
    +

      +
    • Unter Linux wird ab dieser Version als Voreinstellung +der SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet; der +bisher benutzte CDROM_SEND_PACKET-Treiber kann optional ausgewählt werden. +In den vorherigen dvdisaster-Versionen war es genau anders herum; in +den gegenwärtigen Linux-Kerneln hat der SG_IO-Treiber aber die +bessere Kompatibilität.
    • +
    • Michael Klein hat eine Altivec-Optimierung für den RS03-Kodierer +beigesteuert.
    • +
    + 0.79.2 (28-Feb-2010)
    • Für Mac OS X ist wieder ein Binärpaket verfügbar. Die Entwicklungsumgebung diff --git a/documentation/de/download40_showall=1.html b/documentation/de/download40_showall=1.html index 850c075..d50af3f 100644 --- a/documentation/de/download40_showall=1.html +++ b/documentation/de/download40_showall=1.html @@ -11,7 +11,7 @@
    dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@
    Herunterladen
    ·Systemvoraussetzungen
    ·(Keine) Bedingungen zum Herunterladen
    ·Digitale Unterschrift
    ·Installation
    ·Alpha-/Entwicklerversionen
    - + @@ -176,6 +196,18 @@ Versionen.

    den inneren Strukturen im Vergleich zu Version 0.72.x. Bitte verwenden Sie sie mit Vorsicht.

    +0.79.3 (21-Nov-2010)
    +

      +
    • Unter Linux wird ab dieser Version als Voreinstellung +der SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet; der +bisher benutzte CDROM_SEND_PACKET-Treiber kann optional ausgewählt werden. +In den vorherigen dvdisaster-Versionen war es genau anders herum; in +den gegenwärtigen Linux-Kerneln hat der SG_IO-Treiber aber die +bessere Kompatibilität.
    • +
    • Michael Klein hat eine Altivec-Optimierung für den RS03-Kodierer +beigesteuert.
    • +
    + 0.79.2 (28-Feb-2010)
    • Für Mac OS X ist wieder ein Binärpaket verfügbar. Die Entwicklungsumgebung diff --git a/documentation/de/download50.html b/documentation/de/download50.html index 65fdcb7..6c6bf57 100644 --- a/documentation/de/download50.html +++ b/documentation/de/download50.html @@ -11,7 +11,7 @@
    + diff --git a/documentation/de/download60.html b/documentation/de/download60.html new file mode 100644 index 0000000..c70ceb8 --- /dev/null +++ b/documentation/de/download60.html @@ -0,0 +1,173 @@ + + + + (Keine) Bedingungen zum Herunterladen + + + + + +
    dvdisaster-0.7928-Feb-2010
    dvdisaster-0.7921-Nov-2010
    + + + + + + + + + + + + + + + + + + + + - + + + + - - - + - + + + +
      Quellkode für alle Betriebssysteme: dvdisaster-0.79.3.tar.bz2
    Digitale Unterschrift: dvdisaster-0.79.3.tar.bz2.gpg
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.79.3.app.zip
    Digitale Unterschrift: dvdisaster-0.79.3.app.zip.gpg
    Binärversion für Windows: dvdisaster-0.79.3-setup.exe
    Digitale Unterschrift: dvdisaster-0.79.3-setup.exe.gpg
    Ältere Veröffentlichungen des 0.79er-Versionszweiges verbergen
    Version 0.79.2
      Quellkode für alle Betriebssysteme:  dvdisaster-0.79.2.tar.bz2
    Digitale Unterschrift:  dvdisaster-0.79.2.tar.bz2.gpg
    MD5-Prüfsumme: 378ed135c2faf0eaf643125d1f7726c6
    Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- bitte erst den Hinweis lesen
    dvdisaster-0.79.2.app.zip
    Digitale Unterschrift:  dvdisaster-0.79.2.app.zip.gpg
    MD5-Prüfsumme: f673e41b5ddc31a6ecb48a5f053de885
    Binärversion für Windows:  dvdisaster-0.79.2-setup.exe
    Digitale Unterschrift:  dvdisaster-0.79.2-setup.exe.gpg
    MD5-Prüfsumme: 0b4c0b46e827c7f796416473511ab036
    Ältere Veröffentlichungen des 0.79er-Versionszweiges verbergen
    Version 0.79.1
      Quellkode für alle Betriebssysteme:  dvdisaster-0.79.1.tar.bz2
    Digitale Unterschrift:  dvdisaster-0.79.1.tar.bz2.gpg
    MD5-Prüfsumme: ba6d0178dc03119080e07ef0a2967c38
    Binärversion für Windows:  dvdisaster-0.79.1-setup.exe
    Digitale Unterschrift:  dvdisaster-0.79.1-setup.exe.gpg
    MD5-Prüfsumme: b4c62833a2447097950b563e4a7b2065
    dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@
    Herunterladen
    ·Systemvoraussetzungen
    ·(Keine) Bedingungen zum Herunterladen
    ·Digitale Unterschrift
    ·Installation
    ·Alpha-/Entwicklerversionen
    + + + + +
    + dvdisaster + Version 0.72.2 / 0.79 (devel-3) + +  Zur Internet-Version + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + +
    + + + + +
    + Inhalt + + + + +

    + + + + + + + + + + + + + + + + + + + +
    Neuigkeiten
    Überblick
    Typische Anwendungen
    Herunterladen
    ·Systemvoraussetzungen
    ·(Keine) Bedingungen zum Herunterladen
    ·Digitale Unterschrift
    ·Installation
    ·Alpha-/Entwicklerversionen
    ·Zusätzliche Papiere
    Fragen und Antworten
    Fehler berichten
    +

    +
    + + + +

    Lassen Sie sich nicht über den Tisch ziehen: Das Kleingedruckte (und andere Sachen).

    + + Das dvdisaster-Projekt stellt Ihnen diese Software +als freie Software +unter der GNU General Public License v2 +zur Verfügung.

    + +Das dvdisaster-Projekt möchte außerdem sicherstellen, daß Sie folgendes wissen: +Sie können dvdisaster auf diesen Seiten kostenlos und +ohne die Angabe von persönlichen Daten herunterladen.

    + +Damit es völlig klar ist, +wie das dvdisaster-Projekt seine Software verteilt und was es dabei macht +oder auch nicht tun wird, haben wir die wichtigsten +Punkte in der nachfolgenden Liste zusammengefaßt:

    + +Internet-Seiten und Downloads

    + +Das dvdisaster-Projekt verwendet die folgenden Internet-Domänen +für seine Webseiten und zum Anbieten von Software-Downloads:

    + +dvdisaster.com
    +dvdisaster.de
    +dvdisaster.net
    +dvdisaster.org

    + +Alle Domänen werden auf die selben Seiten unter dvdisaster.net weitergeleitet.
    +Außerdem verwendet das dvdisaster-Projekt die Internet-Dienste von +SourceForge.net.

    + +Darüber hinaus betreibt das dvdisaster-Projekt keine weiteren Internetseiten.

    + +Kein Geld oder persönliche Daten erforderlich

    + +Das dvdisaster-Projekt erfordert keinen Registrierungsprozeß +für diese Software.
    +Es fragt Sie niemals nach persönlichen Daten und +verlangt kein Geld oder Spenden um: + +

      +
    • diese Webseiten zu nutzen,
    • +
    • die Software herunterzuladen, und
    • +
    • die Software zu benutzen.
    • +

    + +Kryptographische Unterschriften und Prüfsummen

    + +Das dvdisaster-Projekt bietet für seine Softwarepakete +immer kryptographische Unterschriften und +MD5-Prüfsummen an. Beispiele finden Sie auf der +Seite zum Herunterladen.

    + +Seien Sie mißtrauisch wenn die Unterschriften und Prüfsummen fehlen, +ungültig sind oder nicht mit denen auf den oben genannten Internetseiten +übereinstimmen.

    + + + +

    + + + + + + + + + + + + + +
    + + Copyright 2004-2010 Carsten Gnörlich.
    + Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt. +
    +
    +
    + + diff --git a/documentation/de/download60.php b/documentation/de/download60.php new file mode 100644 index 0000000..08d14d3 --- /dev/null +++ b/documentation/de/download60.php @@ -0,0 +1,79 @@ + + + + +

    Lassen Sie sich nicht über den Tisch ziehen: Das Kleingedruckte (und andere Sachen).

    + + Das dvdisaster-Projekt stellt Ihnen diese Software +als freie Software +unter der GNU General Public License v2 +zur Verfügung.

    + +Das dvdisaster-Projekt möchte außerdem sicherstellen, daß Sie folgendes wissen: +Sie können dvdisaster auf diesen Seiten kostenlos und +ohne die Angabe von persönlichen Daten herunterladen.

    + +Damit es völlig klar ist, +wie das dvdisaster-Projekt seine Software verteilt und was es dabei macht +oder auch nicht tun wird, haben wir die wichtigsten +Punkte in der nachfolgenden Liste zusammengefaßt:

    + +Internet-Seiten und Downloads

    + +Das dvdisaster-Projekt verwendet die folgenden Internet-Domänen +für seine Webseiten und zum Anbieten von Software-Downloads:

    + +dvdisaster.com
    +dvdisaster.de
    +dvdisaster.net
    +dvdisaster.org

    + +Alle Domänen werden auf die selben Seiten unter dvdisaster.net weitergeleitet.
    +Außerdem verwendet das dvdisaster-Projekt die Internet-Dienste von +SourceForge.net.

    + +Darüber hinaus betreibt das dvdisaster-Projekt keine weiteren Internetseiten.

    + +Kein Geld oder persönliche Daten erforderlich

    + +Das dvdisaster-Projekt erfordert keinen Registrierungsprozeß +für diese Software.
    +Es fragt Sie niemals nach persönlichen Daten und +verlangt kein Geld oder Spenden um: + +

      +
    • diese Webseiten zu nutzen,
    • +
    • die Software herunterzuladen, und
    • +
    • die Software zu benutzen.
    • +

    + +Kryptographische Unterschriften und Prüfsummen

    + +Das dvdisaster-Projekt bietet für seine Softwarepakete +immer kryptographische Unterschriften und +MD5-Prüfsummen an. Beispiele finden Sie auf der +Seite zum Herunterladen.

    + +Seien Sie mißtrauisch wenn die Unterschriften und Prüfsummen fehlen, +ungültig sind oder nicht mit denen auf den oben genannten Internetseiten +übereinstimmen.

    + + + + diff --git a/documentation/de/download_showall=0.html b/documentation/de/download_showall=0.html index aa32ac4..0886400 100644 --- a/documentation/de/download_showall=0.html +++ b/documentation/de/download_showall=0.html @@ -11,7 +11,7 @@

dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@
Herunterladen
·Systemvoraussetzungen
·(Keine) Bedingungen zum Herunterladen
·Digitale Unterschrift
·Installation
·Alpha-/Entwicklerversionen
- + @@ -150,6 +158,21 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl2 +Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. +Die Aufwärtskompatibilität mit Version 0.79.x wurde verbessert.
+Die Windows- und Mac OS X-Versionen werden nun mit der aktuellen +Entwicklungsumgebung von dvdisaster 0.79.x erzeugt und mit neueren +Versionen der GTK+-Benutzeroberflächenbibliothek ausgeliefert. +Für diesen Update wurden noch kleinere Änderungen an einigen Skripten + erforderlich so daß sich die Prüfsumme des Quellkode-Pakets geändert hat +(das Paket vom 31.10. hatte die md5-Prüfsumme +86110e212aa1bf336a52ba89d3daa93d und kann selbstverständlich für +Linux, FreeBSD und NetBSD weiter verwendet +werden). (07-11-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde eine Umgehungslösung eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)
@@ -185,10 +208,16 @@ zu bekommen.

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7207-Nov-2010
- + - + + + + - + - + + + + - + - - + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5-Prüfsumme: 312bceef3bf9c0754cf633ed3b12eb71
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5-Prüfsumme: 52243c1fafb9d2e496b6eb318c3e534f
Binärversion für Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5-Prüfsumme: f80258d27354061fd9e28850ec4701a6
Ältere Veröffentlichungen des 0.72er-Versionszweiges anzeigen
dvdisaster-0.70.6.tar.bz2
Digitale Unterschrift:  dvdisaster-0.70.6.tar.bz2.gpg
MD5-Prüfsumme: c6d2215d7dd582475b19593dfa4fbdc2
Binärversion für Windows:  dvdisaster-0.70.6-setup.exe
Digitale Unterschrift:  dvdisaster-0.70.6-setup.exe.gpg
MD5-Prüfsumme: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/de/download_showall=1.html b/documentation/de/download_showall=1.html index 437f7dc..7533aca 100644 --- a/documentation/de/download_showall=1.html +++ b/documentation/de/download_showall=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -56,6 +56,7 @@ Herunterladen ·Systemvoraussetzungen + ·(Keine) Bedingungen zum Herunterladen ·Digitale Unterschrift ·Installation ·Alpha-/Entwicklerversionen @@ -104,45 +105,89 @@ rufen Sie das Programm nach dem Herunterladen auf und folgen dem Dialog. Sie sind eingeladen, die nächste dvdisaster-Version auszuprobieren, aber beachten Sie bitte, daß diese Version noch Fehler und Kompatibilitätsprobleme enthalten kann. Die neueste experimentelle Version -ist 0.79 (devel-2). +ist 0.79 (devel-3).

Stabile Version - zum Einstieg empfohlen

- + @@ -164,6 +209,21 @@ Grundlegende Neuerungen in dieser Version:

Patches (kleine Änderungen nach Version 0.72; die obigen Dateien wurden erneuert):

+0.72 pl2 +Diese Version führt einen Workaround ein +um zu verhindern daß parallele SCSI-Adapter unter Linux +nicht mehr reagieren. +Die Aufwärtskompatibilität mit Version 0.79.x wurde verbessert.
+Die Windows- und Mac OS X-Versionen werden nun mit der aktuellen +Entwicklungsumgebung von dvdisaster 0.79.x erzeugt und mit neueren +Versionen der GTK+-Benutzeroberflächenbibliothek ausgeliefert. +Für diesen Update wurden noch kleinere Änderungen an einigen Skripten + erforderlich so daß sich die Prüfsumme des Quellkode-Pakets geändert hat +(das Paket vom 31.10. hatte die md5-Prüfsumme +86110e212aa1bf336a52ba89d3daa93d und kann selbstverständlich für +Linux, FreeBSD und NetBSD weiter verwendet +werden). (07-11-2010)

+ 0.72 pl1 Pablo Almeida hat die Bildschirmtexte ins Portugiesische übersetzt. Es wurde eine Umgehungslösung eingebaut um das Einfrieren von Windows XP bei bestimmten Kombinationen von CD-RW-Rohlingen und Laufwerken zu verhindern. (08-Aug-2009)
@@ -199,10 +259,16 @@ zu bekommen.

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7207-Nov-2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + +
  Quellkode für alle Betriebssysteme: dvdisaster-0.72.2.tar.bz2
Digitale Unterschrift: dvdisaster-0.72.2.tar.bz2.gpg
MD5-Prüfsumme: 312bceef3bf9c0754cf633ed3b12eb71
Binärversion für Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift: dvdisaster-0.72.2.app.zip.gpg
MD5-Prüfsumme: 52243c1fafb9d2e496b6eb318c3e534f
Binärversion für Windows: dvdisaster-0.72.2-setup.exe
Digitale Unterschrift: dvdisaster-0.72.2-setup.exe.gpg
MD5-Prüfsumme: f80258d27354061fd9e28850ec4701a6
Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
Version 0.72.1
  Quellkode für alle Betriebssysteme:  dvdisaster-0.72.1.tar.bz2
Digitale Unterschrift:  dvdisaster-0.72.1.tar.bz2.gpg
MD5-Prüfsumme: 4da96566bc003be93d9dfb0109b4aa1d
Binärversion für Mac OS X 10.5 / x86:  dvdisaster-0.72.1.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift:  dvdisaster-0.72.1.app.zip.gpg
MD5-Prüfsumme: 924b5677f69473b6b87991e01779a541
Binärversion für Windows:  dvdisaster-0.72.1-setup.exe
Digitale Unterschrift:  dvdisaster-0.72.1-setup.exe.gpg
Ältere Veröffentlichungen des 0.72er-Versionszweiges verbergen
MD5-Prüfsumme: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Quellkode für alle Betriebssysteme:  dvdisaster-0.72.tar.bz2
Digitale Unterschrift:  dvdisaster-0.72.tar.bz2.gpg
MD5-Prüfsumme: efa35607d91412a7ff185722f270fb8a
Binärversion für Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- bitte erst den Hinweis lesen
Digitale Unterschrift:  dvdisaster-0.72.app.zip.gpg
MD5-Prüfsumme: 1f28385b2b6d64b664fd416eb4c85e80
Binärversion für Windows:  dvdisaster-0.72-setup.exe
Digitale Unterschrift:  dvdisaster-0.72-setup.exe.gpg
MD5-Prüfsumme: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Digitale Unterschrift:  dvdisaster-0.70.6.tar.bz2.gpg
MD5-Prüfsumme: c6d2215d7dd582475b19593dfa4fbdc2
Binärversion für Windows:  dvdisaster-0.70.6-setup.exe
Digitale Unterschrift:  dvdisaster-0.70.6-setup.exe.gpg
MD5-Prüfsumme: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/de/feed/atom.xml b/documentation/de/feed/atom.xml index 938e724..ecb6c7a 100755 --- a/documentation/de/feed/atom.xml +++ b/documentation/de/feed/atom.xml @@ -2,13 +2,40 @@ tag:dvdisaster.net,2009-10-02:/de/feeds/atom.xml Neues von dvdisaster -2010-02-28T19:15:30+01:00 +2010-11-20T22:12:52+01:00 Carsten Gnörlich http://www.dvdisaster.org +dvdisaster 0.79.3 veröffentlicht + +tag:dvdisaster.net,2010-11-21:/de/news.html/18 +2010-11-21T00:00:00Z +2010-11-21T00:00:00Z + +

Ab dieser Version wird unter Linux per Voreinstellung der SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet. Damit liegt jetzt auch im Entwicklungszweig eine Lösung für hängende parallele SCSI-Kontroller unter Linux vor, [...] + + +Windows- und Mac OS X-Versionen für 0.72.2 nachgelegt + +tag:dvdisaster.net,2010-11-07:/de/news.html/17 +2010-11-07T00:00:00Z +2010-11-07T00:00:00Z + + Die Windows- und Mac OS X-Versionen von 0.72.2 sind jetzt verfügbar. Sie wurden mit der Entwicklungsumgebung von 0.79.x erzeugt. Daher sind die mitgelieferten Bibliotheken von GTK+ jetzt in neueren Versionen als in 0.72.1 enthalten und [...] + + +dvdisaster 0.72.2 veröffentlicht + +tag:dvdisaster.net,2010-10-31:/de/news.html/16 +2010-10-31T00:00:00Z +2010-10-31T00:00:00Z + + Diese Version führt einen Workaround ein um zu verhindern daß parallele SCSI-Kontroller unter Linux nicht mehr reagieren. Die Aufwärtskompatibilität mit dvdisaster 0.79.x wurde verbessert. [...] + + dvdisaster 0.79.2 veröffentlicht tag:dvdisaster.net,2010-02-28:/de/news.html/15 diff --git a/documentation/de/feedback.html b/documentation/de/feedback.html index cb73118..da87694 100644 --- a/documentation/de/feedback.html +++ b/documentation/de/feedback.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/feedback_expand=1.html b/documentation/de/feedback_expand=1.html index 1c8ce82..e4978ca 100644 --- a/documentation/de/feedback_expand=1.html +++ b/documentation/de/feedback_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos.html b/documentation/de/howtos.html index 82af32a..1798042 100644 --- a/documentation/de/howtos.html +++ b/documentation/de/howtos.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos10.html b/documentation/de/howtos10.html index 8bcb3be..5627cf8 100644 --- a/documentation/de/howtos10.html +++ b/documentation/de/howtos10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11.html b/documentation/de/howtos11.html index e42ac71..263a8e3 100644 --- a/documentation/de/howtos11.html +++ b/documentation/de/howtos11.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=1.html b/documentation/de/howtos11_expand=1.html index 2ec2d1f..2de6d49 100644 --- a/documentation/de/howtos11_expand=1.html +++ b/documentation/de/howtos11_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=2.html b/documentation/de/howtos11_expand=2.html index a291bbd..9bb966b 100644 --- a/documentation/de/howtos11_expand=2.html +++ b/documentation/de/howtos11_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=3.html b/documentation/de/howtos11_expand=3.html index afe725a..9623966 100644 --- a/documentation/de/howtos11_expand=3.html +++ b/documentation/de/howtos11_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=4.html b/documentation/de/howtos11_expand=4.html index 4e09312..19a3601 100644 --- a/documentation/de/howtos11_expand=4.html +++ b/documentation/de/howtos11_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos11_expand=5.html b/documentation/de/howtos11_expand=5.html index 3ed9966..ea05f65 100644 --- a/documentation/de/howtos11_expand=5.html +++ b/documentation/de/howtos11_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos12.html b/documentation/de/howtos12.html index 737dd8d..531c5d3 100644 --- a/documentation/de/howtos12.html +++ b/documentation/de/howtos12.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos12_expand=0.html b/documentation/de/howtos12_expand=0.html index 737dd8d..531c5d3 100644 --- a/documentation/de/howtos12_expand=0.html +++ b/documentation/de/howtos12_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos12_expand=1.html b/documentation/de/howtos12_expand=1.html index 29b73b6..fe4fc06 100644 --- a/documentation/de/howtos12_expand=1.html +++ b/documentation/de/howtos12_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13.html b/documentation/de/howtos13.html index 66b959a..d3ffca7 100644 --- a/documentation/de/howtos13.html +++ b/documentation/de/howtos13.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_crc.html b/documentation/de/howtos13_crc.html index 66b959a..d3ffca7 100644 --- a/documentation/de/howtos13_crc.html +++ b/documentation/de/howtos13_crc.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=1.html b/documentation/de/howtos13_expand=1.html index 2f7b47d..656b966 100644 --- a/documentation/de/howtos13_expand=1.html +++ b/documentation/de/howtos13_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=2.html b/documentation/de/howtos13_expand=2.html index 69d3b43..f37d69d 100644 --- a/documentation/de/howtos13_expand=2.html +++ b/documentation/de/howtos13_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=3.html b/documentation/de/howtos13_expand=3.html index 3db94d4..1aa28b9 100644 --- a/documentation/de/howtos13_expand=3.html +++ b/documentation/de/howtos13_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=4.html b/documentation/de/howtos13_expand=4.html index c64a796..2ba4ae9 100644 --- a/documentation/de/howtos13_expand=4.html +++ b/documentation/de/howtos13_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=5.html b/documentation/de/howtos13_expand=5.html index f78b07f..8e1eec7 100644 --- a/documentation/de/howtos13_expand=5.html +++ b/documentation/de/howtos13_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos13_expand=6.html b/documentation/de/howtos13_expand=6.html index c57b4e8..ffd2389 100644 --- a/documentation/de/howtos13_expand=6.html +++ b/documentation/de/howtos13_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos14.html b/documentation/de/howtos14.html index 78deb58..9e2e957 100644 --- a/documentation/de/howtos14.html +++ b/documentation/de/howtos14.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos14_expand=1.html b/documentation/de/howtos14_expand=1.html index 195c40c..ad9a809 100644 --- a/documentation/de/howtos14_expand=1.html +++ b/documentation/de/howtos14_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos14_expand=2.html b/documentation/de/howtos14_expand=2.html index 93fcd4a..6375a1e 100644 --- a/documentation/de/howtos14_expand=2.html +++ b/documentation/de/howtos14_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos20.html b/documentation/de/howtos20.html index 97d30fc..06cc1a4 100644 --- a/documentation/de/howtos20.html +++ b/documentation/de/howtos20.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos21.html b/documentation/de/howtos21.html index 9e699aa..1c77aab 100644 --- a/documentation/de/howtos21.html +++ b/documentation/de/howtos21.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=1.html b/documentation/de/howtos21_answer=1.html index 1b36a25..4775a65 100644 --- a/documentation/de/howtos21_answer=1.html +++ b/documentation/de/howtos21_answer=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=2.html b/documentation/de/howtos21_answer=2.html index 51eaa08..ba9a360 100644 --- a/documentation/de/howtos21_answer=2.html +++ b/documentation/de/howtos21_answer=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=3.html b/documentation/de/howtos21_answer=3.html index d111acf..98706dd 100644 --- a/documentation/de/howtos21_answer=3.html +++ b/documentation/de/howtos21_answer=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos21_answer=4.html b/documentation/de/howtos21_answer=4.html index 5d23c31..767080c 100644 --- a/documentation/de/howtos21_answer=4.html +++ b/documentation/de/howtos21_answer=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22.html b/documentation/de/howtos22.html index ca5273c..40c5fa3 100644 --- a/documentation/de/howtos22.html +++ b/documentation/de/howtos22.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=1.html b/documentation/de/howtos22_expand=1.html index 2eb5e3a..038cdbc 100644 --- a/documentation/de/howtos22_expand=1.html +++ b/documentation/de/howtos22_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=2.html b/documentation/de/howtos22_expand=2.html index abd65eb..707f1c6 100644 --- a/documentation/de/howtos22_expand=2.html +++ b/documentation/de/howtos22_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=3.html b/documentation/de/howtos22_expand=3.html index 772af90..87f9923 100644 --- a/documentation/de/howtos22_expand=3.html +++ b/documentation/de/howtos22_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=4.html b/documentation/de/howtos22_expand=4.html index 8c9680f..92d5da8 100644 --- a/documentation/de/howtos22_expand=4.html +++ b/documentation/de/howtos22_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=5.html b/documentation/de/howtos22_expand=5.html index eca1057..da53ebd 100644 --- a/documentation/de/howtos22_expand=5.html +++ b/documentation/de/howtos22_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos22_expand=6.html b/documentation/de/howtos22_expand=6.html index 23598bd..19dbbe3 100644 --- a/documentation/de/howtos22_expand=6.html +++ b/documentation/de/howtos22_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23.html b/documentation/de/howtos23.html index 8b7df81..5f28338 100644 --- a/documentation/de/howtos23.html +++ b/documentation/de/howtos23.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1&expand=0.html b/documentation/de/howtos23_way=1&expand=0.html index 1d66d6a..c330dd4 100644 --- a/documentation/de/howtos23_way=1&expand=0.html +++ b/documentation/de/howtos23_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1&expand=1.html b/documentation/de/howtos23_way=1&expand=1.html index 222a911..ff12000 100644 --- a/documentation/de/howtos23_way=1&expand=1.html +++ b/documentation/de/howtos23_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1&expand=2.html b/documentation/de/howtos23_way=1&expand=2.html index d40120e..814f88b 100644 --- a/documentation/de/howtos23_way=1&expand=2.html +++ b/documentation/de/howtos23_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=1.html b/documentation/de/howtos23_way=1.html index 1d66d6a..c330dd4 100644 --- a/documentation/de/howtos23_way=1.html +++ b/documentation/de/howtos23_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=0.html b/documentation/de/howtos23_way=2&expand=0.html index e04fcd6..213bb0d 100644 --- a/documentation/de/howtos23_way=2&expand=0.html +++ b/documentation/de/howtos23_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=1.html b/documentation/de/howtos23_way=2&expand=1.html index da61774..81b5dc6 100644 --- a/documentation/de/howtos23_way=2&expand=1.html +++ b/documentation/de/howtos23_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2&expand=2.html b/documentation/de/howtos23_way=2&expand=2.html index c03bd3b..954819b 100644 --- a/documentation/de/howtos23_way=2&expand=2.html +++ b/documentation/de/howtos23_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos23_way=2.html b/documentation/de/howtos23_way=2.html index e04fcd6..213bb0d 100644 --- a/documentation/de/howtos23_way=2.html +++ b/documentation/de/howtos23_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos24.html b/documentation/de/howtos24.html index 84fca10..598bf28 100644 --- a/documentation/de/howtos24.html +++ b/documentation/de/howtos24.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos25.html b/documentation/de/howtos25.html index 8eaf565..32d2420 100644 --- a/documentation/de/howtos25.html +++ b/documentation/de/howtos25.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos25_expand=1.html b/documentation/de/howtos25_expand=1.html index 0fcab74..a7564f0 100644 --- a/documentation/de/howtos25_expand=1.html +++ b/documentation/de/howtos25_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos25_expand=2.html b/documentation/de/howtos25_expand=2.html index 38a2f7f..9254028 100644 --- a/documentation/de/howtos25_expand=2.html +++ b/documentation/de/howtos25_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos30.html b/documentation/de/howtos30.html index 260fbd6..a8fad93 100644 --- a/documentation/de/howtos30.html +++ b/documentation/de/howtos30.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos31.html b/documentation/de/howtos31.html index 9e699aa..1c77aab 100644 --- a/documentation/de/howtos31.html +++ b/documentation/de/howtos31.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos32.html b/documentation/de/howtos32.html index 41c7f92..8d62064 100644 --- a/documentation/de/howtos32.html +++ b/documentation/de/howtos32.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos32_expand=1.html b/documentation/de/howtos32_expand=1.html index f259ae1..9801f89 100644 --- a/documentation/de/howtos32_expand=1.html +++ b/documentation/de/howtos32_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos32_expand=2.html b/documentation/de/howtos32_expand=2.html index 87a56f6..c09f488 100644 --- a/documentation/de/howtos32_expand=2.html +++ b/documentation/de/howtos32_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33.html b/documentation/de/howtos33.html index c7663e4..89e4cc6 100644 --- a/documentation/de/howtos33.html +++ b/documentation/de/howtos33.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_expand=0.html b/documentation/de/howtos33_expand=0.html index c7663e4..89e4cc6 100644 --- a/documentation/de/howtos33_expand=0.html +++ b/documentation/de/howtos33_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_expand=1.html b/documentation/de/howtos33_expand=1.html index 89250bb..03cb5fb 100644 --- a/documentation/de/howtos33_expand=1.html +++ b/documentation/de/howtos33_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_expand=2.html b/documentation/de/howtos33_expand=2.html index a1d7676..3e19bbd 100644 --- a/documentation/de/howtos33_expand=2.html +++ b/documentation/de/howtos33_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=0.html b/documentation/de/howtos33_way=0&expand=0.html index 2f5790a..51e57f3 100644 --- a/documentation/de/howtos33_way=0&expand=0.html +++ b/documentation/de/howtos33_way=0&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=1.html b/documentation/de/howtos33_way=0&expand=1.html index d8d8c6c..9b090d8 100644 --- a/documentation/de/howtos33_way=0&expand=1.html +++ b/documentation/de/howtos33_way=0&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0&expand=2.html b/documentation/de/howtos33_way=0&expand=2.html index acff9e2..1b1c669 100644 --- a/documentation/de/howtos33_way=0&expand=2.html +++ b/documentation/de/howtos33_way=0&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=0.html b/documentation/de/howtos33_way=0.html index 2f5790a..51e57f3 100644 --- a/documentation/de/howtos33_way=0.html +++ b/documentation/de/howtos33_way=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&.html b/documentation/de/howtos33_way=1&.html index 3bced77..d9988b4 100644 --- a/documentation/de/howtos33_way=1&.html +++ b/documentation/de/howtos33_way=1&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=0.html b/documentation/de/howtos33_way=1&expand=0.html index 3bced77..d9988b4 100644 --- a/documentation/de/howtos33_way=1&expand=0.html +++ b/documentation/de/howtos33_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=1.html b/documentation/de/howtos33_way=1&expand=1.html index ae72b2d..53bb585 100644 --- a/documentation/de/howtos33_way=1&expand=1.html +++ b/documentation/de/howtos33_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=2.html b/documentation/de/howtos33_way=1&expand=2.html index 43bc936..4036741 100644 --- a/documentation/de/howtos33_way=1&expand=2.html +++ b/documentation/de/howtos33_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=3.html b/documentation/de/howtos33_way=1&expand=3.html index 73c8264..91ea6ff 100644 --- a/documentation/de/howtos33_way=1&expand=3.html +++ b/documentation/de/howtos33_way=1&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=4.html b/documentation/de/howtos33_way=1&expand=4.html index 43a5aa3..10ead8f 100644 --- a/documentation/de/howtos33_way=1&expand=4.html +++ b/documentation/de/howtos33_way=1&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=5.html b/documentation/de/howtos33_way=1&expand=5.html index 4390fd1..3b54804 100644 --- a/documentation/de/howtos33_way=1&expand=5.html +++ b/documentation/de/howtos33_way=1&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=6.html b/documentation/de/howtos33_way=1&expand=6.html index 693e725..57ec42f 100644 --- a/documentation/de/howtos33_way=1&expand=6.html +++ b/documentation/de/howtos33_way=1&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1&expand=7.html b/documentation/de/howtos33_way=1&expand=7.html index 2005cde..ef9abb1 100644 --- a/documentation/de/howtos33_way=1&expand=7.html +++ b/documentation/de/howtos33_way=1&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=1.html b/documentation/de/howtos33_way=1.html index 3bced77..d9988b4 100644 --- a/documentation/de/howtos33_way=1.html +++ b/documentation/de/howtos33_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&.html b/documentation/de/howtos33_way=2&.html index 92b10ab..c82928c 100644 --- a/documentation/de/howtos33_way=2&.html +++ b/documentation/de/howtos33_way=2&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=0.html b/documentation/de/howtos33_way=2&expand=0.html index 92b10ab..c82928c 100644 --- a/documentation/de/howtos33_way=2&expand=0.html +++ b/documentation/de/howtos33_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=1.html b/documentation/de/howtos33_way=2&expand=1.html index ee81115..6699c4b 100644 --- a/documentation/de/howtos33_way=2&expand=1.html +++ b/documentation/de/howtos33_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=2.html b/documentation/de/howtos33_way=2&expand=2.html index ee3674b..b665e25 100644 --- a/documentation/de/howtos33_way=2&expand=2.html +++ b/documentation/de/howtos33_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=3.html b/documentation/de/howtos33_way=2&expand=3.html index 7d1b378..607964a 100644 --- a/documentation/de/howtos33_way=2&expand=3.html +++ b/documentation/de/howtos33_way=2&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=4.html b/documentation/de/howtos33_way=2&expand=4.html index d9f52ac..1118f7c 100644 --- a/documentation/de/howtos33_way=2&expand=4.html +++ b/documentation/de/howtos33_way=2&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=5.html b/documentation/de/howtos33_way=2&expand=5.html index 43376c9..d399310 100644 --- a/documentation/de/howtos33_way=2&expand=5.html +++ b/documentation/de/howtos33_way=2&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2&expand=6.html b/documentation/de/howtos33_way=2&expand=6.html index 07988a4..90ccf7a 100644 --- a/documentation/de/howtos33_way=2&expand=6.html +++ b/documentation/de/howtos33_way=2&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=2.html b/documentation/de/howtos33_way=2.html index 92b10ab..c82928c 100644 --- a/documentation/de/howtos33_way=2.html +++ b/documentation/de/howtos33_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&.html b/documentation/de/howtos33_way=3&.html index 4c2a4fb..abc77d6 100644 --- a/documentation/de/howtos33_way=3&.html +++ b/documentation/de/howtos33_way=3&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=0.html b/documentation/de/howtos33_way=3&expand=0.html index 4c2a4fb..abc77d6 100644 --- a/documentation/de/howtos33_way=3&expand=0.html +++ b/documentation/de/howtos33_way=3&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=1.html b/documentation/de/howtos33_way=3&expand=1.html index 4e2bfa5..edb6f7f 100644 --- a/documentation/de/howtos33_way=3&expand=1.html +++ b/documentation/de/howtos33_way=3&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=10.html b/documentation/de/howtos33_way=3&expand=10.html index 6f31c2f..aa73abb 100644 --- a/documentation/de/howtos33_way=3&expand=10.html +++ b/documentation/de/howtos33_way=3&expand=10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=11.html b/documentation/de/howtos33_way=3&expand=11.html index 55ef771..baa2e50 100644 --- a/documentation/de/howtos33_way=3&expand=11.html +++ b/documentation/de/howtos33_way=3&expand=11.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=2.html b/documentation/de/howtos33_way=3&expand=2.html index 5ace56d..8c6d1bc 100644 --- a/documentation/de/howtos33_way=3&expand=2.html +++ b/documentation/de/howtos33_way=3&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=3.html b/documentation/de/howtos33_way=3&expand=3.html index 4d5165c..808b043 100644 --- a/documentation/de/howtos33_way=3&expand=3.html +++ b/documentation/de/howtos33_way=3&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=4.html b/documentation/de/howtos33_way=3&expand=4.html index 344ef40..353cc82 100644 --- a/documentation/de/howtos33_way=3&expand=4.html +++ b/documentation/de/howtos33_way=3&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=5.html b/documentation/de/howtos33_way=3&expand=5.html index 7dc9230..3495c1f 100644 --- a/documentation/de/howtos33_way=3&expand=5.html +++ b/documentation/de/howtos33_way=3&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=6.html b/documentation/de/howtos33_way=3&expand=6.html index a56580f..33f68c4 100644 --- a/documentation/de/howtos33_way=3&expand=6.html +++ b/documentation/de/howtos33_way=3&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=7.html b/documentation/de/howtos33_way=3&expand=7.html index cf23317..2d8166a 100644 --- a/documentation/de/howtos33_way=3&expand=7.html +++ b/documentation/de/howtos33_way=3&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=8.html b/documentation/de/howtos33_way=3&expand=8.html index 69a27e9..c67e6cb 100644 --- a/documentation/de/howtos33_way=3&expand=8.html +++ b/documentation/de/howtos33_way=3&expand=8.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3&expand=9.html b/documentation/de/howtos33_way=3&expand=9.html index 9176377..07e212f 100644 --- a/documentation/de/howtos33_way=3&expand=9.html +++ b/documentation/de/howtos33_way=3&expand=9.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos33_way=3.html b/documentation/de/howtos33_way=3.html index 4c2a4fb..abc77d6 100644 --- a/documentation/de/howtos33_way=3.html +++ b/documentation/de/howtos33_way=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos34.html b/documentation/de/howtos34.html index 284ecdc..7a3a5d8 100644 --- a/documentation/de/howtos34.html +++ b/documentation/de/howtos34.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos34_expand=1.html b/documentation/de/howtos34_expand=1.html index 7193f22..f119d0b 100644 --- a/documentation/de/howtos34_expand=1.html +++ b/documentation/de/howtos34_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos40.html b/documentation/de/howtos40.html index 1d46b79..45e75d6 100644 --- a/documentation/de/howtos40.html +++ b/documentation/de/howtos40.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos41.html b/documentation/de/howtos41.html index 038de4c..9509cb6 100644 --- a/documentation/de/howtos41.html +++ b/documentation/de/howtos41.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=1.html b/documentation/de/howtos41_expand=1.html index 13d597f..28aa016 100644 --- a/documentation/de/howtos41_expand=1.html +++ b/documentation/de/howtos41_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=2.html b/documentation/de/howtos41_expand=2.html index cf3a4ba..68698b3 100644 --- a/documentation/de/howtos41_expand=2.html +++ b/documentation/de/howtos41_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=3.html b/documentation/de/howtos41_expand=3.html index 8ee1b28..98cc924 100644 --- a/documentation/de/howtos41_expand=3.html +++ b/documentation/de/howtos41_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos41_expand=4.html b/documentation/de/howtos41_expand=4.html index 794953c..116ef90 100644 --- a/documentation/de/howtos41_expand=4.html +++ b/documentation/de/howtos41_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42.html b/documentation/de/howtos42.html index 8b834f7..b583956 100644 --- a/documentation/de/howtos42.html +++ b/documentation/de/howtos42.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=0.html b/documentation/de/howtos42_expand=0.html index 8b834f7..b583956 100644 --- a/documentation/de/howtos42_expand=0.html +++ b/documentation/de/howtos42_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=1.html b/documentation/de/howtos42_expand=1.html index d480757..2dc9ae6 100644 --- a/documentation/de/howtos42_expand=1.html +++ b/documentation/de/howtos42_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=2.html b/documentation/de/howtos42_expand=2.html index 25ad22b..bd401b0 100644 --- a/documentation/de/howtos42_expand=2.html +++ b/documentation/de/howtos42_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=3.html b/documentation/de/howtos42_expand=3.html index 96fad3e..d304d62 100644 --- a/documentation/de/howtos42_expand=3.html +++ b/documentation/de/howtos42_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos42_expand=4.html b/documentation/de/howtos42_expand=4.html index efb07c2..b918dfd 100644 --- a/documentation/de/howtos42_expand=4.html +++ b/documentation/de/howtos42_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43.html b/documentation/de/howtos43.html index 1675952..5404841 100644 --- a/documentation/de/howtos43.html +++ b/documentation/de/howtos43.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=1.html b/documentation/de/howtos43_expand=1.html index b79408f..918f00d 100644 --- a/documentation/de/howtos43_expand=1.html +++ b/documentation/de/howtos43_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=2.html b/documentation/de/howtos43_expand=2.html index 0d9107e..b0bb124 100644 --- a/documentation/de/howtos43_expand=2.html +++ b/documentation/de/howtos43_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=3.html b/documentation/de/howtos43_expand=3.html index f142308..7abe287 100644 --- a/documentation/de/howtos43_expand=3.html +++ b/documentation/de/howtos43_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=4.html b/documentation/de/howtos43_expand=4.html index a9f0de8..4060396 100644 --- a/documentation/de/howtos43_expand=4.html +++ b/documentation/de/howtos43_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos43_expand=5.html b/documentation/de/howtos43_expand=5.html index 7f132be..d63162a 100644 --- a/documentation/de/howtos43_expand=5.html +++ b/documentation/de/howtos43_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos50.html b/documentation/de/howtos50.html index 8252c15..0a21d9f 100644 --- a/documentation/de/howtos50.html +++ b/documentation/de/howtos50.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos51.html b/documentation/de/howtos51.html index 95e74d7..70a29cf 100644 --- a/documentation/de/howtos51.html +++ b/documentation/de/howtos51.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos51_expand=0.html b/documentation/de/howtos51_expand=0.html index 95e74d7..70a29cf 100644 --- a/documentation/de/howtos51_expand=0.html +++ b/documentation/de/howtos51_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos51_expand=1.html b/documentation/de/howtos51_expand=1.html index 70384d4..a9078fe 100644 --- a/documentation/de/howtos51_expand=1.html +++ b/documentation/de/howtos51_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos52.html b/documentation/de/howtos52.html index 7fbb475..7ab36d8 100644 --- a/documentation/de/howtos52.html +++ b/documentation/de/howtos52.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos52_expand=0.html b/documentation/de/howtos52_expand=0.html index 7fbb475..7ab36d8 100644 --- a/documentation/de/howtos52_expand=0.html +++ b/documentation/de/howtos52_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos52_expand=1.html b/documentation/de/howtos52_expand=1.html index 431c4e5..1480700 100644 --- a/documentation/de/howtos52_expand=1.html +++ b/documentation/de/howtos52_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos53.html b/documentation/de/howtos53.html index 869ae2c..dc25724 100644 --- a/documentation/de/howtos53.html +++ b/documentation/de/howtos53.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos53_expand=0.html b/documentation/de/howtos53_expand=0.html index 869ae2c..dc25724 100644 --- a/documentation/de/howtos53_expand=0.html +++ b/documentation/de/howtos53_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos53_expand=1.html b/documentation/de/howtos53_expand=1.html index 7777956..20abb0b 100644 --- a/documentation/de/howtos53_expand=1.html +++ b/documentation/de/howtos53_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59.html b/documentation/de/howtos59.html index 4a61800..ca55b5e 100644 --- a/documentation/de/howtos59.html +++ b/documentation/de/howtos59.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=1.html b/documentation/de/howtos59_expand=1.html index f8d945f..3b5b246 100644 --- a/documentation/de/howtos59_expand=1.html +++ b/documentation/de/howtos59_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=2.html b/documentation/de/howtos59_expand=2.html index 7320f96..179ba75 100644 --- a/documentation/de/howtos59_expand=2.html +++ b/documentation/de/howtos59_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=3.html b/documentation/de/howtos59_expand=3.html index 8c4fd44..c236ed5 100644 --- a/documentation/de/howtos59_expand=3.html +++ b/documentation/de/howtos59_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=4.html b/documentation/de/howtos59_expand=4.html index 97b08c5..7561e0d 100644 --- a/documentation/de/howtos59_expand=4.html +++ b/documentation/de/howtos59_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos59_expand=5.html b/documentation/de/howtos59_expand=5.html index e52811d..06689d4 100644 --- a/documentation/de/howtos59_expand=5.html +++ b/documentation/de/howtos59_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos60.html b/documentation/de/howtos60.html index 6b9bfd5..6f35116 100644 --- a/documentation/de/howtos60.html +++ b/documentation/de/howtos60.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos61.html b/documentation/de/howtos61.html index bbe135f..a4155ec 100644 --- a/documentation/de/howtos61.html +++ b/documentation/de/howtos61.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos62.html b/documentation/de/howtos62.html index f6c2867..d07ec40 100644 --- a/documentation/de/howtos62.html +++ b/documentation/de/howtos62.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos63.html b/documentation/de/howtos63.html index f321be3..3b2f923 100644 --- a/documentation/de/howtos63.html +++ b/documentation/de/howtos63.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos90.html b/documentation/de/howtos90.html index 4514acf..41bce0f 100644 --- a/documentation/de/howtos90.html +++ b/documentation/de/howtos90.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91.html b/documentation/de/howtos91.html index f1522e6..3c23557 100644 --- a/documentation/de/howtos91.html +++ b/documentation/de/howtos91.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=0.html b/documentation/de/howtos91_expand=0.html index f1522e6..3c23557 100644 --- a/documentation/de/howtos91_expand=0.html +++ b/documentation/de/howtos91_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=1.html b/documentation/de/howtos91_expand=1.html index 681af50..9be7645 100644 --- a/documentation/de/howtos91_expand=1.html +++ b/documentation/de/howtos91_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=2.html b/documentation/de/howtos91_expand=2.html index 9f1c9f2..ec0e590 100644 --- a/documentation/de/howtos91_expand=2.html +++ b/documentation/de/howtos91_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=3.html b/documentation/de/howtos91_expand=3.html index 4ec6727..edf9f3b 100644 --- a/documentation/de/howtos91_expand=3.html +++ b/documentation/de/howtos91_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos91_expand=4.html b/documentation/de/howtos91_expand=4.html index b74f015..40feb98 100644 --- a/documentation/de/howtos91_expand=4.html +++ b/documentation/de/howtos91_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92.html b/documentation/de/howtos92.html index 5e2b309..5145d3b 100644 --- a/documentation/de/howtos92.html +++ b/documentation/de/howtos92.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=0.html b/documentation/de/howtos92_expand=0.html index 5e2b309..5145d3b 100644 --- a/documentation/de/howtos92_expand=0.html +++ b/documentation/de/howtos92_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=1.html b/documentation/de/howtos92_expand=1.html index 9c61ecb..597789d 100644 --- a/documentation/de/howtos92_expand=1.html +++ b/documentation/de/howtos92_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=2.html b/documentation/de/howtos92_expand=2.html index 9e39603..b51f29f 100644 --- a/documentation/de/howtos92_expand=2.html +++ b/documentation/de/howtos92_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=3.html b/documentation/de/howtos92_expand=3.html index 3203ac9..d952883 100644 --- a/documentation/de/howtos92_expand=3.html +++ b/documentation/de/howtos92_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtos92_expand=4.html b/documentation/de/howtos92_expand=4.html index aa8f0cb..0843730 100644 --- a/documentation/de/howtos92_expand=4.html +++ b/documentation/de/howtos92_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa0.html b/documentation/de/howtosa0.html index 6f8923c..1049891 100644 --- a/documentation/de/howtosa0.html +++ b/documentation/de/howtosa0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa1.html b/documentation/de/howtosa1.html index a85f025..722fa38 100644 --- a/documentation/de/howtosa1.html +++ b/documentation/de/howtosa1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa1_expand=1.html b/documentation/de/howtosa1_expand=1.html index 94f4c27..01976b7 100644 --- a/documentation/de/howtosa1_expand=1.html +++ b/documentation/de/howtosa1_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa2.html b/documentation/de/howtosa2.html index 5f71e2c..5ac9e84 100644 --- a/documentation/de/howtosa2.html +++ b/documentation/de/howtosa2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa2_expand=1.html b/documentation/de/howtosa2_expand=1.html index 6aba4bd..2063d94 100644 --- a/documentation/de/howtosa2_expand=1.html +++ b/documentation/de/howtosa2_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa2_expand=2.html b/documentation/de/howtosa2_expand=2.html index 91e4d7d..c769f66 100644 --- a/documentation/de/howtosa2_expand=2.html +++ b/documentation/de/howtosa2_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa3.html b/documentation/de/howtosa3.html index 7963aef..86fdf63 100644 --- a/documentation/de/howtosa3.html +++ b/documentation/de/howtosa3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa3_expand=1.html b/documentation/de/howtosa3_expand=1.html index 3dcafba..80b3225 100644 --- a/documentation/de/howtosa3_expand=1.html +++ b/documentation/de/howtosa3_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa3_expand=2.html b/documentation/de/howtosa3_expand=2.html index 04d8d89..09d99e2 100644 --- a/documentation/de/howtosa3_expand=2.html +++ b/documentation/de/howtosa3_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa4.html b/documentation/de/howtosa4.html index c849b21..2687299 100644 --- a/documentation/de/howtosa4.html +++ b/documentation/de/howtosa4.html @@ -12,7 +12,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/howtosa4_expand=1.html b/documentation/de/howtosa4_expand=1.html index 3de2591..9fbade7 100644 --- a/documentation/de/howtosa4_expand=1.html +++ b/documentation/de/howtosa4_expand=1.html @@ -12,7 +12,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/index.html b/documentation/de/index.html index 949dccc..7d05163 100644 --- a/documentation/de/index.html +++ b/documentation/de/index.html @@ -12,7 +12,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -124,6 +124,18 @@ Solche Funktionen sind mit den Zielen und dem inneren Aufbau von dvdisaster nich

+ 21.11.2010
+ + dvdisaster 0.79.3 veröffentlicht +

+ 07.11.2010
+ + Windows- und Mac OS X-Versionen für 0.72.2 nachgelegt +

+ 31.10.2010
+ + dvdisaster 0.72.2 veröffentlicht +

28.02.2010
dvdisaster 0.79.2 veröffentlicht @@ -140,14 +152,6 @@ Solche Funktionen sind mit den Zielen und dem inneren Aufbau von dvdisaster nich Projektseiten auf SourceForge nicht aktuell

- 08.08.2009
- - dvdisaster 0.72.1 veröffentlicht -

- 04.07.2009
- - dvdisaster 0.72 veröffentlicht -

diff --git a/documentation/de/index10.html b/documentation/de/index10.html index 5be751c..23ef9f8 100644 --- a/documentation/de/index10.html +++ b/documentation/de/index10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/index10_expand=1.html b/documentation/de/index10_expand=1.html index f2ab0fe..7f59a90 100644 --- a/documentation/de/index10_expand=1.html +++ b/documentation/de/index10_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/index10_expand=2.html b/documentation/de/index10_expand=2.html index 862d313..3e71806 100644 --- a/documentation/de/index10_expand=2.html +++ b/documentation/de/index10_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/index20.html b/documentation/de/index20.html index 5c65dfc..1aeb290 100644 --- a/documentation/de/index20.html +++ b/documentation/de/index20.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/index30.html b/documentation/de/index30.html index a17112e..e2d11ad 100644 --- a/documentation/de/index30.html +++ b/documentation/de/index30.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/news.html b/documentation/de/news.html index b95a5d0..255c6e8 100644 --- a/documentation/de/news.html +++ b/documentation/de/news.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version @@ -72,6 +72,91 @@

Neues über dvdisaster

+ + + + + +
dvdisaster 0.79.3 veröffentlicht21.11.2010
+ + + + +
+ + + + +
+ + +
+ +Ab dieser Version wird unter Linux per Voreinstellung der +SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet. +Damit liegt jetzt auch im Entwicklungszweig eine Lösung für +hängende parallele SCSI-Kontroller unter Linux vor, die durch den +alten CDROM_SEND_PACKET-Treiber verursacht wurden. +Für den RS03-Kodierer sind jetzt Optimierungen für +Altivec auf dem PowerPC verfügbar. + +
+
 
+ + + + + +
Windows- und Mac OS X-Versionen für 0.72.2 nachgelegt07.11.2010
+ + + + +
+ + + + +
+ + +
+ +Die Windows- und Mac OS X-Versionen von 0.72.2 sind jetzt verfügbar. +Sie wurden mit der Entwicklungsumgebung von 0.79.x erzeugt. +Daher sind die mitgelieferten Bibliotheken von GTK+ +jetzt in neueren Versionen als in 0.72.1 enthalten und es können sich +leichte Änderungen im Aussehen und Verhalten ergeben. + +
+
 
+ + + + + +
dvdisaster 0.72.2 veröffentlicht31.10.2010
+ + + + +
+ + + + +
+ + +
+ +Diese Version führt einen Workaround ein um zu verhindern +daß parallele SCSI-Kontroller unter Linux nicht +mehr reagieren. +Die Aufwärtskompatibilität mit dvdisaster 0.79.x wurde verbessert. + +
+
 
diff --git a/documentation/de/news.php b/documentation/de/news.php index b116218..1832450 100644 --- a/documentation/de/news.php +++ b/documentation/de/news.php @@ -21,6 +21,32 @@ $news_counter = 0; news_headline("Neues über dvdisaster"); +news_item("21.11.2010", "dvdisaster 0.79.3 veröffentlicht", " +Ab dieser Version wird unter Linux per Voreinstellung der +SG_IO-Treiber zum Zugriff auf die optischen Laufwerke verwendet. +Damit liegt jetzt auch im Entwicklungszweig eine Lösung für +hängende parallele SCSI-Kontroller unter Linux vor, die durch den +alten CDROM_SEND_PACKET-Treiber verursacht wurden. +Für den RS03-Kodierer sind jetzt Optimierungen für +Altivec auf dem PowerPC verfügbar. +", 18, "2010-11-21T00:00:00Z", "2010-11-21T00:00:00Z"); + +news_item("07.11.2010", "Windows- und Mac OS X-Versionen für 0.72.2 nachgelegt", " +Die Windows- und Mac OS X-Versionen von 0.72.2 sind jetzt verfügbar. +Sie wurden mit der Entwicklungsumgebung von 0.79.x erzeugt. +Daher sind die mitgelieferten Bibliotheken von GTK+ +jetzt in neueren Versionen als in 0.72.1 enthalten und es können sich +leichte Änderungen im Aussehen und Verhalten ergeben. +", 17, "2010-11-07T00:00:00Z", "2010-11-07T00:00:00Z"); + + +news_item("31.10.2010", "dvdisaster 0.72.2 veröffentlicht", " +Diese Version führt einen Workaround ein um zu verhindern +daß parallele SCSI-Kontroller unter Linux nicht +mehr reagieren. +Die Aufwärtskompatibilität mit dvdisaster 0.79.x wurde verbessert. +", 16, "2010-10-31T00:00:00Z", "2010-10-31T00:00:00Z"); + news_item("28.02.2010", "dvdisaster 0.79.2 veröffentlicht", " Binärpakete sind wieder für Mac OS X verfügbar nachdem die Entwicklungsumgebung auch für Mac OS X aktualisiert wurde. diff --git a/documentation/de/news2007.html b/documentation/de/news2007.html index 1ac6e79..29d943e 100644 --- a/documentation/de/news2007.html +++ b/documentation/de/news2007.html @@ -11,7 +11,7 @@ + @@ -102,30 +103,38 @@ please execute the downloaded program and follow the dialog. Testers are welcome for the upcoming dvdisaster release, but should be aware of remaining bugs and incompatibilities. The current unstable release is -0.79 (devel-2). +0.79 (devel-3).

Stable version - recommended for getting started.

dvdisaster 0.79.2 veröffentlicht
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/news2008.html b/documentation/de/news2008.html index 305d865..225d391 100644 --- a/documentation/de/news2008.html +++ b/documentation/de/news2008.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/news2009.html b/documentation/de/news2009.html index c69c508..5cb0d6f 100644 --- a/documentation/de/news2009.html +++ b/documentation/de/news2009.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/qa.html b/documentation/de/qa.html index fe9ba37..b0bc7f6 100644 --- a/documentation/de/qa.html +++ b/documentation/de/qa.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/qa10.html b/documentation/de/qa10.html index 1f062a3..e0fb0d5 100644 --- a/documentation/de/qa10.html +++ b/documentation/de/qa10.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/qa20.html b/documentation/de/qa20.html index 0c8b684..66d7040 100644 --- a/documentation/de/qa20.html +++ b/documentation/de/qa20.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/de/qa_pipo.html b/documentation/de/qa_pipo.html index 99001fa..e366e76 100644 --- a/documentation/de/qa_pipo.html +++ b/documentation/de/qa_pipo.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  Zur Internet-Version diff --git a/documentation/dvdisaster.cs.1 b/documentation/dvdisaster.cs.1 index a30fac7..4051ea0 100644 --- a/documentation/dvdisaster.cs.1 +++ b/documentation/dvdisaster.cs.1 @@ -49,8 +49,8 @@ jsou použita k obnově nečitelných sektorů, pokud se disk později poškodí Obecné příklady použití: .TP .B \-r, \-\-read -Načte obraz média na pevný disk. Použijte -rn-m k načtení určitého rozsahu sektorů, -t.j. -r100-200. +Načte obraz média na pevný disk. Použijte \-rn-m k načtení určitého rozsahu sektorů, +t.j. \-r100-200. .TP .B \-c, \-\-create Vytvoří informaci .ecc pro obraz média. @@ -98,7 +98,7 @@ použije optimalizovanou strategii čtení poškozených médií. automaticky přidá souborové přípony .img a .ecc. .TP .B \-\-cache-size n -velikost varovnávací paměti v MB v průběhu akce -c (výchozí: 32 MB). +velikost varovnávací paměti v MB v průběhu akce \-c (výchozí: 32 MB). .TP .B \-\-dao předpokládá disk DAO; neořezávat konec obrazu. diff --git a/documentation/dvdisaster.de.1 b/documentation/dvdisaster.de.1 index 702a978..aec0414 100644 --- a/documentation/dvdisaster.de.1 +++ b/documentation/dvdisaster.de.1 @@ -119,8 +119,8 @@ wenn Sie mit erweiterten Abbildern arbeiten. Aktions-Auswahl (mindestens eine Aktion muss gew\[:a]hlt werden): .TP .B \-r, \-\-read -Datentr\[:a]ger-Abbild auf Festplatte einlesen. -rn-m liest einen Bereich von -Sektoren, z.B. -r100-200. +Datentr\[:a]ger-Abbild auf Festplatte einlesen. \-rn-m liest einen Bereich von +Sektoren, z.B. \-r100-200. .TP .B \-c, \-\-create Erzeugt Fehlerkorrektur-Daten f\[:u]r das Abbild. @@ -132,7 +132,7 @@ Versucht das Abbild mit Hilfe der Fehlerkorrektur-Daten zu reparieren. Untersucht den Datentr\[:a]ger auf Lesefehler. .TP .B \-t, \-\-test, \-tq, \-test=q -Pr\[:u]ft die Struktur der .iso und .ecc - Dateien. +Pr\[:u]ft die Struktur der .iso und .ecc \- Dateien. Bei Angabe der "q"-Option werden nur die Informationen ausgegeben, die ohne vollständiges Lesen der Dateien ermittelt werden k\[:o]nnen. .TP @@ -175,8 +175,56 @@ M\[:o]gliche Werte sind RS02 und RS03. .B \-j, \-\-jump n \[:u]berspringe n Sektoren nach einem Lesefehler (Standard: 16). .TP -.B \-n, \-\-redundancy n% -Redundanz der Fehlerkorrektur (Standard: 14.3%). +.B \-n, \-\-redundancy n[unit] +Redundanz der Fehlerkorrektur-Daten. Die zulässigen Werte sind vom +verwendeten Kodierer abhängig: + +.RS +RS01- und RS03-Fehlerkorrektur-Dateien: +.RS +\-n x\ \ erzeugt Fehlerkorrektur-Datei mit x Nullstellen. +.RE +.RS +\-n x% erzeugt Fehlerkorrektur-Datei mit x Prozent Redundanz. +.RE +.RS +\-n xm erzeugt Fehlerkorrektur-Datei mit ca. x MB Größe. +.RE +.RS +\-n normal - optimierter Kodierer für 14.3% Redundanz/32 Nullstellen. +.RE +.RS +\-n high\ \ \ - optimierter Kodierer für 33.5% Redundanz/64 Nullstellen. +.RE +.RE + +.RS +RS02-Abbilder: +.RS +\-n CD\ \ \ erweitert Abbild auf CD-Größe. +.RE +.RS +\-n DVD\ \ erweitert Abbild auf DVD-Größe. +.RE +.RS +\-n DVD9 erweitert Abbild auf DVD9-Größe. +.RE +.RS +\-n BD\ \ \ erweitert Abbild auf BD-Größe. +.RE +.RS +\-n BD2\ erweitert Abbild auf zweilagige BD-Größe. +.RE +.RS +\-n x\ \ \ \ erweitert Abbild auf ca. x Sektoren Länge. +.RE +.RS +\-n x%\ \ \ erweitert Abbild mit ca. x% Redundanz. +.RE +.RS +\-n xr\ \ \ erweitert Abbild mit x Nullstellen Fehlerkorrektur-Daten. +.RE +.RE .TP .B \-m, \-\-method n Fehlerkorrektur-Methoden anzeigen/ausw\[:a]hlen (Standard: RS01). @@ -210,10 +258,13 @@ Gibt das Unterverzeichnis zum Sammeln von unvollständigen Roh-Sektoren an. .TP .B \-\-driver d (nur für Linux) -dvdisaster verwendet unter Linux normalerweise den Treiber für optische -Laufwerke. Einige sehr alte SCSI-Kontroller erzeugen dabei Systemabstürze. -Probieren Sie in diesem Fall mit -\-\-driver=sg das Laufwerk über den alternativen SCSI-Treiber anzusteuern. +W\[:a]hlt zwischen dem sg (SG_IO)-Treiber (voreingestellt) und dem +älteren cdrom (CDROM_SEND_PACKET)-Treiber zum Zugriff auf die Laufwerke aus. +Beide Treiber sollten gleich gut funktionieren; der +cdrom-Treiber hat allerdings mit alten SCSI-Kontrollern Probleme. +Bis einschließlich dvdisaster 0.72.x war der cdrom-Treiber allerdings die +Voreinstellung; wenn sich jetzt etwas zum Schlechteren verändert hat +wählen Sie bitte wieder mit \-\-driver=cdrom den älteren Treiber aus. .TP .B \-\-eject Datentr\[:a]ger nach erfolgreichem Lesen auswerfen. @@ -225,12 +276,12 @@ f\[:u]lle unlesbare Sektoren mit Byte n. Lesen nach m\[:o]glicherweise schwerwiegenden Fehlern fortsetzen. .TP .B \-\-internal-rereads n -Leseversuche innerhalb des Laufwerks f\[:u]r besch\[:a]digte CD-Sektoren (Standard: -1) +Leseversuche innerhalb des Laufwerks f\[:u]r besch\[:a]digte CD-Sektoren (Standard: \-1) .RS Laufwerke unternehmen normalerweise mehrere Versuche um einen besch\[:a]digten Sektor zu lesen. Es ist typischerweise g\[:u]nstiger diesen Wert auf 0 oder 1 zu setzen -und die Anzahl der Leseversuche \[:u]ber den Parameter --read-attempts zu steuern. -Viele Laufwerke ignorieren diese Einstellung ohnehin. Benutzen Sie den Wert -1 um +und die Anzahl der Leseversuche \[:u]ber den Parameter \-\-read-attempts zu steuern. +Viele Laufwerke ignorieren diese Einstellung ohnehin. Benutzen Sie den Wert \-1 um die Standardeinstellungen des Laufwerks zu verwenden. .RE .TP @@ -254,7 +305,7 @@ Ein Wert von n verbraucht ungefähr n MB Arbeitsspeicher. .RE .TP .B \-\-raw-mode n -"Raw"-Lese-Verfahren f\[:u]r besch\[:a]digte CD-Sektoren (default: 20) +"Raw"\-Lese-Verfahren f\[:u]r besch\[:a]digte CD-Sektoren (default: 20) .RS Das empfohlene Verfahren ist 20, bei dem das Laufwerk die eingebaute Fehlerkorrektur so weit wie m\[:o]glich anwendet, bevor es einen besch\[:a]digten Sektor @@ -271,7 +322,7 @@ versucht einen besch\[:a]digten Sektor n bis m-mal zu lesen. liest den gesamten Datentr\[:a]ger bis zu n-mal. .TP .B \-\-read-raw -liest in der "raw"-Betriebsart sofern m\[:o]glich. +liest in der "raw"\-Betriebsart sofern m\[:o]glich. .TP .B \-\-speed-warning n warnt bei Geschwindigkeits\[:a]nderung um mehr als n Prozent. diff --git a/documentation/dvdisaster.en.1 b/documentation/dvdisaster.en.1 index 9ef58c8..e129d02 100644 --- a/documentation/dvdisaster.en.1 +++ b/documentation/dvdisaster.en.1 @@ -111,8 +111,8 @@ Omit the \fB-e corr.ecc\fP options when working with augmented images in the exa Action selection (at least one action must be specified): .TP .B \-r, \-\-read -Read the medium image to hard disc. Use -rn-m to read a certain sector range, -e.g. -r100-200. +Read the medium image to hard disc. Use \-rn-m to read a certain sector range, +e.g. \-r100-200. .TP .B \-c, \-\-create Create .ecc information for the medium image. @@ -167,8 +167,56 @@ Possible values are RS02 and RS03. .B \-j, \-\-jump n jump n sectors forward after a read error (default: 16). .TP -.B \-n, \-\-redundancy n% -sets redundancy for error correction (default: 14.3%). +.B \-n, \-\-redundancy n[unit] +Error correction data redundancy. Allowed values depend +on the codec: + +.RS +RS01- and RS03-error correction files +.RS +\-n x\ \ creates error correction file with x roots. +.RE +.RS +\-n x% creates error correction file with x percent redundancy. +.RE +.RS +\-n xm creates error correction file of approx. x MB size. +.RE +.RS +\-n normal - optimized codec for 14.3% redundancy/32 roots. +.RE +.RS +\-n high\ \ \ - optimized codec for 33.5% redundancy/64 roots. +.RE +.RE + +.RS +RS02 images: +.RS +\-n CD\ \ \ augments image suitable for CD media. +.RE +.RS +\-n DVD\ \ augments image suitable for DVD media. +.RE +.RS +\-n DVD9 augments image suitable for DVD9 media. +.RE +.RS +\-n BD\ \ \ augments image suitable for BD media. +.RE +.RS +\-n BD2\ augments image suitable for two layered BD media. +.RE +.RS +\-n x\ \ \ \ augments image using approx. x sectors in total. +.RE +.RS +\-n x%\ \ \ augments image with approx. x% redundancy. +.RE +.RS +\-n xr\ \ \ augments image with x roots error correction data. +.RE +.RE .TP .B \-m, \-\-method n lists/selects error correction methods (default: RS01). @@ -192,7 +240,7 @@ use optimized strategy for reading damaged media. automatically add .iso and .ecc file suffixes. .TP .B \-\-cache-size n -image cache size in MB during -c mode (default: 32MB). +image cache size in MB during \-c mode (default: 32MB). .TP .B \-\-dao assume DAO disc; do not trim image end. @@ -201,9 +249,13 @@ assume DAO disc; do not trim image end. Specifies the sub directory for storing incomplete raw sectors. .TP .B \-\-driver d (Linux only) -dvdisaster uses the optical drive interface by default. This may cause -system failures on some ancient SCSI controllers. Try using the generic -SCSI driver with the option \-\-driver=sg in such cases. +Selects between the sg (SG_IO) driver (default setting) and the +older cdrom (CDROM_SEND_PACKET) driver for accessing the optical drives. +Both drivers should work equally well; however the cdrom driver is known +to cause system failures on some ancient SCSI controllers. +The older cdrom driver was the default upto and including dvdisaster 0.72.x; +if the now pre-selected sg driver changes something to the worse for you +please switch back to the older driver using \-\-driver=cdrom. .TP .B \-\-eject eject medium after successful read. @@ -215,12 +267,12 @@ fill unreadable sectors with byte n continue reading after potentially fatal error condition. .TP .B \-\-internal-rereads n -internal read attempts for defective CD media sectors (default: -1) +internal read attempts for defective CD media sectors (default: \-1) .RS The drive firmware usually retries unreadable sectors a few times before giving up and returning a read error. It is more efficient to set this to 0 or 1 -and manage read attempts through the --read-attempts parameter. Most drives ignore -this setting anyways. Use -1 to leave the drive at its default setting. +and manage read attempts through the \-\-read-attempts parameter. Most drives ignore +this setting anyways. Use \-1 to leave the drive at its default setting. .RE .TP .B \-\-old-ds-marker @@ -245,7 +297,7 @@ Using a value of n uses approx. n MB of RAM. selects raw reading mode for CD media (default: 20) .RS The recommended mode is 20, which makes the drive apply its built-in error -correction to the best possible extent before transfering a defective sector. +correction to the best possible extent before transferring a defective sector. However some drives can only read defective sectors using mode 21, skipping the last stage of the internal error correction and returning the uncorrected sector instead. diff --git a/documentation/dvdisaster.it.1 b/documentation/dvdisaster.it.1 index 5fc69e5..6b6e83f 100644 --- a/documentation/dvdisaster.it.1 +++ b/documentation/dvdisaster.it.1 @@ -43,8 +43,8 @@ supporto dovesse danneggiarsi col tempo. Tipici esempi di utilizzo: .TP .B \-r, \-\-read -Estrae l'immagine del supporto sull'hard disc. Usare -rn-m per leggere un -determinato intervallo di settori, ad es. -r100-200. +Estrae l'immagine del supporto sull'hard disc. Usare \-rn-m per leggere un +determinato intervallo di settori, ad es. \-r100-200. .TP .B \-c, \-\-create Crea l'informazione .ecc per l'immagine del supporto. @@ -92,7 +92,7 @@ usare la strategia ottimizzata per leggere i supporti danneggiati. aggiungi automaticamente i suffissi .img e .ecc. .TP .B \-\-cache-size n -Dimensione della cache in MB con la modalit\[`a] -c (Standard: 32MB). +Dimensione della cache in MB con la modalit\[`a] \-c (Standard: 32MB). .TP .B \-\-dao Utilizza la modalit\[`a] DAO; Il disco non sar\[`a] finalizzato. diff --git a/documentation/en/download.html b/documentation/en/download.html index 68dd06c..e387469 100644 --- a/documentation/en/download.html +++ b/documentation/en/download.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
- + @@ -148,6 +157,18 @@ Most important changes in this version:

Patches (small changes after version 0.72; files above have been updated):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -182,10 +203,16 @@ please try getting dvdisaster via

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Oct-2010
- + - + + + + - + - + + + + - + - - + + + +
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
dvdisaster-0.72.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Binary for Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Show older releases in the 0.72 version branch
dvdisaster-0.70.6.tar.bz2
Digital signature:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Binary for Windows:  dvdisaster-0.70.6-setup.exe
Digital signature:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/en/download.php b/documentation/en/download.php index 37f37f2..48ac7d1 100644 --- a/documentation/en/download.php +++ b/documentation/en/download.php @@ -55,23 +55,43 @@ The current unstable release is - + diff --git a/documentation/en/download10.html b/documentation/en/download10.html index f77e2fe..68459e2 100644 --- a/documentation/en/download10.html +++ b/documentation/en/download10.html @@ -11,7 +11,7 @@ + @@ -76,30 +77,69 @@ -

System requirements

+

Hardware requirements

    -
  • Processors: x86, PowerPC or Sparc;

  • -
  • with processing speed equal or better than a P4 at 2Ghz;

  • -
  • an up-to-date CD/DVD/BD drive with ATAPI or SCSI interface;

  • -
  • enough hard disk space for creating .iso images from processed media.

    +

  • x86, PowerPC or Sparc processor;
  • +
  • an up-to-date CD/DVD/BD drive with ATAPI, SATA or SCSI interface;
  • +
  • enough hard disk space for creating .iso images from processed media.
+

-

Operating systems

-The dvdisaster project recommends GNU/Linux. +

Supported operating systems

+The following table gives an overview of the supported operating +systems. The specified releases have been used for developing and +testing the current dvdisaster version. Typically, slightly older +and newer OS versions will also work.

-

    -
  • GNU/Linux with kernel 2.6.7 or later (2.6.26 recommended).

    -

  • -
  • FreeBSD version 6.0 or later
    - (using ATAPI drives requires loading the atapicam kernel module -- see INSTALL doc)

    -

  • -
  • NetBSD version 3.1 or later.

  • -
  • Mac OS X version 10.4 (Tiger) or later,
    - on x86 and PowerPC hardware.

    -

  • Windows 2000 SP4 or newer.
  • -
+The dvdisaster project recommends GNU/Linux.

+

dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Oct-2010
- + - + + +"; +?> + + - + - + + +"; +?> + + - + - + + +"; +?> + @@ -81,18 +101,55 @@ The current unstable release is else { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -117,6 +174,18 @@ Most important changes in this version:

Patches (small changes after version 0.72; files above have been updated):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -151,10 +220,16 @@ please try getting dvdisaster via

+ + + + + +
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
dvdisaster-0.72.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Binary for Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Hide older releases in the 0.72 version branch
Version 0.72.1
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
MD5 checksum: 4da96566bc003be93d9dfb0109b4aa1d
Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
MD5 checksum: 924b5677f69473b6b87991e01779a541
Binary for Windows: dvdisaster-0.72.1-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
MD5 checksum: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Source code for all operating systems:  dvdisaster-0.72.tar.bz2
Digital signature:  dvdisaster-0.72.tar.bz2.gpg
MD5 checksum: efa35607d91412a7ff185722f270fb8a
Binary for Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- please read these hints first
Digital signature:  dvdisaster-0.72.app.zip.gpg
MD5 checksum: 1f28385b2b6d64b664fd416eb4c85e80
Binary for Windows:  dvdisaster-0.72-setup.exe
Digital signature:  dvdisaster-0.72-setup.exe.gpg
MD5 checksum: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Digital signature:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Binary for Windows:  dvdisaster-0.70.6-setup.exe
Digital signature:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Operating SystemRelease32bit support64bit support
GNU/LinuxDebian Lenny (5.0.3)
Kernel 2.6.26
yesyes
FreeBSD1)8.0yesyes
NetBSD5.02yesyes
Mac OS X10.5 (Leopard)yesno2)
Windows4)Windows 2000 SP43)yesno2)

+ +1)FreeBSD: using ATAPI drives requires loading the atapicam kernel module -- see INSTALL doc
+2)Due to unresolved problems with the build system. However 64bit +support currently provides no significant improvements over the 32bit version.
+3)Later Versions up to Windows 7 have been reported to work. +Windows 2000 SP3 and earlier versions are not supported.
+4)Support for multicore processors varies. On some editions using additional +cores for dvdisaster does not result in more performance. diff --git a/documentation/en/download10.php b/documentation/en/download10.php index 46c3592..eb0e46f 100644 --- a/documentation/en/download10.php +++ b/documentation/en/download10.php @@ -14,30 +14,69 @@ begin_page(); -

System requirements

+

Hardware requirements

    -
  • Processors: x86, PowerPC or Sparc;

  • -
  • with processing speed equal or better than a P4 at 2Ghz;

  • -
  • an up-to-date CD/DVD/BD drive with ATAPI or SCSI interface;

  • -
  • enough hard disk space for creating .iso images from processed media.

    +

  • x86, PowerPC or Sparc processor;
  • +
  • an up-to-date CD/DVD/BD drive with ATAPI, SATA or SCSI interface;
  • +
  • enough hard disk space for creating .iso images from processed media.
+

-

Operating systems

-The dvdisaster project recommends GNU/Linux. +

Supported operating systems

+The following table gives an overview of the supported operating +systems. The specified releases have been used for developing and +testing the current dvdisaster version. Typically, slightly older +and newer OS versions will also work.

-

    -
  • GNU/Linux with kernel 2.6.7 or later (2.6.26 recommended).

    -

  • -
  • FreeBSD version 6.0 or later
    - (using ATAPI drives requires loading the atapicam kernel module -- see INSTALL doc)

    -

  • -
  • NetBSD version 3.1 or later.

  • -
  • Mac OS X version 10.4 (Tiger) or later,
    - on x86 and PowerPC hardware.

    -

  • Windows 2000 SP4 or newer.
  • -
+The dvdisaster project recommends GNU/Linux.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Operating SystemRelease32bit support64bit support
GNU/LinuxDebian Lenny (5.0.3)
Kernel 2.6.26
yesyes
FreeBSD1)8.0yesyes
NetBSD5.02yesyes
Mac OS X10.5 (Leopard)yesno2)
Windows4)Windows 2000 SP43)yesno2)

+ +1)FreeBSD: using ATAPI drives requires loading the atapicam kernel module -- see INSTALL doc
+2)Due to unresolved problems with the build system. However 64bit +support currently provides no significant improvements over the 32bit version.
+3)Later Versions up to Windows 7 have been reported to work. +Windows 2000 SP3 and earlier versions are not supported.
+4)Support for multicore processors varies. On some editions using additional +cores for dvdisaster does not result in more performance. dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@ Download ·System requirements + ·(No) download terms ·Digital signature ·Installation ·Alpha (unstable) versions @@ -97,6 +98,14 @@ Feel free to send an email to to obt the fingerprint directly from the developers. Please include "GPG finger print" in the subject line. +

MD5 checksum

+ +Contrary to the digital signature, MD5 checksums are cryptographically weak: +It is possible to create a manipulated package which still has the same +checksum as the original. However MD5 checksums are sufficient for a quick +check whether the download has finished completely and without transmission +errors. + diff --git a/documentation/en/download20.php b/documentation/en/download20.php index 0d7f3b2..654227d 100644 --- a/documentation/en/download20.php +++ b/documentation/en/download20.php @@ -35,6 +35,14 @@ Feel free to send an email to to obt the fingerprint directly from the developers. Please include "GPG finger print" in the subject line. +

MD5 checksum

+ +Contrary to the digital signature, MD5 checksums are cryptographically weak: +It is possible to create a manipulated package which still has the same +checksum as the original. However MD5 checksums are sufficient for a quick +check whether the download has finished completely and without transmission +errors. + dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@ Download ·System requirements + ·(No) download terms ·Digital signature ·Installation ·Alpha (unstable) versions @@ -113,7 +114,7 @@ Similar reasons hold for the Windows version btw ;-)

Installation of the binary for Windows

Please install the Windows version by executing the setup binary -(e.g. dvdisaster-0.79.2-setup.exe) and follow the +(e.g. dvdisaster-0.79.3-setup.exe) and follow the installation dialog.

Caution: dvdisaster can NOT be installed from diff --git a/documentation/en/download40.html b/documentation/en/download40.html index 98d3043..71035d2 100644 --- a/documentation/en/download40.html +++ b/documentation/en/download40.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@ Download ·System requirements + ·(No) download terms ·Digital signature ·Installation ·Alpha (unstable) versions @@ -130,24 +131,25 @@ for the graphical user interface. [in progress] The alpha versions use the same package format as the regular releases.

- + @@ -157,6 +159,18 @@ The alpha versions use the same package format as the regular releases.

All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

+0.79.3 (21-Nov-2010)
+

    +
  • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
  • +
  • Michael Klein provided Altivec optimization for the RS03 codec. +
  • +
+ 0.79.2 (28-Feb-2010)
  • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/en/download40.php b/documentation/en/download40.php index e3ce6f0..5649c6a 100644 --- a/documentation/en/download40.php +++ b/documentation/en/download40.php @@ -9,6 +9,7 @@ # navigation and news if appropriate. require("../include/dvdisaster.php"); +require("../include/download.php"); begin_page(); $show_all=$_GET["showall"]; ?> @@ -69,49 +70,24 @@ for the graphical user interface. [in progress]
  • The alpha versions use the same package format as the regular releases.

dvdisaster-0.7928-Feb-2010
dvdisaster-0.7921-Nov-2010
- + - + + - + - + + - + - + -
  Source code for all operating systems: dvdisaster-0.79.2.tar.bz2
dvdisaster-0.79.3.tar.bz2
Digital signature: dvdisaster-0.79.2.tar.bz2.gpg
dvdisaster-0.79.3.tar.bz2.gpg
Binary for Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- please read these hints first
dvdisaster-0.79.3.app.zip
Digital signature: dvdisaster-0.79.2.app.zip.gpg
dvdisaster-0.79.3.app.zip.gpg
Binary for Windows: dvdisaster-0.79.2-setup.exe
dvdisaster-0.79.3-setup.exe
Digital signature: dvdisaster-0.79.2-setup.exe.gpg
dvdisaster-0.79.3-setup.exe.gpg
Show older releases in the 0.79 version branch
- + @@ -121,6 +97,18 @@ The alpha versions use the same package format as the regular releases.

All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

+0.79.3 (21-Nov-2010)
+

    +
  • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
  • +
  • Michael Klein provided Altivec optimization for the RS03 codec. +
  • +
+ 0.79.2 (28-Feb-2010)
  • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/en/download40_showall=0.html b/documentation/en/download40_showall=0.html index 98d3043..71035d2 100644 --- a/documentation/en/download40_showall=0.html +++ b/documentation/en/download40_showall=0.html @@ -11,7 +11,7 @@
+ @@ -130,24 +131,25 @@ for the graphical user interface. [in progress] The alpha versions use the same package format as the regular releases.

dvdisaster-0.7928-Feb-2010
dvdisaster-0.7921-Nov-2010
- - - - - - - - - - - - - + - - - - - - - - - - - - -\n"; + } + else + { echo " \n"; + echo " \n"; + + download_version("0.79.2", 1, "378ed135c2faf0eaf643125d1f7726c6", "f673e41b5ddc31a6ecb48a5f053de885", "0b4c0b46e827c7f796416473511ab036"); + + download_version("0.79.1", 1, "ba6d0178dc03119080e07ef0a2967c38", "none", "b4c62833a2447097950b563e4a7b2065"); + } ?>
  Source code for all operating systems: dvdisaster-0.79.2.tar.bz2
Digital signature: dvdisaster-0.79.2.tar.bz2.gpg
Binary for Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.79.2.app.zip.gpg
Binary for Windows: dvdisaster-0.79.2-setup.exe
Digital signature: dvdisaster-0.79.2-setup.exe.gpg
Show older releases in the 0.79 version branch
Hide older releases in the 0.79 version branch
  Source code for all operating systems: dvdisaster-0.79.1.tar.bz2
Digital signature: dvdisaster-0.79.1.tar.bz2.gpg
Binary for Windows: dvdisaster-0.79.1-setup.exe
Digital signature: dvdisaster-0.79.1-setup.exe.gpg
Show older releases in the 0.79 version branch
Hide older releases in the 0.79 version branch
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
- + @@ -157,6 +159,18 @@ The alpha versions use the same package format as the regular releases.

All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

+0.79.3 (21-Nov-2010)
+

    +
  • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
  • +
  • Michael Klein provided Altivec optimization for the RS03 codec. +
  • +
+ 0.79.2 (28-Feb-2010)
  • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/en/download40_showall=1.html b/documentation/en/download40_showall=1.html index 7b87621..a15ec9a 100644 --- a/documentation/en/download40_showall=1.html +++ b/documentation/en/download40_showall=1.html @@ -11,7 +11,7 @@
+ @@ -130,40 +131,59 @@ for the graphical user interface. [in progress] The alpha versions use the same package format as the regular releases.

dvdisaster-0.7928-Feb-2010
dvdisaster-0.7921-Nov-2010
- + - + + - + - + + - + - + -
  Source code for all operating systems: dvdisaster-0.79.2.tar.bz2
dvdisaster-0.79.3.tar.bz2
Digital signature: dvdisaster-0.79.2.tar.bz2.gpg
dvdisaster-0.79.3.tar.bz2.gpg
Binary for Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- please read these hints first
dvdisaster-0.79.3.app.zip
Digital signature: dvdisaster-0.79.2.app.zip.gpg
dvdisaster-0.79.3.app.zip.gpg
Binary for Windows: dvdisaster-0.79.2-setup.exe
dvdisaster-0.79.3-setup.exe
Digital signature: dvdisaster-0.79.2-setup.exe.gpg
dvdisaster-0.79.3-setup.exe.gpg
Show older releases in the 0.79 version branch
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
- + @@ -172,6 +192,18 @@ The alpha versions use the same package format as the regular releases.

All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

+0.79.3 (21-Nov-2010)
+

    +
  • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
  • +
  • Michael Klein provided Altivec optimization for the RS03 codec. +
  • +
+ 0.79.2 (28-Feb-2010)
  • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/en/download50.html b/documentation/en/download50.html index 6bd2e8e..b466260 100644 --- a/documentation/en/download50.html +++ b/documentation/en/download50.html @@ -11,7 +11,7 @@
+ diff --git a/documentation/en/download60.html b/documentation/en/download60.html new file mode 100644 index 0000000..78d4b33 --- /dev/null +++ b/documentation/en/download60.html @@ -0,0 +1,168 @@ + + + + (No) download terms + + + + + +
dvdisaster-0.7928-Feb-2010
dvdisaster-0.7921-Nov-2010
+ + + + + + + + + + + + + + + + + + + + - + + + + - - - + - + + + +
  Source code for all operating systems: dvdisaster-0.79.3.tar.bz2
Digital signature: dvdisaster-0.79.3.tar.bz2.gpg
Binary for Mac OS X 10.5 / x86: dvdisaster-0.79.3.app.zip
Digital signature: dvdisaster-0.79.3.app.zip.gpg
Binary for Windows: dvdisaster-0.79.3-setup.exe
Digital signature: dvdisaster-0.79.3-setup.exe.gpg
Hide older releases in the 0.79 version branch
Version 0.79.2
  Source code for all operating systems:  dvdisaster-0.79.2.tar.bz2
Digital signature:  dvdisaster-0.79.2.tar.bz2.gpg
MD5 checksum: 378ed135c2faf0eaf643125d1f7726c6
Binary for Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- please read these hints first
dvdisaster-0.79.2.app.zip
Digital signature:  dvdisaster-0.79.2.app.zip.gpg
MD5 checksum: f673e41b5ddc31a6ecb48a5f053de885
Binary for Windows:  dvdisaster-0.79.2-setup.exe
Digital signature:  dvdisaster-0.79.2-setup.exe.gpg
MD5 checksum: 0b4c0b46e827c7f796416473511ab036
Hide older releases in the 0.79 version branch
Version 0.79.1
  Source code for all operating systems:  dvdisaster-0.79.1.tar.bz2
Digital signature:  dvdisaster-0.79.1.tar.bz2.gpg
MD5 checksum: ba6d0178dc03119080e07ef0a2967c38
Binary for Windows:  dvdisaster-0.79.1-setup.exe
Digital signature:  dvdisaster-0.79.1-setup.exe.gpg
MD5 checksum: b4c62833a2447097950b563e4a7b2065
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
+ + + + +
+ dvdisaster + Version 0.72.2 / 0.79 (devel-3) + +  To the Internet version + + + +
+ + + + + + + +
+ +
+ + + + + + + + + + + + + + +
+ + + + +
+ Contents + + + + +

+ + + + + + + + + + + + + + + + + + + +
News
Overview
Howtos
Download
·System requirements
·(No) download terms
·Digital signature
·Installation
·Alpha (unstable) versions
·Additional resources
Questions and Answers
Bug reporting
+

+
+ + + +

Make sure you're not getting ripped off: The small print (and other things).

+ +The dvdisaster project provides this software +as free software +to you using the +GNU General Public License v2.

+ +The dvdisaster project also wants to make sure that you know +you can download the software from here at no cost +and keeping your full privacy.

+ +To make it clear how we distribute dvdisaster, what we do and what we won't do, +we have compiled the following list:

+ +Internet and download sites

+ +The dvdisaster project uses the following internet domains +for publishing its web sites and supplying software downloads:

+ +dvdisaster.com
+dvdisaster.de
+dvdisaster.net
+dvdisaster.org

+ +All domains are forwarded to the same site at dvdisaster.net.
+In addition, the dvdisaster project is using the hosting facilities of +SourceForge.net.

+ +No other internet or download sites are run by the dvdisaster project.

+ +No money or personal data required

+ +There is no registration process for using this software.
+The dvdisaster project never asks you to enter personal data, +to pay a fee or to donate money for: + +

    +
  • using this web site,
  • +
  • downloading the software, and
  • +
  • running the software.
  • +

+ +Cryptographic signature and checksums

+ +dvdisaster releases are always published with +cryptographic signatures and md5 checksums. +See the download page for examples.

+ +Be very cautious if signatures and checksums are missing, invalid or +not matching those published at the sites mentioned above.

+ + + +

+ + + + + + + + + + + + + +
+ + Copyright 2004-2010 Carsten Gnörlich.
+ Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved. +
+
+
+ + diff --git a/documentation/en/download60.php b/documentation/en/download60.php new file mode 100644 index 0000000..7e1863a --- /dev/null +++ b/documentation/en/download60.php @@ -0,0 +1,74 @@ + + + + +

Make sure you're not getting ripped off: The small print (and other things).

+ +The dvdisaster project provides this software +as free software +to you using the +GNU General Public License v2.

+ +The dvdisaster project also wants to make sure that you know +you can download the software from here at no cost +and keeping your full privacy.

+ +To make it clear how we distribute dvdisaster, what we do and what we won't do, +we have compiled the following list:

+ +Internet and download sites

+ +The dvdisaster project uses the following internet domains +for publishing its web sites and supplying software downloads:

+ +dvdisaster.com
+dvdisaster.de
+dvdisaster.net
+dvdisaster.org

+ +All domains are forwarded to the same site at dvdisaster.net.
+In addition, the dvdisaster project is using the hosting facilities of +SourceForge.net.

+ +No other internet or download sites are run by the dvdisaster project.

+ +No money or personal data required

+ +There is no registration process for using this software.
+The dvdisaster project never asks you to enter personal data, +to pay a fee or to donate money for: + +

    +
  • using this web site,
  • +
  • downloading the software, and
  • +
  • running the software.
  • +

+ +Cryptographic signature and checksums

+ +dvdisaster releases are always published with +cryptographic signatures and md5 checksums. +See the download page for examples.

+ +Be very cautious if signatures and checksums are missing, invalid or +not matching those published at the sites mentioned above.

+ + + + diff --git a/documentation/en/download_showall=0.html b/documentation/en/download_showall=0.html index a763a1c..f5bd161 100644 --- a/documentation/en/download_showall=0.html +++ b/documentation/en/download_showall=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@ Download ·System requirements + ·(No) download terms ·Digital signature ·Installation ·Alpha (unstable) versions @@ -102,30 +103,38 @@ please execute the downloaded program and follow the dialog. Testers are welcome for the upcoming dvdisaster release, but should be aware of remaining bugs and incompatibilities. The current unstable release is -0.79 (devel-2). +0.79 (devel-3).

Stable version - recommended for getting started.

- + @@ -148,6 +157,18 @@ Most important changes in this version:

Patches (small changes after version 0.72; files above have been updated):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -182,10 +203,16 @@ please try getting dvdisaster via

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Oct-2010
- + - + + + + - + - + + + + - + - - + + + +
  Source code for all operating systems: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- please read these hints first
dvdisaster-0.72.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Binary for Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Show older releases in the 0.72 version branch
dvdisaster-0.70.6.tar.bz2
Digital signature:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Binary for Windows:  dvdisaster-0.70.6-setup.exe
Digital signature:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/en/download_showall=1.html b/documentation/en/download_showall=1.html index f1781ea..521e4e9 100644 --- a/documentation/en/download_showall=1.html +++ b/documentation/en/download_showall=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -56,6 +56,7 @@ Download ·System requirements + ·(No) download terms ·Digital signature ·Installation ·Alpha (unstable) versions @@ -102,44 +103,89 @@ please execute the downloaded program and follow the dialog. Testers are welcome for the upcoming dvdisaster release, but should be aware of remaining bugs and incompatibilities. The current unstable release is -0.79 (devel-2). +0.79 (devel-3).

Stable version - recommended for getting started.

- + @@ -161,6 +207,18 @@ Most important changes in this version:

Patches (small changes after version 0.72; files above have been updated):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -195,10 +253,16 @@ please try getting dvdisaster via

+ + + + + +
dvdisaster-0.7208-Aug-2009
dvdisaster-0.7231-Oct-2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + +
  Source code for all operating systems: dvdisaster-0.72.2.tar.bz2
Digital signature: dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Binary for Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- please read these hints first
Digital signature: dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Binary for Windows: dvdisaster-0.72.2-setup.exe
Digital signature: dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Hide older releases in the 0.72 version branch
Version 0.72.1
  Source code for all operating systems:  dvdisaster-0.72.1.tar.bz2
Digital signature:  dvdisaster-0.72.1.tar.bz2.gpg
MD5 checksum: 4da96566bc003be93d9dfb0109b4aa1d
Binary for Mac OS X 10.5 / x86:  dvdisaster-0.72.1.app.zip -- please read these hints first
Digital signature:  dvdisaster-0.72.1.app.zip.gpg
MD5 checksum: 924b5677f69473b6b87991e01779a541
Binary for Windows:  dvdisaster-0.72.1-setup.exe
Digital signature:  dvdisaster-0.72.1-setup.exe.gpg
Hide older releases in the 0.72 version branch
MD5 checksum: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Source code for all operating systems:  dvdisaster-0.72.tar.bz2
Digital signature:  dvdisaster-0.72.tar.bz2.gpg
MD5 checksum: efa35607d91412a7ff185722f270fb8a
Binary for Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- please read these hints first
Digital signature:  dvdisaster-0.72.app.zip.gpg
MD5 checksum: 1f28385b2b6d64b664fd416eb4c85e80
Binary for Windows:  dvdisaster-0.72-setup.exe
Digital signature:  dvdisaster-0.72-setup.exe.gpg
MD5 checksum: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Digital signature:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Binary for Windows:  dvdisaster-0.70.6-setup.exe
Digital signature:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/en/feed/atom.xml b/documentation/en/feed/atom.xml index 4c02ce9..8b61614 100755 --- a/documentation/en/feed/atom.xml +++ b/documentation/en/feed/atom.xml @@ -2,13 +2,40 @@ tag:dvdisaster.net,2009-10-02:/en/feeds/atom.xml dvdisaster news -2010-02-28T19:15:30+01:00 +2010-11-20T22:12:52+01:00 Carsten Gnörlich http://www.dvdisaster.org +dvdisaster 0.79.3 released + +tag:dvdisaster.net,2010-11-21:/en/news.html/18 +2010-11-21T00:00:00Z +2010-11-21T00:00:00Z + +

For GNU/Linux, the SG_IO driver is used by default for accessing optical drives. This resolves the problem with system freezes on parallel SCSI adapters which were caused by the old CDROM_SEND_PACKET driver. The RS03 codec now contains [...] +
+ +Added Windows and Mac OS X versions for 0.72.2 + +tag:dvdisaster.net,2010-11-07:/en/news.html/17 +2010-11-07T00:00:00Z +2010-11-07T00:00:00Z + + Windows and Mac OS X versions of 0.72.2 are now available. They were built using the updated development environment of 0.79.x. This results in shipping with newer versions of the GTK+ libraries and might yield slightly different visuals [...] + + +dvdisaster 0.72.2 released + +tag:dvdisaster.net,2010-10-31:/en/news.html/16 +2010-10-31T00:00:00Z +2010-10-31T00:00:00Z + + This version introduces a workaround which prevents parallel SCSI adapters from freezing under Linux. Improved upward compatibility with dvdisaster 0.79.x. [...] + + dvdisaster 0.79.2 released tag:dvdisaster.net,2010-02-28:/en/news.html/15 diff --git a/documentation/en/feedback.html b/documentation/en/feedback.html index 913a12a..5bd129f 100644 --- a/documentation/en/feedback.html +++ b/documentation/en/feedback.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/feedback_expand=1.html b/documentation/en/feedback_expand=1.html index e459a09..1d9dbf3 100644 --- a/documentation/en/feedback_expand=1.html +++ b/documentation/en/feedback_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos.html b/documentation/en/howtos.html index 4aa59db..d7e4aad 100644 --- a/documentation/en/howtos.html +++ b/documentation/en/howtos.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos10.html b/documentation/en/howtos10.html index 0cf246b..e42c781 100644 --- a/documentation/en/howtos10.html +++ b/documentation/en/howtos10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11.html b/documentation/en/howtos11.html index b1d7659..3bda73a 100644 --- a/documentation/en/howtos11.html +++ b/documentation/en/howtos11.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11_expand=1.html b/documentation/en/howtos11_expand=1.html index eda8b25..677105b 100644 --- a/documentation/en/howtos11_expand=1.html +++ b/documentation/en/howtos11_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11_expand=2.html b/documentation/en/howtos11_expand=2.html index 47dfaba..a5c8ba6 100644 --- a/documentation/en/howtos11_expand=2.html +++ b/documentation/en/howtos11_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11_expand=3.html b/documentation/en/howtos11_expand=3.html index 5dab9a4..6c14916 100644 --- a/documentation/en/howtos11_expand=3.html +++ b/documentation/en/howtos11_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11_expand=4.html b/documentation/en/howtos11_expand=4.html index 995dab3..4ebc45a 100644 --- a/documentation/en/howtos11_expand=4.html +++ b/documentation/en/howtos11_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos11_expand=5.html b/documentation/en/howtos11_expand=5.html index 4c5348b..9b69203 100644 --- a/documentation/en/howtos11_expand=5.html +++ b/documentation/en/howtos11_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos12.html b/documentation/en/howtos12.html index c75f7a9..7028c7c 100644 --- a/documentation/en/howtos12.html +++ b/documentation/en/howtos12.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos12_expand=0.html b/documentation/en/howtos12_expand=0.html index c75f7a9..7028c7c 100644 --- a/documentation/en/howtos12_expand=0.html +++ b/documentation/en/howtos12_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos12_expand=1.html b/documentation/en/howtos12_expand=1.html index 82aa38c..e9013ad 100644 --- a/documentation/en/howtos12_expand=1.html +++ b/documentation/en/howtos12_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13.html b/documentation/en/howtos13.html index db71392..b7ca926 100644 --- a/documentation/en/howtos13.html +++ b/documentation/en/howtos13.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=1.html b/documentation/en/howtos13_expand=1.html index 3f2bd43..ff2ba3e 100644 --- a/documentation/en/howtos13_expand=1.html +++ b/documentation/en/howtos13_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=2.html b/documentation/en/howtos13_expand=2.html index b64ce1b..a01b8bf 100644 --- a/documentation/en/howtos13_expand=2.html +++ b/documentation/en/howtos13_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=3.html b/documentation/en/howtos13_expand=3.html index adf69d0..b714a17 100644 --- a/documentation/en/howtos13_expand=3.html +++ b/documentation/en/howtos13_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=4.html b/documentation/en/howtos13_expand=4.html index e9fd901..bbafc8c 100644 --- a/documentation/en/howtos13_expand=4.html +++ b/documentation/en/howtos13_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=5.html b/documentation/en/howtos13_expand=5.html index 5c42293..d89cbc0 100644 --- a/documentation/en/howtos13_expand=5.html +++ b/documentation/en/howtos13_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos13_expand=6.html b/documentation/en/howtos13_expand=6.html index 64c4396..7f552bb 100644 --- a/documentation/en/howtos13_expand=6.html +++ b/documentation/en/howtos13_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos14.html b/documentation/en/howtos14.html index c232e39..c065574 100644 --- a/documentation/en/howtos14.html +++ b/documentation/en/howtos14.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos14_expand=1.html b/documentation/en/howtos14_expand=1.html index 4c5c744..c6fddf3 100644 --- a/documentation/en/howtos14_expand=1.html +++ b/documentation/en/howtos14_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos14_expand=2.html b/documentation/en/howtos14_expand=2.html index 18668e2..d2b15e8 100644 --- a/documentation/en/howtos14_expand=2.html +++ b/documentation/en/howtos14_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos20.html b/documentation/en/howtos20.html index 013d6e0..bdb675a 100644 --- a/documentation/en/howtos20.html +++ b/documentation/en/howtos20.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos21.html b/documentation/en/howtos21.html index 588842c..f3b3665 100644 --- a/documentation/en/howtos21.html +++ b/documentation/en/howtos21.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos21_answer=1.html b/documentation/en/howtos21_answer=1.html index cc2059f..c13a329 100644 --- a/documentation/en/howtos21_answer=1.html +++ b/documentation/en/howtos21_answer=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos21_answer=2.html b/documentation/en/howtos21_answer=2.html index dcd55d4..9e1ea1a 100644 --- a/documentation/en/howtos21_answer=2.html +++ b/documentation/en/howtos21_answer=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos21_answer=3.html b/documentation/en/howtos21_answer=3.html index c00a1c9..b783612 100644 --- a/documentation/en/howtos21_answer=3.html +++ b/documentation/en/howtos21_answer=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos21_answer=4.html b/documentation/en/howtos21_answer=4.html index 208d3e3..f989abd 100644 --- a/documentation/en/howtos21_answer=4.html +++ b/documentation/en/howtos21_answer=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22.html b/documentation/en/howtos22.html index bb83265..d9ddbe5 100644 --- a/documentation/en/howtos22.html +++ b/documentation/en/howtos22.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=1.html b/documentation/en/howtos22_expand=1.html index 3aa95d0..269d3c9 100644 --- a/documentation/en/howtos22_expand=1.html +++ b/documentation/en/howtos22_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=2.html b/documentation/en/howtos22_expand=2.html index 44cb81d..bd4d3c4 100644 --- a/documentation/en/howtos22_expand=2.html +++ b/documentation/en/howtos22_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=3.html b/documentation/en/howtos22_expand=3.html index 4b3037e..79ed647 100644 --- a/documentation/en/howtos22_expand=3.html +++ b/documentation/en/howtos22_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=4.html b/documentation/en/howtos22_expand=4.html index fcf7a63..5defbb6 100644 --- a/documentation/en/howtos22_expand=4.html +++ b/documentation/en/howtos22_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=5.html b/documentation/en/howtos22_expand=5.html index a753dd6..d8fa5d5 100644 --- a/documentation/en/howtos22_expand=5.html +++ b/documentation/en/howtos22_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos22_expand=6.html b/documentation/en/howtos22_expand=6.html index 06c641b..cbe776f 100644 --- a/documentation/en/howtos22_expand=6.html +++ b/documentation/en/howtos22_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23.html b/documentation/en/howtos23.html index aaa62cf..6d8172e 100644 --- a/documentation/en/howtos23.html +++ b/documentation/en/howtos23.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=1&expand=0.html b/documentation/en/howtos23_way=1&expand=0.html index d149f09..21342b1 100644 --- a/documentation/en/howtos23_way=1&expand=0.html +++ b/documentation/en/howtos23_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=1&expand=1.html b/documentation/en/howtos23_way=1&expand=1.html index 1b49ed2..a30ca15 100644 --- a/documentation/en/howtos23_way=1&expand=1.html +++ b/documentation/en/howtos23_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=1&expand=2.html b/documentation/en/howtos23_way=1&expand=2.html index 245b028..1227704 100644 --- a/documentation/en/howtos23_way=1&expand=2.html +++ b/documentation/en/howtos23_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=1.html b/documentation/en/howtos23_way=1.html index d149f09..21342b1 100644 --- a/documentation/en/howtos23_way=1.html +++ b/documentation/en/howtos23_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=0.html b/documentation/en/howtos23_way=2&expand=0.html index 34c78e3..0e4d26f 100644 --- a/documentation/en/howtos23_way=2&expand=0.html +++ b/documentation/en/howtos23_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=1.html b/documentation/en/howtos23_way=2&expand=1.html index 4c8b9d3..dd1dbaa 100644 --- a/documentation/en/howtos23_way=2&expand=1.html +++ b/documentation/en/howtos23_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=2&expand=2.html b/documentation/en/howtos23_way=2&expand=2.html index 20e9281..4f21fb9 100644 --- a/documentation/en/howtos23_way=2&expand=2.html +++ b/documentation/en/howtos23_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos23_way=2.html b/documentation/en/howtos23_way=2.html index 34c78e3..0e4d26f 100644 --- a/documentation/en/howtos23_way=2.html +++ b/documentation/en/howtos23_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos24.html b/documentation/en/howtos24.html index 05c22b6..8159fb4 100644 --- a/documentation/en/howtos24.html +++ b/documentation/en/howtos24.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos25.html b/documentation/en/howtos25.html index e5e951d..0ed3a78 100644 --- a/documentation/en/howtos25.html +++ b/documentation/en/howtos25.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos25_expand=1.html b/documentation/en/howtos25_expand=1.html index b6663d6..bd3cebd 100644 --- a/documentation/en/howtos25_expand=1.html +++ b/documentation/en/howtos25_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos25_expand=2.html b/documentation/en/howtos25_expand=2.html index 169281c..b75430f 100644 --- a/documentation/en/howtos25_expand=2.html +++ b/documentation/en/howtos25_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos30.html b/documentation/en/howtos30.html index 1730132..a24d2eb 100644 --- a/documentation/en/howtos30.html +++ b/documentation/en/howtos30.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos31.html b/documentation/en/howtos31.html index 588842c..f3b3665 100644 --- a/documentation/en/howtos31.html +++ b/documentation/en/howtos31.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos32.html b/documentation/en/howtos32.html index 6852f7a..9fb438a 100644 --- a/documentation/en/howtos32.html +++ b/documentation/en/howtos32.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos32_expand=1.html b/documentation/en/howtos32_expand=1.html index e9cc969..798a26a 100644 --- a/documentation/en/howtos32_expand=1.html +++ b/documentation/en/howtos32_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos32_expand=2.html b/documentation/en/howtos32_expand=2.html index 60e8d5b..637375a 100644 --- a/documentation/en/howtos32_expand=2.html +++ b/documentation/en/howtos32_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33.html b/documentation/en/howtos33.html index 04d9428..cf4c9d7 100644 --- a/documentation/en/howtos33.html +++ b/documentation/en/howtos33.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_expand=0.html b/documentation/en/howtos33_expand=0.html index 04d9428..cf4c9d7 100644 --- a/documentation/en/howtos33_expand=0.html +++ b/documentation/en/howtos33_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_expand=1.html b/documentation/en/howtos33_expand=1.html index bf465e7..eb83dad 100644 --- a/documentation/en/howtos33_expand=1.html +++ b/documentation/en/howtos33_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_expand=2.html b/documentation/en/howtos33_expand=2.html index b9196dc..95383ec 100644 --- a/documentation/en/howtos33_expand=2.html +++ b/documentation/en/howtos33_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=0.html b/documentation/en/howtos33_way=0&expand=0.html index 70cf682..c326488 100644 --- a/documentation/en/howtos33_way=0&expand=0.html +++ b/documentation/en/howtos33_way=0&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=1.html b/documentation/en/howtos33_way=0&expand=1.html index ec88d01..aeb6448 100644 --- a/documentation/en/howtos33_way=0&expand=1.html +++ b/documentation/en/howtos33_way=0&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=0&expand=2.html b/documentation/en/howtos33_way=0&expand=2.html index 062c6df..9c59c44 100644 --- a/documentation/en/howtos33_way=0&expand=2.html +++ b/documentation/en/howtos33_way=0&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=0.html b/documentation/en/howtos33_way=0.html index 70cf682..c326488 100644 --- a/documentation/en/howtos33_way=0.html +++ b/documentation/en/howtos33_way=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&.html b/documentation/en/howtos33_way=1&.html index 56e4eee..09744f2 100644 --- a/documentation/en/howtos33_way=1&.html +++ b/documentation/en/howtos33_way=1&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=0.html b/documentation/en/howtos33_way=1&expand=0.html index 56e4eee..09744f2 100644 --- a/documentation/en/howtos33_way=1&expand=0.html +++ b/documentation/en/howtos33_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=1.html b/documentation/en/howtos33_way=1&expand=1.html index 119bc0b..91288ee 100644 --- a/documentation/en/howtos33_way=1&expand=1.html +++ b/documentation/en/howtos33_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=2.html b/documentation/en/howtos33_way=1&expand=2.html index d4e24fc..c756193 100644 --- a/documentation/en/howtos33_way=1&expand=2.html +++ b/documentation/en/howtos33_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=3.html b/documentation/en/howtos33_way=1&expand=3.html index 108914d..d118198 100644 --- a/documentation/en/howtos33_way=1&expand=3.html +++ b/documentation/en/howtos33_way=1&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=4.html b/documentation/en/howtos33_way=1&expand=4.html index c20b427..9d3f4b7 100644 --- a/documentation/en/howtos33_way=1&expand=4.html +++ b/documentation/en/howtos33_way=1&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=5.html b/documentation/en/howtos33_way=1&expand=5.html index 4fb555f..10abea7 100644 --- a/documentation/en/howtos33_way=1&expand=5.html +++ b/documentation/en/howtos33_way=1&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=6.html b/documentation/en/howtos33_way=1&expand=6.html index 87c7352..cf0c204 100644 --- a/documentation/en/howtos33_way=1&expand=6.html +++ b/documentation/en/howtos33_way=1&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1&expand=7.html b/documentation/en/howtos33_way=1&expand=7.html index 106df2a..e54289a 100644 --- a/documentation/en/howtos33_way=1&expand=7.html +++ b/documentation/en/howtos33_way=1&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=1.html b/documentation/en/howtos33_way=1.html index 56e4eee..09744f2 100644 --- a/documentation/en/howtos33_way=1.html +++ b/documentation/en/howtos33_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&.html b/documentation/en/howtos33_way=2&.html index 5318d8d..fc4e87f 100644 --- a/documentation/en/howtos33_way=2&.html +++ b/documentation/en/howtos33_way=2&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=0.html b/documentation/en/howtos33_way=2&expand=0.html index 5318d8d..fc4e87f 100644 --- a/documentation/en/howtos33_way=2&expand=0.html +++ b/documentation/en/howtos33_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=1.html b/documentation/en/howtos33_way=2&expand=1.html index 09215df..a177999 100644 --- a/documentation/en/howtos33_way=2&expand=1.html +++ b/documentation/en/howtos33_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=2.html b/documentation/en/howtos33_way=2&expand=2.html index d23d584..7a9bbbd 100644 --- a/documentation/en/howtos33_way=2&expand=2.html +++ b/documentation/en/howtos33_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=3.html b/documentation/en/howtos33_way=2&expand=3.html index 21dfba9..eb11357 100644 --- a/documentation/en/howtos33_way=2&expand=3.html +++ b/documentation/en/howtos33_way=2&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=4.html b/documentation/en/howtos33_way=2&expand=4.html index 5eef0eb..8a8a68c 100644 --- a/documentation/en/howtos33_way=2&expand=4.html +++ b/documentation/en/howtos33_way=2&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=5.html b/documentation/en/howtos33_way=2&expand=5.html index 82138ca..f332999 100644 --- a/documentation/en/howtos33_way=2&expand=5.html +++ b/documentation/en/howtos33_way=2&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2&expand=6.html b/documentation/en/howtos33_way=2&expand=6.html index 1c97696..f3fb695 100644 --- a/documentation/en/howtos33_way=2&expand=6.html +++ b/documentation/en/howtos33_way=2&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=2.html b/documentation/en/howtos33_way=2.html index 5318d8d..fc4e87f 100644 --- a/documentation/en/howtos33_way=2.html +++ b/documentation/en/howtos33_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&.html b/documentation/en/howtos33_way=3&.html index 79b6c37..8d3b5f5 100644 --- a/documentation/en/howtos33_way=3&.html +++ b/documentation/en/howtos33_way=3&.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=0.html b/documentation/en/howtos33_way=3&expand=0.html index 79b6c37..8d3b5f5 100644 --- a/documentation/en/howtos33_way=3&expand=0.html +++ b/documentation/en/howtos33_way=3&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=1.html b/documentation/en/howtos33_way=3&expand=1.html index b5a9511..bd5394e 100644 --- a/documentation/en/howtos33_way=3&expand=1.html +++ b/documentation/en/howtos33_way=3&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=10.html b/documentation/en/howtos33_way=3&expand=10.html index 3baa440..9f7c7bd 100644 --- a/documentation/en/howtos33_way=3&expand=10.html +++ b/documentation/en/howtos33_way=3&expand=10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=11.html b/documentation/en/howtos33_way=3&expand=11.html index 3252d2c..975ea3f 100644 --- a/documentation/en/howtos33_way=3&expand=11.html +++ b/documentation/en/howtos33_way=3&expand=11.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=2.html b/documentation/en/howtos33_way=3&expand=2.html index 3087934..e1c5fff 100644 --- a/documentation/en/howtos33_way=3&expand=2.html +++ b/documentation/en/howtos33_way=3&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=3.html b/documentation/en/howtos33_way=3&expand=3.html index 811f8e3..6bf71d2 100644 --- a/documentation/en/howtos33_way=3&expand=3.html +++ b/documentation/en/howtos33_way=3&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=4.html b/documentation/en/howtos33_way=3&expand=4.html index 6656ef8..ccf7247 100644 --- a/documentation/en/howtos33_way=3&expand=4.html +++ b/documentation/en/howtos33_way=3&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=5.html b/documentation/en/howtos33_way=3&expand=5.html index c64e11b..54f5fe8 100644 --- a/documentation/en/howtos33_way=3&expand=5.html +++ b/documentation/en/howtos33_way=3&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=6.html b/documentation/en/howtos33_way=3&expand=6.html index be3dedc..e322fa8 100644 --- a/documentation/en/howtos33_way=3&expand=6.html +++ b/documentation/en/howtos33_way=3&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=7.html b/documentation/en/howtos33_way=3&expand=7.html index e86e251..c4c0557 100644 --- a/documentation/en/howtos33_way=3&expand=7.html +++ b/documentation/en/howtos33_way=3&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=8.html b/documentation/en/howtos33_way=3&expand=8.html index b72d7eb..ac8a0f8 100644 --- a/documentation/en/howtos33_way=3&expand=8.html +++ b/documentation/en/howtos33_way=3&expand=8.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3&expand=9.html b/documentation/en/howtos33_way=3&expand=9.html index 3e07397..8c675dc 100644 --- a/documentation/en/howtos33_way=3&expand=9.html +++ b/documentation/en/howtos33_way=3&expand=9.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos33_way=3.html b/documentation/en/howtos33_way=3.html index 79b6c37..8d3b5f5 100644 --- a/documentation/en/howtos33_way=3.html +++ b/documentation/en/howtos33_way=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos34.html b/documentation/en/howtos34.html index 48f1cef..580c223 100644 --- a/documentation/en/howtos34.html +++ b/documentation/en/howtos34.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos34_expand=1.html b/documentation/en/howtos34_expand=1.html index 89df240..b8c1878 100644 --- a/documentation/en/howtos34_expand=1.html +++ b/documentation/en/howtos34_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos40.html b/documentation/en/howtos40.html index 6fb0853..5593645 100644 --- a/documentation/en/howtos40.html +++ b/documentation/en/howtos40.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos41.html b/documentation/en/howtos41.html index 3e5f121..34cb7e5 100644 --- a/documentation/en/howtos41.html +++ b/documentation/en/howtos41.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos41_expand=1.html b/documentation/en/howtos41_expand=1.html index 469b013..8b083bc 100644 --- a/documentation/en/howtos41_expand=1.html +++ b/documentation/en/howtos41_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos41_expand=2.html b/documentation/en/howtos41_expand=2.html index aa9a0cb..bbab703 100644 --- a/documentation/en/howtos41_expand=2.html +++ b/documentation/en/howtos41_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos41_expand=3.html b/documentation/en/howtos41_expand=3.html index fe58f5e..b05fe09 100644 --- a/documentation/en/howtos41_expand=3.html +++ b/documentation/en/howtos41_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos41_expand=4.html b/documentation/en/howtos41_expand=4.html index e1170e9..da27bbe 100644 --- a/documentation/en/howtos41_expand=4.html +++ b/documentation/en/howtos41_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42.html b/documentation/en/howtos42.html index e12acf6..d56bff4 100644 --- a/documentation/en/howtos42.html +++ b/documentation/en/howtos42.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42_expand=0.html b/documentation/en/howtos42_expand=0.html index e12acf6..d56bff4 100644 --- a/documentation/en/howtos42_expand=0.html +++ b/documentation/en/howtos42_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42_expand=1.html b/documentation/en/howtos42_expand=1.html index f676f19..223e811 100644 --- a/documentation/en/howtos42_expand=1.html +++ b/documentation/en/howtos42_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42_expand=2.html b/documentation/en/howtos42_expand=2.html index 5f535b8..c3986fd 100644 --- a/documentation/en/howtos42_expand=2.html +++ b/documentation/en/howtos42_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42_expand=3.html b/documentation/en/howtos42_expand=3.html index 899c2fd..2ae6c67 100644 --- a/documentation/en/howtos42_expand=3.html +++ b/documentation/en/howtos42_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos42_expand=4.html b/documentation/en/howtos42_expand=4.html index c4270cf..66f0600 100644 --- a/documentation/en/howtos42_expand=4.html +++ b/documentation/en/howtos42_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43.html b/documentation/en/howtos43.html index 3468436..3bd3718 100644 --- a/documentation/en/howtos43.html +++ b/documentation/en/howtos43.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43_expand=1.html b/documentation/en/howtos43_expand=1.html index b9f66ea..4c05c3d 100644 --- a/documentation/en/howtos43_expand=1.html +++ b/documentation/en/howtos43_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43_expand=2.html b/documentation/en/howtos43_expand=2.html index 79d17fc..f791e13 100644 --- a/documentation/en/howtos43_expand=2.html +++ b/documentation/en/howtos43_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43_expand=3.html b/documentation/en/howtos43_expand=3.html index 312ab04..0974cfe 100644 --- a/documentation/en/howtos43_expand=3.html +++ b/documentation/en/howtos43_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43_expand=4.html b/documentation/en/howtos43_expand=4.html index 1a397b4..4874bc3 100644 --- a/documentation/en/howtos43_expand=4.html +++ b/documentation/en/howtos43_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos43_expand=5.html b/documentation/en/howtos43_expand=5.html index bca88be..09e9b91 100644 --- a/documentation/en/howtos43_expand=5.html +++ b/documentation/en/howtos43_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos50.html b/documentation/en/howtos50.html index 5180f08..1d23f51 100644 --- a/documentation/en/howtos50.html +++ b/documentation/en/howtos50.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos51.html b/documentation/en/howtos51.html index 4ddaa6b..93725d2 100644 --- a/documentation/en/howtos51.html +++ b/documentation/en/howtos51.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos51_expand=0.html b/documentation/en/howtos51_expand=0.html index 4ddaa6b..93725d2 100644 --- a/documentation/en/howtos51_expand=0.html +++ b/documentation/en/howtos51_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos51_expand=1.html b/documentation/en/howtos51_expand=1.html index 1621a6f..25c9197 100644 --- a/documentation/en/howtos51_expand=1.html +++ b/documentation/en/howtos51_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos52.html b/documentation/en/howtos52.html index 0596d9d..c34b821 100644 --- a/documentation/en/howtos52.html +++ b/documentation/en/howtos52.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos52_expand=0.html b/documentation/en/howtos52_expand=0.html index 0596d9d..c34b821 100644 --- a/documentation/en/howtos52_expand=0.html +++ b/documentation/en/howtos52_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos52_expand=1.html b/documentation/en/howtos52_expand=1.html index 9169665..19aa75f 100644 --- a/documentation/en/howtos52_expand=1.html +++ b/documentation/en/howtos52_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos53.html b/documentation/en/howtos53.html index b09444a..6fa6be8 100644 --- a/documentation/en/howtos53.html +++ b/documentation/en/howtos53.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos53_expand=0.html b/documentation/en/howtos53_expand=0.html index b09444a..6fa6be8 100644 --- a/documentation/en/howtos53_expand=0.html +++ b/documentation/en/howtos53_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos53_expand=1.html b/documentation/en/howtos53_expand=1.html index 78abb85..3b186ac 100644 --- a/documentation/en/howtos53_expand=1.html +++ b/documentation/en/howtos53_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59.html b/documentation/en/howtos59.html index 0467ecb..3dd4b1b 100644 --- a/documentation/en/howtos59.html +++ b/documentation/en/howtos59.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59_expand=1.html b/documentation/en/howtos59_expand=1.html index f681bf4..27a9844 100644 --- a/documentation/en/howtos59_expand=1.html +++ b/documentation/en/howtos59_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59_expand=2.html b/documentation/en/howtos59_expand=2.html index 670f34e..c9741ac 100644 --- a/documentation/en/howtos59_expand=2.html +++ b/documentation/en/howtos59_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59_expand=3.html b/documentation/en/howtos59_expand=3.html index baf5ded..66cb1b7 100644 --- a/documentation/en/howtos59_expand=3.html +++ b/documentation/en/howtos59_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59_expand=4.html b/documentation/en/howtos59_expand=4.html index 660e8be..9018b92 100644 --- a/documentation/en/howtos59_expand=4.html +++ b/documentation/en/howtos59_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos59_expand=5.html b/documentation/en/howtos59_expand=5.html index 3389c30..b80582a 100644 --- a/documentation/en/howtos59_expand=5.html +++ b/documentation/en/howtos59_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos60.html b/documentation/en/howtos60.html index b667eb8..17e7ae1 100644 --- a/documentation/en/howtos60.html +++ b/documentation/en/howtos60.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos61.html b/documentation/en/howtos61.html index 098ca14..6376881 100644 --- a/documentation/en/howtos61.html +++ b/documentation/en/howtos61.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos62.html b/documentation/en/howtos62.html index d5bb035..64ed300 100644 --- a/documentation/en/howtos62.html +++ b/documentation/en/howtos62.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos63.html b/documentation/en/howtos63.html index a7fa149..5b58fe2 100644 --- a/documentation/en/howtos63.html +++ b/documentation/en/howtos63.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos90.html b/documentation/en/howtos90.html index b8ac6e7..cb30e11 100644 --- a/documentation/en/howtos90.html +++ b/documentation/en/howtos90.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91.html b/documentation/en/howtos91.html index ef5cf8d..f7ada40 100644 --- a/documentation/en/howtos91.html +++ b/documentation/en/howtos91.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91_expand=0.html b/documentation/en/howtos91_expand=0.html index ef5cf8d..f7ada40 100644 --- a/documentation/en/howtos91_expand=0.html +++ b/documentation/en/howtos91_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91_expand=1.html b/documentation/en/howtos91_expand=1.html index 3427756..f6506f0 100644 --- a/documentation/en/howtos91_expand=1.html +++ b/documentation/en/howtos91_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91_expand=2.html b/documentation/en/howtos91_expand=2.html index 6edd7b6..732c97a 100644 --- a/documentation/en/howtos91_expand=2.html +++ b/documentation/en/howtos91_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91_expand=3.html b/documentation/en/howtos91_expand=3.html index 3a1fbc0..00509b8 100644 --- a/documentation/en/howtos91_expand=3.html +++ b/documentation/en/howtos91_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos91_expand=4.html b/documentation/en/howtos91_expand=4.html index 67f65ff..0c2d91d 100644 --- a/documentation/en/howtos91_expand=4.html +++ b/documentation/en/howtos91_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92.html b/documentation/en/howtos92.html index f6132b4..70f1af1 100644 --- a/documentation/en/howtos92.html +++ b/documentation/en/howtos92.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92_expand=0.html b/documentation/en/howtos92_expand=0.html index f6132b4..70f1af1 100644 --- a/documentation/en/howtos92_expand=0.html +++ b/documentation/en/howtos92_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92_expand=1.html b/documentation/en/howtos92_expand=1.html index ed6d92f..c38340f 100644 --- a/documentation/en/howtos92_expand=1.html +++ b/documentation/en/howtos92_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92_expand=2.html b/documentation/en/howtos92_expand=2.html index 4d496a3..67526a0 100644 --- a/documentation/en/howtos92_expand=2.html +++ b/documentation/en/howtos92_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92_expand=3.html b/documentation/en/howtos92_expand=3.html index 3102a29..1ffe1f6 100644 --- a/documentation/en/howtos92_expand=3.html +++ b/documentation/en/howtos92_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtos92_expand=4.html b/documentation/en/howtos92_expand=4.html index c1fd726..c6540c6 100644 --- a/documentation/en/howtos92_expand=4.html +++ b/documentation/en/howtos92_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa0.html b/documentation/en/howtosa0.html index 39cbdd6..3f4cdf3 100644 --- a/documentation/en/howtosa0.html +++ b/documentation/en/howtosa0.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa1.html b/documentation/en/howtosa1.html index 7f7b3fb..5bc9ece 100644 --- a/documentation/en/howtosa1.html +++ b/documentation/en/howtosa1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa1_expand=1.html b/documentation/en/howtosa1_expand=1.html index 5a5669b..12c7837 100644 --- a/documentation/en/howtosa1_expand=1.html +++ b/documentation/en/howtosa1_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa2.html b/documentation/en/howtosa2.html index 85625ae..17dcbe0 100644 --- a/documentation/en/howtosa2.html +++ b/documentation/en/howtosa2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa2_expand=1.html b/documentation/en/howtosa2_expand=1.html index 26262de..cc30a7f 100644 --- a/documentation/en/howtosa2_expand=1.html +++ b/documentation/en/howtosa2_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa2_expand=2.html b/documentation/en/howtosa2_expand=2.html index 22dd095..c6fdfd9 100644 --- a/documentation/en/howtosa2_expand=2.html +++ b/documentation/en/howtosa2_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa3.html b/documentation/en/howtosa3.html index 0fe3710..50ff2a1 100644 --- a/documentation/en/howtosa3.html +++ b/documentation/en/howtosa3.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa3_expand=1.html b/documentation/en/howtosa3_expand=1.html index a80f04d..f344f29 100644 --- a/documentation/en/howtosa3_expand=1.html +++ b/documentation/en/howtosa3_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa3_expand=2.html b/documentation/en/howtosa3_expand=2.html index 24b7661..c05e18f 100644 --- a/documentation/en/howtosa3_expand=2.html +++ b/documentation/en/howtosa3_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa4.html b/documentation/en/howtosa4.html index 2ebd55f..3e0e539 100644 --- a/documentation/en/howtosa4.html +++ b/documentation/en/howtosa4.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/howtosa4_expand=1.html b/documentation/en/howtosa4_expand=1.html index baf6dfe..d432d5a 100644 --- a/documentation/en/howtosa4_expand=1.html +++ b/documentation/en/howtosa4_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/index.html b/documentation/en/index.html index 7a5f981..c699f04 100644 --- a/documentation/en/index.html +++ b/documentation/en/index.html @@ -12,7 +12,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -123,6 +123,18 @@ Such functions are outside the scope of dvdisaster's internal design and goals.<

+ 21.11.2010
+ + dvdisaster 0.79.3 released +

+ 07.11.2010
+ + Added Windows and Mac OS X versions for 0.72.2 +

+ 31.10.2010
+ + dvdisaster 0.72.2 released +

28.02.2010
dvdisaster 0.79.2 released @@ -140,14 +152,6 @@ of the GTK library Project represention on SourceForge may be outdated

- 08.08.2009
- - dvdisaster 0.72.1 released -

- 04.07.2009
- - dvdisaster 0.72 released -

diff --git a/documentation/en/index10.html b/documentation/en/index10.html index 540eaca..1595c39 100644 --- a/documentation/en/index10.html +++ b/documentation/en/index10.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/index10_expand=1.html b/documentation/en/index10_expand=1.html index fe83cfe..87a0362 100644 --- a/documentation/en/index10_expand=1.html +++ b/documentation/en/index10_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/index10_expand=2.html b/documentation/en/index10_expand=2.html index 2230860..8c5f2a9 100644 --- a/documentation/en/index10_expand=2.html +++ b/documentation/en/index10_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/index20.html b/documentation/en/index20.html index 3e3ea54..c152be6 100644 --- a/documentation/en/index20.html +++ b/documentation/en/index20.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/index30.html b/documentation/en/index30.html index 19e146d..dbff0e5 100644 --- a/documentation/en/index30.html +++ b/documentation/en/index30.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/news.html b/documentation/en/news.html index d7f1b40..492d334 100644 --- a/documentation/en/news.html +++ b/documentation/en/news.html @@ -11,7 +11,7 @@ dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version @@ -72,6 +72,88 @@

dvdisaster News

+ + + + + +
dvdisaster 0.79.3 released21.11.2010
+ + + + +
+ + + + +
+ + +
+ +For GNU/Linux, the SG_IO driver is used by default +for accessing optical drives. This resolves the problem +with system freezes on parallel SCSI adapters which were +caused by the old CDROM_SEND_PACKET driver. +The RS03 codec now contains Altivec optimizations +on PowerPC platforms. + +
+
 
+ + + + + +
Added Windows and Mac OS X versions for 0.72.207.11.2010
+ + + + +
+ + + + +
+ + +
+ +Windows and Mac OS X versions of 0.72.2 are now available. +They were built using the updated development environment of 0.79.x. +This results in shipping with newer versions of the GTK+ libraries +and might yield slightly different visuals and behaviour. + +
+
 
+ + + + + +
dvdisaster 0.72.2 released31.10.2010
+ + + + +
+ + + + +
+ + +
+ +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved upward compatibility with dvdisaster 0.79.x. + +
+
 
diff --git a/documentation/en/news.php b/documentation/en/news.php index 087b23d..7991427 100644 --- a/documentation/en/news.php +++ b/documentation/en/news.php @@ -21,6 +21,28 @@ $news_counter = 0; news_headline("dvdisaster News"); +news_item("21.11.2010", "dvdisaster 0.79.3 released", " +For GNU/Linux, the SG_IO driver is used by default +for accessing optical drives. This resolves the problem +with system freezes on parallel SCSI adapters which were +caused by the old CDROM_SEND_PACKET driver. +The RS03 codec now contains Altivec optimizations +on PowerPC platforms. +", 18, "2010-11-21T00:00:00Z", "2010-11-21T00:00:00Z"); + +news_item("07.11.2010", "Added Windows and Mac OS X versions for 0.72.2", " +Windows and Mac OS X versions of 0.72.2 are now available. +They were built using the updated development environment of 0.79.x. +This results in shipping with newer versions of the GTK+ libraries +and might yield slightly different visuals and behaviour. +", 17, "2010-11-07T00:00:00Z", "2010-11-07T00:00:00Z"); + +news_item("31.10.2010", "dvdisaster 0.72.2 released", " +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved upward compatibility with dvdisaster 0.79.x. +", 16, "2010-10-31T00:00:00Z", "2010-10-31T00:00:00Z"); + news_item("28.02.2010", "dvdisaster 0.79.2 released", " Mac OS X binaries are available again as the Mac OS X development environment has been updated for this version. diff --git a/documentation/en/news2007.html b/documentation/en/news2007.html index 6f9ed78..87546e6 100644 --- a/documentation/en/news2007.html +++ b/documentation/en/news2007.html @@ -11,7 +11,7 @@ \n"; + + echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; + + if($src_md5 != "hidden") + echo "\n"; + echo " \n"; + + if($mac_md5 != "none") + { echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; + + if($mac_md5 != "hidden") + echo "\n"; + echo " \n"; + } + + if($win_md5 != "none") + { echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; + + if($win_md5 != "hidden") + echo "\n"; + echo " \n"; + } +} \ No newline at end of file diff --git a/documentation/include/toc.php b/documentation/include/toc.php index a2519f8..ffcce55 100644 --- a/documentation/include/toc.php +++ b/documentation/include/toc.php @@ -254,6 +254,11 @@ subsection("download10"); en("System requirements"); ru("Системные требования"); +subsection("download60"); + de("(Keine) Bedingungen zum Herunterladen"); + en("(No) download terms"); + ru("(No) download terms"); + subsection("download20"); de("Digitale Unterschrift"); en("Digital signature"); @@ -275,7 +280,7 @@ subsection("download40"); subsection("download50"); de("Zusätzliche Papiere"); en("Additional resources"); - ru("Аdditional resources"); + ru("Additional resources"); # Questions and Answers diff --git a/documentation/ru/download.html b/documentation/ru/download.html index 52d0cfd..d9920bc 100644 --- a/documentation/ru/download.html +++ b/documentation/ru/download.html @@ -11,7 +11,7 @@ + - + @@ -102,7 +103,7 @@ dvdisaster имеется для последних в Приглашаем тестеров для предстоящих версий dvdisaster, но следует иметь в виду, что остались еще ошибки и несоответствия. Текущая нестабильная версия - -0.79 (devel-2). +0.79 (devel-3).

@@ -110,23 +111,30 @@ dvdisaster имеется для последних в

dvdisaster 0.79.2 released
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/news2008.html b/documentation/en/news2008.html index 705f3d9..cbb3b86 100644 --- a/documentation/en/news2008.html +++ b/documentation/en/news2008.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/news2009.html b/documentation/en/news2009.html index c682121..b3b4ea3 100644 --- a/documentation/en/news2009.html +++ b/documentation/en/news2009.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/qa.html b/documentation/en/qa.html index bdf6336..287f220 100644 --- a/documentation/en/qa.html +++ b/documentation/en/qa.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/qa10.html b/documentation/en/qa10.html index f9275a1..930718c 100644 --- a/documentation/en/qa10.html +++ b/documentation/en/qa10.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/qa20.html b/documentation/en/qa20.html index bb64606..c2fa99c 100644 --- a/documentation/en/qa20.html +++ b/documentation/en/qa20.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/en/qa_pipo.html b/documentation/en/qa_pipo.html index 883052d..85d07f3 100644 --- a/documentation/en/qa_pipo.html +++ b/documentation/en/qa_pipo.html @@ -11,7 +11,7 @@
dvdisaster - Version 0.72.1 / 0.79 (devel-2) + Version 0.72.2 / 0.79 (devel-3)  To the Internet version diff --git a/documentation/include/dict_de.php b/documentation/include/dict_de.php index 6fd994c..6fc1442 100644 --- a/documentation/include/dict_de.php +++ b/documentation/include/dict_de.php @@ -22,4 +22,10 @@ $trans_hosting="Diese Seiten liegen auf"; $trans_fdl="Die unveränderte Wiedergabe und Verteilung dieses gesamten Textes in beliebiger Form ist gestattet, sofern dieser Hinweis erhalten bleibt."; $trans_copyright="Copyright 2004-2010 Carsten Gnörlich."; $trans_modified="Die Informationen in diesem Handbuch beziehen sich auf die Originalversion von dvdisaster und sind möglicherweise nicht zutreffend."; + +$trans_sourcecode="Quellkode für alle Betriebssysteme:"; +$trans_signature="Digitale Unterschrift:"; +$trans_md5="MD5-Prüfsumme:"; +$trans_macbinary="Binärversion für Mac OS X 10.5 / x86:"; +$trans_winbinary="Binärversion für Windows:"; ?> \ No newline at end of file diff --git a/documentation/include/dict_en.php b/documentation/include/dict_en.php index 555c220..759d213 100644 --- a/documentation/include/dict_en.php +++ b/documentation/include/dict_en.php @@ -22,4 +22,10 @@ $trans_hosting="Hosted by"; $trans_fdl="Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved."; $trans_copyright="Copyright 2004-2010 Carsten Gnörlich."; $trans_modified="Information in this handbook relates to the original version of dvdisaster and may not be applicable."; + +$trans_sourcecode="Source code for all operating systems:"; +$trans_signature="Digital signature:"; +$trans_md5="MD5 checksum:"; +$trans_macbinary="Binary for Mac OS X 10.5 / x86:"; +$trans_winbinary="Binary for Windows:"; ?> \ No newline at end of file diff --git a/documentation/include/dict_ru.php b/documentation/include/dict_ru.php index 381e433..56bace8 100644 --- a/documentation/include/dict_ru.php +++ b/documentation/include/dict_ru.php @@ -22,4 +22,10 @@ $trans_hosting="Размещено на"; $trans_fdl="Дословное копирование и распространение всей этой статьи разрешается на любом носителе, при условии, что это уведомление сохраняется."; $trans_copyright="Copyright 2007-2009 Igor Gorbounov."; $trans_modified="Информация в этом руководстве относится к первоначальной версии программы dvdisaster и не может быть применима."; + +$trans_sourcecode="Исходные тексты для всех операционных систем:"; +$trans_signature="Цифровая подпись:"; +$trans_md5="MD5 checksum:"; +$trans_macbinary="Двоичная версия для Mac OS X 10.5 / x86:"; +$trans_winbinary="Двоичная версия для Windows:"; ?> diff --git a/documentation/include/download.php b/documentation/include/download.php new file mode 100644 index 0000000..f05e034 --- /dev/null +++ b/documentation/include/download.php @@ -0,0 +1,47 @@ +$trans_version $version
  $trans_sourcecode dvdisaster-$version.tar.bz2
$trans_signature dvdisaster-$version.tar.bz2.gpg
$trans_md5 $src_md5
$trans_macbinary dvdisaster-$version.app.zip
$trans_signature dvdisaster-$version.app.zip.gpg
$trans_md5 $mac_md5
$trans_winbinary dvdisaster-$version-setup.exe
$trans_signature dvdisaster-$version-setup.exe.gpg
$trans_md5 $win_md5
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
- + @@ -149,6 +157,18 @@ dvdisaster имеется для последних в Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -183,10 +203,17 @@ please try getting dvdisaster via

+ + + + + + +
dvdisaster-0.724 июля 2009
dvdisaster-0.7207 Nov 2010
- + - + + + + - + - + + + + - + - - + + +
  Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Show older releases in the 0.72 version branch
dvdisaster-0.70.6.tar.bz2
Цифровая подпись:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Двоичный пакет для Windows:  dvdisaster-0.70.6-setup.exe
Цифровая подпись:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/ru/download.php b/documentation/ru/download.php index a048000..91896b1 100644 --- a/documentation/ru/download.php +++ b/documentation/ru/download.php @@ -56,23 +56,42 @@ if(!strcmp($have_experimental, "yes")) - + diff --git a/documentation/ru/download10.html b/documentation/ru/download10.html index 1c4c2cd..ee540b9 100644 --- a/documentation/ru/download10.html +++ b/documentation/ru/download10.html @@ -11,7 +11,7 @@ + - + diff --git a/documentation/ru/download20.html b/documentation/ru/download20.html index d6bb4bd..6a4d5e9 100644 --- a/documentation/ru/download20.html +++ b/documentation/ru/download20.html @@ -11,7 +11,7 @@ + - + @@ -97,6 +98,14 @@ sub 1024g/091AD320 2003-08-22 отпечаток ключа непосредственно от разработчиков. В тему письма вставьте строку "GPG finger print". +

MD5 checksum

+ +Contrary to the digital signature, MD5 checksums are cryptographically weak: +It is possible to create a manipulated package which still has the same +checksum as the original. However MD5 checksums are sufficient for a quick +check whether the download has finished completely and without transmission +errors. + diff --git a/documentation/ru/download20.php b/documentation/ru/download20.php index 3a9e050..a58ebb9 100644 --- a/documentation/ru/download20.php +++ b/documentation/ru/download20.php @@ -35,6 +35,14 @@ sub 1024g/091AD320 2003-08-22 отпечаток ключа непосредственно от разработчиков. В тему письма вставьте строку "GPG finger print". +

MD5 checksum

+ +Contrary to the digital signature, MD5 checksums are cryptographically weak: +It is possible to create a manipulated package which still has the same +checksum as the original. However MD5 checksums are sufficient for a quick +check whether the download has finished completely and without transmission +errors. + + - + @@ -113,7 +114,7 @@ GTK+.

Установка двоичных версий для Windows

Для установки Windows-версии, запускайте на выполнение двоичный файл -(например, dvdisaster-0.79.2-setup.exe) и следуйте диалогу в процессе установки.

+(например, dvdisaster-0.79.3-setup.exe) и следуйте диалогу в процессе установки.

Предупреждение: dvdisaster НЕ устанавливается путем ручной распаковки программы setup.exe или путем копирования его из уже diff --git a/documentation/ru/download40.html b/documentation/ru/download40.html index 39d18b3..7f1587e 100644 --- a/documentation/ru/download40.html +++ b/documentation/ru/download40.html @@ -11,7 +11,7 @@

+ - + @@ -129,22 +130,24 @@ for the graphical user interface. [in progress] Для альфа-версий используется такой же формат пакетов, как и для нормальных версий.

dvdisaster-0.724 июля 2009
dvdisaster-0.7207 Nov 2010
- + - + + +"; +?> + + - + - + + +"; +?> + + - + - + +"; +?> + @@ -82,18 +101,57 @@ if(!strcmp($have_experimental, "yes")) else { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -118,6 +176,18 @@ if(!strcmp($have_experimental, "yes")) Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -152,10 +222,17 @@ please try getting dvdisaster via

+ + + + + + +
  Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Hide older releases in the 0.72 version branch
Version 0.72.1
  Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
MD5 checksum: 4da96566bc003be93d9dfb0109b4aa1d
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
MD5 checksum: 924b5677f69473b6b87991e01779a541
Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
MD5 checksum: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Исходные тексты для всех операционных систем:  dvdisaster-0.72.tar.bz2
Цифровая подпись:  dvdisaster-0.72.tar.bz2.gpg
MD5 checksum: efa35607d91412a7ff185722f270fb8a
Двоичная версия для Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- сначала прочитайте эти советы
Цифровая подпись:  dvdisaster-0.72.app.zip.gpg
MD5 checksum: 1f28385b2b6d64b664fd416eb4c85e80
Двоичная версия для Windows:  dvdisaster-0.72-setup.exe
Цифровая подпись:  dvdisaster-0.72-setup.exe.gpg
MD5 checksum: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Цифровая подпись:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Двоичный пакет для Windows:  dvdisaster-0.70.6-setup.exe
Цифровая подпись:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
- + + - + @@ -102,7 +103,7 @@ dvdisaster имеется для последних в Приглашаем тестеров для предстоящих версий dvdisaster, но следует иметь в виду, что остались еще ошибки и несоответствия. Текущая нестабильная версия - -0.79 (devel-2). +0.79 (devel-3).

@@ -110,23 +111,30 @@ dvdisaster имеется для последних в

dvdisaster-0.7928 Feb 2010
dvdisaster-0.7921 Nov 2010
- + - + + - + - + + - + - +
  Исходные тексты для всех операционных систем: dvdisaster-0.79.2.tar.bz2
dvdisaster-0.79.3.tar.bz2
Цифровая подпись: dvdisaster-0.79.2.tar.bz2.gpg
dvdisaster-0.79.3.tar.bz2.gpg
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- сначала прочитайте эти советы
dvdisaster-0.79.3.app.zip
Цифровая подпись: dvdisaster-0.79.2.app.zip.gpg
dvdisaster-0.79.3.app.zip.gpg
Двоичная версия для Windows: dvdisaster-0.79.2-setup.exe
dvdisaster-0.79.3-setup.exe
Цифровая подпись: dvdisaster-0.79.2-setup.exe.gpg
dvdisaster-0.79.3-setup.exe.gpg
Show older releases in the 0.79 version branch
@@ -155,6 +158,18 @@ for the graphical user interface. [in progress] All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

+0.79.3 (21-Nov-2010)
+

    +
  • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
  • +
  • Michael Klein provided Altivec optimization for the RS03 codec. +
  • +
+ 0.79.2 (28-Feb-2010)
  • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/ru/download40.php b/documentation/ru/download40.php index e1dbd12..cb48695 100644 --- a/documentation/ru/download40.php +++ b/documentation/ru/download40.php @@ -9,6 +9,7 @@ # navigation and news if appropriate. require("../include/dvdisaster.php"); +require("../include/download.php"); begin_page(); $show_all=$_GET["showall"]; ?> @@ -68,48 +69,24 @@ for the graphical user interface. [in progress]
  • Для альфа-версий используется такой же формат пакетов, как и для нормальных версий.

    - + @@ -119,6 +96,18 @@ for the graphical user interface. [in progress]All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

    +0.79.3 (21-Nov-2010)
    +

      +
    • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
    • +
    • Michael Klein provided Altivec optimization for the RS03 codec. +
    • +
    + 0.79.2 (28-Feb-2010)
    • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/ru/download40_showall=0.html b/documentation/ru/download40_showall=0.html index 39d18b3..7f1587e 100644 --- a/documentation/ru/download40_showall=0.html +++ b/documentation/ru/download40_showall=0.html @@ -11,7 +11,7 @@
    + - + @@ -129,22 +130,24 @@ for the graphical user interface. [in progress] Для альфа-версий используется такой же формат пакетов, как и для нормальных версий.

    dvdisaster-0.7928 Feb 2010
    dvdisaster-0.7921 Nov 2010
    - - - - - - - - - - - - - - - - - - - - - - - - - -\n"; + } + else + { echo " \n"; + echo " \n"; + + download_version("0.79.2", 1, "378ed135c2faf0eaf643125d1f7726c6", "f673e41b5ddc31a6ecb48a5f053de885", "0b4c0b46e827c7f796416473511ab036"); + + download_version("0.79.1", 1, "ba6d0178dc03119080e07ef0a2967c38", "none", "b4c62833a2447097950b563e4a7b2065"); + } ?>
      Исходные тексты для всех операционных систем: dvdisaster-0.79.2.tar.bz2
    Цифровая подпись: dvdisaster-0.79.2.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- сначала прочитайте эти советы
    Цифровая подпись: dvdisaster-0.79.2.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.79.2-setup.exe
    Цифровая подпись: dvdisaster-0.79.2-setup.exe.gpg
    Show older releases in the 0.79 version branch
    Hide older releases in the 0.79 version branch
      Исходные тексты для всех операционных систем: dvdisaster-0.79.1.tar.bz2
    Цифровая подпись: dvdisaster-0.79.1.tar.bz2.gpg
    Двоичная версия для Windows: dvdisaster-0.79.1-setup.exe
    Цифровая подпись: dvdisaster-0.79.1-setup.exe.gpg
    Show older releases in the 0.79 version branch
    Hide older releases in the 0.79 version branch
    dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
    Скачать
    ·Системные требования
    ·(No) download terms
    ·Цифровая подпись
    ·Установка
    ·Альфа (нестабильные) версии
    ·Аdditional resources
    ·Additional resources
    Вопросы и ответы
    - + + - + @@ -129,39 +130,59 @@ for the graphical user interface. [in progress] Для альфа-версий используется такой же формат пакетов, как и для нормальных версий.

    dvdisaster-0.7928 Feb 2010
    dvdisaster-0.7921 Nov 2010
    - + - + + - + - + + - + - +
      Исходные тексты для всех операционных систем: dvdisaster-0.79.2.tar.bz2
    dvdisaster-0.79.3.tar.bz2
    Цифровая подпись: dvdisaster-0.79.2.tar.bz2.gpg
    dvdisaster-0.79.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- сначала прочитайте эти советы
    dvdisaster-0.79.3.app.zip
    Цифровая подпись: dvdisaster-0.79.2.app.zip.gpg
    dvdisaster-0.79.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.79.2-setup.exe
    dvdisaster-0.79.3-setup.exe
    Цифровая подпись: dvdisaster-0.79.2-setup.exe.gpg
    dvdisaster-0.79.3-setup.exe.gpg
    Show older releases in the 0.79 version branch
    @@ -155,6 +158,18 @@ for the graphical user interface. [in progress] All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

    +0.79.3 (21-Nov-2010)
    +

      +
    • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
    • +
    • Michael Klein provided Altivec optimization for the RS03 codec. +
    • +
    + 0.79.2 (28-Feb-2010)
    • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/ru/download40_showall=1.html b/documentation/ru/download40_showall=1.html index b56a575..516342c 100644 --- a/documentation/ru/download40_showall=1.html +++ b/documentation/ru/download40_showall=1.html @@ -11,7 +11,7 @@
    dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
    Скачать
    ·Системные требования
    ·(No) download terms
    ·Цифровая подпись
    ·Установка
    ·Альфа (нестабильные) версии
    ·Аdditional resources
    ·Additional resources
    Вопросы и ответы
    - + @@ -170,6 +191,18 @@ for the graphical user interface. [in progress]All platforms: These releases contain major internal changes compared to 0.72.x. Please use them carefully.

    +0.79.3 (21-Nov-2010)
    +

      +
    • GNU/Linux: Starting with this version the SG_IO driver is used by default +for accessing optical drives; the previously used +CDROM_SEND_PACKET driver can be selected optionally. +Driver defaults were the other way around in previous versions; +but in recent Linux kernels the SG_IO driver provides better +compatibility.
    • +
    • Michael Klein provided Altivec optimization for the RS03 codec. +
    • +
    + 0.79.2 (28-Feb-2010)
    • A binary package for Mac OS X is available now. The Mac OS X diff --git a/documentation/ru/download50.html b/documentation/ru/download50.html index 5b8c6a3..a02a225 100644 --- a/documentation/ru/download50.html +++ b/documentation/ru/download50.html @@ -1,7 +1,7 @@ - Аdditional resources + Additional resources @@ -11,7 +11,7 @@
    + - + diff --git a/documentation/ru/download60.html b/documentation/ru/download60.html new file mode 100644 index 0000000..9ea4b07 --- /dev/null +++ b/documentation/ru/download60.html @@ -0,0 +1,168 @@ + + + + (No) download terms + + + + + +
    dvdisaster-0.7928 Feb 2010
    dvdisaster-0.7921 Nov 2010
    + + + + + + + + + + + + + + + + + + + + - + + + + - - + - + + + +
      Исходные тексты для всех операционных систем: dvdisaster-0.79.3.tar.bz2
    Цифровая подпись: dvdisaster-0.79.3.tar.bz2.gpg
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.79.3.app.zip
    Цифровая подпись: dvdisaster-0.79.3.app.zip.gpg
    Двоичная версия для Windows: dvdisaster-0.79.3-setup.exe
    Цифровая подпись: dvdisaster-0.79.3-setup.exe.gpg
    Hide older releases in the 0.79 version branch
    Версия 0.79.2
      Исходные тексты для всех операционных систем:  dvdisaster-0.79.2.tar.bz2
    Цифровая подпись:  dvdisaster-0.79.2.tar.bz2.gpg
    MD5 checksum: 378ed135c2faf0eaf643125d1f7726c6
    Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.79.2.app.zip -- сначала прочитайте эти советы
    dvdisaster-0.79.2.app.zip
    Цифровая подпись:  dvdisaster-0.79.2.app.zip.gpg
    MD5 checksum: f673e41b5ddc31a6ecb48a5f053de885
    Двоичная версия для Windows:  dvdisaster-0.79.2-setup.exe
    Цифровая подпись:  dvdisaster-0.79.2-setup.exe.gpg
    MD5 checksum: 0b4c0b46e827c7f796416473511ab036
    Hide older releases in the 0.79 version branch
    Версия 0.79.1
      Исходные тексты для всех операционных систем:  dvdisaster-0.79.1.tar.bz2
    Цифровая подпись:  dvdisaster-0.79.1.tar.bz2.gpg
    MD5 checksum: ba6d0178dc03119080e07ef0a2967c38
    Двоичная версия для Windows:  dvdisaster-0.79.1-setup.exe
    Цифровая подпись:  dvdisaster-0.79.1-setup.exe.gpg
    MD5 checksum: b4c62833a2447097950b563e4a7b2065
    dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
    Скачать
    ·Системные требования
    ·(No) download terms
    ·Цифровая подпись
    ·Установка
    ·Альфа (нестабильные) версии
    ·Аdditional resources
    ·Additional resources
    Вопросы и ответы
    + + + + +
    + dvdisaster + Версия 0.72.2 / 0.79 (devel-3) + +  К интернет-версии + + + +
    + + + + + + + +
    + +
    + + + + + + + + + + + + + + +
    + + + + +
    + Содержание + + + + +

    + + + + + + + + + + + + + + + + + + + +
    Новости
    Обзор
    Howto's
    Скачать
    ·Системные требования
    ·(No) download terms
    ·Цифровая подпись
    ·Установка
    ·Альфа (нестабильные) версии
    ·Additional resources
    Вопросы и ответы
    Сообщения об ошибках
    +

    +
    + + + +

    Make sure you're not getting ripped off: The small print (and other things).

    + +The dvdisaster project provides this software +as free software +to you using the +GNU General Public License v2.

    + +The dvdisaster project also wants to make sure that you know +you can download the software from here at no cost +and keeping your full privacy.

    + +To make it clear how we distribute dvdisaster, what we do and what we won't do, +we have compiled the following list:

    + +Internet and download sites

    + +The dvdisaster project uses the following internet domains +for publishing its web sites and supplying software downloads:

    + +dvdisaster.com
    +dvdisaster.de
    +dvdisaster.net
    +dvdisaster.org

    + +All domains are forwarded to the same site at dvdisaster.net.
    +In addition, the dvdisaster project is using the hosting facilities of +SourceForge.net.

    + +No other internet or download sites are run by the dvdisaster project.

    + +No money or personal data required

    + +There is no registration process for using this software.
    +The dvdisaster project never asks you to enter personal data, +to pay a fee or to donate money for: + +

      +
    • using this web site,
    • +
    • downloading the software, and
    • +
    • running the software.
    • +

    + +Cryptographic signature and checksums

    + +dvdisaster releases are always published with +cryptographic signatures and md5 checksums. +See the download page for examples.

    + +Be very cautious if signatures and checksums are missing, invalid or +not matching those published at the sites mentioned above.

    + + + +

    + + + + + + + + + + + + + +
    + + Copyright 2007-2009 Igor Gorbounov.
    + Дословное копирование и распространение всей этой статьи разрешается на любом носителе, при условии, что это уведомление сохраняется. +
    +
    +
    + + diff --git a/documentation/ru/download60.php b/documentation/ru/download60.php new file mode 100644 index 0000000..7e1863a --- /dev/null +++ b/documentation/ru/download60.php @@ -0,0 +1,74 @@ + + + + +

    Make sure you're not getting ripped off: The small print (and other things).

    + +The dvdisaster project provides this software +as free software +to you using the +GNU General Public License v2.

    + +The dvdisaster project also wants to make sure that you know +you can download the software from here at no cost +and keeping your full privacy.

    + +To make it clear how we distribute dvdisaster, what we do and what we won't do, +we have compiled the following list:

    + +Internet and download sites

    + +The dvdisaster project uses the following internet domains +for publishing its web sites and supplying software downloads:

    + +dvdisaster.com
    +dvdisaster.de
    +dvdisaster.net
    +dvdisaster.org

    + +All domains are forwarded to the same site at dvdisaster.net.
    +In addition, the dvdisaster project is using the hosting facilities of +SourceForge.net.

    + +No other internet or download sites are run by the dvdisaster project.

    + +No money or personal data required

    + +There is no registration process for using this software.
    +The dvdisaster project never asks you to enter personal data, +to pay a fee or to donate money for: + +

      +
    • using this web site,
    • +
    • downloading the software, and
    • +
    • running the software.
    • +

    + +Cryptographic signature and checksums

    + +dvdisaster releases are always published with +cryptographic signatures and md5 checksums. +See the download page for examples.

    + +Be very cautious if signatures and checksums are missing, invalid or +not matching those published at the sites mentioned above.

    + + + + diff --git a/documentation/ru/download_showall=0.html b/documentation/ru/download_showall=0.html index 6f39ba6..5edbed3 100644 --- a/documentation/ru/download_showall=0.html +++ b/documentation/ru/download_showall=0.html @@ -11,7 +11,7 @@

dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@
Скачать
·Системные требования
·(No) download terms
·Цифровая подпись
·Установка
·Альфа (нестабильные) версии
·Аdditional resources
·Additional resources
Вопросы и ответы
- + @@ -149,6 +157,18 @@ dvdisaster имеется для последних в Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -183,10 +203,17 @@ please try getting dvdisaster via

+ + + + + + +
dvdisaster-0.724 июля 2009
dvdisaster-0.7207 Nov 2010
- + - + + + + - + - + + + + - + - - + + +
  Исходные тексты для всех операционных систем: dvdisaster-0.72.1.tar.bz2
dvdisaster-0.72.2.tar.bz2
Цифровая подпись: dvdisaster-0.72.1.tar.bz2.gpg
dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.1.app.zip.gpg
dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Двоичная версия для Windows: dvdisaster-0.72.1-setup.exe
dvdisaster-0.72.2-setup.exe
Цифровая подпись: dvdisaster-0.72.1-setup.exe.gpg
dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Show older releases in the 0.72 version branch
dvdisaster-0.70.6.tar.bz2
Цифровая подпись:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Двоичный пакет для Windows:  dvdisaster-0.70.6-setup.exe
Цифровая подпись:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/ru/download_showall=1.html b/documentation/ru/download_showall=1.html index 65d3247..2c1ab2b 100644 --- a/documentation/ru/download_showall=1.html +++ b/documentation/ru/download_showall=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -56,10 +56,11 @@ Скачать ·Системные требования + ·(No) download terms ·Цифровая подпись ·Установка ·Альфа (нестабильные) версии - ·Аdditional resources + ·Additional resources Вопросы и ответы @@ -102,7 +103,7 @@ dvdisaster имеется для последних в Приглашаем тестеров для предстоящих версий dvdisaster, но следует иметь в виду, что остались еще ошибки и несоответствия. Текущая нестабильная версия - -0.79 (devel-2). +0.79 (devel-3).

@@ -110,37 +111,83 @@ dvdisaster имеется для последних в - + @@ -162,6 +209,18 @@ dvdisaster имеется для последних в Исправления (небольшие изменения после версии 0.72; вышеприведенные файлы были обновлены):

+0.72 pl2 +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Upward compatibility with versions 0.79.x has been improved.
+The Windows and Mac OS X versions are now built with the development +environment of dvdisaster 0.79.x and are therefore shipped with newer +versions of the GTK+ graphical toolkit libraries. This update requires +some changes in internal scripts resulting in a different checksum of the +source package (the package published on Oct 31th had the md5 checksum +86110e212aa1bf336a52ba89d3daa93d and is still valid for Linux, FreeBSD +and NetBSD).(07-11-2010)

+ 0.72 pl1 Pablo Almeida provided Portuguese translations of the screen texts. Added workaround to avoid Win XP freezing on certain CD-RW/drive pairs.(08-Aug-2009)

Update: The workaround has been found to be ineffective in some cases. A @@ -196,10 +255,17 @@ please try getting dvdisaster via

+ + + + + + +
dvdisaster-0.724 июля 2009
dvdisaster-0.7207 Nov 2010
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + +
  Исходные тексты для всех операционных систем: dvdisaster-0.72.2.tar.bz2
Цифровая подпись: dvdisaster-0.72.2.tar.bz2.gpg
MD5 checksum: 312bceef3bf9c0754cf633ed3b12eb71
Двоичная версия для Mac OS X 10.5 / x86: dvdisaster-0.72.2.app.zip -- сначала прочитайте эти советы
Цифровая подпись: dvdisaster-0.72.2.app.zip.gpg
MD5 checksum: 52243c1fafb9d2e496b6eb318c3e534f
Двоичная версия для Windows: dvdisaster-0.72.2-setup.exe
Цифровая подпись: dvdisaster-0.72.2-setup.exe.gpg
MD5 checksum: f80258d27354061fd9e28850ec4701a6
Hide older releases in the 0.72 version branch
Version 0.72.1
  Исходные тексты для всех операционных систем:  dvdisaster-0.72.1.tar.bz2
Цифровая подпись:  dvdisaster-0.72.1.tar.bz2.gpg
MD5 checksum: 4da96566bc003be93d9dfb0109b4aa1d
Двоичная версия для Mac OS X 10.5 / x86:  dvdisaster-0.72.1.app.zip -- сначала прочитайте эти советы
Цифровая подпись:  dvdisaster-0.72.1.app.zip.gpg
MD5 checksum: 924b5677f69473b6b87991e01779a541
Двоичная версия для Windows:  dvdisaster-0.72.1-setup.exe
Цифровая подпись:  dvdisaster-0.72.1-setup.exe.gpg
Hide older releases in the 0.72 version branch
MD5 checksum: 34d062ddebe1a648e808d29ca4e9879f
Version 0.72
  Исходные тексты для всех операционных систем:  dvdisaster-0.72.tar.bz2
Цифровая подпись:  dvdisaster-0.72.tar.bz2.gpg
MD5 checksum: efa35607d91412a7ff185722f270fb8a
Двоичная версия для Mac OS X 10.5 / x86:  dvdisaster-0.72.app.zip -- сначала прочитайте эти советы
Цифровая подпись:  dvdisaster-0.72.app.zip.gpg
MD5 checksum: 1f28385b2b6d64b664fd416eb4c85e80
Двоичная версия для Windows:  dvdisaster-0.72-setup.exe
Цифровая подпись:  dvdisaster-0.72-setup.exe.gpg
MD5 checksum: cc8eb2af384917db8d6d983e1d4aac69
dvdisaster-0.70.6.tar.bz2
Цифровая подпись:  dvdisaster-0.70.6.tar.bz2.gpg
MD5 checksum: c6d2215d7dd582475b19593dfa4fbdc2
Двоичный пакет для Windows:  dvdisaster-0.70.6-setup.exe
Цифровая подпись:  dvdisaster-0.70.6-setup.exe.gpg
MD5 checksum: 82f74bebd08ab7ae783ddc5dd0bba731
diff --git a/documentation/ru/feed/atom.xml b/documentation/ru/feed/atom.xml index 1f2a785..b8cb5d1 100755 --- a/documentation/ru/feed/atom.xml +++ b/documentation/ru/feed/atom.xml @@ -2,13 +2,40 @@ tag:dvdisaster.net,2009-10-02:/ru/feeds/atom.xml dvdisaster news -2010-02-28T19:15:30+01:00 +2010-11-20T22:12:52+01:00 Carsten Gnörlich http://www.dvdisaster.org +dvdisaster 0.79.3 released + +tag:dvdisaster.net,2010-11-21:/ru/news.html/18 +2010-11-21T00:00:00Z +2010-11-21T00:00:00Z + +

For GNU/Linux, the SG_IO driver is used by default for accessing optical drives. This resolves the problem with system freezes on parallel SCSI adapters which were caused by the old CDROM_SEND_PACKET driver. The RS03 codec now contains [...] +
+ +Added Windows and Mac OS X versions for 0.72.2 + +tag:dvdisaster.net,2010-11-07:/ru/news.html/17 +2010-11-07T00:00:00Z +2010-11-07T00:00:00Z + + Windows and Mac OS X versions of 0.72.2 are now available. They were built using the updated development environment of 0.79.x. This results in shipping with newer versions of the GTK+ libraries and might yield slightly different visuals [...] + + +dvdisaster 0.72.2 released + +tag:dvdisaster.net,2010-10-31:/ru/news.html/16 +2010-10-31T00:00:00Z +2010-10-31T00:00:00Z + + This version introduces a workaround which prevents parallel SCSI adapters from freezing under Linux. Improved upward compatibility with dvdisaster 0.79.x. [...] + + dvdisaster 0.79.2 released tag:dvdisaster.net,2010-02-28:/ru/news.html/15 diff --git a/documentation/ru/feedback.html b/documentation/ru/feedback.html index d2f656e..30b51d8 100644 --- a/documentation/ru/feedback.html +++ b/documentation/ru/feedback.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/feedback_expand=1.html b/documentation/ru/feedback_expand=1.html index 3ac5239..83173c8 100644 --- a/documentation/ru/feedback_expand=1.html +++ b/documentation/ru/feedback_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos.html b/documentation/ru/howtos.html index 3a44b6a..443d1a7 100644 --- a/documentation/ru/howtos.html +++ b/documentation/ru/howtos.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos10.html b/documentation/ru/howtos10.html index d5d02a2..7aca97a 100644 --- a/documentation/ru/howtos10.html +++ b/documentation/ru/howtos10.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11.html b/documentation/ru/howtos11.html index 720ee13..fdd1afd 100644 --- a/documentation/ru/howtos11.html +++ b/documentation/ru/howtos11.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=1.html b/documentation/ru/howtos11_expand=1.html index 05c851a..af6e31c 100644 --- a/documentation/ru/howtos11_expand=1.html +++ b/documentation/ru/howtos11_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=2.html b/documentation/ru/howtos11_expand=2.html index 5f090ae..e7fb1f3 100644 --- a/documentation/ru/howtos11_expand=2.html +++ b/documentation/ru/howtos11_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=3.html b/documentation/ru/howtos11_expand=3.html index a554902..529e3ab 100644 --- a/documentation/ru/howtos11_expand=3.html +++ b/documentation/ru/howtos11_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=4.html b/documentation/ru/howtos11_expand=4.html index 7a8d23b..5587676 100644 --- a/documentation/ru/howtos11_expand=4.html +++ b/documentation/ru/howtos11_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos11_expand=5.html b/documentation/ru/howtos11_expand=5.html index 2f2d039..a714374 100644 --- a/documentation/ru/howtos11_expand=5.html +++ b/documentation/ru/howtos11_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos12.html b/documentation/ru/howtos12.html index 9190a53..5d0bb90 100644 --- a/documentation/ru/howtos12.html +++ b/documentation/ru/howtos12.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos12_expand=0.html b/documentation/ru/howtos12_expand=0.html index 9190a53..5d0bb90 100644 --- a/documentation/ru/howtos12_expand=0.html +++ b/documentation/ru/howtos12_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos12_expand=1.html b/documentation/ru/howtos12_expand=1.html index ef28899..ac22bc2 100644 --- a/documentation/ru/howtos12_expand=1.html +++ b/documentation/ru/howtos12_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13.html b/documentation/ru/howtos13.html index 07dd817..2a71c87 100644 --- a/documentation/ru/howtos13.html +++ b/documentation/ru/howtos13.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=1.html b/documentation/ru/howtos13_expand=1.html index 9006a80..1331251 100644 --- a/documentation/ru/howtos13_expand=1.html +++ b/documentation/ru/howtos13_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=2.html b/documentation/ru/howtos13_expand=2.html index 775fb43..20fbfb9 100644 --- a/documentation/ru/howtos13_expand=2.html +++ b/documentation/ru/howtos13_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=3.html b/documentation/ru/howtos13_expand=3.html index e5bd860..f720c43 100644 --- a/documentation/ru/howtos13_expand=3.html +++ b/documentation/ru/howtos13_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=4.html b/documentation/ru/howtos13_expand=4.html index 6e0dd79..b670dad 100644 --- a/documentation/ru/howtos13_expand=4.html +++ b/documentation/ru/howtos13_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=5.html b/documentation/ru/howtos13_expand=5.html index 77fb5a9..ec0160d 100644 --- a/documentation/ru/howtos13_expand=5.html +++ b/documentation/ru/howtos13_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos13_expand=6.html b/documentation/ru/howtos13_expand=6.html index 9d0e4e4..756f004 100644 --- a/documentation/ru/howtos13_expand=6.html +++ b/documentation/ru/howtos13_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos14.html b/documentation/ru/howtos14.html index 2f96a67..f1a04f1 100644 --- a/documentation/ru/howtos14.html +++ b/documentation/ru/howtos14.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos14_expand=1.html b/documentation/ru/howtos14_expand=1.html index 4120850..98f3b24 100644 --- a/documentation/ru/howtos14_expand=1.html +++ b/documentation/ru/howtos14_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos14_expand=2.html b/documentation/ru/howtos14_expand=2.html index 1680c89..b735e88 100644 --- a/documentation/ru/howtos14_expand=2.html +++ b/documentation/ru/howtos14_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos20.html b/documentation/ru/howtos20.html index 5238e22..fbbfc84 100644 --- a/documentation/ru/howtos20.html +++ b/documentation/ru/howtos20.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos21.html b/documentation/ru/howtos21.html index 3bd1c1f..2285ecc 100644 --- a/documentation/ru/howtos21.html +++ b/documentation/ru/howtos21.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=1.html b/documentation/ru/howtos21_answer=1.html index d346558..cb4203c 100644 --- a/documentation/ru/howtos21_answer=1.html +++ b/documentation/ru/howtos21_answer=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=2.html b/documentation/ru/howtos21_answer=2.html index 32d3d1d..6541aa8 100644 --- a/documentation/ru/howtos21_answer=2.html +++ b/documentation/ru/howtos21_answer=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=3.html b/documentation/ru/howtos21_answer=3.html index a2d2923..3a7e30c 100644 --- a/documentation/ru/howtos21_answer=3.html +++ b/documentation/ru/howtos21_answer=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos21_answer=4.html b/documentation/ru/howtos21_answer=4.html index 956be9a..3d6c900 100644 --- a/documentation/ru/howtos21_answer=4.html +++ b/documentation/ru/howtos21_answer=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22.html b/documentation/ru/howtos22.html index ab0021c..ef7af63 100644 --- a/documentation/ru/howtos22.html +++ b/documentation/ru/howtos22.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=1.html b/documentation/ru/howtos22_expand=1.html index fb151f4..42cd7f4 100644 --- a/documentation/ru/howtos22_expand=1.html +++ b/documentation/ru/howtos22_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=2.html b/documentation/ru/howtos22_expand=2.html index 0364376..4554a15 100644 --- a/documentation/ru/howtos22_expand=2.html +++ b/documentation/ru/howtos22_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=3.html b/documentation/ru/howtos22_expand=3.html index ef1cf22..3a9747f 100644 --- a/documentation/ru/howtos22_expand=3.html +++ b/documentation/ru/howtos22_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=4.html b/documentation/ru/howtos22_expand=4.html index ff9a839..09fe439 100644 --- a/documentation/ru/howtos22_expand=4.html +++ b/documentation/ru/howtos22_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=5.html b/documentation/ru/howtos22_expand=5.html index b107a14..eaa21ee 100644 --- a/documentation/ru/howtos22_expand=5.html +++ b/documentation/ru/howtos22_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos22_expand=6.html b/documentation/ru/howtos22_expand=6.html index c4c0921..a38e802 100644 --- a/documentation/ru/howtos22_expand=6.html +++ b/documentation/ru/howtos22_expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23.html b/documentation/ru/howtos23.html index 8f25657..402120f 100644 --- a/documentation/ru/howtos23.html +++ b/documentation/ru/howtos23.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=0.html b/documentation/ru/howtos23_way=1&expand=0.html index 3b9b23d..21561cf 100644 --- a/documentation/ru/howtos23_way=1&expand=0.html +++ b/documentation/ru/howtos23_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=1.html b/documentation/ru/howtos23_way=1&expand=1.html index 1c5ea87..6355128 100644 --- a/documentation/ru/howtos23_way=1&expand=1.html +++ b/documentation/ru/howtos23_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1&expand=2.html b/documentation/ru/howtos23_way=1&expand=2.html index 9806b5b..48d4422 100644 --- a/documentation/ru/howtos23_way=1&expand=2.html +++ b/documentation/ru/howtos23_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=1.html b/documentation/ru/howtos23_way=1.html index 3b9b23d..21561cf 100644 --- a/documentation/ru/howtos23_way=1.html +++ b/documentation/ru/howtos23_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=0.html b/documentation/ru/howtos23_way=2&expand=0.html index 7f9edb6..77c8d84 100644 --- a/documentation/ru/howtos23_way=2&expand=0.html +++ b/documentation/ru/howtos23_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=1.html b/documentation/ru/howtos23_way=2&expand=1.html index 5433b97..b641242 100644 --- a/documentation/ru/howtos23_way=2&expand=1.html +++ b/documentation/ru/howtos23_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2&expand=2.html b/documentation/ru/howtos23_way=2&expand=2.html index e27f3fe..1cbf363 100644 --- a/documentation/ru/howtos23_way=2&expand=2.html +++ b/documentation/ru/howtos23_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos23_way=2.html b/documentation/ru/howtos23_way=2.html index 7f9edb6..77c8d84 100644 --- a/documentation/ru/howtos23_way=2.html +++ b/documentation/ru/howtos23_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos24.html b/documentation/ru/howtos24.html index 4e3f944..5ed7d86 100644 --- a/documentation/ru/howtos24.html +++ b/documentation/ru/howtos24.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos25.html b/documentation/ru/howtos25.html index d95df31..f114338 100644 --- a/documentation/ru/howtos25.html +++ b/documentation/ru/howtos25.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos25_expand=1.html b/documentation/ru/howtos25_expand=1.html index 2932d22..8bad4a5 100644 --- a/documentation/ru/howtos25_expand=1.html +++ b/documentation/ru/howtos25_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos25_expand=2.html b/documentation/ru/howtos25_expand=2.html index a612fcc..4f9a26e 100644 --- a/documentation/ru/howtos25_expand=2.html +++ b/documentation/ru/howtos25_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos30.html b/documentation/ru/howtos30.html index 22cf21f..eeaa6d5 100644 --- a/documentation/ru/howtos30.html +++ b/documentation/ru/howtos30.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos31.html b/documentation/ru/howtos31.html index 112c705..983b5ea 100644 --- a/documentation/ru/howtos31.html +++ b/documentation/ru/howtos31.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos32.html b/documentation/ru/howtos32.html index 1a94163..caa4ac8 100644 --- a/documentation/ru/howtos32.html +++ b/documentation/ru/howtos32.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos32_expand=1.html b/documentation/ru/howtos32_expand=1.html index 8232037..114ba8c 100644 --- a/documentation/ru/howtos32_expand=1.html +++ b/documentation/ru/howtos32_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos32_expand=2.html b/documentation/ru/howtos32_expand=2.html index bacac17..5577e47 100644 --- a/documentation/ru/howtos32_expand=2.html +++ b/documentation/ru/howtos32_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33.html b/documentation/ru/howtos33.html index 3857da7..b1de282 100644 --- a/documentation/ru/howtos33.html +++ b/documentation/ru/howtos33.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=0.html b/documentation/ru/howtos33_expand=0.html index 3857da7..b1de282 100644 --- a/documentation/ru/howtos33_expand=0.html +++ b/documentation/ru/howtos33_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=1.html b/documentation/ru/howtos33_expand=1.html index a71986f..95147fb 100644 --- a/documentation/ru/howtos33_expand=1.html +++ b/documentation/ru/howtos33_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_expand=2.html b/documentation/ru/howtos33_expand=2.html index 06a4225..f795fe8 100644 --- a/documentation/ru/howtos33_expand=2.html +++ b/documentation/ru/howtos33_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=0.html b/documentation/ru/howtos33_way=0&expand=0.html index 6ca7ee6..f29537f 100644 --- a/documentation/ru/howtos33_way=0&expand=0.html +++ b/documentation/ru/howtos33_way=0&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=1.html b/documentation/ru/howtos33_way=0&expand=1.html index c668f07..d0492b9 100644 --- a/documentation/ru/howtos33_way=0&expand=1.html +++ b/documentation/ru/howtos33_way=0&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0&expand=2.html b/documentation/ru/howtos33_way=0&expand=2.html index 05954eb..d84f866 100644 --- a/documentation/ru/howtos33_way=0&expand=2.html +++ b/documentation/ru/howtos33_way=0&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=0.html b/documentation/ru/howtos33_way=0.html index 6ca7ee6..f29537f 100644 --- a/documentation/ru/howtos33_way=0.html +++ b/documentation/ru/howtos33_way=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&.html b/documentation/ru/howtos33_way=1&.html index ebe4772..39ab4bd 100644 --- a/documentation/ru/howtos33_way=1&.html +++ b/documentation/ru/howtos33_way=1&.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=0.html b/documentation/ru/howtos33_way=1&expand=0.html index ebe4772..39ab4bd 100644 --- a/documentation/ru/howtos33_way=1&expand=0.html +++ b/documentation/ru/howtos33_way=1&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=1.html b/documentation/ru/howtos33_way=1&expand=1.html index 8d23ad3..722ceb4 100644 --- a/documentation/ru/howtos33_way=1&expand=1.html +++ b/documentation/ru/howtos33_way=1&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=2.html b/documentation/ru/howtos33_way=1&expand=2.html index 9f8d886..3880199 100644 --- a/documentation/ru/howtos33_way=1&expand=2.html +++ b/documentation/ru/howtos33_way=1&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=3.html b/documentation/ru/howtos33_way=1&expand=3.html index b47ca99..2cf0392 100644 --- a/documentation/ru/howtos33_way=1&expand=3.html +++ b/documentation/ru/howtos33_way=1&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=4.html b/documentation/ru/howtos33_way=1&expand=4.html index 6af079c..09f0f94 100644 --- a/documentation/ru/howtos33_way=1&expand=4.html +++ b/documentation/ru/howtos33_way=1&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=5.html b/documentation/ru/howtos33_way=1&expand=5.html index 29e8d5d..3ae4172 100644 --- a/documentation/ru/howtos33_way=1&expand=5.html +++ b/documentation/ru/howtos33_way=1&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=6.html b/documentation/ru/howtos33_way=1&expand=6.html index ad7a6b7..23caf8e 100644 --- a/documentation/ru/howtos33_way=1&expand=6.html +++ b/documentation/ru/howtos33_way=1&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1&expand=7.html b/documentation/ru/howtos33_way=1&expand=7.html index 4fe0069..c369fd5 100644 --- a/documentation/ru/howtos33_way=1&expand=7.html +++ b/documentation/ru/howtos33_way=1&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=1.html b/documentation/ru/howtos33_way=1.html index ebe4772..39ab4bd 100644 --- a/documentation/ru/howtos33_way=1.html +++ b/documentation/ru/howtos33_way=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&.html b/documentation/ru/howtos33_way=2&.html index b12f333..55c80c3 100644 --- a/documentation/ru/howtos33_way=2&.html +++ b/documentation/ru/howtos33_way=2&.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=0.html b/documentation/ru/howtos33_way=2&expand=0.html index b12f333..55c80c3 100644 --- a/documentation/ru/howtos33_way=2&expand=0.html +++ b/documentation/ru/howtos33_way=2&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=1.html b/documentation/ru/howtos33_way=2&expand=1.html index 7a31144..78e20e5 100644 --- a/documentation/ru/howtos33_way=2&expand=1.html +++ b/documentation/ru/howtos33_way=2&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=2.html b/documentation/ru/howtos33_way=2&expand=2.html index 35935ea..afe7a0d 100644 --- a/documentation/ru/howtos33_way=2&expand=2.html +++ b/documentation/ru/howtos33_way=2&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=3.html b/documentation/ru/howtos33_way=2&expand=3.html index 646982d..d533857 100644 --- a/documentation/ru/howtos33_way=2&expand=3.html +++ b/documentation/ru/howtos33_way=2&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=4.html b/documentation/ru/howtos33_way=2&expand=4.html index f998fb1..8962256 100644 --- a/documentation/ru/howtos33_way=2&expand=4.html +++ b/documentation/ru/howtos33_way=2&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=5.html b/documentation/ru/howtos33_way=2&expand=5.html index 34d9b14..b931dd1 100644 --- a/documentation/ru/howtos33_way=2&expand=5.html +++ b/documentation/ru/howtos33_way=2&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2&expand=6.html b/documentation/ru/howtos33_way=2&expand=6.html index 85889db..5916bfd 100644 --- a/documentation/ru/howtos33_way=2&expand=6.html +++ b/documentation/ru/howtos33_way=2&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=2.html b/documentation/ru/howtos33_way=2.html index b12f333..55c80c3 100644 --- a/documentation/ru/howtos33_way=2.html +++ b/documentation/ru/howtos33_way=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&.html b/documentation/ru/howtos33_way=3&.html index ed989e3..726725d 100644 --- a/documentation/ru/howtos33_way=3&.html +++ b/documentation/ru/howtos33_way=3&.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=0.html b/documentation/ru/howtos33_way=3&expand=0.html index ed989e3..726725d 100644 --- a/documentation/ru/howtos33_way=3&expand=0.html +++ b/documentation/ru/howtos33_way=3&expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=1.html b/documentation/ru/howtos33_way=3&expand=1.html index 5b2aefe..b9f425c 100644 --- a/documentation/ru/howtos33_way=3&expand=1.html +++ b/documentation/ru/howtos33_way=3&expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=10.html b/documentation/ru/howtos33_way=3&expand=10.html index e99fc58..8cd0200 100644 --- a/documentation/ru/howtos33_way=3&expand=10.html +++ b/documentation/ru/howtos33_way=3&expand=10.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=11.html b/documentation/ru/howtos33_way=3&expand=11.html index aabb579..c9562a9 100644 --- a/documentation/ru/howtos33_way=3&expand=11.html +++ b/documentation/ru/howtos33_way=3&expand=11.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=2.html b/documentation/ru/howtos33_way=3&expand=2.html index d0597e3..92e1e3f 100644 --- a/documentation/ru/howtos33_way=3&expand=2.html +++ b/documentation/ru/howtos33_way=3&expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=3.html b/documentation/ru/howtos33_way=3&expand=3.html index e502ac1..125627a 100644 --- a/documentation/ru/howtos33_way=3&expand=3.html +++ b/documentation/ru/howtos33_way=3&expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=4.html b/documentation/ru/howtos33_way=3&expand=4.html index 6302432..53512a6 100644 --- a/documentation/ru/howtos33_way=3&expand=4.html +++ b/documentation/ru/howtos33_way=3&expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=5.html b/documentation/ru/howtos33_way=3&expand=5.html index a3ddb89..dccb306 100644 --- a/documentation/ru/howtos33_way=3&expand=5.html +++ b/documentation/ru/howtos33_way=3&expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=6.html b/documentation/ru/howtos33_way=3&expand=6.html index e1ed45b..f5b90ed 100644 --- a/documentation/ru/howtos33_way=3&expand=6.html +++ b/documentation/ru/howtos33_way=3&expand=6.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=7.html b/documentation/ru/howtos33_way=3&expand=7.html index a260d81..377edd1 100644 --- a/documentation/ru/howtos33_way=3&expand=7.html +++ b/documentation/ru/howtos33_way=3&expand=7.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=8.html b/documentation/ru/howtos33_way=3&expand=8.html index c1bfee7..e921dde 100644 --- a/documentation/ru/howtos33_way=3&expand=8.html +++ b/documentation/ru/howtos33_way=3&expand=8.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3&expand=9.html b/documentation/ru/howtos33_way=3&expand=9.html index e9d7a5e..2886470 100644 --- a/documentation/ru/howtos33_way=3&expand=9.html +++ b/documentation/ru/howtos33_way=3&expand=9.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos33_way=3.html b/documentation/ru/howtos33_way=3.html index ed989e3..726725d 100644 --- a/documentation/ru/howtos33_way=3.html +++ b/documentation/ru/howtos33_way=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos34.html b/documentation/ru/howtos34.html index 1f34118..abcfe99 100644 --- a/documentation/ru/howtos34.html +++ b/documentation/ru/howtos34.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos34_expand=1.html b/documentation/ru/howtos34_expand=1.html index 4774736..d8b9c7f 100644 --- a/documentation/ru/howtos34_expand=1.html +++ b/documentation/ru/howtos34_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos40.html b/documentation/ru/howtos40.html index 321f9c5..5bb4380 100644 --- a/documentation/ru/howtos40.html +++ b/documentation/ru/howtos40.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41.html b/documentation/ru/howtos41.html index 0b62ed6..bfeca53 100644 --- a/documentation/ru/howtos41.html +++ b/documentation/ru/howtos41.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=1.html b/documentation/ru/howtos41_expand=1.html index 35b5614..7a9bd63 100644 --- a/documentation/ru/howtos41_expand=1.html +++ b/documentation/ru/howtos41_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=2.html b/documentation/ru/howtos41_expand=2.html index ef49410..3e57ebd 100644 --- a/documentation/ru/howtos41_expand=2.html +++ b/documentation/ru/howtos41_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=3.html b/documentation/ru/howtos41_expand=3.html index 0323ea9..c03ad0f 100644 --- a/documentation/ru/howtos41_expand=3.html +++ b/documentation/ru/howtos41_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=4.html b/documentation/ru/howtos41_expand=4.html index 0f630fd..811f4c5 100644 --- a/documentation/ru/howtos41_expand=4.html +++ b/documentation/ru/howtos41_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos41_expand=5.html b/documentation/ru/howtos41_expand=5.html index 123b0ce..1b9bfd6 100644 --- a/documentation/ru/howtos41_expand=5.html +++ b/documentation/ru/howtos41_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42.html b/documentation/ru/howtos42.html index 338280e..f2d90aa 100644 --- a/documentation/ru/howtos42.html +++ b/documentation/ru/howtos42.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=0.html b/documentation/ru/howtos42_expand=0.html index 338280e..f2d90aa 100644 --- a/documentation/ru/howtos42_expand=0.html +++ b/documentation/ru/howtos42_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=1.html b/documentation/ru/howtos42_expand=1.html index c01922b..1d23d6e 100644 --- a/documentation/ru/howtos42_expand=1.html +++ b/documentation/ru/howtos42_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=2.html b/documentation/ru/howtos42_expand=2.html index cc4a247..919e26e 100644 --- a/documentation/ru/howtos42_expand=2.html +++ b/documentation/ru/howtos42_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=3.html b/documentation/ru/howtos42_expand=3.html index be0bf1d..3e5c66b 100644 --- a/documentation/ru/howtos42_expand=3.html +++ b/documentation/ru/howtos42_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos42_expand=4.html b/documentation/ru/howtos42_expand=4.html index a0ae228..6a47ec4 100644 --- a/documentation/ru/howtos42_expand=4.html +++ b/documentation/ru/howtos42_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43.html b/documentation/ru/howtos43.html index cf7d366..d249b58 100644 --- a/documentation/ru/howtos43.html +++ b/documentation/ru/howtos43.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=1.html b/documentation/ru/howtos43_expand=1.html index b76e4d0..4378f53 100644 --- a/documentation/ru/howtos43_expand=1.html +++ b/documentation/ru/howtos43_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=2.html b/documentation/ru/howtos43_expand=2.html index 9ba36c8..52dd575 100644 --- a/documentation/ru/howtos43_expand=2.html +++ b/documentation/ru/howtos43_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=3.html b/documentation/ru/howtos43_expand=3.html index 187c435..67adaa2 100644 --- a/documentation/ru/howtos43_expand=3.html +++ b/documentation/ru/howtos43_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=4.html b/documentation/ru/howtos43_expand=4.html index 6b0304c..ca09036 100644 --- a/documentation/ru/howtos43_expand=4.html +++ b/documentation/ru/howtos43_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos43_expand=5.html b/documentation/ru/howtos43_expand=5.html index 2d6f82d..55f2a8a 100644 --- a/documentation/ru/howtos43_expand=5.html +++ b/documentation/ru/howtos43_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos50.html b/documentation/ru/howtos50.html index 73b8fe4..effe321 100644 --- a/documentation/ru/howtos50.html +++ b/documentation/ru/howtos50.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos51.html b/documentation/ru/howtos51.html index 2d7d779..56c2500 100644 --- a/documentation/ru/howtos51.html +++ b/documentation/ru/howtos51.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos51_expand=0.html b/documentation/ru/howtos51_expand=0.html index 2d7d779..56c2500 100644 --- a/documentation/ru/howtos51_expand=0.html +++ b/documentation/ru/howtos51_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos51_expand=1.html b/documentation/ru/howtos51_expand=1.html index 4c4b193..5de5da8 100644 --- a/documentation/ru/howtos51_expand=1.html +++ b/documentation/ru/howtos51_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos52.html b/documentation/ru/howtos52.html index 01e754b..71b5cda 100644 --- a/documentation/ru/howtos52.html +++ b/documentation/ru/howtos52.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos52_expand=0.html b/documentation/ru/howtos52_expand=0.html index 01e754b..71b5cda 100644 --- a/documentation/ru/howtos52_expand=0.html +++ b/documentation/ru/howtos52_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos52_expand=1.html b/documentation/ru/howtos52_expand=1.html index 6118a47..b68510a 100644 --- a/documentation/ru/howtos52_expand=1.html +++ b/documentation/ru/howtos52_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos53.html b/documentation/ru/howtos53.html index fd45235..c955ccd 100644 --- a/documentation/ru/howtos53.html +++ b/documentation/ru/howtos53.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos53_expand=0.html b/documentation/ru/howtos53_expand=0.html index fd45235..c955ccd 100644 --- a/documentation/ru/howtos53_expand=0.html +++ b/documentation/ru/howtos53_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos53_expand=1.html b/documentation/ru/howtos53_expand=1.html index 150b46d..759a824 100644 --- a/documentation/ru/howtos53_expand=1.html +++ b/documentation/ru/howtos53_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59.html b/documentation/ru/howtos59.html index abc2213..71ebffb 100644 --- a/documentation/ru/howtos59.html +++ b/documentation/ru/howtos59.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=1.html b/documentation/ru/howtos59_expand=1.html index 0c7559c..468023a 100644 --- a/documentation/ru/howtos59_expand=1.html +++ b/documentation/ru/howtos59_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=2.html b/documentation/ru/howtos59_expand=2.html index 47dd685..4e3450e 100644 --- a/documentation/ru/howtos59_expand=2.html +++ b/documentation/ru/howtos59_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=3.html b/documentation/ru/howtos59_expand=3.html index 20577cf..f923b7d 100644 --- a/documentation/ru/howtos59_expand=3.html +++ b/documentation/ru/howtos59_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=4.html b/documentation/ru/howtos59_expand=4.html index ee231f6..c34f46f 100644 --- a/documentation/ru/howtos59_expand=4.html +++ b/documentation/ru/howtos59_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos59_expand=5.html b/documentation/ru/howtos59_expand=5.html index d8343e9..77dca5e 100644 --- a/documentation/ru/howtos59_expand=5.html +++ b/documentation/ru/howtos59_expand=5.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos60.html b/documentation/ru/howtos60.html index 5fefc71..e75fda7 100644 --- a/documentation/ru/howtos60.html +++ b/documentation/ru/howtos60.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos61.html b/documentation/ru/howtos61.html index d2d589f..f7675a6 100644 --- a/documentation/ru/howtos61.html +++ b/documentation/ru/howtos61.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos62.html b/documentation/ru/howtos62.html index 9ac4b97..b656716 100644 --- a/documentation/ru/howtos62.html +++ b/documentation/ru/howtos62.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos63.html b/documentation/ru/howtos63.html index 6ae6076..98f64e0 100644 --- a/documentation/ru/howtos63.html +++ b/documentation/ru/howtos63.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos90.html b/documentation/ru/howtos90.html index c1429a2..99bb1a1 100644 --- a/documentation/ru/howtos90.html +++ b/documentation/ru/howtos90.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91.html b/documentation/ru/howtos91.html index f97fa76..829eedb 100644 --- a/documentation/ru/howtos91.html +++ b/documentation/ru/howtos91.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=0.html b/documentation/ru/howtos91_expand=0.html index f97fa76..829eedb 100644 --- a/documentation/ru/howtos91_expand=0.html +++ b/documentation/ru/howtos91_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=1.html b/documentation/ru/howtos91_expand=1.html index d05cf5e..5298714 100644 --- a/documentation/ru/howtos91_expand=1.html +++ b/documentation/ru/howtos91_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=2.html b/documentation/ru/howtos91_expand=2.html index 8a27eee..4dddb49 100644 --- a/documentation/ru/howtos91_expand=2.html +++ b/documentation/ru/howtos91_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=3.html b/documentation/ru/howtos91_expand=3.html index 5bcd757..4f86639 100644 --- a/documentation/ru/howtos91_expand=3.html +++ b/documentation/ru/howtos91_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos91_expand=4.html b/documentation/ru/howtos91_expand=4.html index 25ae6cc..1dbbfa7 100644 --- a/documentation/ru/howtos91_expand=4.html +++ b/documentation/ru/howtos91_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92.html b/documentation/ru/howtos92.html index ebd5bce..9f95b29 100644 --- a/documentation/ru/howtos92.html +++ b/documentation/ru/howtos92.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=0.html b/documentation/ru/howtos92_expand=0.html index ebd5bce..9f95b29 100644 --- a/documentation/ru/howtos92_expand=0.html +++ b/documentation/ru/howtos92_expand=0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=1.html b/documentation/ru/howtos92_expand=1.html index dfcbaf0..96d2afc 100644 --- a/documentation/ru/howtos92_expand=1.html +++ b/documentation/ru/howtos92_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=2.html b/documentation/ru/howtos92_expand=2.html index e6fb4d2..fabf40e 100644 --- a/documentation/ru/howtos92_expand=2.html +++ b/documentation/ru/howtos92_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=3.html b/documentation/ru/howtos92_expand=3.html index 06aed49..a88dc08 100644 --- a/documentation/ru/howtos92_expand=3.html +++ b/documentation/ru/howtos92_expand=3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtos92_expand=4.html b/documentation/ru/howtos92_expand=4.html index 4190bb9..74a1e4b 100644 --- a/documentation/ru/howtos92_expand=4.html +++ b/documentation/ru/howtos92_expand=4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa0.html b/documentation/ru/howtosa0.html index c9eeb08..9c69c8f 100644 --- a/documentation/ru/howtosa0.html +++ b/documentation/ru/howtosa0.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa1.html b/documentation/ru/howtosa1.html index d931cba..6970882 100644 --- a/documentation/ru/howtosa1.html +++ b/documentation/ru/howtosa1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa1_expand=1.html b/documentation/ru/howtosa1_expand=1.html index 4044c46..b2e1fc8 100644 --- a/documentation/ru/howtosa1_expand=1.html +++ b/documentation/ru/howtosa1_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa2.html b/documentation/ru/howtosa2.html index 1e7c2cd..61b5eaf 100644 --- a/documentation/ru/howtosa2.html +++ b/documentation/ru/howtosa2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa2_expand=1.html b/documentation/ru/howtosa2_expand=1.html index 428b9fc..b63c889 100644 --- a/documentation/ru/howtosa2_expand=1.html +++ b/documentation/ru/howtosa2_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa2_expand=2.html b/documentation/ru/howtosa2_expand=2.html index 2b90c34..6eb9670 100644 --- a/documentation/ru/howtosa2_expand=2.html +++ b/documentation/ru/howtosa2_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa3.html b/documentation/ru/howtosa3.html index ff841a6..0eab5d9 100644 --- a/documentation/ru/howtosa3.html +++ b/documentation/ru/howtosa3.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa3_expand=1.html b/documentation/ru/howtosa3_expand=1.html index 8d232f8..6a9c5f5 100644 --- a/documentation/ru/howtosa3_expand=1.html +++ b/documentation/ru/howtosa3_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa3_expand=2.html b/documentation/ru/howtosa3_expand=2.html index 7a54eaa..0b12c6f 100644 --- a/documentation/ru/howtosa3_expand=2.html +++ b/documentation/ru/howtosa3_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa4.html b/documentation/ru/howtosa4.html index 8fac564..30e715e 100644 --- a/documentation/ru/howtosa4.html +++ b/documentation/ru/howtosa4.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/howtosa4_expand=1.html b/documentation/ru/howtosa4_expand=1.html index 0402f9f..ee0e0a6 100644 --- a/documentation/ru/howtosa4_expand=1.html +++ b/documentation/ru/howtosa4_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/index.html b/documentation/ru/index.html index ea23c47..c047029 100644 --- a/documentation/ru/index.html +++ b/documentation/ru/index.html @@ -12,7 +12,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -122,6 +122,18 @@ dvdisaster хранит данные на CD/DVD (по

+ 21.11.2010
+ + dvdisaster 0.79.3 released +

+ 07.11.2010
+ + Added Windows and Mac OS X versions for 0.72.2 +

+ 31.10.2010
+ + dvdisaster 0.72.2 released +

28.02.2010
dvdisaster 0.79.2 released @@ -139,14 +151,6 @@ of the GTK library Project represention on SourceForge may be outdated

- 08.08.2009
- - dvdisaster 0.72.1 released -

- 04.07.2009
- - выпущен dvdisaster 0.72 -

diff --git a/documentation/ru/index10.html b/documentation/ru/index10.html index 1ed6ee1..c8ba890 100644 --- a/documentation/ru/index10.html +++ b/documentation/ru/index10.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  
К интернет-версии diff --git a/documentation/ru/index10_expand=1.html b/documentation/ru/index10_expand=1.html index d0cc71c..fcdc3cc 100644 --- a/documentation/ru/index10_expand=1.html +++ b/documentation/ru/index10_expand=1.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/index10_expand=2.html b/documentation/ru/index10_expand=2.html index 180ad70..a7a45fe 100644 --- a/documentation/ru/index10_expand=2.html +++ b/documentation/ru/index10_expand=2.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/index20.html b/documentation/ru/index20.html index d260ee2..a86517c 100644 --- a/documentation/ru/index20.html +++ b/documentation/ru/index20.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/index30.html b/documentation/ru/index30.html index 454d9f4..9b508f4 100644 --- a/documentation/ru/index30.html +++ b/documentation/ru/index30.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/news.html b/documentation/ru/news.html index 28ad2bc..9b9cfa9 100644 --- a/documentation/ru/news.html +++ b/documentation/ru/news.html @@ -11,7 +11,7 @@ dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии @@ -72,6 +72,88 @@

Новости dvdisaster

+ + + + + +
dvdisaster 0.79.3 released21.11.2010
+ + + + +
+ + + + +
+ + +
+ +For GNU/Linux, the SG_IO driver is used by default +for accessing optical drives. This resolves the problem +with system freezes on parallel SCSI adapters which were +caused by the old CDROM_SEND_PACKET driver. +The RS03 codec now contains Altivec optimizations +on PowerPC platforms. + +
+
 
+ + + + + +
Added Windows and Mac OS X versions for 0.72.207.11.2010
+ + + + +
+ + + + +
+ + +
+ +Windows and Mac OS X versions of 0.72.2 are now available. +They were built using the updated development environment of 0.79.x. +This results in shipping with newer versions of the GTK+ libraries +and might yield slightly different visuals and behaviour. + +
+
 
+ + + + + +
dvdisaster 0.72.2 released31.10.2010
+ + + + +
+ + + + +
+ + +
+ +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved upward compatibility with dvdisaster 0.79.x. + +
+
 
diff --git a/documentation/ru/news.php b/documentation/ru/news.php index 1199678..f3cfbeb 100644 --- a/documentation/ru/news.php +++ b/documentation/ru/news.php @@ -21,6 +21,28 @@ $news_counter = 0; news_headline("Новости dvdisaster"); +news_item("21.11.2010", "dvdisaster 0.79.3 released", " +For GNU/Linux, the SG_IO driver is used by default +for accessing optical drives. This resolves the problem +with system freezes on parallel SCSI adapters which were +caused by the old CDROM_SEND_PACKET driver. +The RS03 codec now contains Altivec optimizations +on PowerPC platforms. +", 18, "2010-11-21T00:00:00Z", "2010-11-21T00:00:00Z"); + +news_item("07.11.2010", "Added Windows and Mac OS X versions for 0.72.2", " +Windows and Mac OS X versions of 0.72.2 are now available. +They were built using the updated development environment of 0.79.x. +This results in shipping with newer versions of the GTK+ libraries +and might yield slightly different visuals and behaviour. +", 17, "2010-11-07T00:00:00Z", "2010-11-07T00:00:00Z"); + +news_item("31.10.2010", "dvdisaster 0.72.2 released", " +This version introduces a workaround which prevents parallel SCSI +adapters from freezing under Linux. +Improved upward compatibility with dvdisaster 0.79.x. +", 16, "2010-10-31T00:00:00Z", "2010-10-31T00:00:00Z"); + news_item("28.02.2010", "dvdisaster 0.79.2 released", " Mac OS X binaries are available again as the Mac OS X development environment has been updated for this version. diff --git a/documentation/ru/news2007.html b/documentation/ru/news2007.html index bb80837..d27bc4f 100644 --- a/documentation/ru/news2007.html +++ b/documentation/ru/news2007.html @@ -11,7 +11,7 @@
dvdisaster 0.79.2 released
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/news2008.html b/documentation/ru/news2008.html index 42efa21..a3bfa99 100644 --- a/documentation/ru/news2008.html +++ b/documentation/ru/news2008.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/news2009.html b/documentation/ru/news2009.html index 04aa1a7..5e2ffc0 100644 --- a/documentation/ru/news2009.html +++ b/documentation/ru/news2009.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/qa.html b/documentation/ru/qa.html index 6d8e0e8..7f65e85 100644 --- a/documentation/ru/qa.html +++ b/documentation/ru/qa.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/qa10.html b/documentation/ru/qa10.html index ba7b8b5..e344b04 100644 --- a/documentation/ru/qa10.html +++ b/documentation/ru/qa10.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/qa20.html b/documentation/ru/qa20.html index 8f41114..7f58066 100644 --- a/documentation/ru/qa20.html +++ b/documentation/ru/qa20.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/documentation/ru/qa_pipo.html b/documentation/ru/qa_pipo.html index 7cabc41..67b19a5 100644 --- a/documentation/ru/qa_pipo.html +++ b/documentation/ru/qa_pipo.html @@ -11,7 +11,7 @@
dvdisaster - Версия 0.72.1 / 0.79 (devel-2) + Версия 0.72.2 / 0.79 (devel-3)  К интернет-версии diff --git a/dvdisaster.c b/dvdisaster.c index 6749183..af75f55 100644 --- a/dvdisaster.c +++ b/dvdisaster.c @@ -476,7 +476,15 @@ int main(int argc, char *argv[]) Closure->mediumSize = DVD_SL_SIZE; else if(!strcmp(optarg, "DVD9") || !strcmp(optarg, "dvd9")) Closure->mediumSize = DVD_DL_SIZE; - else Closure->mediumSize = (gint64)atoll(optarg); + else if(!strcmp(optarg, "BD") || !strcmp(optarg, "bd")) + Closure->mediumSize = BD_SL_SIZE; + else if(!strcmp(optarg, "BD2") || !strcmp(optarg, "bd2")) + Closure->mediumSize = BD_DL_SIZE; + else + { int len = strlen(optarg); + if(strchr("0123456789", optarg[len-1])) + Closure->mediumSize = (gint64)atoll(optarg); + } break; } case 'o': if(!strcmp(optarg, "file")) @@ -536,12 +544,15 @@ int main(int argc, char *argv[]) case MODIFIER_EJECT: Closure->eject = 1; break; - case MODIFIER_DRIVER: /* currently undocumented feature */ + case MODIFIER_DRIVER: #if defined(SYS_LINUX) if(optarg && !strcmp(optarg,"sg")) - Closure->useSGioctl = TRUE; + Closure->useSCSIDriver = DRIVER_SG; + else + if(optarg && !strcmp(optarg,"cdrom")) + Closure->useSCSIDriver = DRIVER_CDROM; else - Stop(_("Valid args for --driver: sg")); + Stop(_("Valid args for --driver: sg,cdrom")); #else Stop(_("--driver is only supported on GNU/Linux")); #endif @@ -755,6 +766,7 @@ int main(int argc, char *argv[]) /*** CPU type detection. */ Closure->useSSE2 = ProbeSSE2(); + Closure->useAltiVec = ProbeAltiVec(); /*** Parse the sector ranges for --read and --scan */ @@ -782,10 +794,16 @@ int main(int argc, char *argv[]) Closure->imageName = ApplyAutoSuffix(Closure->imageName, "iso"); } - /*** Determine the default device (OS dependent!) if none - has been specified on the command line. */ + /*** Determine the default device (OS dependent!) if + - none has been specified on the command line + - and one if actually required in command line mode. - if(!Closure->device) + GUI mode will unconditionally query devices later anyways + in order to build the menu so we don't have to care about + that now. */ + + if(!Closure->device && mode == MODE_SEQUENCE + && (sequence & (1<device = DefaultDevice(); devices_queried = TRUE; } @@ -846,14 +864,17 @@ int main(int argc, char *argv[]) break; case MODE_SEND_CDB: + if(!Closure->device) Closure->device = DefaultDevice(); SendCDB(debug_arg); break; case MODE_RAW_SECTOR: + if(!Closure->device) Closure->device = DefaultDevice(); RawSector(debug_arg); break; case MODE_READ_SECTOR: + if(!Closure->device) Closure->device = DefaultDevice(); ReadSector(debug_arg); break; @@ -930,8 +951,8 @@ int main(int argc, char *argv[]) PrintCLI(_(" -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n")); PrintCLI(_(" -j,--jump n - jump n sectors forward after a read error (default: 16)\n")); PrintCLI(_(" -m n - list/select error correction methods (default: RS01)\n")); - PrintCLI(_(" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" - " maximum error correction image size (in sectors)\n")); + PrintCLI(_(" -n,--redundancy n%% - error correction data redundancy\n" + " allowed values depend on codec (see manual)\n")); PrintCLI(_(" -v,--verbose - more diagnostic messages\n")); PrintCLI(_(" -x,--threads n - use n threads for en-/decoding (if supported by codec)\n")); PrintCLI(_(" --adaptive-read - use optimized strategy for reading damaged media\n")); @@ -940,7 +961,7 @@ int main(int argc, char *argv[]) PrintCLI(_(" --dao - assume DAO disc; do not trim image end\n")); PrintCLI(_(" --defective-dump d - directory for saving incomplete raw sectors\n")); #ifdef SYS_LINUX - PrintCLI(_(" --driver=sg - use alternative sg driver (see man page!)\n")); + PrintCLI(_(" --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n")); #endif PrintCLI(_(" --eject - eject medium after successful read\n")); PrintCLI(_(" --fill-unreadable n - fill unreadable sectors with byte n\n")); diff --git a/dvdisaster.h b/dvdisaster.h index ece5b31..4b36a27 100644 --- a/dvdisaster.h +++ b/dvdisaster.h @@ -110,6 +110,12 @@ #define MAX_CODEC_THREADS 32 /* not including IO and GUI */ +/* SCSI driver selection on Linux */ + +#define DRIVER_NONE 0 +#define DRIVER_CDROM 1 +#define DRIVER_SG 3 + /* Definitions for Closure->eccTarget */ #define ECC_FILE 0 @@ -188,7 +194,8 @@ typedef struct _GlobalClosure int pauseEject; /* Eject medium during pause */ int ignoreFatalSense;/* Continue reading after potential fatal sense errors */ int useSSE2; /* TRUE means to use SSE2 version of the codec. */ - int useSGioctl; /* Use the generic SCSI ioctl instead of CDROM one on Liux */ + int useAltiVec; /* TRUE means to use AltiVec version of the codec. */ + int useSCSIDriver; /* Whether to use generic or sg driver on Linux */ char *homeDir; /* path to users home dir */ char *dotFile; /* path to .dvdisaster file */ @@ -1214,6 +1221,7 @@ int TestErrorSyndromes(ReedSolomonTables*, unsigned char*); void EncodeNextLayer(ReedSolomonTables*, unsigned char*, unsigned char*, guint64, int); int ProbeSSE2(void); +int ProbeAltiVec(void); /*** *** show-manual.c diff --git a/fingerprints.md5 b/fingerprints.md5 index ae2afd3..448de34 100644 --- a/fingerprints.md5 +++ b/fingerprints.md5 @@ -1,21 +1,21 @@ -b2060af10b265cb4bc4f40d087e29c46 *dvdisaster.h +f3e7b2334bcb6a86e6acb098046ccb76 *dvdisaster.h bbad982ecf32cfe60c553aedfba6d304 *galois-inlines.h df9d88776eb3f77a93ef596b148193be *md5.h bbc504cc1b0cc8e38a6280f69cd8e758 *read-linear.h 77839999695555c6083175f3e14b4916 *rs01-includes.h 449fe7d047154b9a6a522485b089f15f *rs02-includes.h 60e51991ab59ca260c081142aae20890 *rs03-includes.h -7e3690b8112185991993d8dfb0317970 *scsi-layer.h +432d599cfc3a67115f4d2c9ea21c8425 *scsi-layer.h 8453152fe140c9d08f4005d920bd3bc6 *udf.h 6a7edd2814d3ac1ef1588ec00a97cacf *bitmap.c 89015923c38c8f6000b01a4c57b70826 *build.c -c75e6da8d23d3ebc3a80e42d319e7752 *closure.c +bfbe9bac752fb9afb020bb3bb39b015e *closure.c aa5d77bf3a7ff0ef25900ffe2abc92ab *crc32.c cfcbedd535eb374cfa308a421e2854ab *crcbuf.c aab0f4dd4774752006bddf1a0ad528e6 *curve.c d14296483277b5eb61edcbfe43d81575 *debug.c c5c597db1c46b48db276ce4e424b145b *ds-marker.c -705b3c017211c7eb39b7d3746a225c4c *dvdisaster.c +b95a04f9228693c4016cd96e0972396b *dvdisaster.c 37009e2430c9cb0232d371414828792e *ecc-rs01.c c02ab24f02c1972b7a494964ef363a89 *ecc-rs02.c 33820f8f75f056f98361e9cd55bc4198 *ecc-rs03.c @@ -37,7 +37,7 @@ f218c23d24aaf6aa31f60d29491b9d5f *main-window.c 46c5b4110410003b78b7bc742a4902e9 *method.c 17183bad35db217e2c352178844ceda3 *method-link.c 9b193ced80be6ac9e625afc89b97ecd1 *misc.c -2bb580fc4b9cb265fa598d11b4c2cff2 *preferences.c +7e3a02c567f2e100cf0fecc452f57c72 *preferences.c ffef810c1252bd4e376a550ea075325d *print-sense.c cdde449dd2a8f64b560ff18a36f86234 *random.c 851ed918f67eefe054fb7cd7bb1d43fb *raw-editor.c @@ -49,10 +49,10 @@ c69766be51625d39095c60af6aec63fd *read-linear-window.c 9b515faab05da0f5ad8d7ea3cf534e48 *recover-raw.c 2bcd92dfc4c51e7ec491c2c10fb558cc *rs01-common.c d26f7c773c8392fdcf9d6f40e56e7102 *rs01-create.c -ab16484e8cd2ca408dbd98b32a7eac24 *rs01-fix.c +1e8aecf71ceb4d79ade4e5237c3fdcd4 *rs01-fix.c f8aa6613dbcaa6a50fac8eaeb744065c *rs01-verify.c 2cae24168d10bcdc31e6d29902468fc8 *rs01-window.c -13086bf5ce58d14a06efd6c1f2894b9a *rs02-common.c +d7e1183402184b0862e108059a3b11ac *rs02-common.c ad5da0b32ad769d32fa6af8d7fd8c06c *rs02-create.c 0500dfe25871b5628ba554171ca975dd *rs02-fix.c 37f5eb57a749c35db8a1c15bd73e2818 *rs02-recognize.c @@ -62,22 +62,22 @@ e5015c54790fdd6a94f96132b1a03474 *rs02-window.c da149b01eb69ce2d64c094caacf29cb7 *rs03-create.c 37f13afa90fe9c3ab36cb525399f290c *rs03-fix.c 6c538eb3fae1d39d4dca592f1c4755d9 *rs03-preferences.c -beeed8f26aaf72c637093f266986277c *rs03-recognize.c +591834436d042d1e9b0f84faafea0059 *rs03-recognize.c f46a10b82241a5ae62158ca675db5cdc *rs03-verify.c 9e43fa7f533fe4364e872ba65e192ddc *rs03-window.c 0ef243314deea6338289021987657779 *rs-decoder.c -c696f438d46f60854e6c8df0e074f96e *rs-encoder.c +5776edd6f3ab7e8d5c34fd2e6c58aeb4 *rs-encoder-altivec.c +2674b15d64f78064ac37eef5bbe3534f *rs-encoder.c 4afa73d66793df2c0078106c6a63d3ae *rs-encoder-sse2.c -95b4293240901df01648d3d5f1d800a0 *scsi-darwin.c +b0ede9242e26fef016100979b56f3b29 *scsi-darwin.c 29d951d863df05988897ccd19e446ee1 *scsi-freebsd.c -eee09fe1de90cdd3857742fb53c97ec4 *scsi-layer.c -b00c424c6074fc2e027b438126b1e52c *scsi-linux.c -fb10596d4988a3a686db2d8cac5fbe62 *scsi-netbsd.c -703c17244eb9536587697daca083df22 *scsi-solaris.c +dc4895a5057240afe541acc441e80234 *scsi-layer.c +09278b1360e6e4a952b6e60bee8e2e2d *scsi-linux.c +4729d308a2fc49f6e61d223e28a21d2c *scsi-netbsd.c 60a969a1b1ce76e00553336e1f24891c *scsi-unknown.c bdeb40ee9f117258c343596dde58eadb *scsi-win32.c -8cd5adbfe54a86545b5992b839bc6b3f *show-manual.c +83c7f04d9c1b712878b378e5fcf4c825 *show-manual.c c12be6c253da9798bbab9bc3020874c3 *smart-lec.c c5abc32443aa9eb4f9ef5201e2e85204 *spiral.c -b965dd361cd2e52d066995bb07d50f53 *udf.c +009f39312e0bb43abf9fd75b2e95c01b *udf.c a613ba2944c034cc405250cb375866c0 *welcome-window.c diff --git a/locale/cs.po b/locale/cs.po index 94184f0..25ea34b 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2006-03-16 20:40+0100\n" "Last-Translator: Luboš Staněk \n" "Language-Team: čeština \n" @@ -31,15 +31,15 @@ msgstr "" "# takže jej program dvdisaster při každém spuštění přepíše.\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "" @@ -78,7 +78,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "Selhalo vystavení na sektor %lld v obrazu: %s" @@ -86,9 +86,8 @@ msgstr "Selhalo vystavení na sektor %lld v obrazu: %s" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Selhal zápis do sektoru %lld v obrazu: %s" @@ -116,7 +115,7 @@ msgstr "Počet výmazů musí být > 0 a <= %d\n" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Nelze otevřít %s: %s" @@ -195,8 +194,7 @@ msgstr "Zkrácení obrazu na %lld sektorů.\n" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Nelze zkrátit %s: %s\n" @@ -271,7 +269,7 @@ msgstr "" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "Selhalo čtení sektoru %lld v obrazu: %s" @@ -392,36 +390,36 @@ msgstr "Metoda RS01 není dostupná pro porovnání souborů." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -429,12 +427,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? neplatná návratová hodnota getopt %d\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -443,7 +441,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -467,7 +465,7 @@ msgstr "" " dvdisaster -u,--unlink # Smaže soubor .iso (když se dokončí další akce)\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -478,199 +476,197 @@ msgid "" " -o,--ecc-target [file image] - where to put ecc data in RS03\n" msgstr "" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Vylepšovací volby (podívejte se před použitím do příručky!)\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr "" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - přeskočit n sektorů vpřed po chybě čtení (výchozí: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr " -m n - list/select error correction methods (default: RS01)\n" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - redundance souboru oprav chyb (v procentech), nebo\n" -" maximální velikost obrazu s opravnými daty (v sektorech)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr " -v,--verbose - více diagnostických hlášení\n" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr "" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - použít optimalizovanou strategii čtení poškozených médií\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - automaticky přidat souborové přípony .iso a .ecc\n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - velikost vyrovnávací paměti v MB v režimu -c (výchozí: 32MB)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - předpokládat disk DAO; neořezávat konec obrazu\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr "" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" -msgstr "" - -#: dvdisaster.c:945 -msgid " --eject - eject medium after successful read\n" -msgstr "" - -#: dvdisaster.c:946 -msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" -msgstr " --fill-unreadable n - vyplnit nečitelné sektory bajtem n\n" - -#: dvdisaster.c:947 -msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" -msgstr "" - -#: dvdisaster.c:948 -msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" -msgstr "" - -#: dvdisaster.c:949 -msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" -msgstr "" - -#: dvdisaster.c:950 -msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" -msgstr "" - -#: dvdisaster.c:951 -msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" -msgstr "" - -#: dvdisaster.c:952 -msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" -msgstr "" - -#: dvdisaster.c:953 -msgid " --read-medium n - read the whole medium up to n times\n" -msgstr "" - -#: dvdisaster.c:954 -msgid " --read-raw - performs read in raw mode if possible\n" -msgstr "" - -#: dvdisaster.c:955 -msgid " --speed-warning n - print warning if speed changes by more than n percent\n" -msgstr " --speed-warning n - vypsat upozornění, změní-li se rychlost o více než n procent\n" - -#: dvdisaster.c:956 -msgid " --spinup-delay n - wait n seconds for drive to spin up\n" -msgstr " --spinup-delay n - počkat n sekund na roztočení mechaniky\n" - -#: dvdisaster.c:960 -msgid "Debugging options (purposefully undocumented and possibly harmful)\n" -msgstr "Ladící volby (úmyslně nedokumentované a pravděpodobně škodlivé)\n" - -#: dvdisaster.c:961 -msgid " --debug - enables the following options\n" -msgstr " --debug - povoluje následující ladící volby\n" - -#: dvdisaster.c:962 -msgid " --byteset s,i,b - set byte i in sector s to b\n" -msgstr " --byteset s,i,b - nastavit bajt i v sektoru s na b\n" - -#: dvdisaster.c:963 -msgid " --cdump - creates C #include file dumps instead of hexdumps\n" -msgstr "" - #: dvdisaster.c:964 -msgid " --compare-images a,b - compare sectors in images a and b\n" -msgstr "" - -#: dvdisaster.c:965 -msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" msgstr "" #: dvdisaster.c:966 -msgid " --erase sector - erase the given sector\n" -msgstr " --erase sector - vymazat daný sektor\n" +msgid " --eject - eject medium after successful read\n" +msgstr "" #: dvdisaster.c:967 -msgid " --erase n-m - erase sectors n - m, inclusively\n" -msgstr " --erase n-m - vymazat sektory n - m, včetně\n" +msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" +msgstr " --fill-unreadable n - vyplnit nečitelné sektory bajtem n\n" #: dvdisaster.c:968 -msgid " --marked-image n - create image with n marked random sectors\n" +msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr "" #: dvdisaster.c:969 -msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr "" #: dvdisaster.c:970 -msgid " --random-errors r,e seed image with (correctable) random errors\n" -msgstr " --random-errors r,e distribuovat náhodné (opravitelné) chyby v obrazu\n" +msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" +msgstr "" #: dvdisaster.c:971 -msgid " --random-image n - create image with n sectors of random numbers\n" -msgstr " --random-image n - vytvořit obraz s n sektory náhodných čísel\n" +msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" +msgstr "" #: dvdisaster.c:972 -msgid " --random-seed n - random seed for built-in random number generator\n" -msgstr " --random-seed n - inicializace náhodného generátoru pro funkci výše\n" +msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" +msgstr "" #: dvdisaster.c:973 -msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr "" #: dvdisaster.c:974 -msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgid " --read-medium n - read the whole medium up to n times\n" msgstr "" #: dvdisaster.c:975 -msgid " --screen-shot - useful for generating screen shots\n" +msgid " --read-raw - performs read in raw mode if possible\n" msgstr "" #: dvdisaster.c:976 +msgid " --speed-warning n - print warning if speed changes by more than n percent\n" +msgstr " --speed-warning n - vypsat upozornění, změní-li se rychlost o více než n procent\n" + +#: dvdisaster.c:977 +msgid " --spinup-delay n - wait n seconds for drive to spin up\n" +msgstr " --spinup-delay n - počkat n sekund na roztočení mechaniky\n" + +#: dvdisaster.c:981 +msgid "Debugging options (purposefully undocumented and possibly harmful)\n" +msgstr "Ladící volby (úmyslně nedokumentované a pravděpodobně škodlivé)\n" + +#: dvdisaster.c:982 +msgid " --debug - enables the following options\n" +msgstr " --debug - povoluje následující ladící volby\n" + +#: dvdisaster.c:983 +msgid " --byteset s,i,b - set byte i in sector s to b\n" +msgstr " --byteset s,i,b - nastavit bajt i v sektoru s na b\n" + +#: dvdisaster.c:984 +msgid " --cdump - creates C #include file dumps instead of hexdumps\n" +msgstr "" + +#: dvdisaster.c:985 +msgid " --compare-images a,b - compare sectors in images a and b\n" +msgstr "" + +#: dvdisaster.c:986 +msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgstr "" + +#: dvdisaster.c:987 +msgid " --erase sector - erase the given sector\n" +msgstr " --erase sector - vymazat daný sektor\n" + +#: dvdisaster.c:988 +msgid " --erase n-m - erase sectors n - m, inclusively\n" +msgstr " --erase n-m - vymazat sektory n - m, včetně\n" + +#: dvdisaster.c:989 +msgid " --marked-image n - create image with n marked random sectors\n" +msgstr "" + +#: dvdisaster.c:990 +msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgstr "" + +#: dvdisaster.c:991 +msgid " --random-errors r,e seed image with (correctable) random errors\n" +msgstr " --random-errors r,e distribuovat náhodné (opravitelné) chyby v obrazu\n" + +#: dvdisaster.c:992 +msgid " --random-image n - create image with n sectors of random numbers\n" +msgstr " --random-image n - vytvořit obraz s n sektory náhodných čísel\n" + +#: dvdisaster.c:993 +msgid " --random-seed n - random seed for built-in random number generator\n" +msgstr " --random-seed n - inicializace náhodného generátoru pro funkci výše\n" + +#: dvdisaster.c:994 +msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:995 +msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:996 +msgid " --screen-shot - useful for generating screen shots\n" +msgstr "" + +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr " --send-cdb arg - vykoná daný cdb na mechanice; nevhodné užití shodí systém\n" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr " --show-sector n - zobrazí hexadecimální výpis daného sektoru\n" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr " --sim-defects n - simulate n%% defective sectors on medium\n" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr " --truncate n - zkrátí obraz na n sektorů\n" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" msgstr " --zero-unreadable - nahradí značky \"nečitelného sektoru\" nulami\n" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -678,7 +674,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -706,14 +702,6 @@ msgstr "" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "" - #: file.c:39 #, c-format msgid "" @@ -1534,7 +1522,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1694,7 +1682,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3080,7 +3068,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Redundance %d z použitelného rozsahu [8..100]." #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Zrušeno kvůli neopravitelné chybě." @@ -3145,7 +3133,7 @@ msgid "" msgstr "" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Tvorba ecc: %3d.%1d%%" @@ -3154,8 +3142,7 @@ msgstr "Tvorba ecc: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Zrušeno uživatelem!" @@ -3178,7 +3165,7 @@ msgstr "" "Nelze zapsat hlavičku ecc:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Tvorba ecc: 100.0%%\n" @@ -3291,7 +3278,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" @@ -3779,7 +3766,7 @@ msgstr "- md5suma ecc : %s (v pořádku)\n" msgid "Good error correction file." msgstr "Dobrý soubor oprav chyb." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Vytvářím data oprav chyb:" @@ -3913,22 +3900,22 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Skok na hlavičku ecc selhal na %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Selhal zápis hlavičky ecc na %lld: %s\n" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -3968,7 +3955,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "Skok na konec obrazu se nezdařil: %s\n" @@ -3979,19 +3966,18 @@ msgstr "Skok na konec obrazu se nezdařil: %s\n" msgid "Failed expanding the image: %s\n" msgstr "Rozšíření obrazu se nezdařilo: %s\n" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" "%s" msgstr "" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "" @@ -4018,7 +4004,7 @@ msgid "" "not an option, please create a separate error correction file." msgstr "" -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4300,7 +4286,7 @@ msgstr "" msgid "Full data recovery is NOT possible." msgstr "" -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "" @@ -4506,7 +4492,7 @@ msgstr "" msgid "%d threads" msgstr "" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" @@ -4525,7 +4511,7 @@ msgid "" "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -4656,20 +4642,6 @@ msgid "" "Performance will not scale linearly with the number of CPU cores. Hard disk performance is more limiting than raw CPU power. When using 4 cores or more, memory bandwidth may also affect performance." msgstr "" -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "" @@ -4926,7 +4898,7 @@ msgstr "" msgid "No CD/DVD drives found." msgstr "" -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -4934,7 +4906,7 @@ msgstr "" "Nelze získat přístup k /dev kvůli zařízením\n" "Nebudou předvybrány žádné mechaniky.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5444,6 +5416,13 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - redundance souboru oprav chyb (v procentech), nebo\n" +#~ " maximální velikost obrazu s opravnými daty (v sektorech)\n" + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." diff --git a/locale/de.po b/locale/de.po index b389521..32c48d6 100644 --- a/locale/de.po +++ b/locale/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.52.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2004-11-30 19:48+0100\n" "Last-Translator: Carsten Gnörlich \n" "Language-Team: German \n" @@ -30,15 +30,15 @@ msgstr "" "# Sie wird bei jedem Aufruf von dvdisaster neu überschrieben.\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "abbild.iso" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "abbild.ecc" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "sektor_" @@ -77,7 +77,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "Ansteuern von Sektor %lld im Abbild fehlgeschlagen: %s" @@ -85,9 +85,8 @@ msgstr "Ansteuern von Sektor %lld im Abbild fehlgeschlagen: %s" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Schreiben von Sektor %lld im Abbild fehlgeschlagen: %s" @@ -116,7 +115,7 @@ msgstr "Die Anzahl von Auslöschungen muß > 0 und <= %d sein\n" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Konnte %s nicht öffnen: %s" @@ -199,8 +198,7 @@ msgstr "Verkürze das Abbild auf %lld Sektoren.\n" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Konnte %s nicht abschneiden: %s\n" @@ -275,7 +273,7 @@ msgstr "" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "Lesen von Sektor %lld im Abbild fehlgeschlagen: %s" @@ -437,36 +435,36 @@ msgstr "RS01-Methode zum Überprüfen der Dateien nicht verfügbar." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "-o/--ecc-target erwartet 'file' oder 'image'" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "--threads muß zwischen 1..%d liegen\n" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size muß mindestens 8MB sein; 16MB oder mehr werden empfohlen." -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size darf höchsten 8192MB sein." -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" -msgstr "Gültige Argumente für --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" +msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "--driver wird nur unter GNU/Linux unterstützt" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "--prefetch-sectors muß zwischen 32 und 8096 liegen" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -476,12 +474,12 @@ msgstr "" "\n" "dvdisaster version %s build %d\n" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? ungültiger Rückgabewert von getopt: %d\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -493,7 +491,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -517,7 +515,7 @@ msgstr "" " dvdisaster -u,--unlink # Löscht .iso - Dateien nach Beenden der vorherigen Aktionen.\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -534,199 +532,197 @@ msgstr "" " -e,--ecc Name - Name der Fehlerkorrektur-Datei (Standard: medium.ecc)\n" " -o,--ecc-target [file image] - Ablageziel für Fehlerkorrektur-Daten in RS03\n" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Feineinstellung (Beachten Sie die Hinweise in der Dokumentation!):\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr " -a,--assume x,y,... - Nimm an daß das Abbild mit Kodierer(n) x,y,... erweitert wurde\n" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - überspringe n Sektoren nach einem Lesefehler (Standard: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr " -m n - Fehlerkorrektur-Methoden anzeigen/auswählen (Standard: RS01)\n" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - Redundanz der Fehlerkorrektur-Dateien (in Prozent), oder\n" -" höchstmögliche Größe für Fehlerkorrektur-Abbilder (in Sektoren)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr " -v,--verbose - mehr erläuternde Ausgaben\n" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr " -x,--threads n - verwende n Kontrollfäden für RS03-(De-)Kodierung\n" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - verwende optimiertes Leseverfahren für defekte Datenträger\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - automatisches Anfügen der .iso- und .ecc-Dateiendungen\n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - Zwischenspeicher in MB bei .ecc-Datei-Erzeugung (Standard: 32MB)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - unterstelle DAO; Abbild am Ende nicht kürzen\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr " --defective-dump d - Verzeichnis zum Speichern unvollständiger Roh-Sektoren\n" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" -msgstr " --driver=sg - alternativen SCSI-Treiber wählen (siehe Dokumentation!)\n" +#: dvdisaster.c:964 +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" +msgstr "" -#: dvdisaster.c:945 +#: dvdisaster.c:966 msgid " --eject - eject medium after successful read\n" msgstr " --eject - Datenträger nach erfolgreichem Lesen auswerfen\n" -#: dvdisaster.c:946 +#: dvdisaster.c:967 msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" msgstr " --fill-unreadable n - fülle unlesbare Sektoren mit Byte n\n" -#: dvdisaster.c:947 +#: dvdisaster.c:968 msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr " --ignore-fatal-sense - Lesen nach möglicherweise schwerwiegenden Fehlern fortsetzen\n" -#: dvdisaster.c:948 +#: dvdisaster.c:969 msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr " --internal-rereads n - Laufwerk unternimmt n Leseversuche bevor es einen Fehler zurückmeldet\n" -#: dvdisaster.c:949 +#: dvdisaster.c:970 msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" msgstr " --old-ds-marker - markiere fehlende Sektoren kompatibel mit dvdisaster <= 0.70\n" -#: dvdisaster.c:950 +#: dvdisaster.c:971 msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" msgstr " --prefetch-sectors n - n Sektoren für RS03-Kodierung im Voraus laden (braucht ~nMB)\n" -#: dvdisaster.c:951 +#: dvdisaster.c:972 msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" msgstr " --raw-mode n - \"raw-modus\" zum Lesen von CD (20 or 21)\n" -#: dvdisaster.c:952 +#: dvdisaster.c:973 msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr " --read-attempts n-m - versucht beschädigten Sektor n bis m-mal zu lesen\n" -#: dvdisaster.c:953 +#: dvdisaster.c:974 msgid " --read-medium n - read the whole medium up to n times\n" msgstr " --read-medium n - liest den gesamten Datenträger bis zu n-mal\n" -#: dvdisaster.c:954 +#: dvdisaster.c:975 msgid " --read-raw - performs read in raw mode if possible\n" msgstr " --read-raw - liest in der \"raw\"-Betriebsart sofern möglich\n" -#: dvdisaster.c:955 +#: dvdisaster.c:976 msgid " --speed-warning n - print warning if speed changes by more than n percent\n" msgstr " --speed-warning n - warnt bei Geschwindigkeitsänderung um mehr als n Prozent\n" -#: dvdisaster.c:956 +#: dvdisaster.c:977 msgid " --spinup-delay n - wait n seconds for drive to spin up\n" msgstr " --spinup-delay n - gibt dem Laufwerk n Sekunden Zeit zum Hochlaufen\n" -#: dvdisaster.c:960 +#: dvdisaster.c:981 msgid "Debugging options (purposefully undocumented and possibly harmful)\n" msgstr "Optionen zum Testen (absichtlich undokumentiert und möglicherweise schädlich!)\n" -#: dvdisaster.c:961 +#: dvdisaster.c:982 msgid " --debug - enables the following options\n" msgstr " --debug - schaltet die folgenden Optionen frei\n" -#: dvdisaster.c:962 +#: dvdisaster.c:983 msgid " --byteset s,i,b - set byte i in sector s to b\n" msgstr " --byteset s,i,b - setze Byte i in Sektor s auf Wert b\n" -#: dvdisaster.c:963 +#: dvdisaster.c:984 msgid " --cdump - creates C #include file dumps instead of hexdumps\n" msgstr " --cdump - Erzeugt C-Include-Dateien anstelle von hexadezimalen Ausgaben\n" -#: dvdisaster.c:964 +#: dvdisaster.c:985 msgid " --compare-images a,b - compare sectors in images a and b\n" msgstr " --compare-images a,b - Vergleicht Sektoren in den Abbildern a und b\n" -#: dvdisaster.c:965 +#: dvdisaster.c:986 msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" msgstr " --copy-sector a,n,b,m - Kopiert Sektor n aus Abbild a in Sektor m von Abbild b\n" -#: dvdisaster.c:966 +#: dvdisaster.c:987 msgid " --erase sector - erase the given sector\n" msgstr " --erase sector - Löscht den angegebenen Sektor\n" -#: dvdisaster.c:967 +#: dvdisaster.c:988 msgid " --erase n-m - erase sectors n - m, inclusively\n" msgstr " --erase n-m - Löscht die Sektoren n - m (einschließlich n,m)\n" -#: dvdisaster.c:968 +#: dvdisaster.c:989 msgid " --marked-image n - create image with n marked random sectors\n" msgstr " --marked-image n - Erzeugt Abbild mit n markierten Sektoren aus Zufallszahlen\n" -#: dvdisaster.c:969 +#: dvdisaster.c:990 msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" msgstr " --merge-images a,b Vereinigt Abbild a mit b (a erhält Sektoren aus b)\n" -#: dvdisaster.c:970 +#: dvdisaster.c:991 msgid " --random-errors r,e seed image with (correctable) random errors\n" msgstr " --random-errors r,e Füllt Abbild mit zufälligen reparierbaren Fehlern\n" -#: dvdisaster.c:971 +#: dvdisaster.c:992 msgid " --random-image n - create image with n sectors of random numbers\n" msgstr " --random-image n - Erzeugt Abbild mit n Sektoren aus Zufallszahlen\n" -#: dvdisaster.c:972 +#: dvdisaster.c:993 msgid " --random-seed n - random seed for built-in random number generator\n" msgstr " --random-seed n - Anfangswert für den eingebauten Zufallszahlengenerator\n" -#: dvdisaster.c:973 +#: dvdisaster.c:994 msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" msgstr " --raw-sector n - Zeigt hexadezimale Darstellung eines Roh-Sektors vom Datenträger\n" -#: dvdisaster.c:974 +#: dvdisaster.c:995 msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" msgstr " --read-sector n - Zeigt hexadezimale Darstellung des Inhalts eines Sektors vom Datenträger\n" -#: dvdisaster.c:975 +#: dvdisaster.c:996 msgid " --screen-shot - useful for generating screen shots\n" msgstr " --screen-shot - nützlich um Bildschirmfotos zu erzeugen\n" -#: dvdisaster.c:976 +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr " --send-cdb arg - führt cdb im Laufwerk aus; schrottet System bei Fehleingabe\n" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr " --show-sector n - Zeigt hexadezimale Darstellung des Sektor-Inhalts einer Abbild-Datei\n" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr " --sim-defects n - simuliere n%% beschädigte Sektoren auf dem Datenträger\n" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr " --truncate n - Verkürzt Abbild auf n Sektoren Länge\n" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" msgstr " --zero-unreadable - Ersetzt die \"unlesbare Sektoren\"-Markierungen durch Nullen\n" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -738,7 +734,7 @@ msgstr "" "dvdisaster-win.exe bereitgestellt (ebenfalls in dieser Installation enthalten).\n" "\n" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "Optisches LW 52X FW 1.02" @@ -766,14 +762,6 @@ msgstr "Mehrprozessor-fähiger RS-Kodierer (RS03)" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "Mehrprozessor-fähiger Reed-Solomon-Kodierer für Fehlerkorrektur-Dateien und erweiterte Abbilder" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "Auf einen Prozessorkern beschränkter RS-Kodierer (RSS3)" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "Auf einen Prozessorkern beschränkter Kodierer für Fehlerkorrektur-Dateien und erweiterte Abbilder" - #: file.c:39 #, c-format msgid "" @@ -1654,7 +1642,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1854,7 +1842,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3390,7 +3378,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Redundanz %d außerhalb des nutzbaren Bereiches [8..100]." #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Abbruch durch nicht behebbaren Fehler." @@ -3458,7 +3446,7 @@ msgstr "" "Versuchen Sie diesen Wert zu verkleinern.\n" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Kodierungs-Fortschritt: %3d.%1d%%" @@ -3467,8 +3455,7 @@ msgstr "Kodierungs-Fortschritt: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Abbruch auf Benutzeranforderung!" @@ -3491,7 +3478,7 @@ msgstr "" "Konnte den Vorspann der Fehlerkorrektur-Datei nicht schreiben:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Kodierungs-Fortschritt: 100.0%%\n" @@ -3605,7 +3592,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" "Die Abbild-Datei ist %d Bytes länger als in\n" @@ -4102,7 +4089,7 @@ msgstr "- Ecc-md5sum : %s (gut) \n" msgid "Good error correction file." msgstr "Gute Fehlerkorrektur-Datei." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Erzeuge Fehlerkorrektur-Daten:" @@ -4258,22 +4245,22 @@ msgstr "" "\n" "dvdisaster optimiert Zugriffe auf die Abbild- und Fehlerkorrektur-Datei durch einen eigenen Zwischenspeicher. Die Voreinstellung von 32MB ist für die meisten Systeme passend." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Ansteuern des Ecc-Vorspanns bei Pos. %lld fehlgeschlagen: %s\n" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Schreiben des Ecc-Vorspanns bei Pos. %lld fehlgeschlagen: %s\n" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "Abbruch auf Benutzeranforderung! (unvollständige Fehlerkorrektur-Daten wurden aus dem Abbild entfernt)" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -4323,7 +4310,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "Abbild vorbereiten (Prüfsummen, Größe erweitern): %3d%%" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "Ansteuern des Abbild-Endes fehlgeschlagen: %s\n" @@ -4334,12 +4321,11 @@ msgstr "Ansteuern des Abbild-Endes fehlgeschlagen: %s\n" msgid "Failed expanding the image: %s\n" msgstr "Erweitern des Abbildes fehlgeschlagen: %s\n" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "Erzeugen der Fehlerkorrektur-Daten abgebrochen" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" @@ -4348,7 +4334,7 @@ msgstr "" "Erweitere das Abbild um Fehlerkorrektur-Daten.\n" "%s" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "- prüfe Abbild -" @@ -4380,7 +4366,7 @@ msgstr "" "und kein größerer Datenträger zur Verfügung steht, erzeugen Sie bitte\n" "eine alleinstehende Fehlerkorrektur-Datei." -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4667,7 +4653,7 @@ msgstr "Eine vollständige Wiederherstellung ist wahrscheinlich. msgid "Full data recovery is NOT possible." msgstr "Eine vollständige Wiederherstellung ist NICHT möglich." -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "1. Abbild vorbereiten:" @@ -4893,7 +4879,8 @@ msgid "" "be created when the image is still fully readable.\n" "Exiting and removing partial error correction data." msgstr "" -"Unvollständiges Abbild\n\n" +"Unvollständiges Abbild\n" +"\n" "Dieses Abbild enthält fehlende Sektoren,\n" "z.B. Sektor %lld.\n" "%sFehlerkorrektur-Daten sind vergleichbar mit einer\n" @@ -4909,9 +4896,11 @@ msgid "" "Perform a \"Verify\" action for more information.\n" "\n" msgstr "" -"\nDas Abbild wurde wahrscheinlich aus defektem Ausgangsmaterial\n" +"\n" +"Das Abbild wurde wahrscheinlich aus defektem Ausgangsmaterial\n" "erzeugt. Führen Sie eine \"Überprüfen\"-Aktion durch um mehr\n" -"Informationen zu erhalten.\n\n" +"Informationen zu erhalten.\n" +"\n" #: rs03-create.c:740 msgid "CPU bound" @@ -4937,7 +4926,7 @@ msgstr "%d Kontrollfäden mit 128bit-Erweiterung" msgid "%d threads" msgstr "%d Kontrollfäden" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "Kodiere mit Verfahren RS03: %lld MB Daten, %lld MB ecc (%d Nullstellen; %4.1f%% Redundanz)." @@ -4960,7 +4949,7 @@ msgstr "" "Erzeuge eine Fehlerkorrektur-Datei mit dem RS03-Verfahren [%d Kontrollfäden]:\n" "%lld MB Daten, %lld MB Fehlerkorrektur-Daten (%d Nullstellen; %4.1f%% Redundanz)." -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -5120,24 +5109,6 @@ msgstr "" "\n" "Die Leistung wird nicht im gleichen Verhältnis mit der Anzahl der Kontrollfäden steigen. Die Festplattenleistung begrenzt die Kodierung stärker als die reine Prozessorleistung. Mit 4 oder mehr Kernen kann die Speicherbandbreite ebenfalls die Leistung begrenzen." -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" -"Erweitere das Abbild mit dem RS03s-Verfahren:\n" -"%lld MB Daten, %lld MB Fehlerkorrektur-Daten (%d Nullstellen; %4.1f%% Redundanz)." - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" -"Erzeuge eine Fehlerkorrektur-Datei mit dem RS03s-Verfahren:\n" -"%lld MB Daten, %lld MB Fehlerkorrektur-Daten (%d Nullstellen; %4.1f%% Redundanz)." - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "Fehlerkorrektur-Eigenschaften" @@ -5406,7 +5377,7 @@ msgstr "Zustand:" msgid "No CD/DVD drives found." msgstr "Keine CD/DVD-Laufwerke gefunden." -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -5414,7 +5385,7 @@ msgstr "" "Kein Zugriff auf Laufwerke in /dev möglich.\n" "Es werden keine Laufwerke voreingestellt.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5973,6 +5944,39 @@ msgstr "" msgid "New in this Version:" msgstr "Neu in dieser Version:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Gültige Argumente für --driver: sg" + +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - Redundanz der Fehlerkorrektur-Dateien (in Prozent), oder\n" +#~ " höchstmögliche Größe für Fehlerkorrektur-Abbilder (in Sektoren)\n" + +#~ msgid " --driver=sg - use alternative sg driver (see man page!)\n" +#~ msgstr " --driver=sg - alternativen SCSI-Treiber wählen (siehe Dokumentation!)\n" + +#~ msgid "Single threaded RS codec (RSS3)" +#~ msgstr "Auf einen Prozessorkern beschränkter RS-Kodierer (RSS3)" + +#~ msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" +#~ msgstr "Auf einen Prozessorkern beschränkter Kodierer für Fehlerkorrektur-Dateien und erweiterte Abbilder" + +#~ msgid "" +#~ "Augmenting image with Method RS03s:\n" +#~ "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." +#~ msgstr "" +#~ "Erweitere das Abbild mit dem RS03s-Verfahren:\n" +#~ "%lld MB Daten, %lld MB Fehlerkorrektur-Daten (%d Nullstellen; %4.1f%% Redundanz)." + +#~ msgid "" +#~ "Creating the error correction file with Method RS03s:\n" +#~ "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." +#~ msgstr "" +#~ "Erzeuge eine Fehlerkorrektur-Datei mit dem RS03s-Verfahren:\n" +#~ "%lld MB Daten, %lld MB Fehlerkorrektur-Daten (%d Nullstellen; %4.1f%% Redundanz)." + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." diff --git a/locale/it.po b/locale/it.po index 9a813ad..770b257 100644 --- a/locale/it.po +++ b/locale/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.52.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2005-01-01 14:24+0100\n" "Last-Translator: Andrea Polverini \n" "Language-Team: Italian <>\n" @@ -30,15 +30,15 @@ msgstr "" "# e sarà sovrascritto ogni volta che verrà eseguito dvdisaster\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "" @@ -75,7 +75,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "" @@ -83,9 +83,8 @@ msgstr "" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "" @@ -114,7 +113,7 @@ msgstr "" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Non posso aprire %s: %s" @@ -193,8 +192,7 @@ msgstr "" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Non posso troncare %s: %s\n" @@ -267,7 +265,7 @@ msgstr "Contenuto del settore %lld:\n" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "" @@ -388,36 +386,36 @@ msgstr "" msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -425,12 +423,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? getopt ha restituito un valore illegale: %d\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -439,7 +437,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -463,7 +461,7 @@ msgstr "" " dvdisaster -u,--unlink # Cancella i file .iso (Quando le altre azioni sono concluse)\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -474,199 +472,197 @@ msgid "" " -o,--ecc-target [file image] - where to put ecc data in RS03\n" msgstr "" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Opzioni per \"smanettoni\" (Leggere il manuale prima di utilizzarle!!):\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr "" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - Salta n settori in avanti dopo un errore di lettura (Standard: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr "" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - ridondanza per la correzione degli errori,\n" -" maximum error correction image size (in sectors)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr "" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr "" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - usare la strategia ottimizzata per leggere i supporti danneggiati\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - aggiungi automaticamente i suffissi .iso e .ecc\n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - Dimensione della cache in MB con la modalità -c (Standard: 32MB)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - Utilizza la modalità DAO; Il disco non sarà finalizzato\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr "" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" -msgstr "" - -#: dvdisaster.c:945 -msgid " --eject - eject medium after successful read\n" -msgstr "" - -#: dvdisaster.c:946 -msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" -msgstr " --fill-unreadable n - Riempi i settori illeggibili con il byte n\n" - -#: dvdisaster.c:947 -msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" -msgstr "" - -#: dvdisaster.c:948 -msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" -msgstr "" - -#: dvdisaster.c:949 -msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" -msgstr "" - -#: dvdisaster.c:950 -msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" -msgstr "" - -#: dvdisaster.c:951 -msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" -msgstr "" - -#: dvdisaster.c:952 -msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" -msgstr "" - -#: dvdisaster.c:953 -msgid " --read-medium n - read the whole medium up to n times\n" -msgstr "" - -#: dvdisaster.c:954 -msgid " --read-raw - performs read in raw mode if possible\n" -msgstr "" - -#: dvdisaster.c:955 -msgid " --speed-warning n - print warning if speed changes by more than n percent\n" -msgstr " --speed-warning n - Evidenzia messaggio di ATTENZIONE se la velocità cambia più del n percento.\n" - -#: dvdisaster.c:956 -msgid " --spinup-delay n - wait n seconds for drive to spin up\n" -msgstr " --spinup-delay n - Attendere n secondi per far avviare il drive\n" - -#: dvdisaster.c:960 -msgid "Debugging options (purposefully undocumented and possibly harmful)\n" -msgstr "Opzioni di Debug (volutamente non documentate e possibilmente pericolose!)\n" - -#: dvdisaster.c:961 -msgid " --debug - enables the following options\n" -msgstr " --debug - attiva le senguenti opzioni\n" - -#: dvdisaster.c:962 -msgid " --byteset s,i,b - set byte i in sector s to b\n" -msgstr " --byteset s,i,b - setta il byte i nel settore s al valore b\n" - -#: dvdisaster.c:963 -msgid " --cdump - creates C #include file dumps instead of hexdumps\n" -msgstr "" - #: dvdisaster.c:964 -msgid " --compare-images a,b - compare sectors in images a and b\n" -msgstr "" - -#: dvdisaster.c:965 -msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" msgstr "" #: dvdisaster.c:966 -msgid " --erase sector - erase the given sector\n" -msgstr " --erase sector - Cancella il settore specificato\n" +msgid " --eject - eject medium after successful read\n" +msgstr "" #: dvdisaster.c:967 -msgid " --erase n-m - erase sectors n - m, inclusively\n" -msgstr " --erase n-m - Cancella i settori da n ad m inclusi\n" +msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" +msgstr " --fill-unreadable n - Riempi i settori illeggibili con il byte n\n" #: dvdisaster.c:968 -msgid " --marked-image n - create image with n marked random sectors\n" +msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr "" #: dvdisaster.c:969 -msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr "" #: dvdisaster.c:970 -msgid " --random-errors r,e seed image with (correctable) random errors\n" -msgstr " --random-errors r,e inserisce nell'immagine errori casuali (correggibili)\n" +msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" +msgstr "" #: dvdisaster.c:971 -msgid " --random-image n - create image with n sectors of random numbers\n" -msgstr " --random-image n - create image with n sectors or random numbers\n" +msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" +msgstr "" #: dvdisaster.c:972 -msgid " --random-seed n - random seed for built-in random number generator\n" -msgstr " --random-seed n - random seed for built-in random number generator\n" +msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" +msgstr "" #: dvdisaster.c:973 -msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr "" #: dvdisaster.c:974 -msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgid " --read-medium n - read the whole medium up to n times\n" msgstr "" #: dvdisaster.c:975 -msgid " --screen-shot - useful for generating screen shots\n" +msgid " --read-raw - performs read in raw mode if possible\n" msgstr "" #: dvdisaster.c:976 +msgid " --speed-warning n - print warning if speed changes by more than n percent\n" +msgstr " --speed-warning n - Evidenzia messaggio di ATTENZIONE se la velocità cambia più del n percento.\n" + +#: dvdisaster.c:977 +msgid " --spinup-delay n - wait n seconds for drive to spin up\n" +msgstr " --spinup-delay n - Attendere n secondi per far avviare il drive\n" + +#: dvdisaster.c:981 +msgid "Debugging options (purposefully undocumented and possibly harmful)\n" +msgstr "Opzioni di Debug (volutamente non documentate e possibilmente pericolose!)\n" + +#: dvdisaster.c:982 +msgid " --debug - enables the following options\n" +msgstr " --debug - attiva le senguenti opzioni\n" + +#: dvdisaster.c:983 +msgid " --byteset s,i,b - set byte i in sector s to b\n" +msgstr " --byteset s,i,b - setta il byte i nel settore s al valore b\n" + +#: dvdisaster.c:984 +msgid " --cdump - creates C #include file dumps instead of hexdumps\n" +msgstr "" + +#: dvdisaster.c:985 +msgid " --compare-images a,b - compare sectors in images a and b\n" +msgstr "" + +#: dvdisaster.c:986 +msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgstr "" + +#: dvdisaster.c:987 +msgid " --erase sector - erase the given sector\n" +msgstr " --erase sector - Cancella il settore specificato\n" + +#: dvdisaster.c:988 +msgid " --erase n-m - erase sectors n - m, inclusively\n" +msgstr " --erase n-m - Cancella i settori da n ad m inclusi\n" + +#: dvdisaster.c:989 +msgid " --marked-image n - create image with n marked random sectors\n" +msgstr "" + +#: dvdisaster.c:990 +msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgstr "" + +#: dvdisaster.c:991 +msgid " --random-errors r,e seed image with (correctable) random errors\n" +msgstr " --random-errors r,e inserisce nell'immagine errori casuali (correggibili)\n" + +#: dvdisaster.c:992 +msgid " --random-image n - create image with n sectors of random numbers\n" +msgstr " --random-image n - create image with n sectors or random numbers\n" + +#: dvdisaster.c:993 +msgid " --random-seed n - random seed for built-in random number generator\n" +msgstr " --random-seed n - random seed for built-in random number generator\n" + +#: dvdisaster.c:994 +msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:995 +msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:996 +msgid " --screen-shot - useful for generating screen shots\n" +msgstr "" + +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr " --show-sector n - mostra l'hexdump del settore dato\n" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr " --sim-defects n - simulate n%% defective sectors on medium\n" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr " --truncate n - truncates image to n sectors\n" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" msgstr " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -674,7 +670,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -702,14 +698,6 @@ msgstr "" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "" - #: file.c:39 #, c-format msgid "" @@ -1527,7 +1515,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1687,7 +1675,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3075,7 +3063,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Ridondanza %d al di fuori dell'intervallo utilizzabile [8..100]." #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Interrotto da un errore irrecuperabile." @@ -3140,7 +3128,7 @@ msgid "" msgstr "" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Generazione Ecc: %3d.%1d%%" @@ -3149,8 +3137,7 @@ msgstr "Generazione Ecc: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Annullato dall'utente!" @@ -3173,7 +3160,7 @@ msgstr "" "Impossibile scrivere lo header Ecc:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Generazione Ecc: 100.0%%\n" @@ -3286,7 +3273,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" "Il file immagine è %d bytes più lungo di quanto riportato\n" @@ -3782,7 +3769,7 @@ msgstr "- Ecc-md5sum : %s (buono) \n" msgid "Good error correction file." msgstr "File di correzione dell'immagine valido." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Creazione dei dati di correzione degli errori:" @@ -3916,22 +3903,22 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -3966,7 +3953,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "" @@ -3977,19 +3964,18 @@ msgstr "" msgid "Failed expanding the image: %s\n" msgstr "" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" "%s" msgstr "" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "" @@ -4014,7 +4000,7 @@ msgid "" "not an option, please create a separate error correction file." msgstr "" -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4288,7 +4274,7 @@ msgstr "" msgid "Full data recovery is NOT possible." msgstr "" -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "" @@ -4494,7 +4480,7 @@ msgstr "" msgid "%d threads" msgstr "" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" @@ -4513,7 +4499,7 @@ msgid "" "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -4644,20 +4630,6 @@ msgid "" "Performance will not scale linearly with the number of CPU cores. Hard disk performance is more limiting than raw CPU power. When using 4 cores or more, memory bandwidth may also affect performance." msgstr "" -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "" @@ -4914,7 +4886,7 @@ msgstr "" msgid "No CD/DVD drives found." msgstr "Nessun CD/DVD drive trovato." -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -4922,7 +4894,7 @@ msgstr "" "Impossibile accedere a /dev per le periferiche.\n" "Nessun drive sarà preselezionato.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5439,6 +5411,13 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - ridondanza per la correzione degli errori,\n" +#~ " maximum error correction image size (in sectors)\n" + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 7a783c1..003272c 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.72.rc2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2010-06-09 11:13+0200\n" "Last-Translator: cg \n" "Language-Team: Portuguese\n" @@ -29,15 +29,15 @@ msgstr "" "# que será sobreescrevido toda vez que o dvdisaster rodar.\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "midia.iso" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "midia.ecc" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "setor-" @@ -76,7 +76,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "Falha ao ir para o setor %lld da imagem: %s" @@ -84,9 +84,8 @@ msgstr "Falha ao ir para o setor %lld da imagem: %s" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Falha ao gravar no setor %lld da imagem: %s" @@ -114,7 +113,7 @@ msgstr "O número de rasuras deve ser > 0 e <= %d\n" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Impossível abrir %s: %s" @@ -193,8 +192,7 @@ msgstr "Truncando imagem para %lld setores.\n" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Impossível truncar %s: %s\n" @@ -269,7 +267,7 @@ msgstr "" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "Falha ao ler setor %lld da imagem: %s" @@ -428,36 +426,36 @@ msgstr "Método RS01 não está disponível para comparar arquivos." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "--threads devem ser de 1..%d\n" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size deve ser pelo menos 8MB; 16MB ou mais são recomendados." -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size máximo é 8192MB." -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" -msgstr "Argumentos válidos para --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" +msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "--driver suportado apenas no GNU/Linux" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -467,12 +465,12 @@ msgstr "" "\n" "dvdisaster, versão %s build %d\n" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? valor de retorno de getopt %d ilegal\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -483,7 +481,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -507,7 +505,7 @@ msgstr "" " dvdisaster -u,--unlink # Apaga arquivos .iso (quando outras ações estão completas)\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -518,199 +516,197 @@ msgid "" " -o,--ecc-target [file image] - where to put ecc data in RS03\n" msgstr "" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Opções avançadas (leio o manual antes de usar!)\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr "" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - pula n setores adiante após um erro de leitura (padrão: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr " -m n - lista/seleciona métodos de correção de erros (Padrão: (RS01)\n" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - redundância do arquivo de correção de erros (porcentagem), ou\n" -" tamanho máximo do arquivo de correção de erros (setores)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr " -v,--verbose - mais mensagens de diagnóstico\n" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr "" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - usa estratégia otimizada para leitura de mídia danificada\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - adiciona sufixos .iso e .ecc aos arquivos automaticamente\n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - tamanho do cache da imagem em MB durante o modo -c (padrão: 32MB)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - assume que é um disco DAO; não cortar o fim da imagem\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr " --defective-dump d - diretório para salvar setores raw incompletos\n" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" +#: dvdisaster.c:964 +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" msgstr "" -#: dvdisaster.c:945 +#: dvdisaster.c:966 msgid " --eject - eject medium after successful read\n" msgstr " --eject - ejeta a mídia após uma leitura bem-sucedida\n" -#: dvdisaster.c:946 +#: dvdisaster.c:967 msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" msgstr " --fill-unreadable n - preenche setores ilegíveis com o byte n\n" -#: dvdisaster.c:947 +#: dvdisaster.c:968 msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr " --ignore-fatal-sense - continua a leitura após condição de erro possivelmente fatal\n" -#: dvdisaster.c:948 +#: dvdisaster.c:969 msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr " --internal-rereads n - o dispositivo pode tentar n re-leituras antes de reportar um erro\n" -#: dvdisaster.c:949 +#: dvdisaster.c:970 msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" msgstr "" -#: dvdisaster.c:950 +#: dvdisaster.c:971 msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" msgstr "" -#: dvdisaster.c:951 +#: dvdisaster.c:972 msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" msgstr " --raw-mode n - modo para leitura de mídia CD em modo raw (20 ou 21)\n" -#: dvdisaster.c:952 +#: dvdisaster.c:973 msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr " --read-attempts n-m - tenta de n a m leituras em um setor defeituoso\n" -#: dvdisaster.c:953 +#: dvdisaster.c:974 msgid " --read-medium n - read the whole medium up to n times\n" msgstr " --read-medium n - faz uma leitura em modo raw, se possível\n" -#: dvdisaster.c:954 +#: dvdisaster.c:975 msgid " --read-raw - performs read in raw mode if possible\n" msgstr "" -#: dvdisaster.c:955 +#: dvdisaster.c:976 msgid " --speed-warning n - print warning if speed changes by more than n percent\n" msgstr " --speed-warning n - mostra um aviso se a velocidade variar mais do que n porcento\n" -#: dvdisaster.c:956 +#: dvdisaster.c:977 msgid " --spinup-delay n - wait n seconds for drive to spin up\n" msgstr " --spinup-delay n - aguarda n segundos para que o drive gire\n" -#: dvdisaster.c:960 +#: dvdisaster.c:981 msgid "Debugging options (purposefully undocumented and possibly harmful)\n" msgstr "Opções de depuração (propositalmente não-documentadas e possivelmente perigosas)\n" -#: dvdisaster.c:961 +#: dvdisaster.c:982 msgid " --debug - enables the following options\n" msgstr " --debug - habilita as opções seguintes\n" -#: dvdisaster.c:962 +#: dvdisaster.c:983 msgid " --byteset s,i,b - set byte i in sector s to b\n" msgstr " --byteset s,i,b - define o byte i no setores s ao b\n" -#: dvdisaster.c:963 +#: dvdisaster.c:984 msgid " --cdump - creates C #include file dumps instead of hexdumps\n" msgstr " --cdump - creates C #include file dumps instead of hexdumps\n" -#: dvdisaster.c:964 +#: dvdisaster.c:985 msgid " --compare-images a,b - compare sectors in images a and b\n" msgstr " --compare-images a,b - compara os setores nas imagens a e b\n" -#: dvdisaster.c:965 +#: dvdisaster.c:986 msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" msgstr " --copy-sector a,n,b,m - copia o setor n da imagem a para o setor m da imagem b\n" -#: dvdisaster.c:966 +#: dvdisaster.c:987 msgid " --erase sector - erase the given sector\n" msgstr " --erase setor - apaga o setor escolhido\n" -#: dvdisaster.c:967 +#: dvdisaster.c:988 msgid " --erase n-m - erase sectors n - m, inclusively\n" msgstr " --erase n-m - apaga os setores n a m (inclusivo)\n" -#: dvdisaster.c:968 +#: dvdisaster.c:989 msgid " --marked-image n - create image with n marked random sectors\n" msgstr " --marked-image a,b - mescla a imagem a com a b (a recebe os setores de b)\n" -#: dvdisaster.c:969 +#: dvdisaster.c:990 msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" msgstr "" -#: dvdisaster.c:970 +#: dvdisaster.c:991 msgid " --random-errors r,e seed image with (correctable) random errors\n" msgstr " --random-errors r,e - semeia a imagem com erros aleatórios (recuperáveis)\n" -#: dvdisaster.c:971 +#: dvdisaster.c:992 msgid " --random-image n - create image with n sectors of random numbers\n" msgstr " --random-image n - cria um arquivo de imagem com n setores de números aleatórios\n" -#: dvdisaster.c:972 +#: dvdisaster.c:993 msgid " --random-seed n - random seed for built-in random number generator\n" msgstr " --random-seed n - semente aleatória para o gerador de números aleatórios\n" -#: dvdisaster.c:973 +#: dvdisaster.c:994 msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" msgstr "" -#: dvdisaster.c:974 +#: dvdisaster.c:995 msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" msgstr "" -#: dvdisaster.c:975 +#: dvdisaster.c:996 msgid " --screen-shot - useful for generating screen shots\n" msgstr " --screen-shot - útil para gerar capturas de tela\n" -#: dvdisaster.c:976 +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr " --send-cdb arg - executa o cdb escolhido no drive; para o sistema se usado deforma errada\n" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr " --show-sector n - shows hexdump of the given sector in an image file\n" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr " --sim-defects n - simula n%% setores defeituosos na mídia\n" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr " --truncate n - trunca a imagem para n setores\n" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" msgstr " --zero-unreadable - substitui os marcadores \"setor-ilegível\" por zeros\n" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -722,7 +718,7 @@ msgstr "" "é dvdisaster-win.exe (também contido nesta instalação).\n" "\n" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "Drive ótico 52X FW 1.02" @@ -750,14 +746,6 @@ msgstr "" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "" - #: file.c:39 #, c-format msgid "" @@ -1614,7 +1602,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1800,7 +1788,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3318,7 +3306,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Redundância %d do intervalo útil [8..100]" #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Abortado por um erro irrecuperável." @@ -3386,7 +3374,7 @@ msgstr "" "Tente reduzí-lo.\n" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Geração de ecc: %3d.%1d%%" @@ -3395,8 +3383,7 @@ msgstr "Geração de ecc: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Abortado pelo usuário!" @@ -3419,7 +3406,7 @@ msgstr "" "Impossível gravar no cabeçalho ecc:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Geração de ecc: 100.0%%\n" @@ -3532,7 +3519,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" "O arquivo de imagem é %d bytes maior do que o registrado\n" @@ -4027,7 +4014,7 @@ msgstr "- md5sum do ecc : %s (bom)\n" msgid "Good error correction file." msgstr "Arquivo de correção de erros bom." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Criando dados de correção de erros:" @@ -4181,22 +4168,22 @@ msgstr "" "\n" "O dvdisaster otimiza o acesso à imagem e arquivos de correção de erros mantendo seu próprio cache. O padrão de 32MB é adequada à maioria dos sistemas." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Falha ao buscar no cabeçalho ecc em %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Falha ao gravar no cabeçalho ecc em %lld: %s\n" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "Abortado pelo usuário! (dados ecc parciais removidos da imagem)" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -4246,7 +4233,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "Preparando imagem (checksums, adicionando espaço): %3d%%" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "Falha ao ir ao fim da imagem: %s\n" @@ -4257,12 +4244,11 @@ msgstr "Falha ao ir ao fim da imagem: %s\n" msgid "Failed expanding the image: %s\n" msgstr "Falha ao expandir a imagem: %s\n" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "Criação de dados de correção de erros abortada" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" @@ -4271,7 +4257,7 @@ msgstr "" "Aumentando a imagem com os dados de correção de erros.\n" "%s" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "- verificando a imagem -" @@ -4298,7 +4284,7 @@ msgid "" "not an option, please create a separate error correction file." msgstr "" -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4584,7 +4570,7 @@ msgstr "Recuperação dos dados completa é provável." msgid "Full data recovery is NOT possible." msgstr "Recuperação completa dos dados NÃO É possível." -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "1. Preparando a imagem: " @@ -4846,7 +4832,7 @@ msgstr "" msgid "%d threads" msgstr "" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" @@ -4865,7 +4851,7 @@ msgid "" "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -4996,20 +4982,6 @@ msgid "" "Performance will not scale linearly with the number of CPU cores. Hard disk performance is more limiting than raw CPU power. When using 4 cores or more, memory bandwidth may also affect performance." msgstr "" -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "" @@ -5266,7 +5238,7 @@ msgstr "" msgid "No CD/DVD drives found." msgstr "Nenhum drive de CD/DVD encontrado." -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -5274,7 +5246,7 @@ msgstr "" "Impossível acessar /dev para buscar dispositivos\n" "Nenhum drive será pré-selecionado.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5808,6 +5780,16 @@ msgstr "" msgid "New in this Version:" msgstr "Novidades dessa versão:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Argumentos válidos para --driver: sg" + +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - redundância do arquivo de correção de erros (porcentagem), ou\n" +#~ " tamanho máximo do arquivo de correção de erros (setores)\n" + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." diff --git a/locale/ru.po b/locale/ru.po index f5c9996..fa7e409 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster 0.70.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2009-07-23 08:11+0300\n" "Last-Translator: Igor Gorbounov \n" "Language-Team: Russian\n" @@ -31,15 +31,15 @@ msgstr "" "# он автоматически перезаписывается при каждом запуске программы.\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "medium.iso" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "medium.ecc" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "сектор-" @@ -78,7 +78,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "Не удалось найти сектор %lld в образе: %s" @@ -86,9 +86,8 @@ msgstr "Не удалось найти сектор %lld в образе: %s" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Не удалось записать сектор %lld в образе: %s" @@ -116,7 +115,7 @@ msgstr "Число стертых мест должно быть > 0 и <= %d\n" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Не удалось открыть %s: %s" @@ -195,8 +194,7 @@ msgstr "Усечение образа до %lld секторов.\n" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Не удалось усечь %s: %s\n" @@ -271,7 +269,7 @@ msgstr "" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "Не удалось прочитать сектор %lld в образе: %s" @@ -430,36 +428,36 @@ msgstr "Метод RS01 не применяется для сравнения ф msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "--потоков должно быть 1..%d\n" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "--cache-size должен быть не меньше 8МБ; рекомендуется 16МБ и больше." -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "--cache-size максимальный размер буфера 8192МБ." -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" -msgstr "Правильные аргументы для --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" +msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "только --driver поддерживается на GNU/Linux" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -470,12 +468,12 @@ msgstr "" "dvdisaster версия %s сборка %d\n" "\n" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? неправильное возвращаемое значение getopt: %d\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -487,7 +485,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -511,7 +509,7 @@ msgstr "" " dvdisaster -u,--unlink # Удалить файлы .iso (по завершении других действий)\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -522,193 +520,191 @@ msgid "" " -o,--ecc-target [file image] - where to put ecc data in RS03\n" msgstr "" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Параметры тонкой настройки (перед применением см. руководство!)\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr "" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - переход на n секторов вперед после ошибки чтения (по умолчанию: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr " -m n - просмотреть/выбрать методы исправления ошибок (по умолчанию: RS01)\n" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - избыточность файла исправления ошибок (в процентах) или\n" -" максимальный размер образа для исправления ошибок (в секторах)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr " -v,--verbose - больше диагностических сообщений\n" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr "" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - использование оптимизированной стратегии чтения поврежденных носителей\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - автоматически добавлять расширения имени файла .iso и .ecc\n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - размер буфера образа в МБ в режиме -c (по умолчанию: 32МБ)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - считать, что диск в режиме DAO; не отрезать конец образа\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr " --defective-dump d - каталог для сохранения незавершенных необработанных секторов\n" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" +#: dvdisaster.c:964 +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" msgstr "" -#: dvdisaster.c:945 +#: dvdisaster.c:966 msgid " --eject - eject medium after successful read\n" msgstr " --eject - извлекать носитель после успешного чтения\n" -#: dvdisaster.c:946 +#: dvdisaster.c:967 msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" msgstr " --fill-unreadable n - заполнять нечитаемые сектора байтом n\n" -#: dvdisaster.c:947 +#: dvdisaster.c:968 msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr " --ignore-fatal-sense - продолжать чтение после возможной критической ошибки\n" -#: dvdisaster.c:948 +#: dvdisaster.c:969 msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr " --internal-rereads n - привод может делать n повторных чтений перед сообщением об ошибке\n" -#: dvdisaster.c:949 +#: dvdisaster.c:970 msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" msgstr "" -#: dvdisaster.c:950 +#: dvdisaster.c:971 msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" msgstr "" -#: dvdisaster.c:951 +#: dvdisaster.c:972 msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" msgstr " --raw-mode n - режим для низкоуровневого чтения CD-носителей (20 или 21)\n" -#: dvdisaster.c:952 +#: dvdisaster.c:973 msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr " --read-attempts n-m - делается от n до m попыток чтения поврежденного сектора\n" -#: dvdisaster.c:953 +#: dvdisaster.c:974 msgid " --read-medium n - read the whole medium up to n times\n" msgstr " --read-medium n - читать весь носитель до n раз\n" -#: dvdisaster.c:954 +#: dvdisaster.c:975 msgid " --read-raw - performs read in raw mode if possible\n" msgstr " --read-raw - выполнять чтение в низкоуровневом режиме, если это возможно\n" -#: dvdisaster.c:955 +#: dvdisaster.c:976 msgid " --speed-warning n - print warning if speed changes by more than n percent\n" msgstr " --speed-warning n - выводить предупреждение, если скорость изменяется больше, чем на n процентов\n" -#: dvdisaster.c:956 +#: dvdisaster.c:977 msgid " --spinup-delay n - wait n seconds for drive to spin up\n" msgstr " --spinup-delay n - выждать n секунд, пока привод не раскрутится\n" -#: dvdisaster.c:960 +#: dvdisaster.c:981 msgid "Debugging options (purposefully undocumented and possibly harmful)\n" msgstr "Параметры отладки (намеренно недокументированные и, возможно, опасные)\n" -#: dvdisaster.c:961 +#: dvdisaster.c:982 msgid " --debug - enables the following options\n" msgstr " --debug - включает следующие параметры\n" -#: dvdisaster.c:962 +#: dvdisaster.c:983 msgid " --byteset s,i,b - set byte i in sector s to b\n" msgstr " --byteset s,i,b - установить байт i в секторе s в значение b\n" -#: dvdisaster.c:963 +#: dvdisaster.c:984 msgid " --cdump - creates C #include file dumps instead of hexdumps\n" msgstr " --cdump - создает дампы в виде C #include-файлов вместо шестнадцатеричных дампов\n" -#: dvdisaster.c:964 +#: dvdisaster.c:985 msgid " --compare-images a,b - compare sectors in images a and b\n" msgstr " --compare-images a,b - сравнить сектора в образах a и b\n" -#: dvdisaster.c:965 +#: dvdisaster.c:986 msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" msgstr " --copy-sector a,n,b,m - скопировать сектор n из образа a в сектор m образа b\n" -#: dvdisaster.c:966 +#: dvdisaster.c:987 msgid " --erase sector - erase the given sector\n" msgstr " --erase sector - стереть данный сектор\n" -#: dvdisaster.c:967 +#: dvdisaster.c:988 msgid " --erase n-m - erase sectors n - m, inclusively\n" msgstr " --erase n-m - стереть секторы n - m включительно\n" -#: dvdisaster.c:968 +#: dvdisaster.c:989 msgid " --marked-image n - create image with n marked random sectors\n" msgstr " --marked-image n - создать образ с n помеченными случайными секторами\n" -#: dvdisaster.c:969 +#: dvdisaster.c:990 msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" msgstr " --merge-images a,b объединить образ a с образом b (a получает секторы из b)\n" -#: dvdisaster.c:970 +#: dvdisaster.c:991 msgid " --random-errors r,e seed image with (correctable) random errors\n" msgstr " --random-errors r,e заполнить образ (исправимыми) случайными ошибками\n" -#: dvdisaster.c:971 +#: dvdisaster.c:992 msgid " --random-image n - create image with n sectors of random numbers\n" msgstr " --random-image n - создать образ с n секторами со случайными номерами\n" -#: dvdisaster.c:972 +#: dvdisaster.c:993 msgid " --random-seed n - random seed for built-in random number generator\n" msgstr " --random-seed n - начальное значение для встроенного генератора случайных чисел\n" -#: dvdisaster.c:973 +#: dvdisaster.c:994 msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" msgstr " --raw-sector n - показывает шестнадцатиричный дамп данного необработанного сектора с носителя в приводе\n" -#: dvdisaster.c:974 +#: dvdisaster.c:995 msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" msgstr " --read-sector n - показывает шестнадцатиричный дамп данного сектора с носителя в приводе\n" -#: dvdisaster.c:975 +#: dvdisaster.c:996 msgid " --screen-shot - useful for generating screen shots\n" msgstr " --screen-shot - useful for generating screen shots\n" -#: dvdisaster.c:976 +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr " --send-cdb arg - выполнить cdb на приводе; при ошибке система снимается\n" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr " --show-sector n - показывает содержимое данного сектора в шестнадцатеричном виде\n" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr " --sim-defects n - смоделировать n%% поврежденных секторов на носителе\n" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr " --truncate n - обрезает образ до n секторов\n" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" @@ -716,7 +712,7 @@ msgstr "" " --zero-unreadable - заменить маркеры \"нечитаемый сектор\" нулями\n" "\n" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -728,7 +724,7 @@ msgstr "" "(также содержится в этом установочном пакете).\n" "\n" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "Оптический привод 52X FW 1.02" @@ -756,14 +752,6 @@ msgstr "Многопоточный кодек РС (RS03)" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "Многопоточный кодек Рида-Соломона для файлов коррекции ошибок и расширенных образов" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "Однопоточный кодек Рида-Соломона для файлов коррекции ошибок и расширенных образов" - #: file.c:39 #, c-format msgid "" @@ -1620,7 +1608,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1806,7 +1794,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3327,7 +3315,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Избыточность %d вне полезного диапазона [8..100]." #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Прервано из-за неисправимой ошибки." @@ -3395,7 +3383,7 @@ msgstr "" "Попробуйте уменьшить его.\n" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Генерация ecc: %3d.%1d%%" @@ -3404,8 +3392,7 @@ msgstr "Генерация ecc: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Прервано пользователем!" @@ -3428,7 +3415,7 @@ msgstr "" "Не удается записать заголовок ecc:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Генерация ecc: 100.0%%\n" @@ -3541,7 +3528,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" "Файл образа на %d байт длиннее, чем отмечено\n" @@ -4036,7 +4023,7 @@ msgstr "- ecc md5sum : %s (хорошо)\n" msgid "Good error correction file." msgstr "Хороший файл для исправления ошибок." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Создание данных для для исправления ошибок:" @@ -4190,22 +4177,22 @@ msgstr "" "\n" "dvdisaster оптимизирует доступ к образам и файлам для исправления ошибок с помощью собственного буфера. Предустановленное значение в 32 МБ подходит для большинства систем." -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Не удалось перейти к ecc-заголовку в %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Не удалось записать ecc-заголовок в %lld: %s\n" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "Прервано пользователем! (незавершенные ecc-данные удалены из образа)" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -4255,7 +4242,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "Подготовка образа (контрольные суммы, увеличение размера): %3d%%" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "Не удалось перейти к концу образа: %s\n" @@ -4266,12 +4253,11 @@ msgstr "Не удалось перейти к концу образа: %s\n" msgid "Failed expanding the image: %s\n" msgstr "Не удалось увеличить образ: %s\n" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "Создание данных для исправления ошибок прервано" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" @@ -4280,7 +4266,7 @@ msgstr "" "Присоединение к образу данных для исправления ошибок.\n" "%s" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "- проверка образа -" @@ -4307,7 +4293,7 @@ msgid "" "not an option, please create a separate error correction file." msgstr "" -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4593,7 +4579,7 @@ msgstr "Вероятно полное восстановление да msgid "Full data recovery is NOT possible." msgstr "Полное восстановление данных НЕВОЗМОЖНО." -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "1. Подготовка образа:" @@ -4856,7 +4842,7 @@ msgstr "" msgid "%d threads" msgstr "" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "Кодирование методом RS03: %lld МБ данные, %lld МБ ecc (%d корней; избыточность %4.1f%%)." @@ -4875,7 +4861,7 @@ msgid "" "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -5006,20 +4992,6 @@ msgid "" "Performance will not scale linearly with the number of CPU cores. Hard disk performance is more limiting than raw CPU power. When using 4 cores or more, memory bandwidth may also affect performance." msgstr "" -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "" @@ -5276,7 +5248,7 @@ msgstr "" msgid "No CD/DVD drives found." msgstr "CD/DVD приводов не найдено." -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -5284,7 +5256,7 @@ msgstr "" "Не удается получить доступ к устройствам в /dev\n" "Не будет предустановленных приводов.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5821,6 +5793,19 @@ msgstr "" msgid "New in this Version:" msgstr "Новое в этой версии:" +#~ msgid "Valid args for --driver: sg" +#~ msgstr "Правильные аргументы для --driver: sg" + +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - избыточность файла исправления ошибок (в процентах) или\n" +#~ " максимальный размер образа для исправления ошибок (в секторах)\n" + +#~ msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" +#~ msgstr "Однопоточный кодек Рида-Соломона для файлов коррекции ошибок и расширенных образов" + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." @@ -6310,7 +6295,7 @@ msgstr "Новое в этой версии:" #~ "\n" #~ "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" #~ "\n" -#~ "20h This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +#~ "20h This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" #~ "\n" #~ "21h In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" #~ "However some drives appear to be unable to transfer data in mode 20h, but can do so in mode 21h, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 20h, then adding some mode 21h reads to the cache might deliver additional information." diff --git a/locale/sv.po b/locale/sv.po index 9bdc4f6..7ef8355 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: dvdisaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-02-27 19:02+0100\n" +"POT-Creation-Date: 2010-11-20 14:59+0100\n" "PO-Revision-Date: 2006-06-14 23:48+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -29,15 +29,15 @@ msgstr "" "# som kommer att skrivas över varje gång dvdisaster körs.\n" "\n" -#: closure.c:774 closure.c:782 closure.c:789 +#: closure.c:775 closure.c:783 closure.c:790 msgid "medium.iso" msgstr "" -#: closure.c:775 closure.c:783 closure.c:790 +#: closure.c:776 closure.c:784 closure.c:791 msgid "medium.ecc" msgstr "" -#: closure.c:776 closure.c:784 closure.c:791 +#: closure.c:777 closure.c:785 closure.c:792 msgid "sector-" msgstr "" @@ -76,7 +76,7 @@ msgstr "" #: debug.c:1114 debug.c:1122 debug.c:1229 rs01-common.c:77 rs02-common.c:62 #: rs02-create.c:340 rs02-create.c:986 rs02-fix.c:387 rs02-verify.c:393 #: rs03-common.c:97 rs03-create.c:583 rs03-create.c:610 rs03-recognize.c:263 -#: rs03s-create.c:85 rs03s-create.c:982 rs03s-create.c:1008 rs03-verify.c:425 +#: rs03-verify.c:425 #, c-format msgid "Failed seeking to sector %lld in image: %s" msgstr "Misslyckades med att söka fram till sektor %lld i avbild: %s" @@ -84,9 +84,8 @@ msgstr "Misslyckades med att söka fram till sektor %lld i avbild: %s" #: debug.c:115 debug.c:205 debug.c:253 debug.c:379 debug.c:525 debug.c:647 #: debug.c:692 debug.c:1126 debug.c:1233 debug.c:1273 rs02-create.c:363 #: rs02-create.c:389 rs02-create.c:989 rs03-create.c:588 rs03-create.c:614 -#: rs03s-create.c:985 rs03s-create.c:1011 udf.c:1113 udf.c:1171 udf.c:1228 -#: udf.c:1241 udf.c:1246 udf.c:1249 udf.c:1252 udf.c:1255 udf.c:1258 -#: udf.c:1261 +#: udf.c:1113 udf.c:1171 udf.c:1228 udf.c:1241 udf.c:1246 udf.c:1249 +#: udf.c:1252 udf.c:1255 udf.c:1258 udf.c:1261 #, c-format msgid "Failed writing to sector %lld in image: %s" msgstr "Misslyckades med att skriva till sektor %lld i avbild: %s" @@ -114,7 +113,7 @@ msgstr "Antal raderingar måste vara > 0 och <= %d\n" #: debug.c:314 raw-sector-cache.c:34 raw-sector-cache.c:201 #: raw-sector-cache.c:335 rs01-verify.c:542 scsi-freebsd.c:113 -#: scsi-linux.c:100 scsi-netbsd.c:111 scsi-solaris.c:127 +#: scsi-linux.c:100 scsi-netbsd.c:111 #, c-format msgid "Could not open %s: %s" msgstr "Kunde inte öppna %s: %s" @@ -193,8 +192,7 @@ msgstr "Kapar avbild till %lld sektorer.\n" #: debug.c:557 read-linear.c:1361 rs01-fix.c:198 rs01-fix.c:220 rs01-fix.c:236 #: rs01-fix.c:271 rs02-create.c:104 rs02-create.c:151 rs02-fix.c:241 #: rs02-fix.c:262 rs02-fix.c:277 rs03-create.c:177 rs03-create.c:245 -#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 rs03s-create.c:171 -#: rs03s-create.c:227 +#: rs03-fix.c:269 rs03-fix.c:290 rs03-fix.c:305 #, c-format msgid "Could not truncate %s: %s\n" msgstr "Kunde inte kapa %s: %s\n" @@ -269,7 +267,7 @@ msgstr "" #: debug.c:791 debug.c:1118 debug.c:1187 debug.c:1191 debug.c:1269 #: rs01-common.c:93 rs02-common.c:67 rs02-create.c:203 rs02-fix.c:390 -#: rs03-common.c:102 rs03-recognize.c:268 rs03s-create.c:90 +#: rs03-common.c:102 rs03-recognize.c:268 #, c-format msgid "Failed reading sector %lld in image: %s" msgstr "Misslyckades med att läsa sektor %lld i avbild: %s" @@ -390,36 +388,36 @@ msgstr "RS01-metoden inte tillgänglig för jämförelser av filer." msgid "test phrase for verifying the locale installation" msgstr "ok" -#: dvdisaster.c:486 +#: dvdisaster.c:494 msgid "-o/--ecc-target expects 'file' or 'image'" msgstr "" -#: dvdisaster.c:512 +#: dvdisaster.c:520 #, c-format msgid "--threads must be 1..%d\n" msgstr "" -#: dvdisaster.c:526 +#: dvdisaster.c:534 msgid "--cache-size must at least be 8MB; 16MB or higher is recommended." msgstr "" -#: dvdisaster.c:528 +#: dvdisaster.c:536 msgid "--cache-size maximum is 8192MB." msgstr "" -#: dvdisaster.c:544 -msgid "Valid args for --driver: sg" +#: dvdisaster.c:555 +msgid "Valid args for --driver: sg,cdrom" msgstr "" -#: dvdisaster.c:546 +#: dvdisaster.c:557 msgid "--driver is only supported on GNU/Linux" msgstr "" -#: dvdisaster.c:593 +#: dvdisaster.c:604 msgid "--prefetch-sectors must be in range 32...8096" msgstr "" -#: dvdisaster.c:652 +#: dvdisaster.c:663 #, c-format msgid "" "\n" @@ -427,12 +425,12 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:716 +#: dvdisaster.c:727 #, c-format msgid "?? illegal getopt return value %d\n" msgstr "?? ogiltigt getopt-svarsvärde %d\n" -#: dvdisaster.c:750 +#: dvdisaster.c:761 #, c-format msgid "" "dvdisaster is not properly installed.\n" @@ -441,7 +439,7 @@ msgstr "" #. TRANSLATORS: Program options like -r and --read are not to be translated #. to avoid confusion when discussing the program in international forums. -#: dvdisaster.c:910 +#: dvdisaster.c:931 msgid "" "\n" "Common usage examples:\n" @@ -466,7 +464,7 @@ msgstr "" " dvdisaster -u,--unlink # Ta bort .iso-filer (när andra operationer är färdiga)\n" "\n" -#: dvdisaster.c:919 +#: dvdisaster.c:940 #, c-format msgid "" "Drive and file specification:\n" @@ -477,199 +475,197 @@ msgid "" " -o,--ecc-target [file image] - where to put ecc data in RS03\n" msgstr "" -#: dvdisaster.c:929 +#: dvdisaster.c:950 msgid "Tweaking options (see manual before using!)\n" msgstr "Justeringsflaggor (se manualen före användning!)\n" -#: dvdisaster.c:930 +#: dvdisaster.c:951 msgid " -a,--assume x,y,... - assume image is augmented with codec(s) x,y,...\n" msgstr "" -#: dvdisaster.c:931 +#: dvdisaster.c:952 msgid " -j,--jump n - jump n sectors forward after a read error (default: 16)\n" msgstr " -j,--jump n - hoppa n sektorer framåt efter ett läsfel (standard: 16)\n" -#: dvdisaster.c:932 +#: dvdisaster.c:953 msgid " -m n - list/select error correction methods (default: RS01)\n" msgstr " -m n - lista/välj felkorrigeringsmetoder (standard: RS01)\n" -#: dvdisaster.c:933 +#: dvdisaster.c:954 #, c-format msgid "" -" -n,--redundancy n%% - error correction file redundancy (in percent), or\n" -" maximum error correction image size (in sectors)\n" +" -n,--redundancy n%% - error correction data redundancy\n" +" allowed values depend on codec (see manual)\n" msgstr "" -" -n,--redundancy n%% - redundans för felkorrigeringsfil (i procent), eller\n" -" maximal storlek på felkorrigeringsavbild (i sektorer)\n" -#: dvdisaster.c:935 +#: dvdisaster.c:956 msgid " -v,--verbose - more diagnostic messages\n" msgstr " -v,--verbose - mer informativa meddelanden\n" -#: dvdisaster.c:936 +#: dvdisaster.c:957 msgid " -x,--threads n - use n threads for en-/decoding (if supported by codec)\n" msgstr "" -#: dvdisaster.c:937 +#: dvdisaster.c:958 msgid " --adaptive-read - use optimized strategy for reading damaged media\n" msgstr " --adaptive-read - använd optimerad strategi för läsning av skadat media\n" -#: dvdisaster.c:938 +#: dvdisaster.c:959 msgid " --auto-suffix - automatically add .iso and .ecc file suffixes\n" msgstr " --auto-suffix - lägg automatiskt till filändelserna .iso och .ecc \n" -#: dvdisaster.c:939 +#: dvdisaster.c:960 msgid " --cache-size n - image cache size in MB during -c mode (default: 32MB)\n" msgstr " --cache-size n - cachestorlek för avbild i MB med -c (standard: 32MB)\n" -#: dvdisaster.c:940 +#: dvdisaster.c:961 msgid " --dao - assume DAO disc; do not trim image end\n" msgstr " --dao - anta DAO-skiva; trimma inte avbildens slut\n" -#: dvdisaster.c:941 +#: dvdisaster.c:962 msgid " --defective-dump d - directory for saving incomplete raw sectors\n" msgstr "" -#: dvdisaster.c:943 -msgid " --driver=sg - use alternative sg driver (see man page!)\n" -msgstr "" - -#: dvdisaster.c:945 -msgid " --eject - eject medium after successful read\n" -msgstr "" - -#: dvdisaster.c:946 -msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" -msgstr " --fill-unreadable n - fyll oläsliga sektorer med byte n\n" - -#: dvdisaster.c:947 -msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" -msgstr "" - -#: dvdisaster.c:948 -msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" -msgstr "" - -#: dvdisaster.c:949 -msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" -msgstr "" - -#: dvdisaster.c:950 -msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" -msgstr "" - -#: dvdisaster.c:951 -msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" -msgstr "" - -#: dvdisaster.c:952 -msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" -msgstr "" - -#: dvdisaster.c:953 -msgid " --read-medium n - read the whole medium up to n times\n" -msgstr "" - -#: dvdisaster.c:954 -msgid " --read-raw - performs read in raw mode if possible\n" -msgstr "" - -#: dvdisaster.c:955 -msgid " --speed-warning n - print warning if speed changes by more than n percent\n" -msgstr " --speed-warning n - skriv ut varning om hastighet ändras med mer än n procent\n" - -#: dvdisaster.c:956 -msgid " --spinup-delay n - wait n seconds for drive to spin up\n" -msgstr " --spinup-delay n - vänta n sekunder på att enheten ska varva upp\n" - -#: dvdisaster.c:960 -msgid "Debugging options (purposefully undocumented and possibly harmful)\n" -msgstr "" - -#: dvdisaster.c:961 -msgid " --debug - enables the following options\n" -msgstr "" - -#: dvdisaster.c:962 -msgid " --byteset s,i,b - set byte i in sector s to b\n" -msgstr "" - -#: dvdisaster.c:963 -msgid " --cdump - creates C #include file dumps instead of hexdumps\n" -msgstr "" - #: dvdisaster.c:964 -msgid " --compare-images a,b - compare sectors in images a and b\n" -msgstr "" - -#: dvdisaster.c:965 -msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgid " --driver=sg/cdrom - use sg(default) or alternative cdrom driver (see man page!)\n" msgstr "" #: dvdisaster.c:966 -msgid " --erase sector - erase the given sector\n" +msgid " --eject - eject medium after successful read\n" msgstr "" #: dvdisaster.c:967 -msgid " --erase n-m - erase sectors n - m, inclusively\n" -msgstr "" +msgid " --fill-unreadable n - fill unreadable sectors with byte n\n" +msgstr " --fill-unreadable n - fyll oläsliga sektorer med byte n\n" #: dvdisaster.c:968 -msgid " --marked-image n - create image with n marked random sectors\n" +msgid " --ignore-fatal-sense - continue reading after potentially fatal error conditon\n" msgstr "" #: dvdisaster.c:969 -msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgid " --internal-rereads n - drive may attempt n rereads before reporting an error\n" msgstr "" #: dvdisaster.c:970 -msgid " --random-errors r,e seed image with (correctable) random errors\n" +msgid " --old-ds-marker - mark missing sectors compatible with dvdisaster <= 0.70\n" msgstr "" #: dvdisaster.c:971 -msgid " --random-image n - create image with n sectors of random numbers\n" +msgid " --prefetch-sectors n - prefetch n sectors for RS03 encoding (uses ~nMB)\n" msgstr "" #: dvdisaster.c:972 -msgid " --random-seed n - random seed for built-in random number generator\n" +msgid " --raw-mode n - mode for raw reading CD media (20 or 21)\n" msgstr "" #: dvdisaster.c:973 -msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgid " --read-attempts n-m - attempts n upto m reads of a defective sector\n" msgstr "" #: dvdisaster.c:974 -msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgid " --read-medium n - read the whole medium up to n times\n" msgstr "" #: dvdisaster.c:975 -msgid " --screen-shot - useful for generating screen shots\n" +msgid " --read-raw - performs read in raw mode if possible\n" msgstr "" #: dvdisaster.c:976 +msgid " --speed-warning n - print warning if speed changes by more than n percent\n" +msgstr " --speed-warning n - skriv ut varning om hastighet ändras med mer än n procent\n" + +#: dvdisaster.c:977 +msgid " --spinup-delay n - wait n seconds for drive to spin up\n" +msgstr " --spinup-delay n - vänta n sekunder på att enheten ska varva upp\n" + +#: dvdisaster.c:981 +msgid "Debugging options (purposefully undocumented and possibly harmful)\n" +msgstr "" + +#: dvdisaster.c:982 +msgid " --debug - enables the following options\n" +msgstr "" + +#: dvdisaster.c:983 +msgid " --byteset s,i,b - set byte i in sector s to b\n" +msgstr "" + +#: dvdisaster.c:984 +msgid " --cdump - creates C #include file dumps instead of hexdumps\n" +msgstr "" + +#: dvdisaster.c:985 +msgid " --compare-images a,b - compare sectors in images a and b\n" +msgstr "" + +#: dvdisaster.c:986 +msgid " --copy-sector a,n,b,m - copy sector n from image a to sector m in image b\n" +msgstr "" + +#: dvdisaster.c:987 +msgid " --erase sector - erase the given sector\n" +msgstr "" + +#: dvdisaster.c:988 +msgid " --erase n-m - erase sectors n - m, inclusively\n" +msgstr "" + +#: dvdisaster.c:989 +msgid " --marked-image n - create image with n marked random sectors\n" +msgstr "" + +#: dvdisaster.c:990 +msgid " --merge-images a,b merge image a with b (a receives sectors from b)\n" +msgstr "" + +#: dvdisaster.c:991 +msgid " --random-errors r,e seed image with (correctable) random errors\n" +msgstr "" + +#: dvdisaster.c:992 +msgid " --random-image n - create image with n sectors of random numbers\n" +msgstr "" + +#: dvdisaster.c:993 +msgid " --random-seed n - random seed for built-in random number generator\n" +msgstr "" + +#: dvdisaster.c:994 +msgid " --raw-sector n - shows hexdump of the given raw sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:995 +msgid " --read-sector n - shows hexdump of the given sector from medium in drive\n" +msgstr "" + +#: dvdisaster.c:996 +msgid " --screen-shot - useful for generating screen shots\n" +msgstr "" + +#: dvdisaster.c:997 msgid " --send-cdb arg - executes given cdb at drive; kills system if used wrong\n" msgstr "" -#: dvdisaster.c:977 +#: dvdisaster.c:998 msgid " --show-sector n - shows hexdump of the given sector in an image file\n" msgstr "" -#: dvdisaster.c:978 +#: dvdisaster.c:999 #, c-format msgid " --sim-defects n - simulate n%% defective sectors on medium\n" msgstr "" -#: dvdisaster.c:979 +#: dvdisaster.c:1000 msgid " --truncate n - truncates image to n sectors\n" msgstr "" -#: dvdisaster.c:980 +#: dvdisaster.c:1001 msgid "" " --zero-unreadable - replace the \"unreadable sector\" markers with zeros\n" "\n" msgstr "" -#: dvdisaster.c:984 +#: dvdisaster.c:1005 msgid "" "NOTE: This is the Windows console version of dvdisaster.\n" "The version providing a graphical user interface is called\n" @@ -677,7 +673,7 @@ msgid "" "\n" msgstr "" -#: dvdisaster.c:1005 +#: dvdisaster.c:1026 msgid "Optical drive 52X FW 1.02" msgstr "" @@ -705,14 +701,6 @@ msgstr "" msgid "Multithreaded Reed-Solomon codec for error correction files and augmented images" msgstr "" -#: ecc-rs03s.c:39 -msgid "Single threaded RS codec (RSS3)" -msgstr "" - -#: ecc-rs03s.c:40 -msgid "Single threaded Reed-Solomon codec for error correction files and augmented images" -msgstr "" - #: file.c:39 #, c-format msgid "" @@ -1535,7 +1523,7 @@ msgid "" "\n" "Reading can be limited to a part of the medium (in sectors holding 2KB each). The values include the borders: 0-100 will read 101 sectors.\n" "\n" -"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a succesful error correction.\n" +"Note: Limiting the reading range is not recommended for adaptive reading since it might prevent sectors from being read which are required for a successful error correction.\n" "\n" "These settings are only effective for the current session and will not be saved." msgstr "" @@ -1695,7 +1683,7 @@ msgid "" "\n" "There are several ways to put the drive into a mode which transfers partially read data from defective sectors:\n" "\n" -"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transfering a defective sector.\n" +"0x20 This is the recommended mode. The drive tries to apply the built-in error correction to the best possible extent before transferring a defective sector.\n" "\n" "0x21 In this mode the drive skips the last stage of its internal error correction and returns the uncorrected sector instead. This may result in sectors being tagged and processed as defective which would come out good in other reading modes, causing unnecessary work or even uncorrectable sectors.\n" "However some drives appear to be unable to transfer data in mode 0x20, but can do so in mode 0x21, so this is your last resort then. Also, if sectors are not recoverable after reading and caching sectors in mode 0x20, then adding some mode 0x21 reads to the cache might deliver additional information.\n" @@ -3082,7 +3070,7 @@ msgid "Redundancy %d out of useful range [8..100]." msgstr "Redundans %d utanför användbart intervall [8..100]." #: rs01-create.c:125 rs01-fix.c:77 rs02-create.c:58 rs02-fix.c:53 -#: rs03-create.c:116 rs03-fix.c:54 rs03s-create.c:125 +#: rs03-create.c:116 rs03-fix.c:54 #, c-format msgid "Aborted by unrecoverable error." msgstr "Avbröts av ej återhämtningsbara fel." @@ -3147,7 +3135,7 @@ msgid "" msgstr "" #: rs01-create.c:522 rs01-create.c:646 rs01-create.c:940 rs02-create.c:959 -#: rs03-create.c:921 rs03s-create.c:972 +#: rs03-create.c:921 #, c-format msgid "Ecc generation: %3d.%1d%%" msgstr "Generering av ecc: %3d.%1d%%" @@ -3156,8 +3144,7 @@ msgstr "Generering av ecc: %3d.%1d%%" #: rs01-fix.c:286 rs01-fix.c:303 rs01-fix.c:356 rs01-verify.c:431 #: rs01-verify.c:798 rs02-create.c:112 rs02-fix.c:232 rs02-fix.c:253 #: rs02-fix.c:344 rs02-verify.c:717 rs03-create.c:185 rs03-fix.c:260 -#: rs03-fix.c:281 rs03-fix.c:358 rs03s-create.c:179 rs03-verify.c:636 -#: rs03-verify.c:1044 +#: rs03-fix.c:281 rs03-fix.c:358 rs03-verify.c:636 rs03-verify.c:1044 #, c-format msgid "Aborted by user request!" msgstr "Avbruten av användaren!" @@ -3180,7 +3167,7 @@ msgstr "" "Kan inte skriva ecc-huvud:\n" "%s" -#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 rs03s-create.c:1124 +#: rs01-create.c:976 rs02-create.c:1107 rs03-create.c:1145 #, c-format msgid "Ecc generation: 100.0%%\n" msgstr "Generering av ecc: 100.0%%\n" @@ -3293,7 +3280,7 @@ msgstr "" #, c-format msgid "" "The image file is %d bytes longer than noted\n" -"in the ecc file. Shall the superflous bytes\n" +"in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n" msgstr "" "Avbildsfilen är %d byte längre än noterat\n" @@ -3788,7 +3775,7 @@ msgstr "- ecc md5sum : %s (bra)\n" msgid "Good error correction file." msgstr "Bra felkorrigeringsfil." -#: rs01-window.c:138 rs02-window.c:87 rs03s-window.c:85 rs03-window.c:92 +#: rs01-window.c:138 rs02-window.c:87 rs03-window.c:92 msgid "2. Creating error correction data:" msgstr "2. Skapar felkorrigeringsdata:" @@ -3922,22 +3909,22 @@ msgid "" "dvdisaster optimizes access to the image and error correction files by maintaining its own cache. The preset of 32MB is suitable for most systems." msgstr "" -#: rs02-common.c:332 rs02-common.c:344 rs02-verify.c:629 rs03-common.c:318 +#: rs02-common.c:365 rs02-common.c:377 rs02-verify.c:629 rs03-common.c:318 #, c-format msgid "Failed seeking to ecc header at %lld: %s\n" msgstr "Misslyckades med att söka till ecc-huvud på %lld: %s\n" -#: rs02-common.c:336 rs02-common.c:348 rs03-common.c:322 +#: rs02-common.c:369 rs02-common.c:381 rs03-common.c:322 #, c-format msgid "Failed writing ecc header at %lld: %s\n" msgstr "Misslyckades med att skriva ecc-huvud vid %lld: %s\n" -#: rs02-create.c:107 rs03-create.c:180 rs03s-create.c:174 +#: rs02-create.c:107 rs03-create.c:180 #, c-format msgid "Aborted by user request! (partial ecc data removed from image)" msgstr "Avbröts på användarens begäran! (ej komplett ecc-data borttagen från avbild)" -#: rs02-create.c:143 rs03-create.c:237 rs03s-create.c:219 +#: rs02-create.c:143 rs03-create.c:237 #, c-format msgid "" "Image \"%s\" already contains error correction information.\n" @@ -3977,7 +3964,7 @@ msgid "Preparing image (checksums, adding space): %3d%%" msgstr "" #: rs02-create.c:267 rs02-create.c:277 rs02-fix.c:91 rs03-create.c:324 -#: rs03-create.c:335 rs03-fix.c:96 rs03s-create.c:307 rs03s-create.c:318 +#: rs03-create.c:335 rs03-fix.c:96 #, c-format msgid "Failed seeking to end of image: %s\n" msgstr "Misslyckades med att söka till slutet av avbild: %s\n" @@ -3988,12 +3975,11 @@ msgstr "Misslyckades med att söka till slutet av avbild: %s\n" msgid "Failed expanding the image: %s\n" msgstr "Misslyckades med att expandera avbilden: %s\n" -#: rs02-create.c:1029 rs03-create.c:1055 rs03s-create.c:1037 +#: rs02-create.c:1029 rs03-create.c:1055 msgid "Error correction data creation aborted" msgstr "Skapandet av felkorrigeringsdata avbröts" #: rs02-create.c:1033 rs02-create.c:1053 rs03-create.c:1059 rs03-create.c:1088 -#: rs03s-create.c:1041 rs03s-create.c:1070 #, c-format msgid "" "Augmenting the image with error correction data.\n" @@ -4002,7 +3988,7 @@ msgstr "" "Utvidgar avbilden med felkorrigeringsdata.\n" "%s" -#: rs02-create.c:1034 rs03-create.c:1060 rs03s-create.c:1042 +#: rs02-create.c:1034 rs03-create.c:1060 msgid "- checking image -" msgstr "- kontrollerar avbild -" @@ -4029,7 +4015,7 @@ msgid "" "not an option, please create a separate error correction file." msgstr "" -#: rs02-create.c:1076 rs03-create.c:1124 rs03s-create.c:1101 +#: rs02-create.c:1076 rs03-create.c:1124 #, c-format msgid "" "Using redundancies below 20%%%% may not give\n" @@ -4315,7 +4301,7 @@ msgstr "" msgid "Full data recovery is NOT possible." msgstr "" -#: rs02-window.c:78 rs03s-window.c:76 +#: rs02-window.c:78 msgid "1. Preparing image:" msgstr "1. Förbereder avbild:" @@ -4521,7 +4507,7 @@ msgstr "" msgid "%d threads" msgstr "" -#: rs03-create.c:1083 rs03s-create.c:1066 +#: rs03-create.c:1083 #, c-format msgid "Encoding with Method RS03: %lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" @@ -4540,7 +4526,7 @@ msgid "" "%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." msgstr "" -#: rs03-create.c:1114 rs03s-create.c:1091 +#: rs03-create.c:1114 #, c-format msgid "" "Not enough space on medium left for error correction data.\n" @@ -4671,20 +4657,6 @@ msgid "" "Performance will not scale linearly with the number of CPU cores. Hard disk performance is more limiting than raw CPU power. When using 4 cores or more, memory bandwidth may also affect performance." msgstr "" -#: rs03s-create.c:1075 -#, c-format -msgid "" -"Augmenting image with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - -#: rs03s-create.c:1080 -#, c-format -msgid "" -"Creating the error correction file with Method RS03s:\n" -"%lld MB data, %lld MB ecc (%d roots; %4.1f%% redundancy)." -msgstr "" - #: rs03-verify.c:189 msgid "Error correction properties" msgstr "" @@ -4941,7 +4913,7 @@ msgstr "" msgid "No CD/DVD drives found." msgstr "Inga cd/dvd-enheter hittades." -#: scsi-freebsd.c:42 scsi-linux.c:44 scsi-solaris.c:61 +#: scsi-freebsd.c:42 scsi-linux.c:44 msgid "" "Can not access /dev for devices\n" "No drives will be pre-selected.\n" @@ -4949,7 +4921,7 @@ msgstr "" "Kan inte komma åt /dev efter enheter\n" "Inga enheter kommer att vara förvalda.\n" -#: scsi-freebsd.c:97 scsi-linux.c:85 scsi-solaris.c:112 +#: scsi-freebsd.c:97 scsi-linux.c:85 msgid "" "No CD/DVD drives found in /dev.\n" "No drives will be pre-selected.\n" @@ -5459,6 +5431,13 @@ msgstr "" msgid "New in this Version:" msgstr "" +#~ msgid "" +#~ " -n,--redundancy n%% - error correction file redundancy (in percent), or\n" +#~ " maximum error correction image size (in sectors)\n" +#~ msgstr "" +#~ " -n,--redundancy n%% - redundans för felkorrigeringsfil (i procent), eller\n" +#~ " maximal storlek på felkorrigeringsavbild (i sektorer)\n" + #~ msgid "" #~ "Image file already exists and does not match the CD/DVD.\n" #~ "The existing image file will be deleted." diff --git a/preferences.c b/preferences.c index 736dbf7..7f999ba 100644 --- a/preferences.c +++ b/preferences.c @@ -1532,7 +1532,7 @@ void CreatePreferencesWindow(void) "The values include the borders: 0-100 will read 101 sectors.\n\n" "Note: Limiting the reading range is not recommended for adaptive reading since it might " - "prevent sectors from being read which are required for a succesful error correction.\n\n" + "prevent sectors from being read which are required for a successful error correction.\n\n" "These settings are only effective for the current session and will not be saved.")); /*** Image recognization */ @@ -1902,7 +1902,7 @@ void CreatePreferencesWindow(void) "0x20 This is the recommended mode. " "The drive tries to apply " "the built-in error correction to the best possible extent " - "before transfering a defective sector.\n\n" + "before transferring a defective sector.\n\n" "0x21 In this mode the drive skips the last stage " "of its internal error correction and returns the " "uncorrected sector instead. This may result in sectors " diff --git a/rs-encoder-altivec.c b/rs-encoder-altivec.c new file mode 100644 index 0000000..12b8de5 --- /dev/null +++ b/rs-encoder-altivec.c @@ -0,0 +1,121 @@ +/* dvdisaster: Additional error correction for optical media. + * Copyright (C) 2004-2010 Carsten Gnoerlich. + * Project home page: http://www.dvdisaster.com + * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA, + * or direct your browser at http://www.gnu.org. + */ + +#include "dvdisaster.h" + +#ifdef HAVE_ALTIVEC +# include +#endif + +#include +#include + +/*** + *** Reed-Solomon encoding using AltiVec intrinsics + *** + *** Based on rs-encoder-altivec.c + *** AltiVec version by michael.klein@puffin.lb.shuttle.de + ***/ + +/* AltiVec version */ + +#ifdef HAVE_ALTIVEC +static volatile int AltiVecPresent; +static jmp_buf jmpbuf; + +void sig_ill_handler(int sig) +{ + AltiVecPresent = 0; + siglongjmp(jmpbuf, 0); +} + +int ProbeAltiVec(void) +{ + sig_t old_handler; + + AltiVecPresent = 1; + + old_handler = signal(SIGILL, sig_ill_handler); + if(!sigsetjmp(jmpbuf, 0)) + { + vector unsigned char v; + asm volatile("vor %0, %0, %0": "=v"(v)); + } + + signal(SIGILL, old_handler); + + return AltiVecPresent; +} + +void encode_next_layer_altivec(ReedSolomonTables *rt, unsigned char *data, unsigned char *parity, guint64 layer_size, int shift) +{ gint32 *gf_index_of = rt->gfTables->indexOf; + gint32 *enc_alpha_to = rt->gfTables->encAlphaTo; + gint32 *rs_gpoly = rt->gpoly; + int nroots = rt->nroots; + int nroots_aligned = (nroots+15)&~15; + int nroots_full = nroots_aligned>>4; + int i,j; + + for(i=0; ibLut[feedback]+offset; + + vector unsigned char par, lut, out, msq, lsq, mask; + + /* Process lut in 128 bit steps */ + + mask = vec_lvsl(0, e_lut); + + for(j=nroots_full; j; j--) + { + par = vec_ld(0, par_idx); + msq = vec_ld(0, e_lut); + lsq = vec_ld(15, e_lut); + lut = vec_perm(msq, lsq, mask); + out = vec_xor(par, lut); + vec_st(out, 0, par_idx); + par_idx += 16; + e_lut += 16; + } + + parity[shift] = enc_alpha_to[feedback + rs_gpoly[0]]; + } + else /* zero feedback term */ + parity[shift] = 0; + + parity += nroots_aligned; + } +} +#else /* don't have ALTIVEC */ +int ProbeAltiVec() +{ return 0; +} + +void encode_next_layer_altivec(ReedSolomonTables *rt, unsigned char *data, unsigned char *parity, guint64 layer_size, int shift) +{ + Stop("Mega borkage - EncodeNextLayerAltiVec() stub called.\n"); +} +#endif /* HAVE_ALTIVEC */ + diff --git a/rs-encoder.c b/rs-encoder.c index 9c18980..267dc90 100644 --- a/rs-encoder.c +++ b/rs-encoder.c @@ -110,10 +110,14 @@ static void encode_next_layer_portable(ReedSolomonTables *rt, unsigned char *dat */ void encode_next_layer_sse2(ReedSolomonTables*, unsigned char*, unsigned char*, guint64, int); +void encode_next_layer_altivec(ReedSolomonTables*, unsigned char*, unsigned char*, guint64, int); void EncodeNextLayer(ReedSolomonTables *rt, unsigned char *data, unsigned char *parity, guint64 layer_size, int shift) { if(Closure->useSSE2) encode_next_layer_sse2(rt, data, parity, layer_size, shift); - else encode_next_layer_portable(rt, data, parity, layer_size, shift); + else if(Closure->useAltiVec) + encode_next_layer_altivec(rt, data, parity, layer_size, shift); + else + encode_next_layer_portable(rt, data, parity, layer_size, shift); } diff --git a/rs01-fix.c b/rs01-fix.c index 8f819f0..26e8c5c 100644 --- a/rs01-fix.c +++ b/rs01-fix.c @@ -246,7 +246,7 @@ void RS01Fix(Method *method) if(Closure->guiMode) { int answer = ModalDialog(GTK_MESSAGE_QUESTION, GTK_BUTTONS_OK_CANCEL, NULL, _("The image file is %d bytes longer than noted\n" - "in the ecc file. Shall the superflous bytes\n" + "in the ecc file. Shall the superfluous bytes\n" "be removed from the image file?\n"), difference); diff --git a/rs02-common.c b/rs02-common.c index b58c502..7749495 100644 --- a/rs02-common.c +++ b/rs02-common.c @@ -241,6 +241,39 @@ RS02Layout *CalcRS02Layout(gint64 data_sectors, int requested_roots) lay->crcSectors = (sizeof(guint32)*lay->dataSectors+2047)/2048; lay->protectedSectors = lay->dataSectors + 2 + lay->crcSectors; /* two sectors for header */ + /* See if user wants to pick a certain redundancy */ + + if(!Closure->guiMode && !requested_roots && Closure->redundancy) + { int len = strlen(Closure->redundancy); + + switch(Closure->redundancy[len-1]) + { case 'r': /* pick number of roots */ + { char buf[len]; + + strncpy(buf, Closure->redundancy, len-1); + requested_roots = atoi(buf); + break; + } + case '%': /* pick redundancy directly */ + { char buf[len]; + int percent; + + strncpy(buf, Closure->redundancy, len-1); + percent = atoi(buf); + + for(requested_roots = 7; requested_roots < 171; requested_roots++) + { double redundancy = ((double)requested_roots*100.0)/((double)(GF_FIELDMAX-requested_roots)); + if(redundancy >= percent) + break; + } + if(requested_roots >170) + requested_roots = 0; + + break; + } + } + } + /* Calculate starting value for the redundancy */ if(requested_roots > 0) diff --git a/rs03-recognize.c b/rs03-recognize.c index ae4b2f4..dd36361 100644 --- a/rs03-recognize.c +++ b/rs03-recognize.c @@ -88,7 +88,7 @@ EccHeader* ValidHeader(unsigned char *buf, gint64 hdr_pos) { EccHeader *eh = (EccHeader*)buf; guint32 recorded_crc, real_crc; // unsigned char fingerprint[16]; - + /* Medium read error in ecc header? */ if( (CheckForMissingSector(buf, hdr_pos, NULL, 0) != SECTOR_PRESENT) diff --git a/scripts/bash-based-configure b/scripts/bash-based-configure index 1be8036..682fd0c 100644 --- a/scripts/bash-based-configure +++ b/scripts/bash-based-configure @@ -58,6 +58,7 @@ # CHECK_ENDIAN Test whether system is little or big endian # CHECK_BITNESS Test whether system is 32bit or 64bit # CHECK_SSE2 Test whether when can compile for SSE2 extensions +# CHECK_ALTIVEC Test whether when can compile for AltiVec extensions # FINALIZE_HELP Finish --help output (optional, but user friendly) # # WITH_OPTION name default adds -DWITH_OPTION_VALUE for -with-option=value args @@ -141,19 +142,6 @@ case "$cfg_uname" in } ;; - SunOS*) cfg_system=solaris - CFG_SYS_OPTIONS="-DSYS_SOLARIS" - CFG_EXE_SUFFIX="" - # Even a Sparc V9 is a tight fit for us... - if test `uname -m` == "sun4u"; then - CFG_SYS_CFLAGS="-mcpu=v9" - fi - - function add_linker_flags() - { lflags_return="-L$1 $2" - } - ;; - *) cfg_system=unknown-system CFG_SYS_OPTIONS="-DSYS_UNKNOWN" CFG_EXE_SUFFIX="" @@ -700,8 +688,7 @@ function try_common_library_locations /usr/XFree86/lib/X11 \ /usr/lib \ /usr/local/lib \ - /usr/openwin/lib \ - /usr/openwin/share/lib \ + /usr/pkg/lib \ ; \ do if test -r "$test_dir/$lib_a" || test -r "$test_dir/$lib_so"; then @@ -804,8 +791,7 @@ function try_common_header_locations() /usr/XFree86/include/X11 \ /usr/include \ /usr/local/include \ - /usr/openwin/include \ - /usr/openwin/share/include \ + /usr/pkg/include \ ; \ do test_header=$test_dir/$header @@ -1378,18 +1364,7 @@ function REQUIRE_GTK2() echo -n " pkg-config... " if pkg-config --cflags gtk+-2.0 >>config.tmp 2>&1 && pkg-config $threads --libs gtk+-2.0 >>config.tmp 2>&1 ; then - if test $cfg_system == "solaris"; then - CFG_GTK2_LIBS=`pkg-config $threads --libs gtk+-2.0` - if (echo $CFG_GTK2_LIBS | grep "mt") > /dev/null 2>&1; then - echo "broken, Solaris fix will be applied" - broken_solaris="yes" - else - broken_solaris="no" - echo "works" - fi - else - echo "works" - fi + echo "works" rm config.tmp else echo "failed" @@ -1421,10 +1396,6 @@ EOF CFG_GTK2_CFLAGS=`pkg-config --cflags gtk+-2.0` CFG_GTK2_LIBS=`pkg-config $threads --libs gtk+-2.0` - if test "$broken_solaris" == "yes"; then - CFG_GTK2_LIBS=`echo $CFG_GTK2_LIBS | sed -e 's/-mt//'` - fi - CFG_GTK2_BINDIR=`which pkg-config` CFG_GTK2_BINDIR=`echo $CFG_GTK2_BINDIR | sed -e 's/.exe//' | sed -e 's/\/pkg-config//'` @@ -1853,6 +1824,64 @@ EOF CFG_CFLAGS=$cflags_save } +# +# Check for AltiVec. +# + +function CHECK_ALTIVEC() +{ + if test -n "$cfg_help_mode"; then + echo " --with-altivec=[yes | no]" + return 0 + fi + + CHECK_ALTIVEC_INVOKED=1 + + echo -e "\n/* *** CHECK_ALTIVEC */\n" >>$LOGFILE + echo -n "Checking for AltiVec..." + + # See if user wants to override our test + + if test -n "$cfg_with_altivec"; then + case "$cfg_with_altivec" in + no) echo " no (user supplied)" + ;; + yes) echo " yes (user supplied)" + CFG_ALTIVEC_OPTIONS="-maltivec -DHAVE_ALTIVEC" + ;; + *) echo -e " $cfg_with_altivec (illegal value)\n" + echo "Please use one of the following values:" + echo "--with-altivec=[yes | no]" + exit 1 + ;; + esac + return 0; + fi + + # Do automatic detection + + cat > conftest.c < + +int main() +{ vector unsigned char a, b, c; + + c = vec_or(a, b); +} +EOF + + local cflags_save=$CFG_CFLAGS + CFG_CFLAGS="-maltivec $CFG_CFLAGS" + if try_compile; then + echo " yes" + CFG_ALTIVEC_OPTIONS="-maltivec -DHAVE_ALTIVEC" + else + echo " no" + fi + CFG_CFLAGS=$cflags_save +} + + # # Check whether a certain program is there and executable. # @@ -1897,6 +1926,9 @@ function CREATE_MAKEFILES() if test -n "$CHECK_SSE2_INVOKED"; then echo "CFG_SSE2_OPTIONS = $CFG_SSE2_OPTIONS" >> Makefile.config fi + if test -n "$CHECK_ALTIVEC_INVOKED"; then + echo "CFG_ALTIVEC_OPTIONS = $CFG_ALTIVEC_OPTIONS" >> Makefile.config + fi echo >> Makefile.config for i in $@; do diff --git a/scsi-darwin.c b/scsi-darwin.c index 98b8d35..28199ae 100644 --- a/scsi-darwin.c +++ b/scsi-darwin.c @@ -283,6 +283,7 @@ int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char break; case DATA_NONE: flags = kSCSIDataTransfer_NoDataTransfer; + break; default: Stop("illegal data_mode: %d",data_mode); } diff --git a/scsi-layer.c b/scsi-layer.c index e71ba3e..665b402 100644 --- a/scsi-layer.c +++ b/scsi-layer.c @@ -2047,7 +2047,7 @@ gint64 CurrentMediumSize(int get_blank_size) /* * Spin up drive. - * Most drive give a *beep* about sending the START STOP CDB, + * Most drives give a *beep* about sending the START STOP CDB, * so we simply nudge them with reading request until the spin up * time is over. Pathetic ;-) */ @@ -2100,7 +2100,7 @@ void LoadMedium(DeviceHandle *dh, int load) cmd[0] = 0x1b; /* START STOP */ cmd[4] = load ? 0x03 : 0x02; /* LOEJ=1; START=load/eject */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0 + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0 && (sense.asc != 0x53 || sense.ascq != 0x02)) { PrintLog(_("%s\nCould not load/unload the medium.\n"), @@ -2118,7 +2118,7 @@ void LoadMedium(DeviceHandle *dh, int load) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x1e; /* PREVENT ALLOW MEDIUM REMOVAL */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0) PrintLog(_("%s\nCould not unlock the medium.\n"), GetSenseString(sense.sense_key, sense.asc, sense.ascq, TRUE)); @@ -2128,7 +2128,7 @@ void LoadMedium(DeviceHandle *dh, int load) cmd[0] = 0x1b; /* START STOP */ cmd[4] = 0x02; /* LOEJ=1; START=eject */ - if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_READ)<0) + if(SendPacket(dh, cmd, 6, NULL, 0, &sense, DATA_NONE)<0) PrintLog(_("%s\nCould not load/unload the medium.\n"), GetSenseString(sense.sense_key, sense.asc, sense.ascq, TRUE)); } @@ -2146,7 +2146,7 @@ int TestUnitReady(DeviceHandle *dh) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x00; /* TEST UNIT READY */ - if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_READ) != -1) + if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_NONE) != -1) return TRUE; /*** If no medium present, try closing the tray. */ @@ -2164,7 +2164,7 @@ int TestUnitReady(DeviceHandle *dh) memset(cmd, 0, MAX_CDB_SIZE); cmd[0] = 0x00; /* TEST UNIT READY */ - if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_READ) != -1) + if(SendPacket(dh, cmd, 6, NULL, 0, &dh->sense, DATA_NONE) != -1) { if(Closure->guiMode) SetLabelText(Closure->status, ""); return TRUE; diff --git a/scsi-layer.h b/scsi-layer.h index 0b6fb4e..aeda51f 100644 --- a/scsi-layer.h +++ b/scsi-layer.h @@ -77,7 +77,7 @@ #define MAX_CDB_SIZE SCSI_MAX_CDBLEN #endif -#if defined(SYS_UNKNOWN) || defined(SYS_MINGW) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) || defined(SYS_DARWIN) +#if defined(SYS_UNKNOWN) || defined(SYS_MINGW) || defined(SYS_NETBSD) || defined(SYS_DARWIN) #define MAX_CDB_SIZE 16 /* longest possible SCSI command */ #endif diff --git a/scsi-linux.c b/scsi-linux.c index cfb67f8..0b02b22 100644 --- a/scsi-linux.c +++ b/scsi-linux.c @@ -141,38 +141,60 @@ static void assert_cdb_length(unsigned char cdb, int cdb_size, int expected_size cdb_size, cdb, expected_size); } -static void test_cdb(unsigned char *cdb, int cdb_size) +static void assert_cdb_direction(unsigned char cdb, int expected, int given) +{ + if(expected != given) + PrintLog("SendPacket(): Wrong data direction %d for opcode %0x (expected %d)\n", + given, cdb, expected); +} + +static void test_cdb(unsigned char *cdb, int cdb_size, int direction) { switch(cdb[0]) { case 0x00: assert_cdb_length(cdb[0], cdb_size, 6); /* TEST UNIT READY */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x12: assert_cdb_length(cdb[0], cdb_size, 6); /* INQUIRY */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x1b: assert_cdb_length(cdb[0], cdb_size, 6); /* START STOP */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x1e: assert_cdb_length(cdb[0], cdb_size, 6); /* PREVENT ALLOW MEDIUM REMOVAL */ + assert_cdb_direction(cdb[0], DATA_NONE, direction); break; case 0x23: assert_cdb_length(cdb[0], cdb_size, 10); /* READ FORMAT CAPACITIES */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x25: assert_cdb_length(cdb[0], cdb_size, 10); /* READ CAPACITY */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x28: assert_cdb_length(cdb[0], cdb_size, 10); /* READ(10) */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x43: assert_cdb_length(cdb[0], cdb_size, 10); /* READ TOC/PMA/ATIP */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x46: assert_cdb_length(cdb[0], cdb_size, 10); /* GET CONFIGURATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x51: assert_cdb_length(cdb[0], cdb_size, 10); /* READ DISC INFORMATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x52: assert_cdb_length(cdb[0], cdb_size, 10); /* READ TRACK INFORMATION */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0x55: assert_cdb_length(cdb[0], cdb_size, 10); /* MODE SELECT */ + assert_cdb_direction(cdb[0], DATA_WRITE, direction); break; case 0x5a: assert_cdb_length(cdb[0], cdb_size, 10); /* MODE SENSE */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0xad: assert_cdb_length(cdb[0], cdb_size, 12); /* READ DVD STRUCTURE */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; case 0xbe: assert_cdb_length(cdb[0], cdb_size, 12); /* READ CD */ + assert_cdb_direction(cdb[0], DATA_READ, direction); break; default: PrintLog("SendPacket(): Unknown opcode %0x\n", cdb[0]); @@ -181,15 +203,18 @@ static void test_cdb(unsigned char *cdb, int cdb_size) #endif /* - * The CDROM ioctl() interface has been used since the first dvdisaster - * release - it's the proven way of accessing the drive. + * The CDROM ioctl() interface has been used since the first dvdisaster release. + * However with recent 2.6 kernels it seems to become outdated - several parallel + * SCSI cards are already exhibiting failures using this interface. + * Starting with dvdisaster 0.79.3, the SG_IO interface has become + * the default now. You can revert back to old behaviour using --driver=cdrom. */ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) { struct cdrom_generic_command cgc; #ifdef ASSERT_CDB_LENGTH - test_cdb(cmd, cdb_size); + test_cdb(cmd, cdb_size, data_mode); #endif memset(&cgc, 0, sizeof(cgc)); @@ -207,6 +232,9 @@ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, case DATA_WRITE: cgc.data_direction = CGC_DATA_WRITE; break; + case DATA_NONE: + cgc.data_direction = CGC_DATA_NONE; + break; default: Stop("illegal data_mode: %d", data_mode); } @@ -216,15 +244,18 @@ static int send_packet_cdrom(DeviceHandle *dh, unsigned char *cmd, int cdb_size, /* * Access to the drive through the generic SCSI interface - * has been added in dvdisaster 0.72 - it may have undetected flaws. - * Only use it if there are problems with the normal CDROM interface - * (some ancient parallel SCSI adapters/drives seem to fall into this - * category). + * has been added in dvdisaster 0.72 - it seems to be better + * maintained than the older CDROM_SEND_PACKET interface now. + * Especially parallel SCSI cdroms require this now. */ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) { struct sg_io_hdr sg_io; +#ifdef ASSERT_CDB_LENGTH + test_cdb(cmd, cdb_size, data_mode); +#endif + memset(&sg_io, 0, sizeof(sg_io)); sg_io.interface_id = 'S'; @@ -235,6 +266,9 @@ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_siz case DATA_WRITE: sg_io.dxfer_direction = SG_DXFER_TO_DEV; break; + case DATA_NONE: + sg_io.dxfer_direction = SG_DXFER_NONE; + break; default: Stop("illegal data_mode: %d", data_mode); } @@ -269,9 +303,20 @@ static int send_packet_generic(DeviceHandle *dh, unsigned char *cmd, int cdb_siz int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) { - if(!Closure->useSGioctl) - return send_packet_cdrom(dh, cmd, cdb_size, buf, size, sense, data_mode); - else return send_packet_generic(dh, cmd, cdb_size, buf, size, sense, data_mode); + switch(Closure->useSCSIDriver) + { + case DRIVER_SG: + return send_packet_generic(dh, cmd, cdb_size, buf, size, sense, data_mode); + + case DRIVER_CDROM: + return send_packet_cdrom(dh, cmd, cdb_size, buf, size, sense, data_mode); + + default: + Stop("no SCSI driver selected"); + break; + } + + return -1; } #endif /* SYS_LINUX */ diff --git a/scsi-netbsd.c b/scsi-netbsd.c index 2877f64..16faf58 100644 --- a/scsi-netbsd.c +++ b/scsi-netbsd.c @@ -163,6 +163,9 @@ int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char case DATA_WRITE: sc.flags = SCCMD_WRITE; break; + case DATA_NONE: + sc.flags = 0; + break; default: Stop("illegal data_mode: %d", data_mode); } diff --git a/scsi-solaris.c b/scsi-solaris.c deleted file mode 100644 index afe818d..0000000 --- a/scsi-solaris.c +++ /dev/null @@ -1,189 +0,0 @@ -/* dvdisaster: Additional error correction for optical media. - * Copyright (C) 2004-2010 Carsten Gnoerlich. - * Project home page: http://www.dvdisaster.com - * Email: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA, - * or direct your browser at http://www.gnu.org. - */ - -#include "dvdisaster.h" - -#include "scsi-layer.h" -#include "udf.h" - -#ifdef SYS_SOLARIS - -#include - -/*** - *** Warning - *** - * Solaris is not officially supported. - * This driver mostly exists for testing purposes on big endian archs. - * - * Note: - * - * - Only Solaris 10 3/05 or newer are supported. - * - Both x86 and Sparc are supported. - * - GNU tools (gcc, gmake etc.) are required. Do not use the Solaris counterparts. - * - You must run as root in order to access drives. - * Do NOT install the program suid root; it does NOT drop root priviledges! - * - Volume management must be off (/etc/init.d/volmgt stop) - * - Use UFS for image and ecc files to get optimal I/O speed. - * Error correction will cause fragmentation/slowdown on ZFS. - */ - -/* Dummy routines so that we can compile on unknown architectures - for which we don't have SCSI support yet. */ - -char* DefaultDevice() -{ DeviceHandle *dh; - GDir *dir; - const char* dev; - int dev_type; - - dir = g_dir_open("/dev/rdsk", 0, NULL); - - if(!dir) - { PrintLog(_("Can not access /dev for devices\n" - "No drives will be pre-selected.\n")); - - return g_strdup("no_drives"); - } - - dh = g_malloc(sizeof(DeviceHandle)); - - while((dev = g_dir_read_name(dir))) - { int slice; - char buf[80]; - - /* Sort out the uninteresting devices, - we want only the cntndns2 ones */ - - if(sscanf(dev,"c%*dt%*dd%*ds%d", &slice) != 1) - continue; - - if(slice != 2) - continue; - - /* Try to open the device */ - - sprintf(buf,"/dev/rdsk/%s", dev); - - memset(dh, 0, sizeof(DeviceHandle)); - dh->fd = open(buf, O_RDONLY | O_NDELAY); - dh->device = buf; - - if(dh->fd < 0) /* device not even present */ - continue; - - /* Inquire and see what we've got */ - - dev_type = InquireDevice(dh, 1); - close(dh->fd); - - if(dev_type != 5) /* not a CD/DVD ROM */ - continue; - - g_ptr_array_add(Closure->deviceNodes, g_strdup(buf)); - sprintf(buf, "%s (%s)", dh->devinfo, dev); - g_ptr_array_add(Closure->deviceNames, g_strdup(buf)); - } - - g_dir_close(dir); - g_free(dh); - - if(Closure->deviceNodes->len) - return g_strdup(g_ptr_array_index(Closure->deviceNodes, 0)); - else - { PrintLog(_("No CD/DVD drives found in /dev.\n" - "No drives will be pre-selected.\n")); - - return g_strdup("no_drives"); - } -} - -DeviceHandle* OpenDevice(char *device) -{ DeviceHandle *dh; - - dh = g_malloc0(sizeof(DeviceHandle)); - dh->fd = open(device, O_RDONLY | O_NDELAY); - - if(dh->fd < 0) - { g_free(dh); - Stop(_("Could not open %s: %s"),device, strerror(errno)); - return NULL; - } - - dh->device = g_strdup(device); - - return dh; -} - -void CloseDevice(DeviceHandle *dh) -{ - if(dh->canReadDefective) - SetRawMode(dh, MODE_PAGE_UNSET); - - if(dh->rawBuffer) - FreeRawBuffer(dh->rawBuffer); - - if(dh->fd) - close(dh->fd); - if(dh->device) - g_free(dh->device); - if(dh->rs02Header) - g_free(dh->rs02Header); - if(dh->typeDescr) - g_free(dh->typeDescr); - if(dh->mediumDescr) - g_free(dh->mediumDescr); - if(dh->isoInfo) - FreeIsoInfo(dh->isoInfo); - if(dh->defects) - FreeBitmap(dh->defects); - g_free(dh); -} - -int SendPacket(DeviceHandle *dh, unsigned char *cmd, int cdb_size, unsigned char *buf, int size, Sense *sense, int data_mode) -{ struct uscsi_cmd ucmd; - - memset(&ucmd, 0, sizeof(struct uscsi_cmd)); - - ucmd.uscsi_flags = USCSI_SILENT | USCSI_DIAGNOSE | USCSI_RQENABLE; - switch(data_mode) - { case DATA_READ: - ucmd.uscsi_flags |= USCSI_READ; - break; - case DATA_WRITE: - ucmd.uscsi_flags |= USCSI_WRITE; - break; - default: - Stop("illegal data_mode: %d", data_mode); - } - - ucmd.uscsi_timeout = 30*60; /* wait 30min for completion (timeout locks up the OS) */ - ucmd.uscsi_cdb = cmd; - ucmd.uscsi_cdblen = cdb_size; - ucmd.uscsi_bufaddr = buf; - ucmd.uscsi_buflen = size; - ucmd.uscsi_rqbuf = (caddr_t)sense; - ucmd.uscsi_rqlen = sizeof(Sense); - - return ioctl(dh->fd, USCSICMD, &ucmd); -} - -#endif /* SYS_SOLARIS */ diff --git a/show-manual.c b/show-manual.c index 34f3c96..55ae2d3 100644 --- a/show-manual.c +++ b/show-manual.c @@ -21,7 +21,7 @@ #include "dvdisaster.h" -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) #include #endif @@ -34,7 +34,7 @@ *** Ask user to specify his browser ***/ -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) #define SEARCH_BUTTON 1 @@ -173,7 +173,7 @@ static void msg_destroy_cb(GtkWidget *widget, gpointer data) bi->msg = NULL; } -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) /* * The following list of browsers and html wrappers @@ -273,7 +273,7 @@ static gboolean browser_timeout_func(gpointer data) * Invoke the browser */ -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) static void try_browser(browser_info *bi) { pid_t pid; @@ -393,7 +393,7 @@ void ShowHTML(char *target) g_timeout_add(1000, browser_timeout_func, (gpointer)bi); #endif -#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) || defined(SYS_SOLARIS) +#if defined(SYS_LINUX) || defined(SYS_FREEBSD) || defined(SYS_DARWIN) || defined(SYS_NETBSD) /* Try the first browser */ browser_index = 0; diff --git a/udf.c b/udf.c index 5cca893..7571a26 100644 --- a/udf.c +++ b/udf.c @@ -54,7 +54,7 @@ static int try_sector(DeviceHandle *dh, gint64 pos, EccHeader **ehptr, unsigned data behind the image. So finding an invalid sector does not imply there is not RS02 data present. */ - if(strncmp((char*)eh->cookie, "*dvdisaster*", 12)) + if(strncmp((char*)eh->cookie, "*dvdisaster*RS02", 16)) { if(dh->rewriteable) { Verbose("udf/try_sector: no cookie but rewriteable medium: skipping header\n"); return TRY_NEXT_HEADER; @@ -65,7 +65,7 @@ static int try_sector(DeviceHandle *dh, gint64 pos, EccHeader **ehptr, unsigned } } else Verbose("udf/try_sector: header at %lld: magic cookie found\n", (long long int)pos); - + /* Calculate CRC */ recorded_crc = eh->selfCRC;