Cleanup
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
✓ Tie file deletion and tab closing to model updates
|
✓ Tie file deletion and tab closing to model updates
|
||||||
✓ Create separate thread for parser - Show progress in main window
|
✓ Create separate thread for parser - Show progress in main window
|
||||||
? Create emblem per filetype
|
? Create emblem per filetype
|
||||||
Look into how you might group icons
|
Table view
|
||||||
Ignore a / the / numbers for sorting purposes
|
Ignore a / the / numbers for sorting purposes
|
||||||
Put the path in the scope of the search
|
Put the path in the scope of the search
|
||||||
maybe as a type: switch
|
maybe as a type: switch
|
||||||
@@ -41,6 +41,7 @@
|
|||||||
✓ Selectable background color for QGraphicsView
|
✓ Selectable background color for QGraphicsView
|
||||||
✓ View modes for QGraphicsView
|
✓ View modes for QGraphicsView
|
||||||
✓ View and hide toolbar actions in a list
|
✓ View and hide toolbar actions in a list
|
||||||
|
Graphical themes
|
||||||
Comic view keyboard shortcuts
|
Comic view keyboard shortcuts
|
||||||
Record progress
|
Record progress
|
||||||
Pagination
|
Pagination
|
||||||
|
@@ -45,4 +45,16 @@ class SettingsUI(QtWidgets.QDialog, settingswindow.Ui_Dialog):
|
|||||||
self, 'Select Directory', self.last_open_directory,
|
self, 'Select Directory', self.last_open_directory,
|
||||||
QtWidgets.QFileDialog.ShowDirsOnly)
|
QtWidgets.QFileDialog.ShowDirsOnly)
|
||||||
|
|
||||||
# Directories will NOT be added recursively
|
# Directories will be added recursively
|
||||||
|
# Sub directory addition is allowed in that files will not
|
||||||
|
# be duplicated. However, any additional tags will get
|
||||||
|
# added to file tags
|
||||||
|
|
||||||
|
# Database tags for files should not be updated each time
|
||||||
|
# a new folder gets added or deleted from the directory
|
||||||
|
# This will be done @ runtime
|
||||||
|
# Individually set file tags will be preserved
|
||||||
|
# Duplicate file tags will be removed
|
||||||
|
|
||||||
|
# Whatever code you write to recurse through directories will
|
||||||
|
# have to go into the threaded module
|
||||||
|
@@ -5,6 +5,7 @@ import database
|
|||||||
|
|
||||||
from PyQt5 import QtCore
|
from PyQt5 import QtCore
|
||||||
|
|
||||||
|
|
||||||
class BackGroundTabUpdate(QtCore.QThread):
|
class BackGroundTabUpdate(QtCore.QThread):
|
||||||
def __init__(self, database_path, all_metadata, parent=None):
|
def __init__(self, database_path, all_metadata, parent=None):
|
||||||
super(BackGroundTabUpdate, self).__init__(parent)
|
super(BackGroundTabUpdate, self).__init__(parent)
|
||||||
|
@@ -3,8 +3,6 @@
|
|||||||
import os
|
import os
|
||||||
from PyQt5 import QtWidgets, QtGui, QtCore
|
from PyQt5 import QtWidgets, QtGui, QtCore
|
||||||
|
|
||||||
import sorter
|
|
||||||
import database
|
|
||||||
from resources import resources, pie_chart
|
from resources import resources, pie_chart
|
||||||
|
|
||||||
|
|
||||||
@@ -28,7 +26,7 @@ class BookToolBar(QtWidgets.QToolBar):
|
|||||||
|
|
||||||
# Buttons
|
# Buttons
|
||||||
self.fontButton = QtWidgets.QAction(
|
self.fontButton = QtWidgets.QAction(
|
||||||
QtGui.QIcon.fromTheme('visibility'),
|
QtGui.QIcon.fromTheme('gtk-select-font'),
|
||||||
'View settings', self)
|
'View settings', self)
|
||||||
self.fullscreenButton = QtWidgets.QAction(
|
self.fullscreenButton = QtWidgets.QAction(
|
||||||
QtGui.QIcon.fromTheme('view-fullscreen'),
|
QtGui.QIcon.fromTheme('view-fullscreen'),
|
||||||
|
Reference in New Issue
Block a user