flamerobin is daily mirrored to bazaar repository from ubuntu
here is the nice changelog for the head
and to get it from bzr write just this
bzr branch lp:flamerobin
cd flamerobin
./configure
make ; make install
..:: FlameRobin ::..:: Firebird ::..
Friday, June 20, 2008
Tuesday, June 03, 2008
Build details on Ubuntu Itrepid Ibex
Builds
- intrepid sparc Successfully built (DONE)
- intrepid powerpc Successfully built (DONE)
- intrepid lpia Successfully built (DONE)
- intrepid ia64 Chroot problem
- intrepid hppa Needs building
- hardy i386 Successfully built (DONE)
- hardy amd64 Successfully built (DONE)
..:: FlameRobin ::..:: Firebird ::..
Monday, June 02, 2008
flamerobin Portability
Damyan Ivanov wrote on the mailing list :
Recently Flamerobin Debian package was built[1] on arm, ia64
(Itanium), mips, mipsel (little-endian mips), powerpc and sparc.
[1]http://buildd.debian.org/build.cgi?pkg=flamerobin
The failures in the above table are due to Firebird not being ported
to hppa, m68k and s390.
So, I want to say "Good work everyone!" and thanks for writing
portable code :)
..:: FlameRobin ::..:: Firebird ::..
Recently Flamerobin Debian package was built[1] on arm, ia64
(Itanium), mips, mipsel (little-endian mips), powerpc and sparc.
[1]http://buildd.debian.org/build
The failures in the above table are due to Firebird not being ported
to hppa, m68k and s390.
So, I want to say "Good work everyone!" and thanks for writing
portable code :)
..:: FlameRobin ::..:: Firebird ::..
Wednesday, May 28, 2008
flamerobin with tabs screenshot
here are the screenshots with new tabbed browser and wxAUI build
http://javivf.alasombra.net/blog/?p=988
..:: FlameRobin ::..:: Firebird ::..
http://javivf.alasombra.net/blog/?p=988
..:: FlameRobin ::..:: Firebird ::..
Friday, May 16, 2008
software listing for flamerobin has been updated
Nominate Firebird & Flamerobin for SourceForge awards
This link is for firebird nomination
This link is for flamerobin nomination
..:: FlameRobin ::..:: Firebird ::..
This link is for flamerobin nomination
..:: FlameRobin ::..:: Firebird ::..
Thursday, April 24, 2008
Ubuntu 8.04 released with Firebird+Flamerobin included
Ubuntu Hardy Heron 8.04 is released with firebird2.0 and flamerobin included in their repository
Here is an easy guide for installing firebird2.0 and then follow the flamerobin 0.8.6 guide
..:: FlameRobin ::..:: Firebird ::..:: ubuntu ::..:: hardy ::..
Monday, April 21, 2008
Tabbed browser and wxAUI - build
Milan Babuskov wrote:
> Any chance of making an experimental Windows build, so people who
> don't compile FR can test?
Test builds (Ansi + Unicode) for Windows can be loaded at
<http://www.flamerobin.org/mghie/flamerobin-0.8.7.1684.zip>
Thanks
--
Michael Hieke
..:: FlameRobin ::..:: Firebird ::..
> Any chance of making an experimental Windows build, so people who
> don't compile FR can test?
Test builds (Ansi + Unicode) for Windows can be loaded at
<http://www.flamerobin.org/mghie/flamerobin-0.8.7.1684.zip>
Thanks
--
Michael Hieke
..:: FlameRobin ::..:: Firebird ::..
Roadmap changes
Some changes in the roadmap wiki with features already done and what is left to be done
Also some rewrite ideas are already implemented
..:: FlameRobin ::..:: Firebird ::..
Also some rewrite ideas are already implemented
..:: FlameRobin ::..:: Firebird ::..
simple way to install flamerobin in ubuntu hardy
flamerobin 0.8.6 is now included in official hardy rapository
and can be installed by an simple
$sudo apt-get install flamerobin
Or click here to install
First question on apt-url install

Another question about apt changes

Downloading the package

Screenshot with flamerobin 0.8.6 after all is finished

