Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Publisher.zip/Format.zip #62

Open
killo3967 opened this issue Apr 4, 2024 · 44 comments
Open

Updating Publisher.zip/Format.zip #62

killo3967 opened this issue Apr 4, 2024 · 44 comments
Labels
enhancement New feature or request

Comments

@killo3967
Copy link

Describe the bug
When updating the program in windows the installation overwrite publisher.zip

Could be posible to not ovewrite the files on this path "C:\Program Files\ComicRack Community Edition\Resources\Icons" if the files are newer?

I added a more complete publisher.zip if you want to update it.

Publishers.zip

@killo3967 killo3967 added the bug Something isn't working label Apr 4, 2024
@maforget
Copy link
Owner

maforget commented Apr 4, 2024

There is an option in the installer to not install "Additional images, icons and backgrounds". This should do what you want.

I can't access my computer right now, but I will gladly update the Publisher file the moment I can.

@maforget maforget changed the title When updating the program overwrites publisher.zip Updating Publisher.zip Apr 4, 2024
@maforget maforget added enhancement New feature or request and removed bug Something isn't working labels Apr 4, 2024
@maforget
Copy link
Owner

maforget commented Apr 5, 2024

From #63 by @killo3967

Publisher logo images that have names with accents, accents, and umlauts are not displayed.

In my case i updated the publisher.zip with the logos of:

Éditions Glénat Les Humanoïdes Associés Denoël Graphic

But not logos show in Tiles-view. Tested also in old comicrack and works fine.

@maforget
Copy link
Owner

maforget commented Apr 6, 2024

Ok regarding the accented characters not appearing in the new version. This is a change from the SharpZipLib in the new versions. The way character encoding as changed from the default.

Now you can either set character encoding manually when reading:

public ZipFileFolder(string zipFile)
{
this.zipFile = new ZipFile(zipFile);
}

could be changed to:

public ZipFileFolder(string zipFile)
{
    //437 is the default Zip char Encoding. 850 is the default western windows
    this.zipFile = new ZipFile(zipFile, StringCodec.FromCodePage(437));
}

Or when creating the Zip file force the UTF-8 flag for the entry and that way it will be detected automatically. This can be achieve (at least with 7-Zip), by either:

  1. Set the windows settings to "Beta: Use Unicode UTF-8 for worldwide language support"
  2. When creating the zip add cu in the Parameters textbox. It will force UTF8 on entries that uses it.

You can confirm the file is correctly created by opening it in 7-Zip and clicking on an entry that had accents and pressing info. Under characteristics you will see NTFS : UTF8 instead of NTFS up.

Try this file: Publishers.zip
P.S. I've added Glénat to the string, because most of my books are all scrapped under Glénat and not Éditions Glénat.


Also regarding your initial remark about not overwriting the Publisher file, in addition to the option I mentioned. You can actually have multiples files. The search pattern is Publishers*.zip, so you could add anything and have Publisher_French.zip for example.

You can also add them into your data folder. It supports, alternate configuration (-ac) and portable mode also (-local). Some folder the program will look into:

"{InstallDir}\Resources\Icons"
"%ProgramData%\cYo\ComicRack Community Edition\Resources\Icons"
"{DataDir}\Resources\Icons"

@maforget
Copy link
Owner

maforget commented Apr 7, 2024

I've updated the Publishers.zip based on yours in fc2947d, but There are still a lot that might need updating.

I will let this issue open as a place to update the Publishers.zip

@killo3967
Copy link
Author

I follow your instruction to add "cu" parameter when compressing the folder, but dont work.
After compress I check that the file "Glenat#Glénat#Glenat Italia#Glénat Spain#Éditions Glénat.png" have the NTFS:UTF8 characteristic and it does.
After this, I copy the file and rename, the copy, to Éditions Glénat.png and now it works ahd comicRack diskplay the logo.
Could be the "#"?

I don't know why your file works and mine no.

I checked the headers of both pulishers.zp files and they are complete diferent. What software do you use to compress the folder? I use 7-zip 23.01(x64) in windows 11.

@maforget
Copy link
Owner

maforget commented Apr 7, 2024

I use the same software. 1 thing I've discovered is that you can't rename a file after it is compressed with cu it loses UTF8.

And I can confirm it is the é É, they are read as ,.

@killo3967
Copy link
Author

