54 vcsStatusMonitorAllData = pyqtSignal(dict) |
54 vcsStatusMonitorAllData = pyqtSignal(dict) |
55 vcsStatusMonitorStatus = pyqtSignal(str, str) |
55 vcsStatusMonitorStatus = pyqtSignal(str, str) |
56 vcsStatusMonitorInfo = pyqtSignal(str) |
56 vcsStatusMonitorInfo = pyqtSignal(str) |
57 vcsStatusChanged = pyqtSignal() |
57 vcsStatusChanged = pyqtSignal() |
58 |
58 |
|
59 # TODO: change this to an enum |
59 canBeCommitted = 1 # Indicates that a file/directory is in the vcs. |
60 canBeCommitted = 1 # Indicates that a file/directory is in the vcs. |
60 canBeAdded = 2 # Indicates that a file/directory is not in vcs. |
61 canBeAdded = 2 # Indicates that a file/directory is not in vcs. |
61 |
62 |
62 commitHistoryLock = "commitHistory.lock" |
63 commitHistoryLock = "commitHistory.lock" |
63 commitHistoryData = "commitHistory.json" |
64 commitHistoryData = "commitHistory.json" |