-
-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
310 changed files
with
14,886 additions
and
3,492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Controller script to pass to the uninstaller to get it to run automatically. | ||
// It's passed to the maintenance tool during installation if there is already an | ||
// installation present with: <target dir>/maintenancetool.exe --script=<target dir>/scripts/auto_uninstall.qs. | ||
// This is required so that the user doesn't have to see/deal with the uninstaller in the middle of | ||
// an installation. | ||
|
||
function Controller() | ||
{ | ||
gui.clickButton(buttons.NextButton); | ||
gui.clickButton(buttons.NextButton); | ||
|
||
installer.uninstallationFinished.connect(this, this.uninstallationFinished); | ||
} | ||
|
||
Controller.prototype.uninstallationFinished = function() | ||
{ | ||
gui.clickButton(buttons.NextButton); | ||
} | ||
|
||
Controller.prototype.FinishedPageCallback = function() | ||
{ | ||
gui.clickButton(buttons.FinishButton); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<Package> | ||
<DisplayName>Notepad Next</DisplayName> | ||
<Description>Notepad Next v0.1</Description> | ||
<Version>0.1</Version> | ||
<Description>Notepad Next v0.2</Description> | ||
<Version>0.2</Version> | ||
<ForcedInstallation>true</ForcedInstallation> | ||
<ReleaseDate>2019-03-19</ReleaseDate> | ||
<ReleaseDate>2020-04-24</ReleaseDate> | ||
<!-- <RequiresAdminRights>true</RequiresAdminRights> --> | ||
<Script>installscript.qs</Script> | ||
<UserInterfaces> | ||
<UserInterface>installoptions.ui</UserInterface> | ||
<UserInterface>targetwidget.ui</UserInterface> | ||
</UserInterfaces> | ||
</Package> |
Oops, something went wrong.