I'm sorry if I didn't make myself clear, but don't rename it afterwards, rename it before recompressing it.
Let's see if this time I explain better. I have taken the file "Glenat#Glénat#Glenat Italia#Glénat Spain#Éditions Glénat.png" and I have duplicated and renamed it to "Éditions Glénat.png", then I have compressed it with the option "cu" and it has shown me the logo in those comics that had the Publisher to "Éditions Glénat", but those that had it for example to "Glenat" or any of its variants has not shown it.

What surprises me is that with the file you sent me it does show the logos in all the variations, that's why I say that either I'm not doing something or the programs or procedures we are using are different.

@maforget
Copy link
Owner

maforget commented Apr 7, 2024

In the file I sent, I've added Glénat to the line. Because you had Glenat (without the é), but not Glénat (with the é), which is what the scrapper returns for most Glénat comics. Maybe that is why mine is working on more comics.

@maforget
Copy link
Owner

maforget commented Apr 7, 2024

Was on mobile, didn't read your message completly. So you have "Glenat#Glénat#Glenat Italia#Glénat Spain#Éditions Glénat.png" along side "Éditions Glénat.png"? It shouldn't change anything, it would take only 1 Éditions Glénat, the first one it encounters.

Here are the settings I've used:
image

A note from what I saw in the 7-zip discussions pages on sourceforge, the setting I mentioned "Beta: Use Unicode UTF-8 for worldwide language support" can change the behavior of 7-zip. Normally it sets it to UTF8 only if it is needed on an entry. Maybe windows code page can affect it also, like western vs eastern.

I could change the program so it uses code page 537, which is the default for zip files and it should be universal for everyone. I just want to test if files with say Japanese Characters would work also with 537.

@maforget
Copy link
Owner

maforget commented Apr 8, 2024

After some test with Japanese characters, i've updated the default Code Page to OEM (437). This should permit wide compatibility with pretty much all Zip software, without any special settings (aka the cu parameter).

WIth either 7-zip or WinRAR when using Japanese character it will force it to be UTF8, as there is no choice. Windows will just say that it can't create the zip. Since the Japanese entry is UTF8 it is still read correctly alongside entries like Glénat, which are also read correctly even if they aren't UTF8.

With this change e1a7a1b all accented character are read correctly regardless of the software used, at least WinRAR, 7-Zip & Windows works correctly.

@killo3967
Copy link
Author

Tested and now CR could display the logos, anyway i'll use cn option in future.
Thanks very much.

@maforget
Copy link
Owner

maforget commented Apr 10, 2024

I've added some myself. I didn't resize them, because they would lose too much detail and the program doesn't seem to care.

Publishers.zip

@ucapato
Copy link
Contributor

ucapato commented Apr 10, 2024

Can use this thread to bring other Publisher Icons to be added in future updates for Publishers.zip?
As I had some self made Publisher Icons to bring in.

I also had some icons for Book Formats as well (e.g: Omnibus, Series instead of the standars Limited Series...)

@maforget
Copy link
Owner

Yes that's the point to share our files so we can update it.

@ucapato
Copy link
Contributor

ucapato commented Apr 14, 2024

Hi,

I created some icons for Formats:

Series.png (icon: SER): For Series (So, the original file "Limite Series#Series.png") was renamed to #Limited Series.png")
Omnibus.png (icon: OMN): For Omnibus
Fan Made.png (icon: FME): For fans that want to make their self art work
Edit.png (icon: ED)

Formats.zip

@ucapato
Copy link
Contributor

ucapato commented Apr 14, 2024

I've added some myself. I didn't resize them, because they would lose too much detail and the program doesn't seem to care.

Publishers.zip

For this Publishers.zip file, I added a few more from the collection I have:

Globo.png
Marvel Now!.png
Pipoca & Nanquim.png
Rio Gráfica e Editora.png
Webtoon#Line Webtoon.png

Uploading Publishers.zip…

@maforget
Copy link
Owner

Uploading Publishers.zip…

Your Publishers.zip didn't upload.

@ucapato
Copy link
Contributor

ucapato commented Apr 17, 2024

Uploading Publishers.zip…

Your Publishers.zip didn't upload.

Sorry,

Here it goes

For this Publishers.zip file, I added a few more from the collection I have:

Globo.png
Marvel Now!.png
Pipoca & Nanquim.png
Rio Gráfica e Editora.png
Webtoon#Line Webtoon.png
Publishers.zip

maforget added a commit that referenced this issue Apr 18, 2024
@maforget maforget changed the title Updating Publisher.zip Updating Publisher.zip/Format.zip May 31, 2024
@jrft1379
Copy link

