Detlev Offenbach | 1 May 2012 13:17
Picon
Favicon

ANN: eric 4.5.3 released

Hi,

I just uploaded eric 4.5.3. It is a maintenance release fixing some bugs. It 
is available via the eric web site.

http://eric-ide.python-projects.org/index.html

Regards,
Detlev
_______________________________________________
Eric mailing list
Eric@...
http://www.riverbankcomputing.com/mailman/listinfo/eric
Detlev Offenbach | 1 May 2012 13:20
Picon
Favicon

ANN: eric 5.2.2 released

Hi,

I just uploaded eric 5.2.2. It is a maintenance release fixing some bugs. It 
is available via the eric web site.

http://eric-ide.python-projects.org/index.html

Regards,
Detlev
-- 

_______________________________________________
Eric mailing list
Eric@...
http://www.riverbankcomputing.com/mailman/listinfo/eric
Detlev Offenbach | 1 May 2012 16:14
Picon
Favicon

Planned eric changes

Hello eric users,

I am planning to simplify the eric code a bit. Currently eric supports four different window layouts. These are

1. floating windows
2. docking windows
3. toolbox windows (on the left and the bottom)
4. sidebars (on the left and on the bottom)

I am planning to delete the support for 1. and 2. What does the community say to this plan?

Regards,
Detlev
--

_______________________________________________
Eric mailing list
Eric@...
http://www.riverbankcomputing.com/mailman/listinfo/eric
Leonardo Giordani | 2 May 2012 08:39
Picon
Gravatar

Re: Planned eric changes

Detlev,

I agree with your choice, as far as I'm concerned that two layouts are not useful.

Thanks, if you need help in refactoring just give a whistle

Leo

2012/5/1 Detlev Offenbach <detlev-QHuqpxUmdFwc/4THH4D2QrNAH6kLmebB@public.gmane.org>
Hello eric users,

I am planning to simplify the eric code a bit. Currently eric supports four different window layouts. These are

1. floating windows
2. docking windows
3. toolbox windows (on the left and the bottom)
4. sidebars (on the left and on the bottom)

I am planning to delete the support for 1. and 2. What does the community say to this plan?

Regards,
Detlev
--


_______________________________________________
Eric mailing list
Eric-FciSllQnLMw/WjLwX0R+kDKzEDxYleXD@public.gmane.org
http://www.riverbankcomputing.com/mailman/listinfo/eric


_______________________________________________
Eric mailing list
Eric@...
http://www.riverbankcomputing.com/mailman/listinfo/eric
Mike C. Fletcher | 2 May 2012 14:33
Favicon
Gravatar

Re: Planned eric changes

On 12-05-01 10:14 AM, Detlev Offenbach wrote:
> Hello eric users,
>
> I am planning to simplify the eric code a bit. Currently eric supports 
> four different window layouts. These are
>
> 1. floating windows
> 2. docking windows
> 3. toolbox windows (on the left and the bottom)
> 4. sidebars (on the left and on the bottom)
>
> I am planning to delete the support for 1. and 2. What does the 
> community say to this plan?
Fine with me (if I understand the question).  I never use anything but a 
two-pane "tiled" configuration with project viewer on the left and 
editor on the right, with all of the toolbars hidden.  I believe that's 
just one "sidebar" (the project "vertical toolbar"?)

As an aside: I'd disable the Multi project and Template views in the 
"vertical toolbar" if I could (never use them and they mess up 
scrolling-with-the-trackpad (when you reach the bottom of the project 
list you switch to template view, then scroll back up, but you wind up 
with the project viewer scrolled up slightly unless you are very precise 
so you have to scroll down again, which...)).

Feel free to rip out things *other* people like ;) :) ,
Mike
Klenongan | 3 May 2012 11:14
Picon

Relative project path for project files

We have this setup here where the project file cannot be saved at the
root of the project directory. It was meant for a single build file (a
Makefile, SConstruct, CMakeLists, or whatever.. with includes/imports
to more files in the "buildsys/" when necessary) and a small textfile
like README.txt describing what the project is, how to build it (what
build system used, dependencies, commands, etc.), contact info. to
people who responsible/maintain this, repository location, location of
files, and so on.

