Wolfgang Stöggl
fe3cf97ef7
Fix typos found by codespell
...
- Typos were found by codespell v1.17.0.dev0 (commit 44fea6d)
- Command used:
codespell -q 2 \
-L ba,bloc,blocs,doubleclick,dur,fille,frmat,numer,optin,passtime \
-L pres,strack,te,tim,tre,uint,whn \
--skip="*.de-DE.resx,./Bwg*,./Freedb,./MusicBrainz,./ProgressODoom" \
--skip="./ThirdParty"
2020-02-19 12:12:59 +01:00
Wolfgang Stöggl
66b533c284
Bump copyright year to 2020
...
The copyright year was last time updated in 2018. There is some cleanup
involved in this commit and the next copyright year update is supposed
to be simpler (i.e. substitute "-2020").
- Substitute occurrences of "-2018" with "-2020" using:
git grep -I -l -e '-2018' -- ':(exclude)*.bak' | xargs \
sed -b -i -e 's/-2018/-2020/g'
- Update special cases:
CUEPlayer
git grep -I -l -e 'Grigory Chudov 2010' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2010/2010-2020 Grigory Chudov/g'
CUERipper
git grep -I -l -e '2008-2009' -- | xargs \
sed -b -i -e 's/2008-2009/2008-2020/g'
CUETools, CUETools.FLACCL.cmd
git grep -I -l -e '2008-2010' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/2008-2010/2008-2020/g'
git grep -I -l -e '2010-2013' -- | xargs \
sed -b -i -e 's/2010-2013/2010-2020/g'
CUETools.ChaptersToCue
git grep -I -l -e 'Grigory Chudov 2017' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2017/2017-2020 Grigory Chudov/g'
CUETools.CTDB.EACPlugin
git grep -I -l -e 'Grigory Chudov 2012' -- | xargs \
sed -b -i -e 's/Grigory Chudov 2012/2012-2020 Grigory Chudov/g'
git grep -I -l -e '2011-12' -- | xargs \
sed -b -i -e 's/2011-12/2011-2020/g'
CUETools.Codecs.FLACCL
git grep -I -l -e '2009-2010' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/2009-2010/2009-2020/g'
CUETools.eac3ui (BluTools)
git grep -I -l -e '© 2018' -- | xargs \
sed -b -i -e 's/© 2018/© 2018-2020 Grigory Chudov/g'
CUETools.Flake
git grep -I -l -e ' 2009-2014 Gr' -- | xargs \
sed -b -i -e 's/ 2009-2014 Gr/ 2009-2020 Gr/g'
CUETools.Processor
git grep -I -l -e ' 2008-2013 Gr' -- | xargs \
sed -b -i -e 's/ 2008-2013 Gr/ 2008-2020 Gr/g'
CUETools.Ripper.Console
git grep -I -l -e ' 2008-10 Gr' -- | xargs \
sed -b -i -e 's/ 2008-10 Gr/ 2008-2020 Gr/g'
CUETools.Ripper.Console, CUETools.Ripper.SCSI
git grep -I -l -e ' 2008-13 Gr' -- | xargs \
sed -b -i -e 's/ 2008-13 Gr/ 2008-2020 Gr/g'
Single year entries: 2008, 2009, 2010, 2011, 2017, 2018
git grep -I -l -e ' 2008 Gr' -- | xargs \
sed -b -i -e 's/ 2008 Gr/ 2008-2020 Gr/g'
git grep -I -l -e ' 2009 Gr' -- ':(exclude)*FlaCuda*' | xargs \
sed -b -i -e 's/ 2009 Gr/ 2009-2020 Gr/g'
git grep -I -l -e ' 2010 Gr' -- | xargs \
sed -b -i -e 's/ 2010 Gr/ 2010-2020 Gr/g'
git grep -I -l -e ' 2011 Gr' -- | xargs \
sed -b -i -e 's/ 2011 Gr/ 2011-2020 Gr/g'
git grep -I -l -e ' 2017 Gr' -- | xargs \
sed -b -i -e 's/ 2017 Gr/ 2017-2020 Gr/g'
git grep -I -l -e ' 2018 Gr' -- | xargs \
sed -b -i -e 's/ 2018 Gr/ 2018-2020 Gr/g'
Fix typo in copyright year of CUETools.Codecs.WMA/AudioDecoder.cs:
Copyright (c) 20139 Grigory Chudov
git grep -I -lw -e '20139' -- | xargs \
sed -b -i -e 's/20139/2013-2020/g'
2020-02-04 13:35:53 +01:00
Wolfgang Stöggl
1d3261a898
Sort selected target frameworks to avoid warnings
...
Sort TargetFrameworks in the following projects with net20 first,
to avoid warnings from CUETools.CTDB.EACPlugin:
CUETools.AccurateRip, CUETools.CDImage, CUETools.CTDB,
CUETools.CTDB.Types, CUETools.Codecs, CUETools.Parity
Change order:
<TargetFrameworks>net47;net20;netstandard2.0</TargetFrameworks>
->
<TargetFrameworks>net20;net47;netstandard2.0</TargetFrameworks>
- Fixes the following warnings after opening CUETools.sln
in Visual Studio, e.g.:
The referenced project 'CUETools.AccurateRip' is targeting a higher
framework version (4.7) than this project’s current target framework
version (2.0). This may lead to build failures if types from
assemblies outside this project’s target framework are used by any
project in the dependency chain. Project: CUETools.CTDB.EACPlugin
2020-01-30 16:15:07 +01:00
Grigory Chudov
9754a9a328
Fixed a few bugs and switched to .NET framework 4.7
2018-10-21 14:12:05 -04:00
Grigory Chudov
d6ed3177aa
Version bump to 2.1.7
2018-03-11 19:17:57 -04:00
Grigory Chudov
929b7de944
Updated the build system, now using .NET Framework v4.0 for most things
2018-03-11 17:07:48 -04:00
Grigory Chudov
b6fe9968a1
Upgraade solution to Visual Studio 2017
2018-02-19 12:31:02 -05:00
Grigory Chudov
6231a6f770
Use pre-built serialization assembly to avoid launching CS compiler,
...
which was triggering some anti-virus software.
2018-02-10 17:34:30 -05:00
Grigory Chudov
5cf95e34ee
Workaround for EAC crash when CTDB plugin returns long log lines
2017-07-13 21:18:04 -04:00
Grigory Chudov
801548af02
EAC CTDB plugin update for new EAC version
2015-02-25 16:34:31 -05:00
Grigory Chudov
1e502ab0b9
CUETools: CTDB verification during encoding, CTDB confidence tags
2013-06-04 00:10:33 -04:00
Grigory Chudov
81cf366faa
CUERipper: clear CTDB submission result between two rips, so that
...
the previous result doesn't creep into the next .accurip log.
2013-04-20 18:08:01 -04:00
chudov
cc682decb5
Minor bugfixes
2012-07-12 00:11:39 +00:00
chudov
3a50c03cef
* Better tagging with CTDB metadata
...
* Removed old LAME encoder from plugins list
* CUERipper: main window resizeable
* taglib-sharp.dll removed, taglib-sharp source code imported
2012-04-16 07:19:57 +00:00
chudov
7f07eff0a5
Version 2.0.4
...
* Better handling of metadata for playstation type CDs
* HTOA filename now starts with 00 instead of 01.00
* CUETools: local database: when the folder is already in database, you can now refresh it instead of removing/adding it
* CUETools: local database: added sort category "by CTDB confidence"
* CUETools: local database: new menu item: locate in explorer
* CUERipper: Option to disable gaps detection
* CUERipper: now correctly submits CDs with data tracks to Freedb
* EAC plugin: now fixes codepage for freedb entries
2012-04-08 23:54:36 +00:00
chudov
fe3704f598
CUERipper: AlbumArt support
2012-02-13 07:24:25 +00:00
chudov
2161457451
EAC Plugin: autoupdating, saving window size
2012-01-19 08:18:10 +00:00
chudov
bc3c8a1074
CTDB2.0: coverart search
2012-01-17 08:04:16 +00:00
chudov
6c2ce26146
CTDB2.0: ignore pregap
2012-01-10 23:52:26 +00:00
chudov
4520762a72
CTDB 2.0
2011-11-15 10:56:49 +00:00
chudov
a9ca6e2137
Preparing for next version of CTDB
2011-10-30 23:39:20 +00:00
chudov
b84f1de118
Preparing for next version of CTDB
2011-10-27 20:50:11 +00:00
karamanolev
426f733d19
CUETools.CTDB: split classes into separate files.
2011-10-24 14:32:51 +00:00
chudov
1d743c4a9e
VS2010
2011-10-23 22:50:33 +00:00
chudov
8b19665038
* support for new metadata sources via CTDB
...
* CUETools: GUI tweaks for large screen resolutions on windows 7
* CUETools.Codecs.LAMEEncoder: fix VBR header update for filenames with unicode characters
* CUERipper: more string messages for SCSI errors when ripping
2011-09-08 18:25:54 +00:00
chudov
78197894f7
Finalized 2.1.2;
...
Starting work on 2.1.3 (prioritized metadata lookup, freedb via ctdb)
2011-06-26 00:02:29 +00:00
chudov
e3b05e3e7f
* option to purge records from local DB
...
* metadata editing window size is now saved in settings
* old musicbrainz library removed, musicbrainz metadata now only comes from CTDB
* confirmation dialog before submitting to CTDB
2011-06-13 20:25:13 +00:00
chudov
6982996ab9
* removed 'submit' script
...
* added advanced options ctdb.submit, ctdb.server
* musicbrainz NGS metadata can now be used in filename templates, including %discname%, %label%, %releasedate%, %country%, %releasedateandlabel%, %discnumberandname%
* CUERipper now sends CD barcode when submitting
2011-06-11 19:26:25 +00:00
chudov
cbc9aee65c
Removed outdated files which are now kept in Mercurial repository for CTDB server
2011-06-07 19:59:07 +00:00
chudov
020610a2ea
Support for wierd CDs with two data tracks before audio.
...
Minor enhancements to CTDB download routine, fixed support for parity files without header
2011-06-03 19:15:28 +00:00
chudov
1b5336164c
CTDB EAC Plugin: timeouts
2011-05-28 15:03:49 +00:00
chudov
0dd7ac7ccd
CTDB EAC Plugin: show progress bar
...
CTDB protocol: parity files can now be on another server
Version bump to 2.1.2
2011-05-26 18:18:26 +00:00
chudov
b289629143
CTDB metadata support
2011-05-21 23:28:33 +00:00
chudov
d5fdd19735
CTDB metadata support
2011-05-15 17:41:14 +00:00
chudov
a6941bc51b
CTDB: send drivename separately from userAgent
...
CTDB: include OS version in userAgent
CTDB: send rip quality
LAME: fix VBR options
CTDB: optimize chienSearch
2011-05-06 20:22:21 +00:00
chudov
1cc474e170
CTDB: fast parity/syndrome calculation
...
CTDB: initial submission without a parity file
CTDB: track CRCs submission
2011-04-24 21:07:50 +00:00
chudov
052cb096c4
CUETools 2.1.1
...
* Local Database for verification results and metadata
* FlaCuda replaced with FLACCL
2011-03-08 15:37:43 +00:00
chudov
64ddb2cf31
* CUERipper: was still sometimes locking drives it didn't need to
...
* ArCueDotNet: don't search for cover art
* 'Silent track' diagnostics in AR log
* LAME.dll: settings were not used
* libwavpack: settings were not used (MD5Sum & extra mode)
* workarounds for various Mono bugs
* Path formatting: %discnumber% produces two-digit numbers if %totaldiscs% > 9
* Overwrite dialog: list files, 'remember the choice' option
* Doesn't abort on broken Artwork files
* Better locates files in some complicated cases, e.g. when only some tracks have tracknumber tags
* Folder browser now sorts contents, because OS didn't do it when browsing external drives etc
2010-06-11 17:54:37 +00:00
chudov
769a85f827
2.0.9 release
2010-05-18 17:18:37 +00:00
chudov
071c45d8e2
Version bump to 2.0.8
2010-04-24 17:47:57 +00:00
chudov
3f717d14c8
Optimizing verification
2010-04-23 19:59:42 +00:00
chudov
881951cb02
2.0.7
2010-03-30 02:41:43 +00:00
chudov
f01d0b5241
CUERipper update;
...
CTDB xml interface;
Minor bugfixes;
Version 2.0.6-2.0.7
2010-03-20 07:09:07 +00:00
chudov
ff3259e08a
2010-03-04 05:56:17 +00:00
chudov
749f96ed8a
CUERipper revamp
2010-02-28 21:04:34 +00:00
chudov
31048cb63c
CD parity information database
2010-02-25 17:04:49 +00:00
chudov
6b540a3b26
CD parity information database
2010-02-25 17:02:48 +00:00
chudov
cc6d2ff950
CD parity information database
2010-02-23 23:24:54 +00:00
chudov
5b9b266de5
CD parity information database
2010-02-23 15:15:08 +00:00
chudov
e7eeeeb9a2
CD parity information database test
2010-02-18 21:12:44 +00:00