jrft1379 commented Jun 8, 2024

Question about multiple publishers: There are plenty of books that have more than one publisher (Amalgam Comics, for example, are from DC and Marvel). How do you get CR to recognize that in the icons? I've tried a couple of methods, but they don't seem to work.

For reference, I have the individual publishers separated by a comma, that way they also show under the individual publisher when I narrow my library down.

I tried to have the icon names match the field name (i.e. DC, Marvel), but I realized that didn't work because CR isn't recognizing them as one entity that gets a special icon.

Also, I've noticed that the "/" character has no replacement value when it comes to the icons. For example, AiT/Planet Lar won't show up. I've tried substituting the "/" with "-" and just leaving a space instead. Neither worked for displaying the icon.

Any thoughts or ideas for either of these?

@maforget
Copy link
Owner

maforget commented Jun 8, 2024

Question about multiple publishers: There are plenty of books that have more than one publisher (Amalgam Comics, for example, are from DC and Marvel). How do you get CR to recognize that in the icons? I've tried a couple of methods, but they don't seem to work.

For reference, I have the individual publishers separated by a comma, that way they also show under the individual publisher when I narrow my library down.

The Publisher field isn't a multi value field like Tags for example. So adding a comma will not give you 2 value just a value that has a comma in it. But when parsing the Publisher filenames it does split it by comma and #.

private static IEnumerable<string> SplitIconKeys(string value)
{
return value.Split(',', '#');
}
private static IEnumerable<string> SplitIconKeysWithYear(string value)
{
foreach (string key in SplitIconKeys(value))
{
Match j = yearRegex.Match(key);
if (!j.Success)
{
yield return key;
continue;
}
int num = int.Parse(j.Groups["start"].Value);
int end = int.Parse(j.Groups["end"].Value);
string key2 = yearRegex.Replace(key, string.Empty);
for (int i = num; i <= end; i++)
{
yield return key2 + "(" + i + ")";
}
}
}

The program returns an array of icons when checking them, so technically it might be possible. I am looking at the tags section, it checks for text in the Tags section in the Special.zip file.

private IEnumerable<Image> GetIconsInternal()
{
Image img2 = PublisherIcons.GetImage(GetPublisherIconKey());
Image image;
if (img2 != null)
{
yield return img2;
}
else
{
img2 = (image = PublisherIcons.GetImage(Publisher));
if (image != null)
{
yield return img2;
}
}
img2 = (image = PublisherIcons.GetImage(GetImprintIconKey()));
if (image != null)
{
yield return img2;
}
else
{
img2 = (image = PublisherIcons.GetImage(Imprint));
if (image != null)
{
yield return img2;
}
}
img2 = (image = AgeRatingIcons.GetImage(AgeRating));
if (image != null)
{
yield return img2;
}
img2 = (image = FormatIcons.GetImage(ShadowFormat));
if (image != null)
{
yield return img2;
}
if (!string.IsNullOrEmpty(Tags))
{
foreach (string item in Tags.ListStringToSet(','))
{
img2 = (image = SpecialIcons.GetImage(item));
if (image != null)
{
yield return img2;
}
}
}
if (SeriesComplete == YesNo.Yes)
{
img2 = (image = SpecialIcons.GetImage("SeriesComplete"));
if (image != null)
{
yield return img2;
}
}
if (BlackAndWhite == YesNo.Yes)
{
img2 = (image = SpecialIcons.GetImage("BlackAndWhite"));
if (image != null)
{
yield return img2;
}
}
if (Manga == MangaYesNo.Yes)
{
img2 = (image = SpecialIcons.GetImage("Manga"));
if (image != null)
{
yield return img2;
}
}
if (Manga == MangaYesNo.YesAndRightToLeft)
{
img2 = (image = SpecialIcons.GetImage("MangaRightToLeft"));
if (image != null)
{
yield return img2;
}
}
}

public string GetPublisherIconKey()
{
string text = base.Publisher;
if (base.Year >= 0)
{
text = text + "(" + YearAsText + ")";
}
return text;
}

Solution may be to have 1 be the Imprint the other the Publisher, have a special icon with the 2 and use the map.ini file for special characters. So you could do an icon that has DC & Marvel and call it via the map.ini if it has special char so DC_Comics_Marvel.png = DC Comics, Marvel as an example. Check the Formats.zip for an existent example. Or use the Tags section with a special icon.

