Wolfgang Stöggl
a2b12d1d0f
[CUERipper] Save metadata before UpdateDrive(s)
...
Up to now, entered metadata was cleared and lost, when UpdateDrive() or
UpdateDrives() was called after device change events. This happened for
example in case of a DBT_DEVNODES_CHANGE event. Typical triggers for
this event are often not even CD drive related, like insert/eject of
USB sticks, disconnection or connection of a Bluetooth mouse etc.
- In order to avoid loss of entered metadata in case of such events,
save the data first before calling the methods UpdateDrive()
or UpdateDrives().
- The entered metadata is now also saved, when a CD is ejected.
- Fixes #20
2020-05-04 09:12:54 +02: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
19aa57ee1d
Update .NET sku to v4.7 in app.config files
...
- Use:
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7"/>
- Fixes: https://github.com/gchudov/cuetools.net/issues/12
- XML pretty print app.config files
2019-01-20 00:01:42 +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
320e75d709
Removed AudioEncoderSettings/AudioDecoderSettings classes, all of their functionality is now in IAudioEncoderSettings/IAudioDecoderSettings interfaces.
2018-03-25 17:24:27 -04:00
Grigory Chudov
e1f8906170
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-24 12:15:49 -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
a4565dbd30
Build system cleanup. Platform dependent plugins moved to "plugins" subdirectories.
2018-03-11 18:42:41 -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
6e6198defb
Version bump to 2.1.6
2014-12-08 23:35:43 -05:00
Grigory Chudov
2703fffe86
CUETools, CUERipper: use puzzle icon for cached metadata
2013-06-25 22:32:14 -04:00
Grigory Chudov
e0d789b727
CUETools.Converter: reducing dependancy on CUETools.Processor;
...
CUETools.Codecs should be enough. Tagging is the only remaining issue.
2013-06-11 21:19:48 -04:00
Grigory Chudov
1e502ab0b9
CUETools: CTDB verification during encoding, CTDB confidence tags
2013-06-04 00:10:33 -04:00
Grigory Chudov
110f6b19f4
CUERipper: More precise measurement of track quality. Quality will now be less
...
than 100% if retries were made, even if retries were successful.
2013-05-07 00:13:50 -04:00
Grigory Chudov
f65516d2a3
CUERipper: disc load/eject button.
2013-04-28 16:14:58 -04:00
Grigory Chudov
e0f3f7c4bd
CUERipper: When ripping disc a second time without reloading,
...
album art was added to file twice
2013-04-28 12:35:07 -04:00
Grigory Chudov
f19fc58252
CUERipper: cosmetic fix to large cover art preview
2013-04-21 13:50:58 -04:00
Grigory Chudov
27b64e039e
CUERipper: display albumart url in status text
...
CUERipper: if none of the covers match, user can now deselect album art
2013-04-21 13:40:34 -04:00
Grigory Chudov
abcbcc342f
CUERipper: Preview large cover art
2013-04-21 12:59:46 -04:00
Grigory Chudov
e0b347860e
CUERipper: Preview large cover art
2013-04-21 00:48:48 -04:00
Grigory Chudov
8e3cd95cf8
bug 13: CUERipper didn't report track quality
2013-04-20 20:16:23 -04:00
Grigory Chudov
8f1fd6d727
CUETools & CUERipper: Cosmetic changes to encoderSettings button
2013-04-18 21:33:08 -04:00
Grigory Chudov
1ebd9f047b
CUETools: Encoder settings button
2013-04-18 21:23:19 -04:00
Grigory Chudov
a3401df101
CUERipper was always embedding album art, even when option was turned off
2013-04-17 21:36:46 -04:00
Grigory Chudov
12e6507ef0
CUERipper was forgetting format and always choosing flac at startup.
2013-04-15 00:10:05 -04:00
Grigory Chudov
769949f178
Increment version number to 2.1.5
2013-04-12 23:01:20 -04:00
Grigory Chudov
8f842e58c1
Cleanup
2013-04-10 22:21:19 -04:00
Grigory Chudov
218dad5c45
More refactoring: UserDefinedWriter is now a more typical IAudioDest, that has it's own UserDefinedEncoderSettings
2013-04-09 20:51:13 -04:00
Grigory Chudov
e3d0c595c0
Reset encoding mode to default for codecs with dynamic modes list,
...
when settings become incompatible with the chosen mode.
E.g. for flac if -11 was selected and nonsubset modes are disabled,
-7 is chosen instead.
2013-04-08 23:11:03 -04:00
Grigory Chudov
d1e70fc7f3
Button to edit encoder advanced settings in CUERipper
2013-04-08 22:26:42 -04:00
Grigory Chudov
373097661f
Better handling of WMA lossy in CUERipper (supported modes depend on PCM, so we have to set it)
2013-04-08 20:00:14 -04:00
Grigory Chudov
9dd4897acc
Cleanup IAudioDest; CompressionLevel is now part of AudioEncoderSettings.
...
FLAC encoders no longer offer non-subset compression levels by default.
2013-04-01 23:03:22 -04:00
Grigory Chudov
d738e5a228
Icon for .wma files
2013-03-31 16:22:04 -04:00
Grigory Chudov
87163fd425
Icon for .wma files
2013-03-31 16:21:47 -04:00
Grigory Chudov
1ba392dc7d
Remove lossyWav support
2013-02-24 19:31:04 -05:00
Grigory Chudov
cc04a7b2a3
CUERipper should remember drive offsets
2013-02-24 19:10:39 -05:00
Grigory Chudov
3a9e4bafff
icon for musicbrainz cdstubs metadata source
2013-02-24 16:48:58 -05:00
chudov
cc682decb5
Minor bugfixes
2012-07-12 00:11:39 +00:00
chudov
8e61e9b54f
misc
2012-04-17 01:22:49 +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
tuxman666
bfd65f3152
test©
2012-02-15 01:08:51 +00:00
chudov
512599be54
CUERipper: test & copy
2012-02-15 00:18:58 +00:00
tuxman666
dd7b130697
2012-02-13 21:50:13 +00:00
chudov
3b43eb2f97
CUERipper: options dialog
2012-02-13 21:00:30 +00:00
chudov
fe3704f598
CUERipper: AlbumArt support
2012-02-13 07:24:25 +00:00
chudov
7572e50bd8
version bump
2012-01-12 03:32:00 +00:00