Wolfgang Stöggl
b108b7f90f
Prepare for CUETools 2.1.8
...
- Substitute occurrences of "2.1.7" with "2.1.8" using:
git grep -I -l -e '2\.1\.7' -- ':(exclude)*.bat' | xargs \
sed -b -i -e 's/2\.1\.7/2\.1\.8/g'
- Update some outdated version entries:
2.1.4 in CUETools.CTDB.EACPlugin.Installer.vdproj
git grep -I -l -e '2\.1\.4' | xargs \
sed -b -i -e 's/2\.1\.4/2\.1\.8/g'
2.0.7 in
CUEPlayer/Properties/DataSources/Output.datasource
CUEPlayer/Properties/DataSources/frmCUEPlayer.datasource
git grep -I -l -e '2\.0\.7' | xargs \
sed -b -i -e 's/2\.0\.7/2\.1\.8/g'
1.9.4 in CUETools.Processor.CUEConfig.datasource
git grep -I -l -e '1\.9\.4' | xargs \
sed -b -i -e 's/1\.9\.4/2\.1\.8/g'
1.9.0 in frmCUERipper.datasource
git grep -I -l -e '1\.9\.0' | xargs \
sed -b -i -e 's/1\.9\.0/2\.1\.8/g'
2021-02-21 06:20:51 +01:00
Wolfgang Stöggl
d4dd402961
Bump copyright year to 2021
...
- Substitute occurrences of "-2020" with "-2021" using:
git grep -I -l -e '-2020' -- ':(exclude)*.bak' | xargs \
sed -b -i -e 's/-2020/-2021/g'
2021-01-14 02:18:32 +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
Grigory Chudov
9754a9a328
Fixed a few bugs and switched to .NET framework 4.7
2018-10-21 14:12:05 -04:00
Grigory Chudov
16fccfe5c9
Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc.
2018-03-23 19:26:26 -04:00
Grigory Chudov
807063f4f2
Switch to the new taglib-sharp version. Add support for opus.
2018-03-11 21:35:46 -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
5e784881f1
CUETools: removed reference to CSScriptLibrary which triggers false-positive
...
in Avast, so custom scripts are no longer supported.
2014-05-11 20:30:06 -04:00
Grigory Chudov
a273f36ffa
Code cleanup: some lowlevel codec infrastructure moved
...
from CUETools.Processor to CUETools.Codecs
2013-06-05 03:02:43 -04:00
Grigory Chudov
ff8fd22fdf
Removed lossyWAV support from CUETools - it was outdated anyway
2013-04-12 22:40:56 -04: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
karamanolev
c4cdfc58f2
Separated log writing from CUESheet to CUESheetLogWriter.
2011-10-25 11:36:31 +00:00
karamanolev
8715d62cb8
CUETools.Processor refactoring work in progress.
2011-10-25 09:06:34 +00:00
karamanolev
f365e6359f
CUETools.Processor: split classes into separate files.
2011-10-24 11:38:10 +00:00
chudov
1d743c4a9e
VS2010
2011-10-23 22:50:33 +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
691cc51ee8
CUETools & CUERipper: Local metadata cache implemented
...
CUETools: register qaac.exe in external encoders
CUERipper: hopefully fixed problems with Matrox desktop manager
CUERipper: now remembers the drive which was last used
CUERipper: added a way to reload metadata
taglib-sharp: fixed incompatibility with tags produced by qaac.exe
2010-05-02 17:04:51 +00:00
chudov
071c45d8e2
Version bump to 2.0.8
2010-04-24 17:47:57 +00:00
chudov
74328ad330
minor fixes
2010-03-25 05:04:45 +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
5b9b266de5
CD parity information database
2010-02-23 15:15:08 +00:00
chudov
6d5e0602bd
Calculating CRC32 with offsets and fast
2010-02-09 07:40:37 +00:00
chudov
f23ea0811b
Now using Visual Studio 2008
2010-02-08 08:36:26 +00:00
chudov
cc02d40171
reorganizing a bit
2010-02-08 05:06:48 +00:00
chudov
c815a90eb5
reorganizing a bit
2010-02-08 01:29:31 +00:00
chudov
1f844b44e1
reorganizing a bit
2010-02-06 23:17:07 +00:00
chudov
7bbada8e53
integrate FlaCuda
2009-12-24 16:17:42 +00:00
chudov
c27baada21
flake
2009-08-21 03:26:12 +00:00
chudov
b6c12bda14
2.0.4
2009-06-24 19:40:23 +00:00
chudov
ade94128bb
2.0.2
2009-05-01 15:16:26 +00:00
chudov
c2fc51b6b9
1) Better log file/freedb entry selection dialog interface
...
2) 'Stop' button works when analyzing archive
3) application icon added
4) two verification modes: AR only/AR+CRCs
2009-02-22 07:47:56 +00:00
chudov
f37d698f6a
1) Support for user-defined external commandline codecs, tested on TAK
...
2) Better support for zip archives, which previously worked only with flac/wav files
3) More reliable tag handling, using taglib-sharp. Pictures are now preserved.
4) ALAC decoder bug fixed
2009-02-19 04:09:59 +00:00
chudov
3d94188f92
1) Fixed crash on source files that contain zero length tags
...
2) Fixed a glitch in filename corrector - it sometimes didn't replace underscores with spaces.
3) Fixed a bug when a broken cue sheet was created if artist, title or genre contained comma character.
3) Added .zip archive support
4) Added support for cue sheets which start with data track (mixed mode or "playstation type" cds)
2009-01-28 04:53:13 +00:00
chudov
399573c1be
1.9.4... too many small changes to comment
2009-01-17 04:09:38 +00:00
chudov
e3f461e43c
2008-12-09 07:25:48 +00:00
chudov
edf060e416
2008-12-08 00:00:33 +00:00
chudov
6d69df61ae
rereorganizing
2008-12-07 23:55:49 +00:00
chudov
d92be78206
2008-12-07 23:48:58 +00:00
chudov
4ebea84018
bugged
2008-12-07 23:47:35 +00:00
chudov
03f0187bc1
2008-12-07 23:38:00 +00:00