I don't know if multiple publisher are very prominent that it would require changing how they work internally, but implementing a way to spit out more than 1 icon, seems to be possible without any UI work.

@ucapato
Copy link
Contributor

ucapato commented Jun 28, 2024

Hi,

During my Collection Catalog process, I added some more publishers to Publisher.zip. All the previous icons were kept. In addition we have:

Amigo Comics#Amigo.png
Andrews McMeel#Andrews McMeel Publishing.png (update) *
Avatar Press.png (update) *
Black Mask#Black Mask Studios.png
Bloch#Bloch Infanto Juvenil.png
D-Arte#Editora D-Arte.png
Dead Dog.png
Delcourt.png (update)
Devir Livraria.png
DMG Entertainment#DMG#Valiant Comics#DMG Valiant Entertainment.png
Dom Quixote Publicações.png
Ediouro.png
Ego#Ego Editora.png
Farrar, Straus and Giroux#Farrar Straus Giroux#Farrar, Straus, Giroux.png
First Comics#First.png (update)
Fox Atomic Comics.png
Graphic India.png
Great Big Comics.png
Legendary Comics.png
Mudnag.png
Mythopoeia.png
Mythos Editora.png
Now Comics.png
Planeta Cómic.png
Rizzoli Lizard.png
Simon and Schuster#Simon & Schuster.png
Skript#Skript Editora.png
Super Genius Comics.png
Super Nova Produções#Super Nova.png
Ten Speed Press.png
Ubisoft#Ubisoft Entertainment.png
Vecchi editora.png
Warren#A Warren Magazine.png

  • Avatar Press and Andrews McMeel already existed in the original Publisher.zip, but they were quite old and with a different color than today's. Maybe I should keep both logs and mark with dates like it is made with DC Comics for example. Need some advise on that.

Publishers.zip

@denis-anikin
Copy link
Contributor

Any reason to update "Zenescope Entertainment"? In the original archive of old ComicRack there was a transparent background, now white

@denis-anikin
Copy link
Contributor

Same with "Drawn and Quarterly#Drawn & Quarterly" if I'm not mistaken.
Transparency is gone.

@ucapato
Copy link
Contributor

ucapato commented Jun 28, 2024

Hi @denis-anikin

Probably resolution was a bit better at those. But I'll remove the white background and update the zip content.

@ucapato
Copy link
Contributor

ucapato commented Jun 28, 2024

Here they come,

All the latest additions as previous mentioned, plus the removal background from "Drawn and Quarterly#Drawn & Quarterly" and "Zenescope Entertainment".

Publishers.zip

maforget added a commit that referenced this issue Jul 2, 2024
@maforget
Copy link
Owner

maforget commented Jul 2, 2024

I've updated the way the build is done in regard to these icons. The icons are not stored as zip files anymore, they are now stored as individual icons instead. So it is way easier to see what as been updated, added or removed. So if you check the commit 0340ab4, you can even see the icons directly on github now. For example the icon for Avatar Press shows the icon that was removed and the one that was added.

It will make cooperating easier, anyone that wants to contribute can just change the icons in the Resources\Icons folder and create a commit. Then you can do a PR, so your contribution will be tracked on github.

The project files will take any folder that is in Resources\Icons and add them to the project without any modification. It also support any number of directory that are present in that folder, for future proofing in case we want to add new zips. A powershell script will be called during the build and zip them up.

@maforget maforget pinned this issue Jul 2, 2024
@ucapato
Copy link
Contributor

ucapato commented Jul 2, 2024

Great @maforget,

Thanks a lot for this way of working to update the Resources\Icon folder.
So, in other words, do we need to use Git knowledge to be able to update in case bringing up a new icon?
I can copy the ComiRackCE Repo to my machine, perform the updates I want, and then add/commit/push to the Main Repository here in Git, isn't that right?
Sorry for the silly question, but I am trying to learn how to use Github productively.

@ucapato
Copy link
Contributor

ucapato commented Jul 2, 2024

I ended up making a fork of ComicRackCE, so I could add, commit and pushed the proposed Format icons to my own Fork. But I am note sure if this is what was exactly proposed here or if there is a better practice.

@maforget
Copy link
Owner

maforget commented Jul 2, 2024

