Metadata (archive) - reading and writing to multiple types · comictagger comictagger · Discussion #484 · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the GUI can only read and write to one metadata "style" (ComicInfo or CBL*), which appears to be by design.
The issue here I imagine is how to present the options. Having it on the main tagger window for ease would be preferable is my assumption. I would suggest the style combo boxes becomes a single table with check boxes for read and write (similar to the file list). The other (or additional) option is to place it in the settings menu under a new tab (this would be where metadata style options reside too).
The CLI can write to multiple but will read from the first specified. Digging into the code, reading and overlaying of multiple appears to be only a break away (cli.py from line 204):
for metadata_style in self.config.runtime_type:
if ca.has_metadata(metadata_style):
try:
t_md = ca.read_metadata(metadata_style)
md.overlay(t_md)
break
except Exception as e:
It would be a reverse order of precedence atm if the break was removed.
I believe you said you have something for CoMet and the GUI to add in when your laptop is fixed?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Right now the GUI can only read and write to one metadata "style" (ComicInfo or CBL*), which appears to be by design.
The issue here I imagine is how to present the options. Having it on the main tagger window for ease would be preferable is my assumption. I would suggest the style combo boxes becomes a single table with check boxes for
read
andwrite
(similar to the file list). The other (or additional) option is to place it in the settings menu under a new tab (this would be where metadata style options reside too).The CLI can write to multiple but will read from the first specified. Digging into the code, reading and overlaying of multiple appears to be only a
break
away (cli.py from line 204):It would be a reverse order of precedence atm if the
break
was removed.Beta Was this translation helpful? Give feedback.
All reactions