Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nicol authored and nicol committed Nov 18, 2024
1 parent e559418 commit 1c90287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/main/java/org/beta/WikiGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import java.io.IOException;
import java.util.List;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.lang3.SystemUtils;
import org.magic.api.interfaces.MTGPlugin;
import org.magic.api.interfaces.MTGPlugin.PLUGINS;
Expand Down Expand Up @@ -64,7 +66,7 @@ private static void buildePluginsIndex() throws IOException {


ps.forEach(p->{

builder.append("![](https://raw.githubusercontent.com/nicho92/MtgDesktopCompanion/refs/heads/master/src/main/resources/icons/plugins/"+p.getName().toLowerCase().replace(" ","%20")+".png)").append("|");

builder.append("[").append(p.getName()).append("]")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import org.magic.api.beans.MTGCard;
import org.magic.api.beans.MTGEdition;
import org.magic.api.beans.technical.MTGProperty;
import org.magic.api.exports.impl.PDFExport;
import org.magic.api.interfaces.abstracts.AbstractPicturesEditorProvider;
import org.magic.game.model.abilities.LoyaltyAbilities;
import org.magic.game.model.factories.AbilitiesFactory;
Expand Down Expand Up @@ -205,11 +204,6 @@ public String getVersion() {
return "0.4.1-alpha";
}

@Override
public Icon getIcon() {
return new ImageIcon(PDFExport.class.getResource("/icons/plugins/smf.png"));
}

@Override
public STATUT getStatut() {
return STATUT.BETA;
Expand Down
File renamed without changes

0 comments on commit 1c90287

Please sign in to comment.