@ucapato Yes that is the proper way to do it. You can use GitHub directly for basic things like uploading new files, renaming. Using a git client for local changes is required for more features. If you don't have or require the whole Visual Studio program just to edit icons, the Github desktop client is pretty good at using the git features with a GUI.

  • Clone your fork to a local folder, this is important since if you are downloading the repo only, git won't work.
  • It is suggested to keep the master branch clean. If you commit on it directly it will be harder to sync the changes with mine. That can be done via a Update from upstream/master on the client or on Github a sync button will appear if there are changes to fetch.
  • You should instead create a branch based on the latest master when you want to create a PR. With the client it is easy to switch branches and the files on your computer will change to reflect that. In the Github client if you set the fork behavior in the repository settings to contribute to parent, when you create a fork it will be based on my master.
  • With your patch branch checked-out it is only a matter of replacing the files in the folder.
  • The client will show you what was modified, deleted, added. You can then create a commit by giving it some description of the change.
  • That commit is local only, you can do changes or append to that commit while only local. Once you Push it, it will be sent to Github and at that point doing any further changes is not recommended. Instead just push another commit to fix any mistake.
  • Then either on Github or through their client you can create a Pull Request from your patch branch to my master. Any further changes you or I push to your patch branch will show up in the PR.
  • I have actions setup so that on PR, once I approve it. A build for that PR will be done and a bot will post a link to it in the PR thread, so it is easier to test that build. On each and every commit you do a the build will be kept updated.
  • Once the PR is merged into my master, you can then delete that patch branch if you want. But most just keep it and just do another branch on further changes.

Warning

If you do any contribution, I suggest that you make sure the checkbox, keep your email private is enabled in Github settings or your email address will be attached to each and every commit you do. With that setting enabled a github email address proxy will be used instead.

@ucapato
Copy link
Contributor

ucapato commented Jul 3, 2024

Hi @maforget ,

Appreciate your assistance and patience in explaining how Git and Github work. I am still sometimes lost with the technical words and behavior, but to ride a bike we need to fall sometimes, right? Here we go:

  1. I started with the left foot. Had done a fork, clone it into my Client (I am using IntelliJ instead of Visual Studio), and updated the Format folder with my suggested Icons in the Master Branch. Only after that, I have read your advice here.

  2. Still, no problem (I guess), I've found some guidelines and I was able to restore my branch by adding the Upstream Remote from your Master, resetting it, and pushing your Master to my Fork again. So now I got my Master's exactly as yours.

  3. Now I have created a branch (git checkout -b NewUpdatedIcons in IntelliJ Terminal window) for my Master Branch and desired changes I'll apply to this NewUpdatedIcons branch only.

  4. When you mention " In the GitHub client if you set the fork behavior in the repository settings to contribute to parent, when you create a fork it will be based on my master". How do I achieve that? Or, should I simply click on "Contribute" when adding changes to my NewUpdatedIcons branch as I see in the snapshot below:

image
  1. But if my assumption on Item 4 is correct. I first need to make my changes, add, commit, and push in my client branch, and this will be "sent" to my branch in Github, only then I can do PR. By PR I understand I am asking to add changes to your Repo. Did I get this right?

@maforget
Copy link
Owner

maforget commented Jul 3, 2024

@ucapato When I talk about the Github Client I was referring to the Desktop client you can install on your computer. You can do the same thing with your IDE, although it may be more straight forward to use the client. https://github.com/apps/desktop

In the GitHub client if you set the fork behavior in the repository settings to contribute to parent, when you create a fork it will be based on my master.

The setting I was referring too was this one.
Screenshot 2024-07-02 202548
Screenshot 2024-07-02 202757

It just determines how a new branch will be created either from your master or from mine. If from yours it would be necessary to do what you did in point 2. With the option to contribute, like you can see in the help message on the screenshots, it just creates a branch based on my master. So if I push something new and your master lags behind the new branches will still be based on the newest code. On the website when creating a branch you can choose from which repo/branch to create it. In the Github desktop client a upstream/master is automatically added or your need to do it manually like you did.

Your assumption in point 5 are correct except the contribute option like I talked about earlier. It doesn't do anything until you push something to your repo. At that point it will suggest to merge your NewUpdatedIcons to my master. But you need to push code before that becomes an option. But yes a PR is like asking to add changes to my repo.

Git is very confusing, I am just starting to be somewhat knowledgeable enough to use it effectively. It also doesn't help that all the help all refers to the command line. I am conformable using the command line, but doing something via 2 click in a GUI is easier than having me trying to use a command I will forget anyway. Suggestion I can give you is that you can create as much branches that you want locally and test things out. You can create a backup branch based on another in case you mess up. As long as you don't push code, it stays local.

