Skip to content

Commit 03f6556

Browse files
committed
Fixes #57, Fixes #108 - Upgrading an existing installation should be possible now. Also the warnings should disappear when doing a clean install. In theory during the installation one should be prompted whether one wants to add a desktop shortcut for blender
1 parent 12d4c11 commit 03f6556

3 files changed

Lines changed: 5 additions & 45 deletions

File tree

nbi/stub/ext/components/products/blender/src/org/mycompany/wizard.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
-->
4040

4141
<wizard xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="wizard-components.xsd">
42-
<!--component class="org.mycompany.wizard.panels.ShortcutCreationPanel"/-->
42+
<component class="org.mycompany.wizard.panels.ShortcutCreationPanel"/>
4343
</wizard>

nbi/stub/ext/components/products/jdk/src/org/mycompany/ConfigurationLogic.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.mycompany;
22

33
import java.util.List;
4+
import java.util.ArrayList;
45
import org.netbeans.installer.product.components.ProductConfigurationLogic;
56
import org.netbeans.installer.utils.exceptions.InitializationException;
67
import org.netbeans.installer.utils.exceptions.InstallationException;
@@ -17,9 +18,10 @@ public class ConfigurationLogic extends ProductConfigurationLogic {
1718

1819
// constructor //////////////////////////////////////////////////////////////////
1920
public ConfigurationLogic() throws InitializationException {
20-
wizardComponents = Wizard.loadWizardComponents(
21+
/*wizardComponents = Wizard.loadWizardComponents(
2122
WIZARD_COMPONENTS_URI,
22-
getClass().getClassLoader());
23+
getClass().getClassLoader());*/
24+
wizardComponents = new ArrayList<>();
2325
}
2426

2527
public List<WizardComponent> getWizardComponents() {

nbi/stub/ext/components/products/jdk/src/org/mycompany/wizard.xml

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)