mirror of https://gitlab.com/basile.b/dexed.git
updated version num
This commit is contained in:
parent
55d86862e3
commit
4113a8a83e
16
README.md
16
README.md
|
@ -27,7 +27,7 @@ Coedit is an IDE for the _DMD_ [D2](http://dlang.org) compiler.
|
|||
|
||||
**Project information**
|
||||
---
|
||||
- latest version: version 2 alpha 3.
|
||||
- latest version: version 2 alpha 4.
|
||||
- licensed under the term of the MIT license.
|
||||
- programmed in Object Pascal with [FPC & Lazarus](http://www.lazarus.freepascal.org) as compiler & IDE.
|
||||
|
||||
|
@ -35,13 +35,13 @@ Coedit is an IDE for the _DMD_ [D2](http://dlang.org) compiler.
|
|||
---
|
||||
Download the zipped binaries or the zipped setup program for you platform:
|
||||
|
||||
- :package: [setup program for Linux 32 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.linux32.setup.zip)
|
||||
- :package: [binaries for Linux 32 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.linux32.zip)
|
||||
- :package: [setup program for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.linux64.setup.zip)
|
||||
- :package: [binaries for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.linux64.zip)
|
||||
- :package: [setup program for Windows 32/64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.win32.setup.zip)
|
||||
- :package: [binaries for Windows 32/64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit.2alpha3.win32.zip)
|
||||
- :package: [rpm for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_3/coedit-2-alpha3.x86_64.rpm)
|
||||
- :package: [setup program for Linux 32 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.linux32.setup.zip)
|
||||
- :package: [binaries for Linux 32 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.linux32.zip)
|
||||
- :package: [setup program for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.linux64.setup.zip)
|
||||
- :package: [binaries for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.linux64.zip)
|
||||
- :package: [setup program for Windows 32/64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.win32.setup.zip)
|
||||
- :package: [binaries for Windows 32/64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit.2alpha4.win32.zip)
|
||||
- :package: [rpm for Linux 64 bit](https://github.com/BBasile/Coedit/releases/download/2_alpha_4/coedit-2-alpha4.x86_64.rpm)
|
||||
|
||||
[**See the wiki**](https://github.com/BBasile/Coedit/wiki#detailed-setup-procedure) for more information about the setup.
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha3.win32.setup.exe'
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha4.win32.setup.exe'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'win32\'
|
||||
)
|
||||
|
@ -33,7 +33,7 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha3.linux32.setup'
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha4.linux32.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'nux32\'
|
||||
)
|
||||
|
@ -55,7 +55,7 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha3.linux64.setup'
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha4.linux64.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'nux64\'
|
||||
)
|
||||
|
@ -78,7 +78,7 @@ object CurrentProject: TCENativeProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha3.win32.setup'
|
||||
pathsOptions.outputFilename = 'output\coedit.2alpha4.win32.setup'
|
||||
pathsOptions.importStringPaths.Strings = (
|
||||
'win32\'
|
||||
)
|
||||
|
|
|
@ -146,7 +146,7 @@ void main(string[] args)
|
|||
return;
|
||||
}
|
||||
|
||||
if (!uninstall) Formater.justify!'C'("Coedit 2 alpha 3 - setup");
|
||||
if (!uninstall) Formater.justify!'C'("Coedit 2 alpha 4 - setup");
|
||||
else Formater.justify!'C'("Coedit uninstaller");
|
||||
|
||||
Formater.separate;
|
||||
|
@ -346,12 +346,15 @@ void postInstall()
|
|||
File f = File(shortCutPath ~ "coedit.desktop", "w");
|
||||
f.writeln("[Desktop Entry]");
|
||||
f.writeln("Name=coedit");
|
||||
f.writeln("Path=" ~ exePath);
|
||||
f.writeln("Exec=coedit %f");
|
||||
f.writeln("Icon=" ~ datPath ~ "coedit.png");
|
||||
f.writeln("Type=Application");
|
||||
f.writeln("Categories=Application;IDE;Development;");
|
||||
f.writeln("Keywords=editor;Dlang;IDE;dmd;");
|
||||
f.writeln("StartupNotify=true");
|
||||
f.writeln("Terminal=false");
|
||||
f.writeln("TerminalOptions=");
|
||||
f.close;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
2alpha3
|
||||
2alpha4
|
|
@ -36,7 +36,7 @@ inherited CEInfoWidget: TCEInfoWidget
|
|||
Align = alClient
|
||||
Alignment = taCenter
|
||||
AutoSize = False
|
||||
Caption = 'Coedit 2 - alpha 3'
|
||||
Caption = 'Coedit 2 - alpha 4'
|
||||
Font.Height = -16
|
||||
Font.Style = [fsBold]
|
||||
Layout = tlCenter
|
||||
|
|
Loading…
Reference in New Issue