installer: Fixed renaming tao.pdf to full name; ide/About: Fixed credit line too...
authorJerome St-Louis <jerome@ecere.com>
Thu, 8 Mar 2012 15:28:01 +0000 (10:28 -0500)
committerJerome St-Louis <jerome@ecere.com>
Thu, 8 Mar 2012 15:28:01 +0000 (10:28 -0500)
ide/src/about.ec
installer/src/installer.ec

index a6458f1..4a71c49 100644 (file)
@@ -124,8 +124,9 @@ class AboutIDE : Window
          "\n"
          "   All the guys on #ecere for moral support\n"
          "\n"
-         "   #launchpad, #ubuntu-packaging, #ubuntu-motu (tumbleweed, jtaylor...)\n"
-         "     For help to finally resolve these PPA issues!\n"
+         "   #launchpad, #ubuntu-packaging,\n"
+         "      #ubuntu-motu (tumbleweed, jtaylor...)\n"
+         "      For help to finally resolve these PPA issues!\n"
          "\n"
          "   freebyte.com\n"
          "\n"
index 8674383..7f7e9b2 100644 (file)
@@ -1432,6 +1432,13 @@ class InstallThread : Thread
                   documentation[ecereBook].GetFullPath(docPath);
                   PathCat(docPath, "Ecere Tao of Programming [work in progress].pdf");
 
+                  {
+                     char tao[MAX_LOCATION] ;
+                     documentation[ecereBook].GetFullPath(tao);
+                     PathCat(tao, "tao.pdf");
+                     RenameFile(tao, docPath);
+                  }
+
                   strcpy(destPath, startMenuPath);
                   PathCat(destPath, "ECERE SDK\\The Ecere Tao of Programming.lnk");
                   CreateLink(docPath, destPath, null);