imdiff 0.2.11__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {imdiff-0.2.11 → imdiff-0.3.1}/PKG-INFO +3 -2
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/dir_diff_main_window.py +3 -3
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/file_list_frame.py +1 -1
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/image_diff_main_window.py +3 -3
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/image_frame.py +1 -1
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/version.py +1 -1
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/PKG-INFO +3 -2
- {imdiff-0.2.11 → imdiff-0.3.1}/LICENSE +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/README.md +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/__init__.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/__main__.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/cli/__init__.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/cli/dir_diff.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/cli/image_diff.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/cli/main.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/__init__.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/image_canvas.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/image_scaling.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/status_bar.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/transient_menu.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/gui/zoom_menu.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/image_comparator.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/list_files.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff/util.py +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/SOURCES.txt +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/dependency_links.txt +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/entry_points.txt +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/requires.txt +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/imdiff.egg-info/top_level.txt +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/pyproject.toml +0 -0
- {imdiff-0.2.11 → imdiff-0.3.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: imdiff
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Compare image files in different directories
|
|
5
5
|
Author-email: "John T. Goetz" <theodore.goetz@gmail.com>
|
|
6
6
|
Project-URL: homepage, https://gitlab.com/johngoetz/imdiff
|
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
|
24
24
|
Requires-Dist: ttkbootstrap
|
|
25
25
|
Requires-Dist: numpy
|
|
26
26
|
Requires-Dist: pillow
|
|
27
|
+
Dynamic: license-file
|
|
27
28
|
|
|
28
29
|
# ImDiff: Compare Directories of Images
|
|
29
30
|
|
|
@@ -63,9 +63,9 @@ class DirDiffMainWindow(ttk.Window):
|
|
|
63
63
|
self.bind_all(
|
|
64
64
|
'<Shift-Up>', lambda evt: self.file_list_frame.on_up(evt, add=True)
|
|
65
65
|
)
|
|
66
|
-
self.bind_all('<Delete>', self.delete)
|
|
67
|
-
self.bind_all('<Left>', self.copy_right_to_left)
|
|
68
|
-
self.bind_all('<Right>', self.copy_left_to_right)
|
|
66
|
+
self.bind_all('<Control-Delete>', self.delete)
|
|
67
|
+
self.bind_all('<Control-Left>', self.copy_right_to_left)
|
|
68
|
+
self.bind_all('<Control-Right>', self.copy_left_to_right)
|
|
69
69
|
|
|
70
70
|
def destroy(self, *evt):
|
|
71
71
|
self.file_list_frame.signal_shutdown()
|
|
@@ -291,7 +291,7 @@ class FileListFrame(ttk.Frame):
|
|
|
291
291
|
left = self.leftdir / file_path
|
|
292
292
|
right = self.rightdir / file_path
|
|
293
293
|
if not filecmp.cmp(left, right):
|
|
294
|
-
self.button_text_diff.configure(bootstyle=
|
|
294
|
+
self.button_text_diff.configure(bootstyle='danger')
|
|
295
295
|
self.text_file_queue.status = IterableQueue.Status.Complete
|
|
296
296
|
break
|
|
297
297
|
|
|
@@ -40,9 +40,9 @@ class ImageDiffMainWindow(tk.Tk):
|
|
|
40
40
|
self.bind_all('<Control-q>', self.destroy)
|
|
41
41
|
self.bind_all('<Control-c>', self.destroy)
|
|
42
42
|
self.bind_all('<Escape>', self.destroy)
|
|
43
|
-
self.bind_all('<Delete>', self.image_frame.delete)
|
|
44
|
-
self.bind_all('<Left>', self.image_frame.copy_left_to_right)
|
|
45
|
-
self.bind_all('<Right>', self.image_frame.copy_right_to_left)
|
|
43
|
+
self.bind_all('<Control-Delete>', self.image_frame.delete)
|
|
44
|
+
self.bind_all('<Control-Left>', self.image_frame.copy_left_to_right)
|
|
45
|
+
self.bind_all('<Control-Right>', self.image_frame.copy_right_to_left)
|
|
46
46
|
|
|
47
47
|
def destroy(self, *evt):
|
|
48
48
|
super().destroy()
|
|
@@ -104,7 +104,7 @@ class ImageFrame(ttk.Frame):
|
|
|
104
104
|
self.left_text_label = ttk.Label(self, textvariable=self.left_label)
|
|
105
105
|
self.right_text_label = ttk.Label(self, textvariable=self.right_label)
|
|
106
106
|
self.add_operate_buttons(
|
|
107
|
-
ttk.Button(self, text='Delete', bootstyle=
|
|
107
|
+
ttk.Button(self, text='Delete', bootstyle='danger',
|
|
108
108
|
command=delete_fn or self.delete),
|
|
109
109
|
self.left_text_label,
|
|
110
110
|
ttk.Button(self, text='⟵',
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = '0.
|
|
1
|
+
__version__ = '0.3.1'
|
|
2
2
|
version_info = __version__.split('.')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: imdiff
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Compare image files in different directories
|
|
5
5
|
Author-email: "John T. Goetz" <theodore.goetz@gmail.com>
|
|
6
6
|
Project-URL: homepage, https://gitlab.com/johngoetz/imdiff
|
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
|
24
24
|
Requires-Dist: ttkbootstrap
|
|
25
25
|
Requires-Dist: numpy
|
|
26
26
|
Requires-Dist: pillow
|
|
27
|
+
Dynamic: license-file
|
|
27
28
|
|
|
28
29
|
# ImDiff: Compare Directories of Images
|
|
29
30
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|