├── README.md ├── danbooru.csv ├── helper.py ├── qml ├── CenteredImage.qml ├── Combo.qml ├── ContextMenu.qml ├── CurrentColumn.qml ├── DDBButton.qml ├── DDBColumn.qml ├── DashedRectangle.qml ├── DraggableItem.qml ├── DraggableItemDropArea.qml ├── Handle.qml ├── IconButton.qml ├── InfoToolTip.qml ├── LoadingSpinner.qml ├── Main.qml ├── Media.qml ├── Output.qml ├── PackageWindow.qml ├── PopupWindow.qml ├── Search.qml ├── Slide.qml ├── TabItem.qml ├── TabMenu.qml ├── Tags.qml ├── TagsColumn.qml ├── ToggleAction.qml ├── TopMenu.qml ├── TopMenuBar.qml ├── UniformText.qml ├── View.qml ├── WindowBar.qml ├── fonts │ ├── Cantarell-Bold.ttf │ └── Cantarell-Regular.ttf ├── icons │ ├── archive.svg │ ├── back.svg │ ├── bookmark.svg │ ├── bookshelf.svg │ ├── brain.svg │ ├── crop.svg │ ├── cross.svg │ ├── cube.svg │ ├── eye.svg │ ├── folder.svg │ ├── globe-frame.svg │ ├── globe.png │ ├── globe.svg │ ├── next.svg │ ├── package.svg │ ├── plus.svg │ ├── refresh.svg │ ├── reply.svg │ ├── save.svg │ ├── settings.svg │ ├── sort.svg │ ├── star-outline.svg │ ├── star.svg │ ├── tick.svg │ ├── trash.svg │ └── window.svg └── qml.qrc ├── qml_rc.py ├── screenshot.png └── start.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/README.md -------------------------------------------------------------------------------- /danbooru.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/danbooru.csv -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/helper.py -------------------------------------------------------------------------------- /qml/CenteredImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/CenteredImage.qml -------------------------------------------------------------------------------- /qml/Combo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Combo.qml -------------------------------------------------------------------------------- /qml/ContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/ContextMenu.qml -------------------------------------------------------------------------------- /qml/CurrentColumn.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/CurrentColumn.qml -------------------------------------------------------------------------------- /qml/DDBButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/DDBButton.qml -------------------------------------------------------------------------------- /qml/DDBColumn.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/DDBColumn.qml -------------------------------------------------------------------------------- /qml/DashedRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/DashedRectangle.qml -------------------------------------------------------------------------------- /qml/DraggableItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/DraggableItem.qml -------------------------------------------------------------------------------- /qml/DraggableItemDropArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/DraggableItemDropArea.qml -------------------------------------------------------------------------------- /qml/Handle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Handle.qml -------------------------------------------------------------------------------- /qml/IconButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/IconButton.qml -------------------------------------------------------------------------------- /qml/InfoToolTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/InfoToolTip.qml -------------------------------------------------------------------------------- /qml/LoadingSpinner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/LoadingSpinner.qml -------------------------------------------------------------------------------- /qml/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Main.qml -------------------------------------------------------------------------------- /qml/Media.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Media.qml -------------------------------------------------------------------------------- /qml/Output.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Output.qml -------------------------------------------------------------------------------- /qml/PackageWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/PackageWindow.qml -------------------------------------------------------------------------------- /qml/PopupWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/PopupWindow.qml -------------------------------------------------------------------------------- /qml/Search.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Search.qml -------------------------------------------------------------------------------- /qml/Slide.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Slide.qml -------------------------------------------------------------------------------- /qml/TabItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/TabItem.qml -------------------------------------------------------------------------------- /qml/TabMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/TabMenu.qml -------------------------------------------------------------------------------- /qml/Tags.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/Tags.qml -------------------------------------------------------------------------------- /qml/TagsColumn.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/TagsColumn.qml -------------------------------------------------------------------------------- /qml/ToggleAction.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/ToggleAction.qml -------------------------------------------------------------------------------- /qml/TopMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/TopMenu.qml -------------------------------------------------------------------------------- /qml/TopMenuBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/TopMenuBar.qml -------------------------------------------------------------------------------- /qml/UniformText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/UniformText.qml -------------------------------------------------------------------------------- /qml/View.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/View.qml -------------------------------------------------------------------------------- /qml/WindowBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/WindowBar.qml -------------------------------------------------------------------------------- /qml/fonts/Cantarell-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/fonts/Cantarell-Bold.ttf -------------------------------------------------------------------------------- /qml/fonts/Cantarell-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/fonts/Cantarell-Regular.ttf -------------------------------------------------------------------------------- /qml/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/archive.svg -------------------------------------------------------------------------------- /qml/icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/back.svg -------------------------------------------------------------------------------- /qml/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/bookmark.svg -------------------------------------------------------------------------------- /qml/icons/bookshelf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/bookshelf.svg -------------------------------------------------------------------------------- /qml/icons/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/brain.svg -------------------------------------------------------------------------------- /qml/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/crop.svg -------------------------------------------------------------------------------- /qml/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/cross.svg -------------------------------------------------------------------------------- /qml/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/cube.svg -------------------------------------------------------------------------------- /qml/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/eye.svg -------------------------------------------------------------------------------- /qml/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/folder.svg -------------------------------------------------------------------------------- /qml/icons/globe-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/globe-frame.svg -------------------------------------------------------------------------------- /qml/icons/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/globe.png -------------------------------------------------------------------------------- /qml/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/globe.svg -------------------------------------------------------------------------------- /qml/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/next.svg -------------------------------------------------------------------------------- /qml/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/package.svg -------------------------------------------------------------------------------- /qml/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/plus.svg -------------------------------------------------------------------------------- /qml/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/refresh.svg -------------------------------------------------------------------------------- /qml/icons/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/reply.svg -------------------------------------------------------------------------------- /qml/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/save.svg -------------------------------------------------------------------------------- /qml/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/settings.svg -------------------------------------------------------------------------------- /qml/icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/sort.svg -------------------------------------------------------------------------------- /qml/icons/star-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/star-outline.svg -------------------------------------------------------------------------------- /qml/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/star.svg -------------------------------------------------------------------------------- /qml/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/tick.svg -------------------------------------------------------------------------------- /qml/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/trash.svg -------------------------------------------------------------------------------- /qml/icons/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/icons/window.svg -------------------------------------------------------------------------------- /qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml/qml.qrc -------------------------------------------------------------------------------- /qml_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/qml_rc.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/screenshot.png -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arenasys/sd-tagging-helper/HEAD/start.bat --------------------------------------------------------------------------------