mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-09-10 04:16:02 -04:00
Adds some suggested files to remove
This commit is contained in:
parent
a5504a4b74
commit
dfc6e91321
@ -202,8 +202,8 @@ public final class ModpackManager {
|
||||
|
||||
}
|
||||
|
||||
public static final List<String> MODPACK_BLACK_LIST = Arrays.asList(new String[] { "usernamecache.json", "asm", "logs", "backups", "versions", "assets", "usercache.json", "libraries", "crash-reports", "launcher_profiles.json", "NVIDIA", "AMD", "TCNodeTracker", "screenshots", "natives", "native", "$native", "pack.json", "launcher.jar", "launcher.pack.lzma", "hmclmc.log" });
|
||||
public static final List<String> MODPACK_SUGGESTED_BLACK_LIST = Arrays.asList(new String[] { "saves", "servers.dat", "options.txt", "optionsshaders.txt", "mods/VoxelMods" });
|
||||
public static final List<String> MODPACK_BLACK_LIST = Arrays.asList(new String[] { "usernamecache.json", "asm", "logs", "backups", "versions", "assets", "usercache.json", "libraries", "crash-reports", "launcher_profiles.json", "NVIDIA", "AMD", "TCNodeTracker", "screenshots", "natives", "native", "$native", "pack.json", "launcher.jar", "minetweaker.log", "launcher.pack.lzma", "hmclmc.log" });
|
||||
public static final List<String> MODPACK_SUGGESTED_BLACK_LIST = Arrays.asList(new String[] { "fonts", "saves", "servers.dat", "options.txt", "optionsof.txt", "journeymap", "optionsshaders.txt", "mods/VoxelMods" });
|
||||
|
||||
/**
|
||||
* < String, Boolean, Boolean >: Folder/File name, Is Directory,
|
||||
|
@ -178,8 +178,7 @@ public class ModpackWizard extends WizardBranchController {
|
||||
throw new IllegalArgumentException(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -100,6 +100,8 @@ public class ZipEngine {
|
||||
zos.putNextEntry(new ZipEntry(pathName));
|
||||
putDirectoryImpl(file, basePath, pathNameCallback);
|
||||
} else {
|
||||
if (".DS_Store".equals(file.getName())) // For mac computers.
|
||||
continue;
|
||||
pathName = file.getPath().substring(basePath.length() + 1);
|
||||
if (pathNameCallback != null)
|
||||
pathName = pathNameCallback.apply(pathName, false);
|
||||
|
@ -64,15 +64,17 @@ public class NavProgress implements ResultProgressHandle {
|
||||
|
||||
public void setProgress(final int currentStep, final int totalSteps) {
|
||||
invoke(() -> {
|
||||
if (totalSteps == -1)
|
||||
if (totalSteps == -1) {
|
||||
if (!progressBar.isIndeterminate())
|
||||
progressBar.setIndeterminate(true);
|
||||
else {
|
||||
} else {
|
||||
if (currentStep > totalSteps || currentStep < 0) {
|
||||
if (currentStep == -1 && totalSteps == -1)
|
||||
return;
|
||||
throw new IllegalArgumentException("Bad step values: "
|
||||
+ currentStep + " out of " + totalSteps);
|
||||
}
|
||||
if (progressBar.isIndeterminate())
|
||||
progressBar.setIndeterminate(false);
|
||||
progressBar.setMaximum(totalSteps);
|
||||
progressBar.setValue(currentStep);
|
||||
@ -83,7 +85,7 @@ public class NavProgress implements ResultProgressHandle {
|
||||
public void setBusy(final String description) {
|
||||
invoke(() -> {
|
||||
lbl.setText(description == null ? " " : description);
|
||||
|
||||
if (!progressBar.isIndeterminate())
|
||||
progressBar.setIndeterminate(true);
|
||||
});
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ import javax.swing.JTextArea;
|
||||
* SimpleWizard created for it, acting as the WizardController for
|
||||
* calls to WizardPanelProvider.createPanel().
|
||||
*/
|
||||
final class SimpleWizardInfo implements WizardControllerImplementation {
|
||||
public final class SimpleWizardInfo implements WizardControllerImplementation {
|
||||
|
||||
private WeakReference wizard = null;
|
||||
private final String[] descriptions;
|
||||
@ -318,4 +318,8 @@ final class SimpleWizardInfo implements WizardControllerImplementation {
|
||||
boolean cancel(Map settings) {
|
||||
return provider.cancel(settings);
|
||||
}
|
||||
|
||||
public WizardPanelProvider getProvider() {
|
||||
return provider;
|
||||
}
|
||||
}
|
||||
|
@ -8,20 +8,22 @@ and include the License file at http://www.netbeans.org/cddl.txt.
|
||||
If applicable, add the following below the CDDL Header, with the fields
|
||||
enclosed by brackets [] replaced by your own identifying information:
|
||||
"Portions Copyrighted [year] [name of copyright owner]" */
|
||||
/*
|
||||
/*
|
||||
* WizardBranchController.java
|
||||
*
|
||||
* Created on March 5, 2005, 6:33 PM
|
||||
*/
|
||||
|
||||
package org.jackhuang.hellominecraft.util.ui.wizard.spi;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Extend this class to create wizards which have branch points in them -
|
||||
* either override <code>getWizardForStep</code> to return one or another a wizard which
|
||||
* either override <code>getWizardForStep</code> to return one or another a
|
||||
* wizard which
|
||||
* represents the subsequent steps after a decision point, or override
|
||||
* <code>getPanelProviderForStep</code> to provide instances of <code>WizardPanelProvider</code>
|
||||
* <code>getPanelProviderForStep</code> to provide instances of
|
||||
* <code>WizardPanelProvider</code>
|
||||
* if there are no subsequent branch points and the continuation is a
|
||||
* simple wizard.
|
||||
* <p>
|
||||
@ -39,7 +41,8 @@ import java.util.Map;
|
||||
* another <code>WizardBranchController</code> and return the result of its
|
||||
* <code>createWizard</code> method.
|
||||
* <p>
|
||||
* Note that it is important to cache the instances of <code>WizardPanelProvider</code>
|
||||
* Note that it is important to cache the instances of
|
||||
* <code>WizardPanelProvider</code>
|
||||
* or <code>Wizard</code> which are returned here - this class's methods may
|
||||
* be called frequently to determine if the sequence of steps (the next wizard)
|
||||
* have changed.
|
||||
@ -47,6 +50,7 @@ import java.util.Map;
|
||||
* @author Tim Boudreau
|
||||
*/
|
||||
public abstract class WizardBranchController {
|
||||
|
||||
private final SimpleWizardInfo base;
|
||||
|
||||
/**
|
||||
@ -58,34 +62,39 @@ public abstract class WizardBranchController {
|
||||
* selects on its final pane, which the WizardBranchController can use
|
||||
* to decide what the next steps should be.
|
||||
*/
|
||||
protected WizardBranchController (WizardPanelProvider base) {
|
||||
this (new SimpleWizardInfo (base));
|
||||
protected WizardBranchController(WizardPanelProvider base) {
|
||||
this(new SimpleWizardInfo(base));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new WizardBranchController using the passed WizardPage
|
||||
* instances as the initial pages of the wizard.
|
||||
*
|
||||
* @param pages An array of WizardPage instances
|
||||
*/
|
||||
protected WizardBranchController (WizardPage[] pages) {
|
||||
this (WizardPage.createWizardPanelProvider(pages));
|
||||
protected WizardBranchController(WizardPage[] pages) {
|
||||
this(WizardPage.createWizardPanelProvider(pages));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new WizardBranchController using the passed WizardPage
|
||||
* as the initial page of the wizard. The initial page should
|
||||
* determine the subsequent steps of the wizard.
|
||||
*
|
||||
* @param onlyPage An instance of WizardPage
|
||||
*/
|
||||
protected WizardBranchController (WizardPage onlyPage) {
|
||||
this (WizardPage.createWizardPanelProvider(onlyPage));
|
||||
protected WizardBranchController(WizardPage onlyPage) {
|
||||
this(WizardPage.createWizardPanelProvider(onlyPage));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new WizardBranchController, using the passed <code>SimpleWizardInfo</code>
|
||||
* Create a new WizardBranchController, using the passed
|
||||
* <code>SimpleWizardInfo</code>
|
||||
* for the initial panes of the wizard.
|
||||
*/
|
||||
WizardBranchController (SimpleWizardInfo base) {
|
||||
if (base == null) throw new NullPointerException ("No base");
|
||||
WizardBranchController(SimpleWizardInfo base) {
|
||||
if (base == null)
|
||||
throw new NullPointerException("No base");
|
||||
this.base = base;
|
||||
}
|
||||
|
||||
@ -94,7 +103,8 @@ public abstract class WizardBranchController {
|
||||
* The UI for the current step should have put sufficient data into the
|
||||
* settings map to decide what to return; return null if not.
|
||||
* <p>
|
||||
* The default implementation delegates to <code>getPanelProviderForStep()</code>
|
||||
* The default implementation delegates to
|
||||
* <code>getPanelProviderForStep()</code>
|
||||
* and returns a <code>Wizard</code> representing the result of that
|
||||
* call.
|
||||
* <p>
|
||||
@ -122,7 +132,8 @@ public abstract class WizardBranchController {
|
||||
}
|
||||
|
||||
/**
|
||||
* Override this method to return a <code>WizardPanelProvider</code> representing the
|
||||
* Override this method to return a <code>WizardPanelProvider</code>
|
||||
* representing the
|
||||
* steps from here to the final step of the wizard, varying the returned
|
||||
* object based on the contents of the map and the step in question.
|
||||
* The default implementation of this method throws an <code>Error</code> -
|
||||
@ -139,8 +150,8 @@ public abstract class WizardBranchController {
|
||||
* will have written content into
|
||||
*/
|
||||
protected WizardPanelProvider getPanelProviderForStep(String step, Map settings) {
|
||||
throw new Error ("Override either createInfoForStep or " +
|
||||
"createWizardForStep");
|
||||
throw new Error("Override either createInfoForStep or "
|
||||
+ "createWizardForStep");
|
||||
}
|
||||
|
||||
SimpleWizardInfo getBase() {
|
||||
@ -149,6 +160,7 @@ public abstract class WizardBranchController {
|
||||
|
||||
private WizardImplementation wizard = null;
|
||||
private Wizard real = null;
|
||||
|
||||
/**
|
||||
* Create a Wizard to represent this branch controller. The resulting
|
||||
* Wizard instance is cached; subsequent calls to this method will return
|
||||
@ -156,8 +168,8 @@ public abstract class WizardBranchController {
|
||||
*/
|
||||
public final Wizard createWizard() {
|
||||
if (wizard == null) {
|
||||
wizard = new BranchingWizard (this);
|
||||
real = new Wizard (wizard);
|
||||
wizard = new BranchingWizard(this);
|
||||
real = new Wizard(wizard);
|
||||
}
|
||||
return real;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user