Re: Terminix 1.30 Released

2016-09-30 Thread Gerald via Digitalmars-d-announce

On Friday, 30 September 2016 at 20:02:46 UTC, Daniel Kozak wrote:
One problem, when I run terminix in quake mode, there is 
missung icon on my top bar in gnome shell and there is no way 
to go to preferences, in normal window mode everything works ok.


It's by design, I set some hints so it doesn't show up in Gnome 
Shell's overview mode or alt-tab selector. A side-effect of that 
is that it doesn't get an app-menu shown.


Btw. really good work, i really like terminix and use it for 
some time now, but with quake mode (it is nice that there is no 
keybinding because it works really nice with wayland) I can 
remove guake from my system and use terminix for everything 
even on wayland. Thx


Thanks, good to know it is working on Wayland because the quake 
mode was very iffy there due to the fact you can't globally 
position a window in Wayland.




Re: Terminix 1.30 Released

2016-09-30 Thread Daniel Kozak via Digitalmars-d-announce

On Friday, 30 September 2016 at 18:32:37 UTC, Gerald wrote:
Terminix 1.30 has been released, for those not familiar with it 
Terminix is a Linux terminal emulator targeting the Gnome 
desktop environment. It is written in D using the GtkD library.


More information about Terminix is available on github here 
https://github.com/gnunn1/terminix.


The following features were added in this release:

- Quake mode support
- Password manager
- Custom hyperlinks
- Advanced paste dialog
- Set a default session name
- Quick session switcher
- Experimental trigger support

I'm always looking for people who are interested in 
contributing, hence my announcing the new releases here.


One problem, when I run terminix in quake mode, there is missung 
icon on my top bar in gnome shell and there is no way to go to 
preferences, in normal window mode everything works ok.


Btw. really good work, i really like terminix and use it for some 
time now, but with quake mode (it is nice that there is no 
keybinding because it works really nice with wayland) I can 
remove guake from my system and use terminix for everything even 
on wayland. Thx


Re: Terminix 1.30 Released

2016-09-30 Thread Gerald via Digitalmars-d-announce

On Friday, 30 September 2016 at 19:46:54 UTC, Daniel Kozak wrote:

On Friday, 30 September 2016 at 18:32:37 UTC, Gerald wrote:

[...]


It is 1.30 or 1.3.0 because github download link is: 
https://github.com/gnunn1/terminix/releases/download/1.3.0/terminix.zip


1.3.0, typo on my part.


Re: Terminix 1.30 Released

2016-09-30 Thread Daniel Kozak via Digitalmars-d-announce

On Friday, 30 September 2016 at 18:32:37 UTC, Gerald wrote:
Terminix 1.30 has been released, for those not familiar with it 
Terminix is a Linux terminal emulator targeting the Gnome 
desktop environment. It is written in D using the GtkD library.


More information about Terminix is available on github here 
https://github.com/gnunn1/terminix.


The following features were added in this release:

- Quake mode support
- Password manager
- Custom hyperlinks
- Advanced paste dialog
- Set a default session name
- Quick session switcher
- Experimental trigger support

I'm always looking for people who are interested in 
contributing, hence my announcing the new releases here.


It is 1.30 or 1.3.0 because github download link is: 
https://github.com/gnunn1/terminix/releases/download/1.3.0/terminix.zip


Re: SDLang-D v0.10.0 - Big convenience improvements

2016-09-30 Thread Chris via Digitalmars-d-announce
On Tuesday, 27 September 2016 at 15:26:04 UTC, Nick Sabalausky 
wrote:

On 09/27/2016 04:55 AM, Chris wrote:


I was actually thinking of using SDL for pseudo code 
non-programmers
could write, e.g. to create rule files that a program could 
execute. It

could work nicely with `if` and `else` tags + attributes.


A simple programming language that's SDLang-compliant would 
definitely be interesting!


I think SDLang is underrated and I hope it will find more 
adopters in the future. JSON is useful and used all over the 
place. But it has shortcomings that are probably due to the fact 
that it was never meant to be used as widely as it is today (i.e. 
outside JS). The lack of comments is a big minus.


Re: GC blessed for C++ (again)

2016-09-30 Thread Dejan Lekic via Digitalmars-d-announce
On Wednesday, 28 September 2016 at 20:50:28 UTC, Ali Çehreli 
wrote:

https://www.reddit.com/r/programming/comments/54xnbg/herb_sutters_experimental_deferred_and_unordered/

Ali


The paragraph I like the most there is: "The other important 
difference is that deferred_heap meets C++'s zero-overhead 
principle by being opt-in and granular, not default and global"


That is what I like the most about Herb's work...


Re: New user, even she does not know yet

2016-09-30 Thread Bauss via Digitalmars-d-announce

On Monday, 26 September 2016 at 12:06:58 UTC, Daniel Kozak wrote:

https://onedrive.live.com/?authkey=!AEQ5lsngH-Oe3DA=87E57DF7155C89C9!24197=87E57DF7155C89C9


Congratulations


Re: GC blessed for C++ (again)

2016-09-30 Thread finalpatch via Digitalmars-d-announce

On Friday, 30 September 2016 at 03:42:27 UTC, deadalnix wrote:

GC is unnacceptable !

Ho ! a deferred and unordered destruction library, really cool !

Is there intelligent life in the C++ world ?


I think the difference is that the solution is scoped to only 
those objects that you chose to use GC on, rather than GC 
everything by default.  Because the GC is limited to a small set 
of objects and is done in a controlled manner, this avoids 
unpredictable pauses and problems with interop with external 
libraries.