..:: FlameRobin ::..:: Firebird ::...:: Ubuntu ::..
and can be installed by an simple
$sudo apt-get install flamerobin
Or click here to install
First question on apt-url install

Another question about apt changes

Downloading the package

Screenshot with flamerobin 0.8.6 after all is finished

..:: FlameRobin ::..:: Firebird ::...:: Ubuntu ::..
Tabbed browser and wxAUI
Milan wrote on devel-list
I have committed to SVN the experimental tab-based implementation of
property pages (using wxAUI). I have developed it on Linux, but it
would be nice if others (i.e. you) could test on other platforms to
see how it works. It's a single commit, and if it turns out that it
doesn't work, we can revert it (at least it would be a nice demo for
what I'd like to see in 'new' FR Michael is working on).
What is done:
- added a notebook control to the main frame (when you start FR,
maximize the window)
- notebook control shows tabs of all opened metadata item property pages
- you can also open links in separate "windows" like the "old" FR
using the "open link in a new window" context menu
- browsing around should be complete and bug free
- maybe adding a 'open link in a new tab' would also be a good idea,
as you currently cannot watch both 'triggers' and 'fields' of a table
(for example) in separate tabs (only in a separate window).
- I also added a special "items" tab, that shows children of the
currently selected tree item (in the main tree)
- "items" tab is only a 'demo', it just shows items, you cannot do
anything with them
- also, each part of the address label (home > localhost > ... ) could
be made a clickable link to go back in hierarchy
Here are some screenshots:
Table properties:
http://www.flamerobin.org/aui/table_properties.png
Showing how list control makes browsing a lot of objects easier:
http://www.flamerobin.org/aui/tables_list.png
Simple split view:
http://www.flamerobin.org/aui/split_view.png
Users can easily split the screen however they want:
http://www.flamerobin.org/aui/split_3way.png
How table columns are displayed (useful when field properties page
cannot fit the screen):
http://www.flamerobin.org/aui/table_columns.png
To do all this, I moved all the property-page functionality from
MetadataItemPropertiesFrame to a new class,
MetadataItemPropertiesPanel. Currently, MetadataItemPropertiesFrame
only show a single item, but I guess it could be extended to support
multiple tabs as well.
Before going further I have few doubts, and I'd like others to try it
out and give some input. There seem to be many ways to handle
'tab-based browsing'. We can have the current code, or have ability to
have multiple MainFrame's (i.e. tree+notebook), or we can have a
single main frame (tree-only) and many notebook-frames.
The more 'separation' (i.e. freedom) we have for these elements, it
would be harder to do navigation. Currently it's easy since one tree
maps to one list control.
Also, there seem to exist some wxAUI classes for MDI, so maybe they
would be interesting to play with.
P.S. I know that some of the classes might need to get renamed after
this, for example framemanager doesn't make much sense when it
actually manages panels. If left it as-is as it's a public interface
to other classes, and I'm still not sure about the final shape of the
whole thing.
--
Milan Babuskov
..:: FlameRobin ::..:: Firebird ::..
I have committed to SVN the experimental tab-based implementation of
property pages (using wxAUI). I have developed it on Linux, but it
would be nice if others (i.e. you) could test on other platforms to
see how it works. It's a single commit, and if it turns out that it
doesn't work, we can revert it (at least it would be a nice demo for
what I'd like to see in 'new' FR Michael is working on).
What is done:
- added a notebook control to the main frame (when you start FR,
maximize the window)
- notebook control shows tabs of all opened metadata item property pages
- you can also open links in separate "windows" like the "old" FR
using the "open link in a new window" context menu
- browsing around should be complete and bug free
- maybe adding a 'open link in a new tab' would also be a good idea,
as you currently cannot watch both 'triggers' and 'fields' of a table
(for example) in separate tabs (only in a separate window).
- I also added a special "items" tab, that shows children of the
currently selected tree item (in the main tree)
- "items" tab is only a 'demo', it just shows items, you cannot do
anything with them
- also, each part of the address label (home > localhost > ... ) could
be made a clickable link to go back in hierarchy
Here are some screenshots:
Table properties:
http://www.flamerobin.org/aui
Showing how list control makes browsing a lot of objects easier:
http://www.flamerobin.org/aui
Simple split view:
http://www.flamerobin.org/aui
Users can easily split the screen however they want:
http://www.flamerobin.org/aui
How table columns are displayed (useful when field properties page
cannot fit the screen):
http://www.flamerobin.org/aui
To do all this, I moved all the property-page functionality from
MetadataItemPropertiesFrame to a new class,
MetadataItemPropertiesPanel. Currently, MetadataItemPropertiesFrame
only show a single item, but I guess it could be extended to support
multiple tabs as well.
Before going further I have few doubts, and I'd like others to try it
out and give some input. There seem to be many ways to handle
'tab-based browsing'. We can have the current code, or have ability to
have multiple MainFrame's (i.e. tree+notebook), or we can have a
single main frame (tree-only) and many notebook-frames.
The more 'separation' (i.e. freedom) we have for these elements, it
would be harder to do navigation. Currently it's easy since one tree
maps to one list control.
Also, there seem to exist some wxAUI classes for MDI, so maybe they
would be interesting to play with.
P.S. I know that some of the classes might need to get renamed after
this, for example framemanager doesn't make much sense when it
actually manages panels. If left it as-is as it's a public interface
to other classes, and I'm still not sure about the final shape of the
whole thing.
--
Milan Babuskov
..:: FlameRobin ::..:: Firebird ::..
flamerobin used at infovark.com
We’ve been using Firebird as infovark’s SQL database for several months now. It’s an open source fork of Borland’s InterBase SQL server. So far, we’ve been extremely impressed by the database itself. Its companion database administration tool, FlameRobin, is shaping up nicely too. It’s currently in version 0.86, but it handles most of what we need.
..:: FlameRobin ::..:: Firebird ::..
..:: FlameRobin ::..:: Firebird ::..
Tuesday, April 08, 2008
flamerobin 0.8.6 officially acepted in ubuntu hardy
it should appear soon in the official hardy repository
http://packages.ubuntu.com/hardy/utils/flamerobin
here is the distro list where flamerobin 0.8.6 is included
Debian http://packages.debian.org/lenny/flamerobin
Gentoo http://gentoo-portage.com/dev-db/flamerobin
..:: FlameRobin ::..:: Firebird ::..
http://packages.ubuntu.com/hardy/utils/flamerobin
here is the distro list where flamerobin 0.8.6 is included
Debian http://packages.debian.org/lenny/flamerobin
Gentoo http://gentoo-portage.com/dev-db/flamerobin
..:: FlameRobin ::..:: Firebird ::..
Saturday, March 29, 2008
Friday, March 28, 2008
Gnome Files page updated
Gnome Files page is now updated
http://gnomefiles.org/app.php/FlameRobin
..:: FlameRobin ::..:: Firebird ::..
http://gnomefiles.org/app.php/FlameRobin
..:: FlameRobin ::..:: Firebird ::..
Usage Statistics For FlameRobin on sf.net
download and usage stats are growing on sf.net
https://sourceforge.net/project/stats/?group_id=124340&ugn=flamerobin&type=&mode=alltime
..:: FlameRobin ::..:: Firebird ::..
https://sourceforge.net/project/stats/?group_id=124340&ugn=flamerobin&type=&mode=alltime
..:: FlameRobin ::..:: Firebird ::..
freshmeat page updated
i have updated the freshmeat page
http://freshmeat.net/projects/flamerobin/
i work now to update the r sf.net news , icewalker , gnomefiles
..:: FlameRobin ::..:: Firebird ::..
http://freshmeat.net/projects/flamerobin/
i work now to update the r sf.net news , icewalker , gnomefiles
..:: FlameRobin ::..:: Firebird ::..
Thursday, March 27, 2008
firebird 2.1 rc2+flamerobin for ubuntu hardy/gutsy are ready
Here is the guide to install firebird2.1 and flamerobin on ubuntu hardy/gutsy

..:: FlameRobin ::..:: Firebird ::..

..:: FlameRobin ::..:: Firebird ::..
Subscribe to:
Posts (Atom)