Thread overview
Coedit alpha 11 released
Jan 21, 2015
Basile Burg
Jan 21, 2015
Basile Burg
Jan 22, 2015
Basile Burg
Jan 22, 2015
Jordi Sayol
Jan 22, 2015
Basile Burg
Feb 06, 2015
Baz
Feb 19, 2015
Baz
Feb 26, 2015
Baz
January 21, 2015
I'm glad to announce this new release of Coedit. Here is a summary of what's new since last public announce:

new features:
------------
- project configuration widget, the configurations can be edited in synchro-mode. It can be activated by clicking the chain icon at the right of the widget toolbar.
- tool chaining, each tool can include a list of tool to execute before and after the item, according to their aliases.
- editor cache, between two cessions Coedit remembers the position, the folding, the selection and the zoom of a document. cache files are located in the options and data folder, in a sub directory named editorcache.
- static macros, auto insertion (or insertion using SHIFT+SPACE). see wiki, editor widget section. Macros can be edited in a dedicated file, located in the option folder.
- new widget managing the TODO comments found within the sources. It automatically handles the context, for example in an orphan source or among all the project sources. Refer to the wiki for more information.
- menu File, Run file unittests, compile and execute the current editor with -main and -unittest. useful to test a particular module which belongs to a project.

miscellaneous:
--------------
- under Linux, it was necessary to save a project before adding the sources. Now they can be added from the beginning and relative paths will be translated correctly.
- a display problem could append under certain circumstances, suggesting that a file would be overwritten by another. Fortunately this was only a visual bug.
- DCD integration, start faster.

links:
------
https://github.com/BBasile/Coedit/releases/tag/alpha_11
January 21, 2015
On Wednesday, 21 January 2015 at 17:35:13 UTC, Basile Burg wrote:
> I'm glad to announce this new release of Coedit. Here is a summary of what's new since last public announce:
>
> new features:
> ------------
> - project configuration widget, the configurations can be edited in synchro-mode. It can be activated by clicking the chain icon at the right of the widget toolbar.
> - tool chaining, each tool can include a list of tool to execute before and after the item, according to their aliases.
> - editor cache, between two cessions Coedit remembers the position, the folding, the selection and the zoom of a document. cache files are located in the options and data folder, in a sub directory named editorcache.
> - static macros, auto insertion (or insertion using SHIFT+SPACE). see wiki, editor widget section. Macros can be edited in a dedicated file, located in the option folder.
> - new widget managing the TODO comments found within the sources. It automatically handles the context, for example in an orphan source or among all the project sources. Refer to the wiki for more information.
> - menu File, Run file unittests, compile and execute the current editor with -main and -unittest. useful to test a particular module which belongs to a project.
>
> miscellaneous:
> --------------
> - under Linux, it was necessary to save a project before adding the sources. Now they can be added from the beginning and relative paths will be translated correctly.
> - a display problem could append under certain circumstances, suggesting that a file would be overwritten by another. Fortunately this was only a visual bug.
> - DCD integration, start faster.
>
> links:
> ------
> https://github.com/BBasile/Coedit/releases/tag/alpha_11

BTW, as the project is now well established, it stands now in the IDE section of the wiki: http://wiki.dlang.org/IDEs.

January 22, 2015
On 1/21/15 9:35 AM, Basile Burg wrote:
> I'm glad to announce this new release of Coedit.
[snip]

Nice! Any change for highlighting in .dd and .ddoc (Ddoc) documents? :o) -- Andrei

January 22, 2015
On Thursday, 22 January 2015 at 02:04:58 UTC, Andrei Alexandrescu wrote:
> On 1/21/15 9:35 AM, Basile Burg wrote:
>> I'm glad to announce this new release of Coedit.
> [snip]
>
> Nice! Any change for highlighting in .dd and .ddoc (Ddoc) documents? :o) -- Andrei

No, a dedicated highlightrt has to be added. i've totally missed out this feature.

January 22, 2015
El 21/01/15 a les 18:35, Basile Burg via Digitalmars-d-announce ha escrit:
> I'm glad to announce this new release of Coedit.

Congratulations for this new release!

Did you fix the use of DCD simultaneously with other D editors?
January 22, 2015
On Thursday, 22 January 2015 at 09:44:28 UTC, Jordi Sayol via Digitalmars-d-announce wrote:
> El 21/01/15 a les 18:35, Basile Burg via Digitalmars-d-announce ha escrit:
>> I'm glad to announce this new release of Coedit.
>
> Congratulations for this new release!
>
> Did you fix the use of DCD simultaneously with other D editors?

No :/, IIRC this is a requirment from your part in order to include the software on D-apt...maybe the next time. Waiting for that the wiki DCD section explicitly not recommend to use another D editor while CE is running.

Still about d-apt, it looks like CE will not be build-able from your side as it's been, because i've started building some tools in D (the todo-comments analyzer) and this requires a proper setup with libdparse compiled as a static library and put as a "libman" entry.

January 22, 2015
On 1/21/15 9:35 AM, Basile Burg wrote:
> I'm glad to announce this new release of Coedit. Here is a summary of
> what's new since last public announce:
[snip]

http://www.reddit.com/r/programming/comments/2taql8/coedit_alpha_11_multiplatform_ide_for_d_written/

Andrei


February 06, 2015
On Thursday, 22 January 2015 at 09:44:28 UTC, Jordi Sayol wrote:
> El 21/01/15 a les 18:35, Basile Burg via Digitalmars-d-announce ha escrit:
>> I'm glad to announce this new release of Coedit.
>
> Congratulations for this new release!
>
> Did you fix the use of DCD simultaneously with other D editors?

It'll be in α13 (or β1 if i take the time to make those useless options...)
https://github.com/BBasile/Coedit/commit/294994dfc51d3c8bc4d7209645af227f32993bfb#diff-6cac757e17e7af0cdd29eb0203dc3b23R79

I'm myself using the feature since 12 hours because it becamed so annoying to wait 5 seconds at each cession startup (the libman exposes over 100k LOC through a dozen of entries, and as DCD is not asynchronous CE has to wait that the client return after each import...).
BTW if someone could verify the feature on Linux it'd help...It's straight forward to compile.
February 19, 2015
>  those useless options...

the next version have an awesome option editor. about 100 settings just for the editor and the highlither

http://imgur.com/RdmHyKJ
February 26, 2015
On Thursday, 19 February 2015 at 23:41:02 UTC, Baz wrote:
>> those useless options...
>
> the next version have an awesome option editor. about 100 settings just for the editor and the highlither
>
> http://imgur.com/RdmHyKJ

Smelling more and more beta

http://i.imgur.com/6TQGjZC.png