I don't like it but that's the way it is. I've been using (g)vim for
Python for quite sometime, and this "requirements" didn't actually
constrain me because vim just don't care about file locations. But
once I bring eric to the table, I realize that I have to bend either
the IDE (eric) or the rule because it seems eric project file (eg.
project.c4p) expects to be located at the root of the project
directory (http://www.riverbankcomputing.com/pipermail/eric/2010-June/002622.html).

Well, I decided to "bend" eric (ie. because I cant change the rules)
and this is what I came up with:

   https://gist.github.com/2584467

I use a rather ugly "^^PROJECTPATH" key because it's a hack, of course
the preferable name should be pdata["PROJECTPATH"] or something like
that should the author(s) agree to my code.

I hope the author(s) can consider it for adoption.

ps. I'm sorry for any grammatical error(s), English is not my native language.
Detlev Offenbach | 3 May 2012 19:08
Picon
Favicon

Re: Relative project path for project files

Hello,

thanks for the patch. I'll have a look at it. Please be aware, that eric 
creates a hidden directory in the project directory for storing it's 
management data (like sessions, tasks, ...). If the rope refactoring plug-in 
is installed, it will create another hidden directory for the rope data.

Regards,
Detlev

Am Donnerstag, 3. Mai 2012, 16:14:20 schrieb Klenongan:
> We have this setup here where the project file cannot be saved at the
> root of the project directory. It was meant for a single build file (a
> Makefile, SConstruct, CMakeLists, or whatever.. with includes/imports
> to more files in the "buildsys/" when necessary) and a small textfile
> like README.txt describing what the project is, how to build it (what
> build system used, dependencies, commands, etc.), contact info. to
> people who responsible/maintain this, repository location, location of
> files, and so on.
> 
> I don't like it but that's the way it is. I've been using (g)vim for
> Python for quite sometime, and this "requirements" didn't actually
> constrain me because vim just don't care about file locations. But
> once I bring eric to the table, I realize that I have to bend either
> the IDE (eric) or the rule because it seems eric project file (eg.
> project.c4p) expects to be located at the root of the project
> directory
> (http://www.riverbankcomputing.com/pipermail/eric/2010-June/002622.html).
> 
> Well, I decided to "bend" eric (ie. because I cant change the rules)
> and this is what I came up with:
> 
>    https://gist.github.com/2584467
> 
> I use a rather ugly "^^PROJECTPATH" key because it's a hack, of course
> the preferable name should be pdata["PROJECTPATH"] or something like
> that should the author(s) agree to my code.
> 
> I hope the author(s) can consider it for adoption.
> 
> ps. I'm sorry for any grammatical error(s), English is not my native
> language. _______________________________________________
> Eric mailing list
> Eric@...
> http://www.riverbankcomputing.com/mailman/listinfo/eric
--

-- 
Detlev Offenbach
detlev@...
Detlev Offenbach | 6 May 2012 16:05
Picon
Favicon

Re: Planned eric changes

Am Mittwoch, 2. Mai 2012, 08:33:45 schrieb Mike C. Fletcher:
> On 12-05-01 10:14 AM, Detlev Offenbach wrote:
> > Hello eric users,
> > 
> > I am planning to simplify the eric code a bit. Currently eric supports
> > four different window layouts. These are
> > 
> > 1. floating windows
> > 2. docking windows
> > 3. toolbox windows (on the left and the bottom)
> > 4. sidebars (on the left and on the bottom)
> > 
> > I am planning to delete the support for 1. and 2. What does the
> > community say to this plan?
> 
> Fine with me (if I understand the question).  I never use anything but a
> two-pane "tiled" configuration with project viewer on the left and
> editor on the right, with all of the toolbars hidden.  I believe that's
> just one "sidebar" (the project "vertical toolbar"?)
> 
> As an aside: I'd disable the Multi project and Template views in the
> "vertical toolbar" if I could (never use them and they mess up
> scrolling-with-the-trackpad (when you reach the bottom of the project
> list you switch to template view, then scroll back up, but you wind up
> with the project viewer scrolled up slightly unless you are very precise
> so you have to scroll down again, which...)).

Did you retest this with latest releases? It was fixed since 4.5.0.

> 
> Feel free to rip out things *other* people like ;) :) ,
> Mike
> 
> _______________________________________________
> Eric mailing list
> Eric@...
> http://www.riverbankcomputing.com/mailman/listinfo/eric
--

-- 
Detlev Offenbach
detlev@...
Mike C. Fletcher | 7 May 2012 15:53
Favicon
Gravatar

Re: Planned eric changes

On 12-05-06 10:05 AM, Detlev Offenbach wrote:
> Am Mittwoch, 2. Mai 2012, 08:33:45 schrieb Mike C. Fletcher:
>> On 12-05-01 10:14 AM, Detlev Offenbach wrote:
...
>> As an aside: I'd disable the Multi project and Template views in the 
>> "vertical toolbar" if I could (never use them and they mess up 
>> scrolling-with-the-trackpad (when you reach the bottom of the project 
>> list you switch to template view, then scroll back up, but you wind 
>> up with the project viewer scrolled up slightly unless you are very 
>> precise so you have to scroll down again, which...)). 
> Did you retest this with latest releases? It was fixed since 4.5.0.
Nope, sorry. Afraid Kubuntu Precise is still on 4.4.18.  I'm not quite 
adventurous enough to move my main work machines over to Quantal pre-alpha.

Good to know it will be fixed in 6 months :) ,
Mike
Detlev Offenbach | 7 May 2012 20:02
Picon
Favicon

Re: Planned eric changes

Am Montag, 7. Mai 2012, 09:53:13 schrieb Mike C. Fletcher:
> On 12-05-06 10:05 AM, Detlev Offenbach wrote:
> > Am Mittwoch, 2. Mai 2012, 08:33:45 schrieb Mike C. Fletcher:
> >> On 12-05-01 10:14 AM, Detlev Offenbach wrote:
> ...
> 
> >> As an aside: I'd disable the Multi project and Template views in the
> >> "vertical toolbar" if I could (never use them and they mess up
> >> scrolling-with-the-trackpad (when you reach the bottom of the project
> >> list you switch to template view, then scroll back up, but you wind
> >> up with the project viewer scrolled up slightly unless you are very
> >> precise so you have to scroll down again, which...)).
> > 
> > Did you retest this with latest releases? It was fixed since 4.5.0.
> 
> Nope, sorry. Afraid Kubuntu Precise is still on 4.4.18.  I'm not quite
> adventurous enough to move my main work machines over to Quantal pre-alpha.
> 
> Good to know it will be fixed in 6 months :) ,
> Mike

or you fix this one yourself by editing E4Toolbox.py and remove the wheelEvent 
method from E4VerticalToolbox (which basically makes it a standard QToolBox).

Regards,
Detlev
--

-- 
Detlev Offenbach
detlev@...

Gmane