├── .bzrignore ├── Acknowledgments.rtf ├── AcknowledgmentsController.h ├── AcknowledgmentsController.m ├── Add.tiff ├── AddTagSheet.h ├── AddTagSheet.m ├── AddTagSheetDelegateMethods.h ├── Add_Pressed.tiff ├── ApplicationDelegate.h ├── ApplicationDelegate.m ├── CompilationButton.h ├── CompilationButton.m ├── CompilationButtonCell.h ├── CompilationButtonCell.m ├── EditorWindow.h ├── EditorWindow.m ├── English.lproj ├── Acknowledgments.xib ├── Actions.strings ├── AddTagSheet.xib ├── Credits.rtf ├── Errors.strings ├── FileSelectionSheet.xib ├── General.strings ├── Genres.strings ├── GuessTagsSheet.xib ├── InfoPlist.strings ├── MainMenu.xib ├── Preferences.xib ├── RenameFilesSheet.xib └── TagEditor.xib ├── FLACFile.h ├── FLACFile.m ├── FLACHelperFunctions.h ├── FLACHelperFunctions.m ├── FileArrayController.h ├── FileArrayController.m ├── FileSelectionSheet.h ├── FileSelectionSheet.m ├── FileSelectionSheetDelegateMethods.h ├── FilesTableView.h ├── FilesTableView.m ├── Genres.h ├── Genres.m ├── GuessTagsSheet.h ├── GuessTagsSheet.m ├── GuessTagsSheetDelegateMethods.h ├── Info.plist ├── KeyValueTaggedFile.h ├── KeyValueTaggedFile.m ├── MonkeysAudioFile.h ├── MonkeysAudioFile.mm ├── OggVorbisFile.h ├── OggVorbisFile.mm ├── PreferencesController.h ├── PreferencesController.m ├── Remove.tiff ├── Remove_Pressed.tiff ├── RenameFilesSheet.h ├── RenameFilesSheet.m ├── RenameFilesSheetDelegateMethods.h ├── ServicesProvider.h ├── ServicesProvider.m ├── Tag.icns ├── Tag.sdef ├── Tag.xcodeproj └── project.pbxproj ├── TagArrayController.h ├── TagArrayController.m ├── TagArrayControllerDelegateMethods.h ├── TagEditor.h ├── TagEditor.m ├── TagFile.icns ├── TagTableView.h ├── TagTableView.m ├── UKFNSubscribeFileWatcher.h ├── UKFNSubscribeFileWatcher.m ├── UKFileWatcher.h ├── UKFileWatcher.m ├── UKKQueue Readme.txt ├── UKKQueue.h ├── UKKQueue.m ├── UKMainThreadProxy.h ├── UKMainThreadProxy.m ├── UppercaseStringValueTransformer.h ├── UppercaseStringValueTransformer.m ├── WavPackFile.h ├── WavPackFile.m ├── WavPackHelperFunctions.h ├── WavPackHelperFunctions.m └── main.m /.bzrignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.pbxuser 3 | .DS_STORE 4 | build 5 | Frameworks 6 | -------------------------------------------------------------------------------- /Acknowledgments.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Acknowledgments.rtf -------------------------------------------------------------------------------- /AcknowledgmentsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/AcknowledgmentsController.h -------------------------------------------------------------------------------- /AcknowledgmentsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/AcknowledgmentsController.m -------------------------------------------------------------------------------- /Add.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Add.tiff -------------------------------------------------------------------------------- /AddTagSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/AddTagSheet.h -------------------------------------------------------------------------------- /AddTagSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/AddTagSheet.m -------------------------------------------------------------------------------- /AddTagSheetDelegateMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/AddTagSheetDelegateMethods.h -------------------------------------------------------------------------------- /Add_Pressed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Add_Pressed.tiff -------------------------------------------------------------------------------- /ApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/ApplicationDelegate.h -------------------------------------------------------------------------------- /ApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/ApplicationDelegate.m -------------------------------------------------------------------------------- /CompilationButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/CompilationButton.h -------------------------------------------------------------------------------- /CompilationButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/CompilationButton.m -------------------------------------------------------------------------------- /CompilationButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/CompilationButtonCell.h -------------------------------------------------------------------------------- /CompilationButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/CompilationButtonCell.m -------------------------------------------------------------------------------- /EditorWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/EditorWindow.h -------------------------------------------------------------------------------- /EditorWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/EditorWindow.m -------------------------------------------------------------------------------- /English.lproj/Acknowledgments.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Acknowledgments.xib -------------------------------------------------------------------------------- /English.lproj/Actions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Actions.strings -------------------------------------------------------------------------------- /English.lproj/AddTagSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/AddTagSheet.xib -------------------------------------------------------------------------------- /English.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Credits.rtf -------------------------------------------------------------------------------- /English.lproj/Errors.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Errors.strings -------------------------------------------------------------------------------- /English.lproj/FileSelectionSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/FileSelectionSheet.xib -------------------------------------------------------------------------------- /English.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/General.strings -------------------------------------------------------------------------------- /English.lproj/Genres.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Genres.strings -------------------------------------------------------------------------------- /English.lproj/GuessTagsSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/GuessTagsSheet.xib -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /English.lproj/Preferences.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/Preferences.xib -------------------------------------------------------------------------------- /English.lproj/RenameFilesSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/RenameFilesSheet.xib -------------------------------------------------------------------------------- /English.lproj/TagEditor.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/English.lproj/TagEditor.xib -------------------------------------------------------------------------------- /FLACFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FLACFile.h -------------------------------------------------------------------------------- /FLACFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FLACFile.m -------------------------------------------------------------------------------- /FLACHelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FLACHelperFunctions.h -------------------------------------------------------------------------------- /FLACHelperFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FLACHelperFunctions.m -------------------------------------------------------------------------------- /FileArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FileArrayController.h -------------------------------------------------------------------------------- /FileArrayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FileArrayController.m -------------------------------------------------------------------------------- /FileSelectionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FileSelectionSheet.h -------------------------------------------------------------------------------- /FileSelectionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FileSelectionSheet.m -------------------------------------------------------------------------------- /FileSelectionSheetDelegateMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FileSelectionSheetDelegateMethods.h -------------------------------------------------------------------------------- /FilesTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FilesTableView.h -------------------------------------------------------------------------------- /FilesTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/FilesTableView.m -------------------------------------------------------------------------------- /Genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Genres.h -------------------------------------------------------------------------------- /Genres.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Genres.m -------------------------------------------------------------------------------- /GuessTagsSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/GuessTagsSheet.h -------------------------------------------------------------------------------- /GuessTagsSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/GuessTagsSheet.m -------------------------------------------------------------------------------- /GuessTagsSheetDelegateMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/GuessTagsSheetDelegateMethods.h -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Info.plist -------------------------------------------------------------------------------- /KeyValueTaggedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/KeyValueTaggedFile.h -------------------------------------------------------------------------------- /KeyValueTaggedFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/KeyValueTaggedFile.m -------------------------------------------------------------------------------- /MonkeysAudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/MonkeysAudioFile.h -------------------------------------------------------------------------------- /MonkeysAudioFile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/MonkeysAudioFile.mm -------------------------------------------------------------------------------- /OggVorbisFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/OggVorbisFile.h -------------------------------------------------------------------------------- /OggVorbisFile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/OggVorbisFile.mm -------------------------------------------------------------------------------- /PreferencesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/PreferencesController.h -------------------------------------------------------------------------------- /PreferencesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/PreferencesController.m -------------------------------------------------------------------------------- /Remove.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Remove.tiff -------------------------------------------------------------------------------- /Remove_Pressed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Remove_Pressed.tiff -------------------------------------------------------------------------------- /RenameFilesSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/RenameFilesSheet.h -------------------------------------------------------------------------------- /RenameFilesSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/RenameFilesSheet.m -------------------------------------------------------------------------------- /RenameFilesSheetDelegateMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/RenameFilesSheetDelegateMethods.h -------------------------------------------------------------------------------- /ServicesProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/ServicesProvider.h -------------------------------------------------------------------------------- /ServicesProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/ServicesProvider.m -------------------------------------------------------------------------------- /Tag.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Tag.icns -------------------------------------------------------------------------------- /Tag.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Tag.sdef -------------------------------------------------------------------------------- /Tag.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/Tag.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TagArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagArrayController.h -------------------------------------------------------------------------------- /TagArrayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagArrayController.m -------------------------------------------------------------------------------- /TagArrayControllerDelegateMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagArrayControllerDelegateMethods.h -------------------------------------------------------------------------------- /TagEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagEditor.h -------------------------------------------------------------------------------- /TagEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagEditor.m -------------------------------------------------------------------------------- /TagFile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagFile.icns -------------------------------------------------------------------------------- /TagTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagTableView.h -------------------------------------------------------------------------------- /TagTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/TagTableView.m -------------------------------------------------------------------------------- /UKFNSubscribeFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKFNSubscribeFileWatcher.h -------------------------------------------------------------------------------- /UKFNSubscribeFileWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKFNSubscribeFileWatcher.m -------------------------------------------------------------------------------- /UKFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKFileWatcher.h -------------------------------------------------------------------------------- /UKFileWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKFileWatcher.m -------------------------------------------------------------------------------- /UKKQueue Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKKQueue Readme.txt -------------------------------------------------------------------------------- /UKKQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKKQueue.h -------------------------------------------------------------------------------- /UKKQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKKQueue.m -------------------------------------------------------------------------------- /UKMainThreadProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKMainThreadProxy.h -------------------------------------------------------------------------------- /UKMainThreadProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UKMainThreadProxy.m -------------------------------------------------------------------------------- /UppercaseStringValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UppercaseStringValueTransformer.h -------------------------------------------------------------------------------- /UppercaseStringValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/UppercaseStringValueTransformer.m -------------------------------------------------------------------------------- /WavPackFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/WavPackFile.h -------------------------------------------------------------------------------- /WavPackFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/WavPackFile.m -------------------------------------------------------------------------------- /WavPackHelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/WavPackHelperFunctions.h -------------------------------------------------------------------------------- /WavPackHelperFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/WavPackHelperFunctions.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbooth/Tag/HEAD/main.m --------------------------------------------------------------------------------