For example on your error in point 1, where you committed in master. If you didn't push to Github, you could just have done a Reset (mixed keeps your changed file but removes your commit). Stash the changes (keep for later) so that you can change branches and then push those changes to that new branch. Or create a new branch and cherry-picking the changes from your master and resetting it (with hard, so it deleted changes).

@ucapato
Copy link
Contributor

ucapato commented Jul 4, 2024

Ok,

I think I got it now (I hope). I added the new format icons in addition to two new ones (Main Series and Year Zero), set my branch as a contributor to yours, committed, pushed, and did the PR.

image

Definitely from the Desktop Client, the whole Git process looks much easier, but I'll try my chances (sometimes) in the regular command prompt to see how to do this PR.

Thanks a lot for all the advice and way forward here.

@chowbok
Copy link

chowbok commented Jul 17, 2024

The Andrews-McMeel icon change is a downgrade, IMO. It's an icon -- the text is unnecessary. Also, the transparency has been removed.

@ucapato
Copy link
Contributor

ucapato commented Aug 14, 2024

The Andrews-McMeel icon change is a downgrade, IMO. It's an icon -- the text is unnecessary. Also, the transparency has been removed.

Hi @chowbok ,

The latest merge brings the suggested change:

image

@maforget
Copy link
Owner

I've moved the files that where in Resources to Output/Resources. So the Publisher directory is now Output\Resources\Icons\Publishers for the source. The final directory will still be the same.

The Resources directory now contains the program icons that were previously embedded instead.

@maforget
Copy link
Owner

Just a FYI when adding publisher icons, adding an icon with no date along with those with dates, like in this commit b62cd2c. The icon without a date should be the latest one.

The reason is that when adding comics where the date is proposed (pale grey), it will consider the date empty and show the old icon. At least for those that have these dates in proposed value, we should at least show the latest one and not the old one.

@ucapato
Copy link
Contributor

ucapato commented Aug 29, 2024

Just a FYI when adding publisher icons, adding an icon with no date along with those with dates, like in this commit b62cd2c. The icon without a date should be the latest one.

The reason is that when adding comics where the date is proposed (pale grey), it will consider the date empty and show the old icon. At least for those that have these dates in proposed value, we should at least show the latest one and not the old one.

ok,

So I can "invert" the naming convention from the proposed Publisher Icons I have sent, like Dark Horse's Example, today is like:

Dark Horse#Dark Horse Comics.png ==> Oldest Icon
Dark Horse(1990)#Dark Horse Comics(1990).png
Dark Horse(1991)#Dark Horse Comics(1991).png
Dark Horse(1992-2003)#Dark Horse Comics(1992-2003).png
Dark Horse(2004-2050)#Dark Horse Comics(2004-2050).png ==> Newest Icon

It should be like:
Dark Horse(1986-1989)#Dark Horse Comics(1986-1989).png ==> Oldest Icon
Dark Horse(1990)#Dark Horse Comics(1990).png
Dark Horse(1991)#Dark Horse Comics(1991).png
Dark Horse(1992-2003)#Dark Horse Comics(1992-2003).png
Dark Horse#Dark Horse Comics.png ==> Newest Icon

Indeed it makes much more sense and makes us not try to "guess" what is the ending date for the latest/newest Publisher Icon.
I can fix this naming convention for all those Publishers with a date. I'll do that on my next Commit.

Note: For the future, it would be nice if we could determine the Icons date by Year and Month instead, but I am not sure how complex it is to implement in the code. Publisher names could be like: "Publisher(YYYYMM-YYYYMM).png". But it is just a thought.

@killo3967
Copy link
Author

Please add Caliber Comics logo when you could.

https://calibercomics.com/

CaliberLogo

@maforget
Copy link
Owner

Please add Caliber Comics logo when you could.

Done

@killo3967
Copy link
Author

Please add "Best Jackett Press" logo when you could

https://imgur.com/ILJsN7U

firefox_qbqqGBYSqu

@maforget
Copy link
Owner

Please add "Best Jackett Press" logo when you could

done, the winget update should be automated now. Just waiting for approval.

@killo3967
Copy link
Author

Please add publisher "Standaard Uitgeverij" when you could
Standaard Uitgeverij

@maforget
Copy link
Owner

Please add publisher "Standaard Uitgeverij" when you could

Done in b6392f3

@killo3967
Copy link
Author

Please add 'Vault' to 'Vault Comics' logo name when you could.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

6 participants