Commit d596d321c25de2c48bd5db0accfc88aa33ffa48b
1 parent
497da5ae
no message
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
anubis_dev/distrib_tools/install.iss
| ... | ... | @@ -17,6 +17,7 @@ AppID={{57A4DD42-AAB2-4C00-AB8F-F9458E95F017} |
| 17 | 17 | AppCopyright=© 2004-2005( Constructive Mathematics |
| 18 | 18 | WizardImageBackColor=clBlue |
| 19 | 19 | OutputBaseFilename=Setup - Anubis 1.206 |
| 20 | +InfoAfterFile=C:\Anubis_dev\anubis_dev\How_to_install.txt | |
| 20 | 21 | |
| 21 | 22 | [Files] |
| 22 | 23 | Source: ..\..\bin\anubis\*; DestDir: {app}; Flags: ignoreversion touch recursesubdirs; Excludes: *.txt, *.bak, *.sc, *.bat, anubisd.exe, anbexecd.exe, anbshelld.exe; Languages: fr en | ... | ... |
anubis_dev/shell/src/main.cpp
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | #endif |
| 9 | 9 | |
| 10 | 10 | #define MAJOR_VERSION 0 |
| 11 | -#define MINOR_VERSION 2 | |
| 11 | +#define MINOR_VERSION 3 | |
| 12 | 12 | void Welcome(void); |
| 13 | 13 | void ExecuteAnb(char * args); |
| 14 | 14 | void ExecuteProcess(char * process, char ** args); |
| ... | ... | @@ -45,7 +45,7 @@ void Welcome(void) |
| 45 | 45 | { |
| 46 | 46 | printf("***************************************************************\n"); |
| 47 | 47 | printf(" Anubis Shell v%d.%d \n", MAJOR_VERSION, MINOR_VERSION); |
| 48 | - printf(" Author : David RENE, Alain PROUTE \n"); | |
| 48 | + printf(" Authors : David RENE, Alain PROUTE \n"); | |
| 49 | 49 | printf(" Copyright 2005 Constructive Mathematics \n"); |
| 50 | 50 | printf("***************************************************************\n"); |
| 51 | 51 | } | ... | ... |