Skip to content

Commit

Permalink
Fixes #57, Fixes #108 - Upgrading an existing installation should be …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
MeFisto94 committed Mar 6, 2018
1 parent 12d4c11 commit 03f6556
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
-->

<wizard xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="wizard-components.xsd">
<!--component class="org.mycompany.wizard.panels.ShortcutCreationPanel"/-->
<component class="org.mycompany.wizard.panels.ShortcutCreationPanel"/>
</wizard>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.mycompany;

import java.util.List;
import java.util.ArrayList;
import org.netbeans.installer.product.components.ProductConfigurationLogic;
import org.netbeans.installer.utils.exceptions.InitializationException;
import org.netbeans.installer.utils.exceptions.InstallationException;
Expand All @@ -17,9 +18,10 @@ public class ConfigurationLogic extends ProductConfigurationLogic {

// constructor //////////////////////////////////////////////////////////////////
public ConfigurationLogic() throws InitializationException {
wizardComponents = Wizard.loadWizardComponents(
/*wizardComponents = Wizard.loadWizardComponents(
WIZARD_COMPONENTS_URI,
getClass().getClassLoader());
getClass().getClassLoader());*/
wizardComponents = new ArrayList<>();
}

public List<WizardComponent> getWizardComponents() {
Expand Down
42 changes: 0 additions & 42 deletions nbi/stub/ext/components/products/jdk/src/org/mycompany/wizard.xml

This file was deleted.

0 comments on commit 03f6556

Please sign in to comment.