change name in setup program

This commit is contained in:
Basile Burg 2018-10-20 15:26:49 +02:00
parent 0634d4f0a1
commit 766389876c
1 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
module cesetup; module setup;
import import
std.stdio, std.file, std.process, std.path, std.string, std.getopt; std.stdio, std.file, std.process, std.path, std.string, std.getopt;
@ -96,8 +96,8 @@ static this()
{ {
version(Windows) version(Windows)
{ {
exePath = environment.get("PROGRAMFILES") ~ r"\Coedit\"; exePath = environment.get("PROGRAMFILES") ~ r"\dexed\";
datPath = environment.get("APPDATA") ~ r"\Coedit\"; datPath = environment.get("APPDATA") ~ r"\dexed\";
shortCutPath = environment.get("USERPROFILE") ~ r"\Desktop\"; shortCutPath = environment.get("USERPROFILE") ~ r"\Desktop\";
} }
else else
@ -106,13 +106,13 @@ static this()
if (asSu) if (asSu)
{ {
exePath = "/usr/bin/"; exePath = "/usr/bin/";
datPath = "/home/" ~ environment.get("SUDO_USER") ~ "/.config/Coedit/"; datPath = "/home/" ~ environment.get("SUDO_USER") ~ "/.config/dexed/";
shortCutPath = "/usr/share/applications/"; shortCutPath = "/usr/share/applications/";
} }
else else
{ {
exePath = "/home/" ~ environment.get("USER") ~ "/bin/"; exePath = "/home/" ~ environment.get("USER") ~ "/bin/";
datPath = "/home/" ~ environment.get("USER") ~ "/.config/Coedit/"; datPath = "/home/" ~ environment.get("USER") ~ "/.config/dexed/";
shortCutPath = "/home/" ~ environment.get("USER") ~ "/.local/share/applications/"; shortCutPath = "/home/" ~ environment.get("USER") ~ "/.local/share/applications/";
} }
} }
@ -163,16 +163,16 @@ void main(string[] args)
return; return;
} }
if (!uninstall) Formater.justify!'C'(format("Coedit %s - setup", if (!uninstall) Formater.justify!'C'(format("dexed %s - setup",
import("version.txt")[1..$].chomp)); import("version.txt")[1..$].chomp));
else Formater.justify!'C'("Coedit uninstaller"); else Formater.justify!'C'("dexed uninstaller");
Formater.separate; Formater.separate;
version(Windows) Formater.justify!'L'("the setup program must be run as admin"); version(Windows) Formater.justify!'L'("the setup program must be run as admin");
else else
{ {
if(!asSu) Formater.justify!'L'("Coedit will be accessible to the current user"); if(!asSu) Formater.justify!'L'("dexed will be accessible to the current user");
else Formater.justify!'L'("Coedit will be accessible to all the users"); else Formater.justify!'L'("dexed will be accessible to all the users");
} }
Formater.separate; Formater.separate;
@ -376,7 +376,7 @@ void postInstall()
char[] desktopFolder = _desktopFolder.ptr.fromStringz(); char[] desktopFolder = _desktopFolder.ptr.fromStringz();
string target = exePath ~ "dexed.exe"; string target = exePath ~ "dexed.exe";
string wdir = exePath ~ ""; string wdir = exePath ~ "";
const(wchar)* linkPath = buildNormalizedPath(desktopFolder, "Coedit.lnk").toUTF16z(); const(wchar)* linkPath = buildNormalizedPath(desktopFolder, "dexed.lnk").toUTF16z();
CoInitialize(null); CoInitialize(null);
IShellLinkA shellLink; IShellLinkA shellLink;
@ -412,7 +412,7 @@ void postUninstall()
{ {
version(Windows) version(Windows)
{ {
tryRemove(shortCutPath ~ "Coedit.lnk"); tryRemove(shortCutPath ~ "dexed.lnk");
} }
else version(linux) else version(linux)
{ {