-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwindows.iss
30 lines (26 loc) · 1.02 KB
/
windows.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[Setup]
AppName=PyConda
AppVersion=1.0.0
DefaultDirName={pf}\PyConda
OutputDir=Output
OutputBaseFilename=PyConda
Compression=lzma
SolidCompression=yes
AppPublisher=Pabitra Banerjee
AppSupportURL=https://pabitrabanerjee.me
AppUpdatesURL=https:pyconda.explorecode.live
AppCopyright=MIT License , 2023 , Pabitra Banerjee
SetupIconFile=PyConda.ico
[Files]
Source: "shell.py"; DestDir: "{app}"
Source: "PyConda.py"; DestDir: "{app}"
Source: "strings_with_arrows.py"; DestDir: "{app}"
Source: "grammer.txt"; DestDir: "{app}"
[Icons]
Name: "{group}\PyConda"; Filename: "{app}\PyConda.exe"
[Registry]
Root: HKCR; Subkey: ".pc"; ValueType: string; ValueName: ""; ValueData: "PyCondaFile"; Flags: uninsdeletevalue
Root: HKCR; Subkey: "PyCondaFile"; ValueType: string; ValueName: ""; ValueData: "PyConda File"; Flags: uninsdeletekey
Root: HKCR; Subkey: "PyCondaFile\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\shell.py"" ""%1"""
[UninstallRun]
Filename: {uninstallexe}; Parameters: "/DELREG=HKCR\.pc /DELREG=HKCR\PyCondaFile"