diff --git a/CHANGELOG b/CHANGELOG index bcd0fab..39f3641 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # dvdisaster changelog -*-text-*- +0.79.7 - work in progress - +- Cleanup of documentation and files for new contact address + 0.79.6.patchlevel-9 27-06-2021 *UNOFFICIAL* - fix: using --strip in console without X server would segfault at program exit - enh: windows: hide useless background console diff --git a/GNUmakefile.template b/GNUmakefile.template index d2bc5f3..7dd0ada 100644 --- a/GNUmakefile.template +++ b/GNUmakefile.template @@ -1,3 +1,23 @@ +# dvdisaster: Additional error correction for optical media. +# Copyright (C) 2004-2018 Carsten Gnoerlich. +# +# Email: support@dvdisaster.org +# +# This file is part of dvdisaster. +# +# dvdisaster 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 3 of the License, or +# (at your option) any later version. +# +# dvdisaster 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 dvdisaster. If not, see . + ###################################################################### # Begin of dvdisaster makefile template ###################################################################### @@ -135,21 +155,6 @@ src/inlined-icons.h: icons/read.png icons/create.png icons/scan.png icons/fix.pn @while gdk-pixbuf-csource --raw --name=dvdisaster_nothing icons/nothing.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h @rm -f src/.icons.tmp -$(BUILDTMP)/help-dialogs.o: src/help-dialogs.c simple-md5sum - @if test -e fingerprints.md5; \ - then if test -e src/help-dialogs.h; then rm src/help-dialogs.h; fi; \ - ./simple-md5sum -b src/*.h src/*.c | grep -vF -e inlined-icons.h -e build.h | sort -k2 >tmp.md5; \ - sort -k2 < fingerprints.md5 >tmp2.md5; \ - if ! cmp tmp2.md5 tmp.md5 >/dev/null; \ - then echo "#define MODIFIED_SOURCE 1" >> src/help-dialogs.h; \ - else echo "#define UNMODIFIED_SOURCE 1" >> src/help-dialogs.h; \ - fi; \ - rm tmp.md5 tmp2.md5; \ - else echo "#define MODIFIED_SOURCE 1" >> src/help-dialogs.h; \ - fi - @echo "Compiling:" src/help-dialogs.c - @$(CC) $(COPTS) -c src/help-dialogs.c -o $(BUILDTMP)/help-dialogs.o - $(BUILDTMP)/rs-encoder-sse2.o: src/rs-encoder-sse2.c @echo "Compiling:" src/rs-encoder-sse2.c @$(CC) $(SSE2_OPTIONS) $(COPTS) -c src/rs-encoder-sse2.c -o $(BUILDTMP)/rs-encoder-sse2.o @@ -164,9 +169,6 @@ locale: untranslated: @$(MAKE) --no-print-directory -C locale check-untranslated -simple-md5sum: src/md5.c - @$(CC) $(COPTS) $(MUDFLAP_CFLAGS) -DSIMPLE_MD5SUM src/md5.c $(LDFLAGS) $(MUDFLAP_LFLAGS) $(MUDFLAP_LIBS) -o simple-md5sum - version.tex: @test -d $(SRCDIR)/documentation/config || mkdir $(SRCDIR)/documentation/config @echo "\\newcommand{\\projectversion}{$(VERSION)}" >$(SRCDIR)/documentation/config/version.tex @@ -331,10 +333,6 @@ distclean: clean @rm -f configure.log Makefile.config src/build.h GNUmakefile locale/Makefile @for i in locale/?? locale/??_??; do rm -rf $$i; done -# There might be a not executable simple-md5sum from a compiler run -# under a different architecture, so make sure we have a working binary -# in the clean target. - clean: @echo "Removing rebuildable files" @rm -rf *.o $(BUILDTMP)/*.o medium.* abbild.* dvdisaster .dvdisaster core core.* *.core @@ -344,17 +342,6 @@ clean: @find . -name \#\*\# -print | xargs rm -f; @rm -f documentation/config/version.tex @if test -e $(PKGNAME); then rm -rf $(PKGNAME); fi - @if test -e ~/.dvdisaster-original-author; then \ - mv build.h build.saved ;\ - if ! test -x simple-md5sum || ! ./simple-md5sum >/dev/null 2>&1; then \ - rm -f simple-md5sum; \ - $(MAKE) --no-print-directory simple-md5sum; \ - echo "[simple-md5sum (re-)built]"; \ - fi; \ - ./simple-md5sum -b src/*.h src/*.c >fingerprints.md5 ;\ - mv build.saved build.h; \ - fi - @rm -f simple-md5sum @$(MAKE) --no-print-directory -C $(SRCDIR)/documentation/codec-specs clean; @$(MAKE) --no-print-directory -C $(SRCDIR)/documentation/user-manual clean; @$(MAKE) --no-print-directory -C $(SRCDIR)/locale clean; @@ -367,7 +354,7 @@ INSTALL: documentation/install.template @sed "s/@@PKGNAME/$(PKGNAME)/" INSTALL srcdist: INSTALL distclean manual manualclean codecsclean - @cd .. ; tar -c -j -X $(PKGNAME)/NODIST -f $(TAR_PREFIX)/$(PKGNAME).tar.bz2 $(PKGNAME) + @cd .. ; tar -c -j --owner=dvdisaster --group=devel -X $(PKGNAME)/NODIST -f $(TAR_PREFIX)/$(PKGNAME).tar.bz2 $(PKGNAME) @cd .. ; gpg --homedir .gnupg --default-key 758BCC23 --detach-sign --output $(TAR_PREFIX)/$(PKGNAME).tar.bz2.gpg --armor $(TAR_PREFIX)/$(PKGNAME).tar.bz2 static: dvdisaster diff --git a/INSTALL b/INSTALL index 49225c4..02e9737 100644 --- a/INSTALL +++ b/INSTALL @@ -1,3 +1,23 @@ +# dvdisaster: Additional error correction for optical media. +# Copyright (C) 2004-2018 Carsten Gnoerlich. +# +# Email: support@dvdisaster.org +# +# This file is part of dvdisaster. +# +# dvdisaster 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 3 of the License, or +# (at your option) any later version. +# +# dvdisaster 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 dvdisaster. If not, see . + Installation of the dvdisaster source code distribution ======================================================= [don't edit - generated from documentation/install.template] diff --git a/README b/README index eaca492..dfedfea 100644 --- a/README +++ b/README @@ -1,3 +1,23 @@ +# dvdisaster: Additional error correction for optical media. +# Copyright (C) 2004-2018 Carsten Gnoerlich. +# +# Email: support@dvdisaster.org +# +# This file is part of dvdisaster. +# +# dvdisaster 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 3 of the License, or +# (at your option) any later version. +# +# dvdisaster 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 dvdisaster. If not, see . + This directory tree contains dvdisaster, a tool providing additional ECC protection for optical media. @@ -11,12 +31,6 @@ Roadmap of contained files INSTALL See the file INSTALL on bringing up dvdisaster. -README.CVS - If you got this archive from CVS, make sure to read README.CVS also. - -README.MODIFYING - Please read these notes carefully if you plan to modify dvdisaster. - COPYING This software is distributed under the GNU General Public License, which is contained in the file COPYING. diff --git a/README.MODIFYING b/README.MODIFYING deleted file mode 100644 index 9eb8453..0000000 --- a/README.MODIFYING +++ /dev/null @@ -1,37 +0,0 @@ -Please read these notes carefully if you plan to modify dvdisaster. -------------------------------------------------------------------- - -When publishing a modified version of dvdisaster you are kindly -asked not to misrepresent your work as the original. - -The original authors have undertaken great efforts for putting the -project into shape and earning their reputation. So if you hack and -publish your own version of dvdisaster, please RESPECT the original -authors vision of what the project should be like. - -Document your changes as explained below so that users can tell -the modified version from the original. - - -How to document your changes. ------------------------------ - -Document the changes you made in the source code, NOT in a -separate file which might get unbundled from the changed source. - -New files start with your copyright notice; modified files -get an additional entry under the original copyright notice. -See the file md5.c for an example. - -But this is not enough; most people will not read the source -code as they are using binary distributions. Give them a way -to find out about your modifications in the "About" dialog. - -The build process will prepare a suitable message template -for you if it finds that you have modified the sources. -Feel free to further customize this message, and even -change the project name if you deem that appropriate. - - -Thank you for your cooperation. - diff --git a/TRANSLATION.HOWTO b/TRANSLATION.HOWTO index 5a8382c..939df76 100644 --- a/TRANSLATION.HOWTO +++ b/TRANSLATION.HOWTO @@ -1,3 +1,22 @@ +# dvdisaster: Additional error correction for optical media. +# Copyright (C) 2004-2018 Carsten Gnoerlich. +# +# Email: support@dvdisaster.org +# +# This file is part of dvdisaster. +# +# dvdisaster 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 3 of the License, or +# (at your option) any later version. +# +# dvdisaster 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 dvdisaster. If not, see . This document describes the process of adding a new translation to dvdisaster. It is work in progress and not yet complete. diff --git a/configure b/configure index 530db49..0cb708b 100755 --- a/configure +++ b/configure @@ -1,5 +1,25 @@ #!/usr/bin/env bash +# dvdisaster: Additional error correction for optical media. +# Copyright (C) 2004-2018 Carsten Gnoerlich. +# +# Email: support@dvdisaster.org +# +# This file is part of dvdisaster. +# +# dvdisaster 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 3 of the License, or +# (at your option) any later version. +# +# dvdisaster 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 dvdisaster. If not, see . + # Load the shell functions needed for the rest of this script. BASH_BASED_CONFIGURE=./scripts/bash-based-configure @@ -8,8 +28,6 @@ REQUIRED_CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURC RECOMMENDED_CFLAGS="-O2 -fomit-frame-pointer -Wall -Wno-unknown-warning-option -Wno-deprecated-declarations -Wno-stringop-truncation -Wno-format-zero-length" DEBUG_CFLAGS="-ggdb -Wall" -CFG_USE_CYGWIN="no" # do not change - if test -e $BASH_BASED_CONFIGURE; then source $BASH_BASED_CONFIGURE $BASH_BASED_CONFIGURE_OPTS else @@ -20,9 +38,10 @@ fi # Set the package name and version -PACKAGE dvdisaster 0.79.6 +PACKAGE dvdisaster 0.79.7 DEFINE_INT PATCHLEVEL 9 DEFINE_STRING HAVE_UNSTABLE_RELEASE 1 +DEFINE_STRING HOMEPAGE "https://dvdisaster.jcea.es" # Check for some essential tools. diff --git a/documentation/dvdisaster.de.1 b/documentation/dvdisaster.de.1 index 0fe7d45..20a66cd 100644 --- a/documentation/dvdisaster.de.1 +++ b/documentation/dvdisaster.de.1 @@ -1,4 +1,4 @@ -.TH DVDISASTER 1 "2010-02-07" "0.80" "Schutz f\[:u]r optische Datentr\[:a]ger" +.TH DVDISASTER 1 "2018-05-14" "0.79.7" "Schutz f\[:u]r optische Datentr\[:a]ger" .SH NAME DVDISASTER \- Schutz f\[:u]r optische Datentr\[:a]ger gegen Datenverlust durch Alterung @@ -67,6 +67,7 @@ oder Kratzer .IR n \|] .RB [\| \-\-spinup\-delay .IR n \|] +.RB [\| \-\-version \|] .SH BESCHREIBUNG .B DVDISASTER @@ -334,7 +335,7 @@ funktioniert am besten beim direkten Arbeiten mit Dateien im Arbeitsspeicher (z. .RE .TP .B \-\-fill-unreadable n -f\[:u]lle unlesbare Sektoren mit Byte n. +f\[:u]lle unlesbare Sektoren mit Byte n. Hilfreich um Abbilder zu verarbeiten, die von anderen Werkzeugen angelegt wurden. Beispielsweise f\[:u]llt ddrescue unlesbare Sektoren mit Null auf; dementsprechend w\[:a]re \-\-fill-unreadable=0 zu verwenden. Bitte dabei beachten: Sparse files k\[:o]nnen nicht mit dvdisaster verarbeitet werden. .TP .B \-\-ignore-fatal-sense Lesen nach m\[:o]glicherweise schwerwiegenden Fehlern fortsetzen. @@ -422,6 +423,9 @@ warnt bei Geschwindigkeits\[:a]nderung um mehr als n Prozent. .TP .B \-\-spinup-delay n gibt dem Laufwerk n Sekunden Zeit zum Hochlaufen. +.TP +.B \-\-version +gibt die Versionsnummer und einige Konfigurationseigenschaften aus .PP .SH SIEHE AUCH diff --git a/documentation/dvdisaster.en.1 b/documentation/dvdisaster.en.1 index 99db887..0a304c1 100644 --- a/documentation/dvdisaster.en.1 +++ b/documentation/dvdisaster.en.1 @@ -1,4 +1,4 @@ -.TH DVDISASTER 1 "2020-08-30" "0.80" "protection for optical media" +.TH DVDISASTER 1 "2018-05-14" "0.79.7" "protection for optical media" .SH NAME DVDISASTER \- data loss/scratch/aging protection for optical media @@ -67,6 +67,7 @@ DVDISASTER \- data loss/scratch/aging protection for optical media .IR n \|] .RB [\| \-\-spinup\-delay .IR n \|] +.RB [\| \-\-version \|] .SH DESCRIPTION .B DVDISASTER @@ -348,7 +349,7 @@ and on very fast media with low latency such as SSDs. .RE .TP .B \-\-fill-unreadable n -fill unreadable sectors with byte n +fill unreadable sectors with byte n. Useful for processing images which have been created by other tools. For example, ddrescue fills unreadable sectors with zeros; therefore \-\-fill-unreadable=0 should be used. Please note: Sparse files can not be processed with dvdisaster. .TP .B \-\-ignore-fatal-sense continue reading after potentially fatal error condition. @@ -432,6 +433,9 @@ print warning if speed changes by more than n percent. .TP .B \-\-spinup-delay n wait n seconds for drive to spin up. +.TP +.B \-\-version +print version number and some configuration information. .PP .SH SEE ALSO diff --git a/documentation/user-manual/manual.tex b/documentation/user-manual/manual.tex index d943232..9d93f30 100644 --- a/documentation/user-manual/manual.tex +++ b/documentation/user-manual/manual.tex @@ -100,7 +100,7 @@ containing a formal specification of the error correction data format. \vfill \begin{center} {\em -Copyright 2008-2017 Carsten Gnörlich. +Copyright 2008-2018 Carsten Gnörlich. Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.} \end{center} diff --git a/fingerprints.md5 b/fingerprints.md5 deleted file mode 100644 index 0951b36..0000000 --- a/fingerprints.md5 +++ /dev/null @@ -1,83 +0,0 @@ -b064d001e5e4ed8221eb9f10d784cf45 *src/dvdisaster.h -79abb986b900ec06a73256876ba0d65c *src/galois-inlines.h -14eb94f981903fcffe2ccb33aa2cb9db *src/md5.h -f2d723717ca5f450ee8cc0b556f5506a *src/read-linear.h -100127beaecc24b28b2b80d76bbf68c8 *src/rs01-includes.h -5b39a23de01c988d562d70ed68682ab7 *src/rs02-includes.h -4407ce43eae55b19409be9980432c94f *src/rs03-includes.h -2a5980c706c67bec479e4532ab9a7093 *src/scsi-layer.h -c779a2908542c6a519ed7cdfc4e5e073 *src/udf.h -8f86a75f83a3bc9b6ce54cce037b3c75 *src/bitmap.c -5230bd572fc8ef1857063c885c00463a *src/build.c -7b59033ebffd6d8230efaf6834b2f942 *src/cacheprobe.c -bfb6d7ed2a921ce18dc0339774f72f41 *src/closure.c -e5bd212395758ae0b7e97d70c7a2df55 *src/crc32.c -7f5951182421a0366782b191a0b4ba82 *src/crcbuf.c -abb7c9decfd43935c943bc0dd1bab0d5 *src/curve.c -f96a3e006fc5d1c5d181e5056377c9ce *src/debug.c -6f8843d1cccc55506771ab02168b2df3 *src/ds-marker.c -19d0f85d035115f3bd8d4472e6379058 *src/dvdisaster.c -1c8136affed485adaf60e7904d9930a4 *src/ecc-rs01.c -7b301352a60c18c25f84c8cc7a36fd48 *src/ecc-rs02.c -91aa71f03dc9dade2e97dc59d7ec38f0 *src/ecc-rs03.c -39900d26ddcbb7c7e2a9198de14bace1 *src/endian.c -3f6e9dffb9de733dcccc916ca38292ca *src/galois.c -abc8a8d55248eab5416c45104a033171 *src/help-dialogs.c -547bf9a9d005419a0ed601317aeb4e14 *src/heuristic-lec.c -746666ade12c2db41ce9af6f55e4c13c *src/icon-factory.c -b3db603f77fd2735a6e8b1c568f7bdac *src/image.c -fe9de426f96e6d206d1482a24f589253 *src/large-io.c -abed1a50b9751387dc1e3cbc84a61fba *src/l-ec.c -6960647dc7fc5ce8a2727326946aaff1 *src/logfile.c -92e81646ef4e8618ded5d82db6a6163a *src/maintenance.c -3c3eebc43fc7aff3865022207e06153b *src/main-window.c -913554f7e994e212f6a52b769eef24bb *src/md5.c -8f0acf2f7d98a55d05a4721d97741c7c *src/medium-info.c -ce145372a25e0fb96070d460da7bdbb4 *src/memtrack.c -66cdf82b59fd973e3060d163b6887a20 *src/menubar.c -5006b2db93b210be3fb630e8d9463239 *src/method.c -17183bad35db217e2c352178844ceda3 *src/method-link.c -2af6685017c247de7458e9c4d39b6ed5 *src/misc.c -6523662e8e5aa2daf38a7e8c07ce1180 *src/preferences.c -5e7b077020e063951cc72ea57f5f046a *src/print-sense.c -cdde449dd2a8f64b560ff18a36f86234 *src/random.c -28f42d264cd18bb2e0ccdd8e15a0172e *src/raw-editor.c -1d416f611a175ba15be27f7f5686dd98 *src/raw-sector-cache.c -7f281312b3a65666f7eebaadb62e7f6e *src/read-adaptive.c -ccdc572bb24d20ae6fb53f360318b492 *src/read-adaptive-window.c -af7a757cad586d3766a3eaad382c6737 *src/read-linear.c -47dc58effd96f2b23182a4595ca36171 *src/read-linear-window.c -edc0e564573d595c1196c4dc0e70e659 *src/recover-raw.c -ea4d6894e717d4957cde686f88d7bdfd *src/rs01-common.c -aa9d409ee4eeaa7ba92d731cf32ee727 *src/rs01-create.c -ab15d7470a2fe950ebb33134018f044f *src/rs01-fix.c -cb3722894665baf9c4ff4c26ff79737b *src/rs01-verify.c -5cdecc33da1579733f0545944c4069ab *src/rs01-window.c -b33a0982df485b4e52e56fc1c61285ae *src/rs02-common.c -a1025fcc9455219937bae5bfadf0abf5 *src/rs02-create.c -f466c8296a37ea88b64aec9c870d6d75 *src/rs02-fix.c -369ec37d67674ffd2627f0373a566f0c *src/rs02-recognize.c -8cc283e60a73493ac6ba60a2f4af1754 *src/rs02-verify.c -eccac3ed74b32508b27de0e0d363c6b1 *src/rs02-window.c -9a9b966171f1b375cf3381b545a1c6d4 *src/rs03-common.c -2502514702687a2a252feace096d20f4 *src/rs03-create.c -19676ef95e635206c19dfe12b957e4b2 *src/rs03-fix.c -b012df78d2c546c87f6dd75769515409 *src/rs03-preferences.c -7d6101e6a95aeb45d6cd03ffe8891b96 *src/rs03-recognize.c -b7a6a6c64b4034380c581a5499940db4 *src/rs03-verify.c -1d2b071943c121bf0c47a2e047317262 *src/rs03-window.c -a2e1e28a609af85d9b83f01339b33a62 *src/rs-decoder.c -3882a92849cd23e64c81262be6e52650 *src/rs-encoder-altivec.c -1fc6cad3af2461e7974bf49e8f1bf5e9 *src/rs-encoder.c -f7f3e2708f0c389ed53c0f1083567a55 *src/rs-encoder-sse2.c -2e099a3d88f25f81420b96fe9bd62f44 *src/scsi-freebsd.c -cd58a45387267fe0728f439d7bb2045d *src/scsi-layer.c -b1b6bd57433eedab3a4f35389a182d14 *src/scsi-linux.c -7064327dc15a2d88e5375176d4c64132 *src/scsi-netbsd.c -3c0e100cdd499b1c23ac5e12b1fd6694 *src/scsi-simulated.c -be42d574e6340845d984c21dc902af1a *src/scsi-unknown.c -85aa8093f41c36ce791363e94f488dec *src/show-manual.c -6099911dd508701b0b8b5d09105faf95 *src/smart-lec.c -10f3e2b054fe3c1ac69c738b97f1beaa *src/spiral.c -dec5fbde631058d48866cc1d77446d37 *src/udf.c -6741fc5457e9c2026451403f2d45096c *src/welcome-window.c diff --git a/locale/cs.po b/locale/cs.po index 5e530f3..8287990 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -2948,7 +2948,7 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3372,7 +3372,7 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" @@ -4191,11 +4191,8 @@ msgstr "- vyžaduje : dvdisaster-%d.%d (v pořádku)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* vyžaduje : dvdisaster-%d.%d (ŠPATNĚ)\n" -"* Upozornění : Následující výstup nemusí být správný.\n" -"* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5665,11 +5662,8 @@ msgstr "- vyžaduje : dvdisaster-%s\n" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* vyžaduje : dvdisaster-%s (ŠPATNĚ)\n" -"* Upozornění : Následující výstup nemusí být správný.\n" -"* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n" #: src/rs03-verify.c:896 msgid "none available" @@ -7008,6 +7002,63 @@ msgstr "Novinky v této verzi:" #~ msgid "This software does not support encrypted media.\n" #~ msgstr "Tento program nepodporuje zašifrované disky.\n" +#~ msgid "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "" +#~ "Copyright 2004-2018 Carsten Gnörlich\n" +#~ "Česká lokalizace\n" +#~ "\t\t2011 Jindřich Šesták\n" +#~ "\t\t2006 Luboš Staněk" + +#~ msgid "windowtitle|Modifying dvdisaster" +#~ msgstr "Úpravy dvdisaster" + +#~ msgid "" +#~ "Modifying dvdisaster\n" +#~ "Your changes are not ours." +#~ msgstr "" +#~ "Úpravy dvdisaster\n" +#~ "Vaše úpravy nejsou naše." + +#~ msgid "" +#~ "Modified version Copyright 2018 (please fill in - [directions])\n" +#~ "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "" +#~ "Upravená verze Copyright 2018 (doplňte - [directions])\n" +#~ "Copyright 2004-2018 Carsten Gnörlich" + +#~ msgid "" +#~ "* requires : dvdisaster-%d.%d (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* vyžaduje : dvdisaster-%d.%d (ŠPATNĚ)\n" +#~ "* Upozornění : Následující výstup nemusí být správný.\n" +#~ "* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n" + +#~ msgid "" +#~ "* requires : dvdisaster-%s (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* vyžaduje : dvdisaster-%s (ŠPATNĚ)\n" +#~ "* Upozornění : Následující výstup nemusí být správný.\n" +#~ "* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n" + +#~ msgid "" +#~ "\n" +#~ "This program is not the original. It is based on the\n" +#~ "source code of dvdisaster, but contains third-party changes.\n" +#~ "\n" +#~ "Please do not bother the original authors of dvdisaster\n" +#~ "([www.dvdisaster.org]) about issues with this version.\n" +#~ msgstr "" +#~ "\n" +#~ "Tento program není originál. Je založen na zdrojovém\n" +#~ "kódu dvdisaster, ale obsahuje úpravy třetí strany.\n" +#~ "\n" +#~ "Prosím neobtěžujte originální autory dvdisaster\n" +#~ "([www.dvdisaster.org]) problémy s touto verzí.\n" + #~ msgid "created by dvdisaster-%d.%d\n" #~ msgstr "vytvořeno pomocí dvdisaster-%d.%d\n" diff --git a/locale/de.po b/locale/de.po index 405c1e0..62acf31 100644 --- a/locale/de.po +++ b/locale/de.po @@ -3007,13 +3007,13 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" "* Warnung: Diese Fehlerkorrektur-Datei benötigt dvdisaster-%d.%d!\n" "* Die Verwendung dieser Datei kann fehlerhafte Ergebnisse verursachen.\n" "* Bitte lesen Sie das Abbild ohne diese Fehlerkorrektur-Datei ein\n" -"* oder besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n" +"* oder besorgen Sie sich eine neuere Version von dvdisaster.\n" "\n" #: src/read-adaptive.c:152 src/rs01-common.c:80 src/rs01-common.c:238 @@ -3055,10 +3055,6 @@ msgid "" "* Please visit http://www.dvdisaster.org for an upgrade.\n" "\n" msgstr "" -"* Warnung: Diese Abbild-Datei benötigt dvdisaster-%d.%d!\n" -"* Die Verwendung dieses Abbilds kann fehlerhafte Ergebnisse verursachen.\n" -"* Bitte besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n" -"\n" #: src/read-adaptive.c:703 msgid "" @@ -3452,14 +3448,14 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" "Diese Fehlerkorrektur-Datei benötigt dvdisaster-%d.%d!\n" "\n" "Die Verwendung dieser Datei kann fehlerhafte Ergebnisse verursachen.\n" "Bitte lesen Sie das Abbild ohne diese Fehlerkorrektur-Datei ein\n" -"oder besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n" +"oder besorgen Sie sich eine neuere Version von dvdisaster.\n" "\n" #: src/read-linear.c:887 @@ -4285,12 +4281,11 @@ msgstr "- Benötigt : dvdisaster-%d.%d (gut)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" "* Benötigt : dvdisaster-%d.%d (SCHLECHT)\n" "* Warnung : Die folgenden Ausgaben können falsch sein.\n" -"* : Bitte besuchen Sie http://www.dvdisaster.de\n" -"* : um eine neuere Version herunterzuladen.\n" +"* : Bitte verwenden Sie eine neuere Version von dvdisaster.\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5797,12 +5792,8 @@ msgstr "- Benötigt : dvdisaster-%s\n" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* Benötigt : dvdisaster-%s (SCHLECHT)\n" -"* Warnung : Die folgenden Ausgaben können falsch sein.\n" -"* : Bitte besuchen Sie http://www.dvdisaster.de\n" -"* : um eine neuere Version herunterzuladen.\n" #: src/rs03-verify.c:896 msgid "none available" diff --git a/locale/it.po b/locale/it.po index 1faf4bb..2d25553 100644 --- a/locale/it.po +++ b/locale/it.po @@ -2686,7 +2686,7 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3108,7 +3108,7 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3919,11 +3919,8 @@ msgstr "- richiede : dvdisaster-%d.%d (buono)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* Richiede : dvdisaster-%d.%d (BAD)\n" -"* Attenzione : L'output seguente potrebbe essere non corretto.\n" -"* : Prego visitare http://www.dvdisaster.org per un upgrade\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5246,7 +5243,7 @@ msgstr "" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" #: src/rs03-verify.c:896 @@ -6269,6 +6266,18 @@ msgstr "" #~ "non trovati.\n" #~ "Si prega di installare il pacchetto dvdisaster-doc.\n" +#~ msgid "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "Copyright 2004-2018 Carsten Gnörlich" + +#~ msgid "" +#~ "* requires : dvdisaster-%d.%d (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* Richiede : dvdisaster-%d.%d (BAD)\n" +#~ "* Attenzione : L'output seguente potrebbe essere non corretto.\n" +#~ "* : Prego visitare http://www.dvdisaster.org per un upgrade\n" + #~ msgid "created by dvdisaster-%d.%d\n" #~ msgstr "Creato da dvdisaster-%d.%d\n" @@ -6454,13 +6463,6 @@ msgstr "" #~ msgid "--cache-size must at least be 1MiB; 16MiB or higher is recommended." #~ msgstr "la --cache-size deve essere minimo 1MiB; sono consigliati 16MiB o più." -#~ msgid "" -#~ "\n" -#~ "e-mail: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org" -#~ msgstr "" -#~ "\n" -#~ "e-mail: carsten@dvdisaster.com o cgnoerlich@fsfe.org" - #~ msgid "illegal data_mode: %d" #~ msgstr "data_mode illegale: %d" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 43d0921..64a9d07 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -2870,7 +2870,7 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3297,7 +3297,7 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" @@ -4113,11 +4113,8 @@ msgstr "- requer : dvdisaster-%d.%d (bom)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* requer : dvdisaster-%d.%d (RUIM)\n" -"* Cuidado : A saída seguinte pode estar incorreta.\n" -"* : Por favor, visite http://www.dvdisaster.org para uma atualização.\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5548,7 +5545,7 @@ msgstr "" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" #: src/rs03-verify.c:896 @@ -6774,6 +6771,50 @@ msgstr "Novidades dessa versão:" #~ msgid "This software does not support encrypted media.\n" #~ msgstr "Este software não suporta mídias criptografadas.\n" +#~ msgid "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "Copyright 2004-2018 Carsten Gnoerlich" + +#~ msgid "windowtitle|Modifying dvdisaster" +#~ msgstr "Modificando o dvdisaster" + +#~ msgid "" +#~ "Modifying dvdisaster\n" +#~ "Your changes are not ours." +#~ msgstr "" +#~ "Modificando o dvdisaster\n" +#~ "Suas mudanças não são nossas." + +#~ msgid "" +#~ "Modified version Copyright 2018 (please fill in - [directions])\n" +#~ "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "" +#~ "Versão modificada Copyright 2018 (por favor, preencha - [instruções])\n" +#~ "Copyright 2004-2018 Carsten Gnoerlich" + +#~ msgid "" +#~ "* requires : dvdisaster-%d.%d (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* requer : dvdisaster-%d.%d (RUIM)\n" +#~ "* Cuidado : A saída seguinte pode estar incorreta.\n" +#~ "* : Por favor, visite http://www.dvdisaster.org para uma atualização.\n" + +#~ msgid "" +#~ "\n" +#~ "This program is not the original. It is based on the\n" +#~ "source code of dvdisaster, but contains third-party changes.\n" +#~ "\n" +#~ "Please do not bother the original authors of dvdisaster\n" +#~ "([www.dvdisaster.org]) about issues with this version.\n" +#~ msgstr "" +#~ "\n" +#~ "Esse programa não é o original. Ele é baseado no\n" +#~ "código-fonte do dvdisaster, mas contém mudanças de terceiros.\n" +#~ "\n" +#~ "Por favor, não incomode os autores originais do dvdisaster\n" +#~ "([www.dvdisaster.org]) com problemas dessa versão.\n" + #~ msgid "created by dvdisaster-%d.%d\n" #~ msgstr "criado pelo dvdisaster-%d.%d\n" diff --git a/locale/ru.po b/locale/ru.po index 57d0cc0..4612667 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -2874,7 +2874,7 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3301,7 +3301,7 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" @@ -4120,11 +4120,8 @@ msgstr "- требуется : dvdisaster-%d.%d (хорошо)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* требуется : dvdisaster-%d.%d (ПЛОХО)\n" -"* Внимание : Следующий результат может быть неправильным.\n" -"* : Посетите http://www.dvdisaster.org за обновлением.\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5556,7 +5553,7 @@ msgstr "" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" #: src/rs03-verify.c:896 @@ -6789,6 +6786,50 @@ msgstr "Новое в этой версии:" #~ msgid "This software does not support encrypted media.\n" #~ msgstr "Эта программа не поддерживает шифрованные носители.\n" +#~ msgid "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "Copyright 2004-2018 Carsten Gnoerlich" + +#~ msgid "windowtitle|Modifying dvdisaster" +#~ msgstr "Изменение dvdisaster'а" + +#~ msgid "" +#~ "Modifying dvdisaster\n" +#~ "Your changes are not ours." +#~ msgstr "" +#~ "Изменение dvdisaster'а\n" +#~ "Ваши изменения не являются нашими." + +#~ msgid "" +#~ "Modified version Copyright 2018 (please fill in - [directions])\n" +#~ "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "" +#~ "Измененнная версия Copyright 2018 (пожалуйста, заполните - [инструкции])\n" +#~ "Copyright 2004-2018 Carsten Gnoerlich" + +#~ msgid "" +#~ "* requires : dvdisaster-%d.%d (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* требуется : dvdisaster-%d.%d (ПЛОХО)\n" +#~ "* Внимание : Следующий результат может быть неправильным.\n" +#~ "* : Посетите http://www.dvdisaster.org за обновлением.\n" + +#~ msgid "" +#~ "\n" +#~ "This program is not the original. It is based on the\n" +#~ "source code of dvdisaster, but contains third-party changes.\n" +#~ "\n" +#~ "Please do not bother the original authors of dvdisaster\n" +#~ "([www.dvdisaster.org]) about issues with this version.\n" +#~ msgstr "" +#~ "\n" +#~ "Эта программа не является оригиналом. В ее основе\n" +#~ "исходный код dvdisaster'а, но в ней есть изменения, сделанные сторонними разработчиками.\n" +#~ "\n" +#~ "Пожалуйста, не беспокойте авторов dvdisaster'а\n" +#~ "([www.dvdisaster.org]) проблемами этой версии.\n" + #~ msgid "created by dvdisaster-%d.%d\n" #~ msgstr "создано с помощью dvdisaster-%d.%d\n" diff --git a/locale/sv.po b/locale/sv.po index caa830b..39cbf9b 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -2693,7 +2693,7 @@ msgid "" "* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" -"* or visit http://www.dvdisaster.org for an upgrade.\n" +"* or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3110,7 +3110,7 @@ msgid "" "\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" -"or visit http://www.dvdisaster.org for an upgrade.\n" +"or upgrade dvdisaster.\n" "\n" msgstr "" @@ -3919,11 +3919,8 @@ msgstr "- kräver : dvdisaster-%d.%d (bra)\n" msgid "" "* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" -"* kräver : dvdisaster-%d.%d (DÅLIGT)\n" -"* Varning : Följande utdata kan vara felaktig.\n" -"* : Besök http://www.dvdisaster.org för en uppgradering.\n" #: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883 #, c-format @@ -5263,7 +5260,7 @@ msgstr "" msgid "" "* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" -"* : Please visit http://www.dvdisaster.org for an upgrade.\n" +"* : Please upgrade dvdisaster.\n" msgstr "" #: src/rs03-verify.c:896 @@ -6348,6 +6345,21 @@ msgstr "" #~ "hittades inte.\n" #~ "Installera dvdisaster-doc-paketet.\n" +#~ msgid "Copyright 2004-2018 Carsten Gnoerlich" +#~ msgstr "Copyright 2004-2018 Carsten Gnörlich" + +#~ msgid "windowtitle|Modifying dvdisaster" +#~ msgstr "Ändra dvdisaster" + +#~ msgid "" +#~ "* requires : dvdisaster-%d.%d (BAD)\n" +#~ "* Warning : The following output might be incorrect.\n" +#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n" +#~ msgstr "" +#~ "* kräver : dvdisaster-%d.%d (DÅLIGT)\n" +#~ "* Varning : Följande utdata kan vara felaktig.\n" +#~ "* : Besök http://www.dvdisaster.org för en uppgradering.\n" + #~ msgid "created by dvdisaster-%d.%d\n" #~ msgstr "skapad av dvdisaster-%d.%d\n" @@ -6552,13 +6564,6 @@ msgstr "" #~ msgid "--cache-size must at least be 1MiB; 16MiB or higher is recommended." #~ msgstr "--cache-size måste vara åtminstone 1MiB; 16MiB eller högre rekommenderas." -#~ msgid "" -#~ "\n" -#~ "e-mail: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org" -#~ msgstr "" -#~ "\n" -#~ "e-post: carsten@dvdisaster.com -eller- cgnoerlich@fsfe.org" - #~ msgid "illegal data_mode: %d" #~ msgstr "otillåten data_mode: %d" diff --git a/scripts/bash-based-configure b/scripts/bash-based-configure index cd6c136..2af9d27 100644 --- a/scripts/bash-based-configure +++ b/scripts/bash-based-configure @@ -1,8 +1,7 @@ # Bash based configure - library of test functions # Copyright (C) 2004-2016 Carsten Gnrlich # -# Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org -# Project homepage: http://www.dvdisaster.org +# Email: support@dvdisaster.org # # Bash based configure is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/bitmap.c b/src/bitmap.c index b0cce40..3e205ca 100644 --- a/src/bitmap.c +++ b/src/bitmap.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/build.c b/src/build.c index 65b17cd..adfd7f2 100644 --- a/src/build.c +++ b/src/build.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/cacheprobe.c b/src/cacheprobe.c index af1cc40..66c3fdd 100644 --- a/src/cacheprobe.c +++ b/src/cacheprobe.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/closure.c b/src/closure.c index 044e251..7120a81 100644 --- a/src/closure.c +++ b/src/closure.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/crc32.c b/src/crc32.c index 58102d2..35a6319 100644 --- a/src/crc32.c +++ b/src/crc32.c @@ -2,8 +2,7 @@ * Copyright (C) 2004-2017 Carsten Gnoerlich. * CRC32 code based upon public domain code by Ross Williams (see notes below) * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/crcbuf.c b/src/crcbuf.c index 798281e..7171a49 100644 --- a/src/crcbuf.c +++ b/src/crcbuf.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/curve.c b/src/curve.c index 711e6c0..9b67146 100644 --- a/src/curve.c +++ b/src/curve.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/debug.c b/src/debug.c index 0a91f1d..6a2ad3d 100644 --- a/src/debug.c +++ b/src/debug.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/ds-marker.c b/src/ds-marker.c index 13bd9de..92ba065 100644 --- a/src/ds-marker.c +++ b/src/ds-marker.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/dvdisaster.c b/src/dvdisaster.c index 73c75d1..6eb9e56 100644 --- a/src/dvdisaster.c +++ b/src/dvdisaster.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -1003,6 +1003,7 @@ int main(int argc, char *argv[]) PrintCLI(_(" --resource-file p - get resource file from given path\n")); PrintCLI(_(" --speed-warning n - print warning if speed changes by more than n percent\n")); PrintCLI(_(" --spinup-delay n - wait n seconds for drive to spin up\n")); + PrintCLI(_(" --version - print version and some configuration info\n")); if(Closure->debugMode) { PrintCLI("\n"); diff --git a/src/dvdisaster.h b/src/dvdisaster.h index ca4dc82..cac2033 100644 --- a/src/dvdisaster.h +++ b/src/dvdisaster.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/ecc-rs01.c b/src/ecc-rs01.c index f0c3ccc..75c6b55 100644 --- a/src/ecc-rs01.c +++ b/src/ecc-rs01.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/ecc-rs02.c b/src/ecc-rs02.c index e22b4ea..a311589 100644 --- a/src/ecc-rs02.c +++ b/src/ecc-rs02.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/ecc-rs03.c b/src/ecc-rs03.c index 6c8efb3..8fb3704 100644 --- a/src/ecc-rs03.c +++ b/src/ecc-rs03.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/endian.c b/src/endian.c index df007cf..c1a8aa7 100644 --- a/src/endian.c +++ b/src/endian.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/galois-inlines.h b/src/galois-inlines.h index 6440019..bb5549a 100644 --- a/src/galois-inlines.h +++ b/src/galois-inlines.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/galois.c b/src/galois.c index 9a30ec4..e316c33 100644 --- a/src/galois.c +++ b/src/galois.c @@ -1,11 +1,11 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * * The Reed-Solomon error correction draws a lot of inspiration - and even code - * from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/ * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/help-dialogs.c b/src/help-dialogs.c index 530608d..dc2fced 100644 --- a/src/help-dialogs.c +++ b/src/help-dialogs.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -23,8 +23,6 @@ #include "dvdisaster.h" -#include "help-dialogs.h" - /*** *** Online help system for the preferences ***/ @@ -589,13 +587,6 @@ GtkWidget* ShowTextfile(char *title, char *explanation, char *file, * About dialog */ -static void show_modifying(void) -{ ShowTextfile(_("windowtitle|Modifying dvdisaster"), - _("Modifying dvdisaster\n" - "Your changes are not ours."), - "README.MODIFYING", NULL, NULL); -} - static gint about_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { GtkWidget *lab = GTK_BIN(widget)->child; char *label = (char*)data; @@ -607,7 +598,6 @@ static gint about_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { case GDK_BUTTON_PRESS: if(!inside) return FALSE; /* Defect in certain Gtk versions? */ if(!strcmp(label,"GPL")) ShowGPL(); - else if(!strcmp(label,"MODIFYING")) show_modifying(); else if(strlen(label) > 4 && !strncmp(label, "http", 4)) ShowHTML(g_strdup(label)); else ShowPDF(g_strdup(label)); break; @@ -726,9 +716,7 @@ void AboutTextWithLink(GtkWidget *parent, char *text, char *action) void AboutDialog() { GtkWidget *about, *vbox, *sep; char *text; -#ifndef MODIFIED_SOURCE - const char *lang; -#endif + /* Create the dialog */ about = gtk_dialog_new_with_buttons(_utf("windowtitle|About dvdisaster"), @@ -749,16 +737,7 @@ void AboutDialog() AboutText(vbox, "%s", text); g_free(text); -#ifdef MODIFIED_SOURCE - AboutTextWithLink(vbox, - _("[Modified version]\n" - "Copyright 2019-2021 Stephane Lesimple\n" - "Copyright 2005-2017 Debian Optical Media Tools Team\n" - "Copyright 2004-2017 Carsten Gnoerlich"), - "MODIFYING"); -#else - AboutText(vbox, _("Copyright 2004-2017 Carsten Gnoerlich")); -#endif + AboutText(vbox, _("Copyright 2004-2017 Carsten Gnoerlich.\nCopyright 2019 The dvdisaster development team.")); sep = gtk_hseparator_new(); gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 10); @@ -774,27 +753,10 @@ void AboutDialog() "under the conditions of the [GNU General Public License].\n"), "GPL"); -#ifdef MODIFIED_SOURCE - AboutTextWithLink(vbox, _("\nThis version is not the original. It has been patched\n" - "for Debian to support DVD-ROMs (with and without encryption),\n" - "and subsequently patched again to support a CLI-only build, among other things.\n\n" - "Please do not bother the original authors of dvdisaster nor the Debian maintainer\n" - "but submit bugreports against [GitHub] instead.\n"), - "https://github.com/speed47/dvdisaster"); + AboutText(vbox, _("\ne-mail: support@dvdisaster.org")); -#else - lang = g_getenv("LANG"); - if(lang && !strncmp(lang, "de", 2)) - { AboutTextWithLink(vbox, "\n[http://www.dvdisaster.de]", "http://www.dvdisaster.de"); - } - else - { AboutTextWithLink(vbox, "\n[http://www.dvdisaster.com]", "http://www.dvdisaster.com"); - } + AboutText(vbox, "WWW: %s", HOMEPAGE); - AboutText(vbox, _("\ne-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org")); -#ifdef SYS_NETBSD - AboutText(vbox, _("\nNetBSD port: Sergey Svishchev <svs@ropnet.ru>")); -#endif #endif /* Show it */ diff --git a/src/heuristic-lec.c b/src/heuristic-lec.c index e247645..0818fab 100644 --- a/src/heuristic-lec.c +++ b/src/heuristic-lec.c @@ -1,9 +1,9 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. * Copyright (C) 2006 Andrei Grecu + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/icon-factory.c b/src/icon-factory.c index 6d54a5f..3fe608c 100644 --- a/src/icon-factory.c +++ b/src/icon-factory.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/image.c b/src/image.c index 8919225..14b97d2 100644 --- a/src/image.c +++ b/src/image.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/l-ec.c b/src/l-ec.c index 06f8f6b..71e02e0 100644 --- a/src/l-ec.c +++ b/src/l-ec.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/large-io.c b/src/large-io.c index bb737fd..8e4810c 100644 --- a/src/large-io.c +++ b/src/large-io.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/logfile.c b/src/logfile.c index 6f84e28..de24466 100644 --- a/src/logfile.c +++ b/src/logfile.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/main-window.c b/src/main-window.c index 11cc935..161084c 100644 --- a/src/main-window.c +++ b/src/main-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/maintenance.c b/src/maintenance.c index dcda806..1f2520c 100644 --- a/src/maintenance.c +++ b/src/maintenance.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/medium-info.c b/src/medium-info.c index b593b40..659ea25 100644 --- a/src/medium-info.c +++ b/src/medium-info.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/memtrack.c b/src/memtrack.c index 41281b2..42c6672 100644 --- a/src/memtrack.c +++ b/src/memtrack.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/menubar.c b/src/menubar.c index 726f970..25e8fb3 100644 --- a/src/menubar.c +++ b/src/menubar.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/method.c b/src/method.c index 42a3066..f1e7622 100644 --- a/src/method.c +++ b/src/method.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/misc.c b/src/misc.c index 0ce0778..ee2d3be 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -215,7 +215,8 @@ static void print_greetings(FILE *where) if(greetings_shown) return; greetings_shown = 1; - g_fprintf(where, "%s\n%s.\n", Closure->versionString, _("Copyright 2004-2017 Carsten Gnoerlich")); + g_fprintf(where, "%s.\n%s\n", Closure->versionString, + _("Copyright 2004-2017 Carsten Gnoerlich.\nCopyright 2019 The dvdisaster development team.")); /* TRANSLATORS: Excluding all kinds of warranty might be harmful under your legislature. If in doubt, just translate the following like "This is free software; please refer to the conditions of the GNU GENERAL PUBLIC LICENSE diff --git a/src/preferences.c b/src/preferences.c index bc6565e..4b2b846 100644 --- a/src/preferences.c +++ b/src/preferences.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/print-sense.c b/src/print-sense.c index 079292b..bd7e2c2 100644 --- a/src/print-sense.c +++ b/src/print-sense.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/raw-editor.c b/src/raw-editor.c index 7e0d53d..84c6063 100644 --- a/src/raw-editor.c +++ b/src/raw-editor.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/raw-sector-cache.c b/src/raw-sector-cache.c index 10266b7..817561b 100644 --- a/src/raw-sector-cache.c +++ b/src/raw-sector-cache.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/read-adaptive-window.c b/src/read-adaptive-window.c index 42eae63..00fd2c7 100644 --- a/src/read-adaptive-window.c +++ b/src/read-adaptive-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/read-adaptive.c b/src/read-adaptive.c index d05d1ad..0c6a901 100644 --- a/src/read-adaptive.c +++ b/src/read-adaptive.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -119,7 +119,7 @@ static EccInfo* open_ecc_file(int mode) PrintCLI(_("* Warning: This ecc file requires dvdisaster-%d.%d!\n" "* Proceeding could trigger incorrect behaviour.\n" "* Please read the image without using this ecc file\n" - "* or visit http://www.dvdisaster.org for an upgrade.\n\n"), + "* or upgrade dvdisaster.\n\n"), ei->eh->neededVersion/10000, (ei->eh->neededVersion%10000)/100); diff --git a/src/read-linear-window.c b/src/read-linear-window.c index d5f9814..a132b93 100644 --- a/src/read-linear-window.c +++ b/src/read-linear-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/read-linear.c b/src/read-linear.c index 555d42f..e33d827 100644 --- a/src/read-linear.c +++ b/src/read-linear.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -878,14 +878,14 @@ void ReadMediumLinear(gpointer data) _("This ecc file requires dvdisaster-%d.%d!\n\n" "Proceeding could trigger incorrect behaviour.\n" "Please read the image without using this ecc file\n" - "or visit http://www.dvdisaster.org for an upgrade.\n\n"), + "or upgrade dvdisaster.\n\n"), rc->eccHeader->neededVersion/10000, (rc->eccHeader->neededVersion%10000)/100); else answer = ModalWarningOrCLI(GTK_MESSAGE_WARNING, GTK_BUTTONS_OK_CANCEL, NULL, _("This image requires dvdisaster-%d.%d!\n\n" "Proceeding could trigger incorrect behaviour.\n" - "Please visit http://www.dvdisaster.org for an upgrade.\n\n"), + "Please upgrade dvdisaster.\n\n"), rc->eccHeader->neededVersion/10000, (rc->eccHeader->neededVersion%10000)/100); PrintCLI("\n"); diff --git a/src/read-linear.h b/src/read-linear.h index 51fba33..bc4e862 100644 --- a/src/read-linear.h +++ b/src/read-linear.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/recover-raw.c b/src/recover-raw.c index fe5ecc5..7f90544 100644 --- a/src/recover-raw.c +++ b/src/recover-raw.c @@ -1,9 +1,8 @@ - /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs-decoder.c b/src/rs-decoder.c index d97d918..0ce2f0c 100644 --- a/src/rs-decoder.c +++ b/src/rs-decoder.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs-encoder-altivec.c b/src/rs-encoder-altivec.c index 9f8f9f0..d3c080f 100644 --- a/src/rs-encoder-altivec.c +++ b/src/rs-encoder-altivec.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs-encoder-sse2.c b/src/rs-encoder-sse2.c index 4984625..ca7ecbc 100644 --- a/src/rs-encoder-sse2.c +++ b/src/rs-encoder-sse2.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs-encoder.c b/src/rs-encoder.c index 3fdad66..558adfc 100644 --- a/src/rs-encoder.c +++ b/src/rs-encoder.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs01-common.c b/src/rs01-common.c index fd72203..c29ff1e 100644 --- a/src/rs01-common.c +++ b/src/rs01-common.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs01-create.c b/src/rs01-create.c index ede42f5..1fc469e 100644 --- a/src/rs01-create.c +++ b/src/rs01-create.c @@ -1,11 +1,11 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * * The Reed-Solomon error correction draws a lot of inspiration - and even code - * from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/ * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs01-fix.c b/src/rs01-fix.c index 1356a73..97987a1 100644 --- a/src/rs01-fix.c +++ b/src/rs01-fix.c @@ -1,11 +1,11 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * * The Reed-Solomon error correction draws a lot of inspiration - and even code - * from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/ * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs01-includes.h b/src/rs01-includes.h index 6f51ef5..9550a23 100644 --- a/src/rs01-includes.h +++ b/src/rs01-includes.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs01-verify.c b/src/rs01-verify.c index 356dc1c..bac599f 100644 --- a/src/rs01-verify.c +++ b/src/rs01-verify.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -686,7 +686,7 @@ process_ecc: else { PrintLog(_("* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" - "* : Please visit http://www.dvdisaster.org for an upgrade.\n"), + "* : Please upgrade dvdisaster.\n"), eh->neededVersion/10000, (eh->neededVersion%10000)/100); diff --git a/src/rs01-window.c b/src/rs01-window.c index f720cb8..5716fd3 100644 --- a/src/rs01-window.c +++ b/src/rs01-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-common.c b/src/rs02-common.c index c1a10df..7b7e0fa 100644 --- a/src/rs02-common.c +++ b/src/rs02-common.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-create.c b/src/rs02-create.c index 3b35418..7a7a6a4 100644 --- a/src/rs02-create.c +++ b/src/rs02-create.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-fix.c b/src/rs02-fix.c index 525fae4..ad445e3 100644 --- a/src/rs02-fix.c +++ b/src/rs02-fix.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-includes.h b/src/rs02-includes.h index f7344a6..e3d28b4 100644 --- a/src/rs02-includes.h +++ b/src/rs02-includes.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-recognize.c b/src/rs02-recognize.c index f25e624..34e72f5 100644 --- a/src/rs02-recognize.c +++ b/src/rs02-recognize.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs02-verify.c b/src/rs02-verify.c index 3d3677d..f679d02 100644 --- a/src/rs02-verify.c +++ b/src/rs02-verify.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -1014,7 +1014,7 @@ continue_with_ecc: else { PrintLog(_("* requires : dvdisaster-%d.%d (BAD)\n" "* Warning : The following output might be incorrect.\n" - "* : Please visit http://www.dvdisaster.org for an upgrade.\n"), + "* : Please upgrade dvdisaster.\n"), eh->neededVersion/10000, (eh->neededVersion%10000)/100); diff --git a/src/rs02-window.c b/src/rs02-window.c index e2c7dbc..e5a8a0b 100644 --- a/src/rs02-window.c +++ b/src/rs02-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-common.c b/src/rs03-common.c index 4030bb1..8148285 100644 --- a/src/rs03-common.c +++ b/src/rs03-common.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-create.c b/src/rs03-create.c index 9fa5797..47e0a15 100644 --- a/src/rs03-create.c +++ b/src/rs03-create.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-fix.c b/src/rs03-fix.c index 848ba07..af468c6 100644 --- a/src/rs03-fix.c +++ b/src/rs03-fix.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-includes.h b/src/rs03-includes.h index 78af5dd..22f3936 100644 --- a/src/rs03-includes.h +++ b/src/rs03-includes.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-preferences.c b/src/rs03-preferences.c index ef223bd..cca992a 100644 --- a/src/rs03-preferences.c +++ b/src/rs03-preferences.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-recognize.c b/src/rs03-recognize.c index 773d27c..23461cf 100644 --- a/src/rs03-recognize.c +++ b/src/rs03-recognize.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/rs03-verify.c b/src/rs03-verify.c index d4ea4a5..7221c4e 100644 --- a/src/rs03-verify.c +++ b/src/rs03-verify.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -871,7 +871,7 @@ void RS03Verify(Image *image) else { PrintLog(_("* requires : dvdisaster-%s (BAD)\n" "* Warning : The following output might be incorrect.\n" - "* : Please visit http://www.dvdisaster.org for an upgrade.\n"), + "* : Please upgrade dvdisaster.\n"), version); #ifndef WITH_CLI_ONLY_YES diff --git a/src/rs03-window.c b/src/rs03-window.c index d18b82e..33bb665 100644 --- a/src/rs03-window.c +++ b/src/rs03-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-freebsd.c b/src/scsi-freebsd.c index bbfb913..2014767 100644 --- a/src/scsi-freebsd.c +++ b/src/scsi-freebsd.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-layer.c b/src/scsi-layer.c index 6053e1b..2ebc4f1 100644 --- a/src/scsi-layer.c +++ b/src/scsi-layer.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-layer.h b/src/scsi-layer.h index 5b865b7..bf8d3fa 100644 --- a/src/scsi-layer.h +++ b/src/scsi-layer.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-linux.c b/src/scsi-linux.c index 4cd201e..90f68ea 100644 --- a/src/scsi-linux.c +++ b/src/scsi-linux.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-netbsd.c b/src/scsi-netbsd.c index 574c662..eb2f908 100644 --- a/src/scsi-netbsd.c +++ b/src/scsi-netbsd.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-simulated.c b/src/scsi-simulated.c index e87778a..6bea517 100644 --- a/src/scsi-simulated.c +++ b/src/scsi-simulated.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/scsi-unknown.c b/src/scsi-unknown.c index 7b2ccdb..1e446cf 100644 --- a/src/scsi-unknown.c +++ b/src/scsi-unknown.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/show-manual.c b/src/show-manual.c index 7a54376..7e36caa 100644 --- a/src/show-manual.c +++ b/src/show-manual.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * @@ -363,3 +363,4 @@ void ShowPDF(char *target) try_viewer(bi); #endif } + diff --git a/src/smart-lec.c b/src/smart-lec.c index 534dd65..1bc953a 100644 --- a/src/smart-lec.c +++ b/src/smart-lec.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/spiral.c b/src/spiral.c index 4e49ff6..939877a 100644 --- a/src/spiral.c +++ b/src/spiral.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/udf.c b/src/udf.c index a72fdcd..c1020d9 100644 --- a/src/udf.c +++ b/src/udf.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. - * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Copyright (C) 2019 The dvdisaster development team. + * + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/udf.h b/src/udf.h index abf9264..3fb1f74 100644 --- a/src/udf.h +++ b/src/udf.h @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. * diff --git a/src/welcome-window.c b/src/welcome-window.c index 2efdb47..bc1447b 100644 --- a/src/welcome-window.c +++ b/src/welcome-window.c @@ -1,8 +1,8 @@ /* dvdisaster: Additional error correction for optical media. * Copyright (C) 2004-2017 Carsten Gnoerlich. + * Copyright (C) 2019 The dvdisaster development team. * - * Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org - * Project homepage: http://www.dvdisaster.org + * Email: support@dvdisaster.org * * This file is part of dvdisaster. *