Commit Graph

1134 Commits

Author SHA1 Message Date
timmy 6da3bf764e Merge branch 'feature/m-age-rating' of https://github.com/MichaelFitzurka/comictagger into MichaelFitzurka-feature/m-age-rating 2022-04-10 11:04:48 -07:00
timmy 5e06d35057 Merge branch 'feature/253-recalc-page-dims' of https://github.com/MichaelFitzurka/comictagger into MichaelFitzurka-feature/253-recalc-page-dims 2022-04-10 11:00:10 -07:00
timmy 82bcc876b3 Merge branch 'MichaelFitzurka-feature/183-comment-html-fix' into develop 2022-04-10 10:59:40 -07:00
timmy d7a6882577 Merge branch 'feature/183-comment-html-fix' of https://github.com/MichaelFitzurka/comictagger into MichaelFitzurka-feature/183-comment-html-fix 2022-04-10 10:59:00 -07:00
timmy 5e7e1b1513 Merge branch 'MichaelFitzurka-feature/246-dbl-page' into develop 2022-04-10 10:57:46 -07:00
timmy cd9a02c255 Merge branch 'feature/246-dbl-page' of https://github.com/MichaelFitzurka/comictagger into MichaelFitzurka-feature/246-dbl-page 2022-04-10 10:54:49 -07:00
timmy b47f816dd5 Merge branch 'abuchanan920-develop' into develop 2022-04-10 10:50:41 -07:00
MichaelFitzurka d1a649c0ba Adding "M" age rating for 2.0 schema 2022-04-06 11:49:54 -04:00
MichaelFitzurka b7759506fe Menu command to clear out page size,height,width on demand, to then recalculate on save. 2022-04-05 16:23:26 -04:00
MichaelFitzurka 97777d61d2 Fixing some HTML to comment translations. 2022-04-05 16:16:27 -04:00
MichaelFitzurka e622b56dae Adding attribs to ImageMetadata class. 2022-04-05 11:23:18 -04:00
abuchanan920 a24251e5b4 Merge branch 'comictagger:develop' into develop 2022-04-05 10:38:36 -04:00
abuchanan920 d4470a2015 Use more idiomatic regular expression string
Co-authored-by: Timmy Welch <timmy@narnian.us>
2022-04-05 10:37:33 -04:00
Michael Fitzurka d37022b71f Merge branch 'comictagger:develop' into feature/246-dbl-page 2022-04-05 09:59:20 -04:00
MichaelFitzurka 5f38241bcb Double Page functionality. 2022-04-05 09:52:59 -04:00
timmy 4fb9461491 Stop a crash when the logs folder already exists 1.3.2-alpha.3 2022-04-05 00:58:19 -07:00
Andrew W. Buchanan c9b5bd625f Fix parsing of filenames that end with an ID such as [__######__] 2022-04-04 22:34:31 -04:00
timmy 558072a330 Create the logs folder before attempting to use it 1.3.2-alpha.2 2022-04-04 19:28:38 -07:00
timmy 26fa7eeabb Merge branch 'logging' into develop 1.3.2-alpha.1 2022-04-04 19:16:54 -07:00
timmy c50cef568e Add basic logging 2022-04-04 19:10:22 -07:00
timmy 2db80399a6 Merge branch 'MichaelFitzurka-feature/247-empty-tags' into develop 2022-04-04 14:16:29 -07:00
MichaelFitzurka 4936c31c18 black changed some single quotes to double quotes. 2022-04-04 16:36:46 -04:00
MichaelFitzurka ada88d719f Empty metadata should not assign an empty tag. 2022-04-03 16:50:27 -04:00
MichaelFitzurka 1b28623fe3 Bookmark functionality. Fixes #212. 2022-04-03 15:44:20 -04:00
MichaelFitzurka 593f568ea7 method renamed to match new changes. 2022-04-03 15:39:03 -04:00
timmy 7b4dba35b5 Ensure that tags are overwritten when saving metadata 1.3.2-alpha.0 2022-04-02 15:41:50 -07:00
timmy c95e700025 Merge branch 'CodeCleanup' into develop 2022-04-02 15:36:03 -07:00
timmy e10f7dd7a7 Code cleanup
Remove no longer used google scripts
Remove convenience files from comicataggerlib and import comicapi directly
Add type-hints to facilitate auto-complete tools
Make PyQt5 code more compatible with PyQt6

Implement automatic tooling
isort and black for code formatting
Line length has been set to 120
flake8 for code standards with exceptions:
E203 - Whitespace before ':'  - format compatiblity with black
E501 - Line too long          - flake8 line limit cannot be set
E722 - Do not use bare except - fixing bare except statements is a
                                lot of overhead and there are already
                                many in the codebase

These changes, along with some manual fixes creates much more readable code.
See examples below:

diff --git a/comicapi/comet.py b/comicapi/comet.py
index d1741c5..52dc195 100644
--- a/comicapi/comet.py
+++ b/comicapi/comet.py
@@ -166,7 +166,2 @@ class CoMet:

-            if credit['role'].lower() in set(self.editor_synonyms):
-                ET.SubElement(
-                    root,
-                    'editor').text = "{0}".format(
-                    credit['person'])

@@ -174,2 +169,4 @@ class CoMet:
         self.indent(root)
+            if credit["role"].lower() in set(self.editor_synonyms):
+                ET.SubElement(root, "editor").text = str(credit["person"])

diff --git a/comictaggerlib/autotagmatchwindow.py b/comictaggerlib/autotagmatchwindow.py
index 4338176..9219f01 100644
--- a/comictaggerlib/autotagmatchwindow.py
+++ b/comictaggerlib/autotagmatchwindow.py
@@ -63,4 +63,3 @@ class AutoTagMatchWindow(QtWidgets.QDialog):
             self.skipButton, QtWidgets.QDialogButtonBox.ActionRole)
