diff --git a/README.md b/README.md index 8e115e58..4d00f13a 100644 --- a/README.md +++ b/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. diff --git a/cesetup/cesetup.coedit b/cesetup/cesetup.coedit index 165a2d75..d0caf6ec 100644 --- a/cesetup/cesetup.coedit +++ b/cesetup/cesetup.coedit @@ -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\' ) diff --git a/cesetup/cesetup.d b/cesetup/cesetup.d index 8897c407..528d2c96 100644 --- a/cesetup/cesetup.d +++ b/cesetup/cesetup.d @@ -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; } } diff --git a/cesetup/version.txt b/cesetup/version.txt index 4c227f29..cf3dd854 100644 --- a/cesetup/version.txt +++ b/cesetup/version.txt @@ -1 +1 @@ -2alpha3 \ No newline at end of file +2alpha4 \ No newline at end of file diff --git a/src/ce_infos.lfm b/src/ce_infos.lfm index 877844c8..1f3338de 100644 --- a/src/ce_infos.lfm +++ b/src/ce_infos.lfm @@ -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