├── .gitignore ├── Graphics ├── add.png ├── icon.ico ├── icon.xcf ├── icon_grey.ico ├── icon_grey.xcf ├── logo.png └── save.png ├── LICENSE ├── Let's Tag.sln ├── Let's Tag ├── Common │ ├── AbstractHttpRequest.cs │ ├── Field.cs │ ├── HttpGetRequest.cs │ ├── HttpPostRequest.cs │ ├── Preset.cs │ ├── PresetManager.cs │ ├── PresetReader.cs │ └── PresetWriter.cs ├── ConsoleProgram.cs ├── ConsoleResource.Designer.cs ├── ConsoleResource.resx ├── DataTypes.cs ├── DragAndDrop │ ├── DragAndDropDelegate.cs │ ├── FileDataObject.cs │ ├── ImageFileDataObject.cs │ └── ShellClipboardFormats.cs ├── Exporter.cs ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── AddPresetForm.Designer.cs │ ├── AddPresetForm.cs │ ├── AddPresetForm.resx │ ├── AlbumGrabForm.Designer.cs │ ├── AlbumGrabForm.cs │ ├── AlbumGrabForm.resx │ ├── AlbumProgressForm.Designer.cs │ ├── AlbumProgressForm.cs │ ├── AlbumProgressForm.resx │ ├── CustomStringFieldForm.Designer.cs │ ├── CustomStringFieldForm.cs │ ├── CustomStringFieldForm.resx │ ├── ExportForm.Designer.cs │ ├── ExportForm.cs │ ├── ExportForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Mp3tagFormatStringForm.Designer.cs │ ├── Mp3tagFormatStringForm.cs │ ├── Mp3tagFormatStringForm.resx │ ├── ResultSelectorForm.Designer.cs │ ├── ResultSelectorForm.cs │ ├── ResultSelectorForm.resx │ ├── SearchForm.Designer.cs │ ├── SearchForm.cs │ ├── SearchForm.resx │ ├── SearchProgressForm.Designer.cs │ ├── SearchProgressForm.cs │ └── SearchProgressForm.resx ├── Let's Tag Console.csproj ├── Let's Tag.csproj ├── LetsTagException.cs ├── Parsers │ ├── AlbumParser.cs │ └── TracklistParser.cs ├── Presets │ ├── Default.xml │ └── Track Data Only.xml ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── TitleStrings.Designer.cs │ └── TitleStrings.resx ├── icon.ico └── icon_grey.ico ├── README.md └── Screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/.gitignore -------------------------------------------------------------------------------- /Graphics/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/add.png -------------------------------------------------------------------------------- /Graphics/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/icon.ico -------------------------------------------------------------------------------- /Graphics/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/icon.xcf -------------------------------------------------------------------------------- /Graphics/icon_grey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/icon_grey.ico -------------------------------------------------------------------------------- /Graphics/icon_grey.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/icon_grey.xcf -------------------------------------------------------------------------------- /Graphics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/logo.png -------------------------------------------------------------------------------- /Graphics/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Graphics/save.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/LICENSE -------------------------------------------------------------------------------- /Let's Tag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag.sln -------------------------------------------------------------------------------- /Let's Tag/Common/AbstractHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/AbstractHttpRequest.cs -------------------------------------------------------------------------------- /Let's Tag/Common/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/Field.cs -------------------------------------------------------------------------------- /Let's Tag/Common/HttpGetRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/HttpGetRequest.cs -------------------------------------------------------------------------------- /Let's Tag/Common/HttpPostRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/HttpPostRequest.cs -------------------------------------------------------------------------------- /Let's Tag/Common/Preset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/Preset.cs -------------------------------------------------------------------------------- /Let's Tag/Common/PresetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/PresetManager.cs -------------------------------------------------------------------------------- /Let's Tag/Common/PresetReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/PresetReader.cs -------------------------------------------------------------------------------- /Let's Tag/Common/PresetWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Common/PresetWriter.cs -------------------------------------------------------------------------------- /Let's Tag/ConsoleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/ConsoleProgram.cs -------------------------------------------------------------------------------- /Let's Tag/ConsoleResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/ConsoleResource.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/ConsoleResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/ConsoleResource.resx -------------------------------------------------------------------------------- /Let's Tag/DataTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/DataTypes.cs -------------------------------------------------------------------------------- /Let's Tag/DragAndDrop/DragAndDropDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/DragAndDrop/DragAndDropDelegate.cs -------------------------------------------------------------------------------- /Let's Tag/DragAndDrop/FileDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/DragAndDrop/FileDataObject.cs -------------------------------------------------------------------------------- /Let's Tag/DragAndDrop/ImageFileDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/DragAndDrop/ImageFileDataObject.cs -------------------------------------------------------------------------------- /Let's Tag/DragAndDrop/ShellClipboardFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/DragAndDrop/ShellClipboardFormats.cs -------------------------------------------------------------------------------- /Let's Tag/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Exporter.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AboutForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AboutForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/AddPresetForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AddPresetForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AddPresetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AddPresetForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AddPresetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AddPresetForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumGrabForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumGrabForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumGrabForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumGrabForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumGrabForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumGrabForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumProgressForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumProgressForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumProgressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumProgressForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/AlbumProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/AlbumProgressForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/CustomStringFieldForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/CustomStringFieldForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/CustomStringFieldForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/CustomStringFieldForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/CustomStringFieldForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/CustomStringFieldForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/ExportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ExportForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/ExportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ExportForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/ExportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ExportForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/MainForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/MainForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/Mp3tagFormatStringForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/Mp3tagFormatStringForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/Mp3tagFormatStringForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/Mp3tagFormatStringForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/Mp3tagFormatStringForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/Mp3tagFormatStringForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/ResultSelectorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ResultSelectorForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/ResultSelectorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ResultSelectorForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/ResultSelectorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/ResultSelectorForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchForm.resx -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchProgressForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchProgressForm.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchProgressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchProgressForm.cs -------------------------------------------------------------------------------- /Let's Tag/Forms/SearchProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Forms/SearchProgressForm.resx -------------------------------------------------------------------------------- /Let's Tag/Let's Tag Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Let's Tag Console.csproj -------------------------------------------------------------------------------- /Let's Tag/Let's Tag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Let's Tag.csproj -------------------------------------------------------------------------------- /Let's Tag/LetsTagException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/LetsTagException.cs -------------------------------------------------------------------------------- /Let's Tag/Parsers/AlbumParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Parsers/AlbumParser.cs -------------------------------------------------------------------------------- /Let's Tag/Parsers/TracklistParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Parsers/TracklistParser.cs -------------------------------------------------------------------------------- /Let's Tag/Presets/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Presets/Default.xml -------------------------------------------------------------------------------- /Let's Tag/Presets/Track Data Only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Presets/Track Data Only.xml -------------------------------------------------------------------------------- /Let's Tag/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Program.cs -------------------------------------------------------------------------------- /Let's Tag/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Let's Tag/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Properties/Resources.resx -------------------------------------------------------------------------------- /Let's Tag/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Properties/Settings.settings -------------------------------------------------------------------------------- /Let's Tag/Resources/TitleStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Resources/TitleStrings.Designer.cs -------------------------------------------------------------------------------- /Let's Tag/Resources/TitleStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/Resources/TitleStrings.resx -------------------------------------------------------------------------------- /Let's Tag/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/icon.ico -------------------------------------------------------------------------------- /Let's Tag/icon_grey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Let's Tag/icon_grey.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvoros/lets-tag/HEAD/Screenshot.png --------------------------------------------------------------------------------