-        self.buttonBox.button(QtWidgets.QDialogButtonBox.Ok).setText(
-            "Accept and Write Tags")
+        self.buttonBox.button(QtWidgets.QDialogButtonBox.StandardButton.Ok).setText("Accept and Write Tags")

diff --git a/comictaggerlib/cli.py b/comictaggerlib/cli.py
index 688907d..dbd0c2e 100644
--- a/comictaggerlib/cli.py
+++ b/comictaggerlib/cli.py
@@ -293,7 +293,3 @@ def process_file_cli(filename, opts, settings, match_results):
                 if opts.raw:
-                    print((
-                        "{0}".format(
-                            str(
-                                ca.readRawCIX(),
-                                errors='ignore'))))
+                    print(ca.read_raw_cix())
                 else:
2022-04-02 14:21:37 -07:00
timmy 84dc148cff Merge branch 'MichaelFitzurka-feature/239-add-web-btn' into develop 2022-04-02 12:57:14 -07:00
timmy 14c9609efe Merge branch 'MichaelFitzurka-feature/232-inv-page-type' into develop 2022-04-02 12:57:04 -07:00
MichaelFitzurka 2a3620ea21 Replacing requests validation with urlparse. 2022-04-01 09:48:53 -04:00
MichaelFitzurka 8c5d4869f9 Updates to comments. 2022-03-31 13:34:40 -04:00
MichaelFitzurka c0aa665347 Adding web link convenience button to open a valid url value in a browser window. 2022-03-31 12:40:43 -04:00
MichaelFitzurka 6900368251 Displaying invalid value with Error indicator, that way the user can see what is the invalid value and has the option to leave it or change it. 2022-03-31 10:25:00 -04:00
timmy ac1bdf2f9c Merge branch 'abuchanan920-develop' into develop 1.3.1 2022-03-29 22:29:48 -07:00
timmy c840724c9c Merge branch 'rhaussmann-natsort_fix' into develop 2022-03-29 22:23:00 -07:00
Richard Haussmann 220606a046 Merge branch 'comictagger:develop' into natsort_fix 2022-03-29 09:28:38 -06:00
Richard Haussmann 223269cc2e update requirements 2022-03-29 09:23:05 -06:00
timmy 31b96fdbb9 Merge branch 'feature/179-7zip' into develop 2022-03-28 23:29:02 -07:00
MichaelFitzurka 908a500e7e One more. 2022-03-26 12:45:33 -04:00
MichaelFitzurka ae20a2eec8 Updates as requested. 2022-03-26 12:42:33 -04:00
Michael Fitzurka 287c5f39c1 Merge branch 'comictagger:develop' into feature/179-7zip 2022-03-26 12:27:34 -04:00
timmy cfd2489228 Merge branch 'feature-227-data-src-alt-covers' into develop 1.3.1-alpha.0 2022-03-21 17:52:22 -07:00
MichaelFitzurka 86a83021a6 Update to look for images in data-src as well as src. 2022-03-21 15:29:31 -04:00
Michael Fitzurka d7595f5ca1 Merge branch 'comictagger:develop' into feature/179-7zip 2022-03-21 09:27:47 -04:00
timmy 5a2bb66d5b Merge branch 'unicodeFix' into develop 2022-03-20 10:43:02 -07:00
timmy 5de2ce65a4 Remove print statements
Fixes #223
2022-03-20 10:40:30 -07:00
timmy 95d167561d Fix locale for macOS 2022-03-20 02:10:11 -07:00
timmy 7d2702c3b6 Update pyinstaller 2022-03-20 02:09:47 -07:00
timmy d0f96b6511 Ensure XML is UTF-8 encoded 2022-03-19 18:17:38 -07:00