-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Register Text Editor as a file type hander for .txt files
- Loading branch information
1 parent
bdb3b00
commit b8d23c4
Showing
25 changed files
with
93 additions
and
237 deletions.
There are no files selected for viewing
Binary file removed
BIN
-842 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_0_Setup.msi
Binary file not shown.
Binary file removed
BIN
-842 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_1_Setup.msi
Binary file not shown.
Binary file removed
BIN
-843 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_2_Setup.msi
Binary file not shown.
Binary file removed
BIN
-843 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_3_Setup.msi
Binary file not shown.
Binary file removed
BIN
-843 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_4_Setup.msi
Binary file not shown.
Binary file removed
BIN
-843 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_5_Setup.msi
Binary file not shown.
Binary file removed
BIN
-843 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_6_Setup.msi
Binary file not shown.
Binary file removed
BIN
-847 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_7_Setup.msi
Binary file not shown.
Binary file removed
BIN
-847 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_8_Setup.msi
Binary file not shown.
Binary file removed
BIN
-847 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_0_9_Setup.msi
Binary file not shown.
Binary file removed
BIN
-847 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_1_0_Setup.msi
Binary file not shown.
Binary file removed
BIN
-847 KB
Text Editor Setup/Text Editor Setup-SetupFiles/Text_Editor_1_1_1_Setup.msi
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Binary file not shown.
Binary file not shown.
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,56 @@ | ||
; Script generated by the Inno Setup Script Wizard. | ||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! | ||
|
||
#define MyAppName "Text Editor" | ||
#define MyAppVersion "1.1.2" | ||
#define MyAppPublisher "Zach, Inc." | ||
#define MyAppExeName "Text Editor.exe" | ||
#define MyAppAssocName "Text File" | ||
#define MyAppAssocExt ".txt" | ||
#define MyAppAssocKey StringChange(MyAppAssocName, " ", "") + MyAppAssocExt | ||
|
||
[Setup] | ||
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. | ||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) | ||
AppId={{AEAF16D2-ED3B-417F-ABB6-B8A032C7CE2F} | ||
AppName={#MyAppName} | ||
AppVersion={#MyAppVersion} | ||
;AppVerName={#MyAppName} {#MyAppVersion} | ||
AppPublisher={#MyAppPublisher} | ||
DefaultDirName=C:\Program Files (x86)\{#MyAppName} | ||
ChangesAssociations=yes | ||
DisableProgramGroupPage=yes | ||
LicenseFile=C:\Users\zacha\Documents\License Agreement.rtf | ||
; Uncomment the following line to run in non administrative install mode (install for current user only.) | ||
;PrivilegesRequired=lowest | ||
OutputDir=C:\Users\zacha\source\repos\Text Editor\Text Editor\Inno | ||
OutputBaseFilename=Text_Editor_1_1_2_Setup | ||
Compression=lzma | ||
SolidCompression=yes | ||
WizardStyle=modern | ||
|
||
[Languages] | ||
Name: "english"; MessagesFile: "compiler:Default.isl" | ||
|
||
[Tasks] | ||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked | ||
|
||
[Files] | ||
Source: "C:\Users\zacha\source\repos\Text Editor\Text Editor\bin\Debug\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "C:\Users\zacha\source\repos\Text Editor\Text Editor\bin\Debug\textedit-help.chm"; DestDir: "{app}"; Flags: ignoreversion | ||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files | ||
|
||
[Registry] | ||
Root: HKCR; Subkey: "{#MyAppAssocExt}\OpenWithProgids"; ValueType: string; ValueName: "{#MyAppAssocKey}"; ValueData: ""; Flags: uninsdeletevalue | ||
Root: HKCR; Subkey: "{#MyAppAssocKey}"; ValueType: string; ValueName: ""; ValueData: "{#MyAppAssocName}"; Flags: uninsdeletekey | ||
Root: HKCR; Subkey: "{#MyAppAssocKey}\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "C:\Windows\System32\imageres.dll,246" | ||
Root: HKCR; Subkey: "{#MyAppAssocKey}\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\{#MyAppExeName}"" ""%1""" | ||
Root: HKCR; Subkey: "Applications\{#MyAppExeName}\SupportedTypes"; ValueType: string; ValueName: ".txt"; ValueData: "" | ||
|
||
[Icons] | ||
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" | ||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon | ||
|
||
[Run] | ||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent | ||
|
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