1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2025-05-10 10:49:50 +00:00

Compare commits

..

No commits in common. "5829a7905dcaa608fea6654bce6b2e864cc3105b" and "8abf4de916bda5985c9b4713cf105792b90f7425" have entirely different histories.

5 changed files with 4 additions and 29 deletions

View File

@ -90,7 +90,7 @@ def build_cocoa(dev):
os.mkdir(pydep_folder) os.mkdir(pydep_folder)
shutil.copy(op.join(cocoa_project_path, 'dg_cocoa.py'), 'build') shutil.copy(op.join(cocoa_project_path, 'dg_cocoa.py'), 'build')
tocopy = [ tocopy = [
'dupeguru/core', 'dupeguru/hscommon', 'cocoa/inter', 'cocoalib/cocoa', 'objp', 'send2trash', 'mutagen' 'dupeguru/core', 'dupeguru/hscommon', 'cocoa/inter', 'cocoalib/cocoa', 'objp', 'send2trash', 'hsaudiotag',
] ]
copy_packages(tocopy, pydep_folder, create_links=dev) copy_packages(tocopy, pydep_folder, create_links=dev)
sys.path.insert(0, 'build') sys.path.insert(0, 'build')

View File

@ -31,7 +31,7 @@ class DupeGuru(DupeGuruBase):
def _get_fileclasses(self): def _get_fileclasses(self):
result = DupeGuruBase._get_fileclasses(self) result = DupeGuruBase._get_fileclasses(self)
if self.app_mode == AppMode.STANDARD: if self.app_mode == AppMode.Standard:
result = [Bundle] + result result = [Bundle] + result
return result return result

View File

@ -181,7 +181,7 @@ class PyTable(PyGUIObject):
#--- Cocoa --> Python #--- Cocoa --> Python
def columns(self) -> pyref: def columns(self) -> pyref:
return self.model._columns return self.model.columns
def add(self): def add(self):
self.model.add() self.model.add()

@ -1 +1 @@
Subproject commit 47dbe805bb563f3f4ffb90730fc8b1349448789e Subproject commit bf7d720126525557d45d4293076553372cc78d34

View File

@ -1,25 +0,0 @@
From 5d193a4cccb619f5b66515e9465cc2188a52ed62 Mon Sep 17 00:00:00 2001
From: Andrew Senetar <arsenetar@voltaicideas.net>
Date: Wed, 25 Aug 2021 21:50:07 -0500
Subject: [PATCH] Patch for cocoa
---
core/app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/app.py b/core/app.py
index 37921e94..02f45416 100644
--- a/core/app.py
+++ b/core/app.py
@@ -562,7 +562,7 @@ class DupeGuru(Broadcaster):
self.ignore_list_dialog.refresh()
p = op.join(self.appdata, "exclude_list.xml")
self.exclude_list.load_from_xml(p)
- self.exclude_list_dialog.refresh()
+ #self.exclude_list_dialog.refresh()
def load_directories(self, filepath):
# Clear out previous entries
--
2.30.1 (Apple Git-130)