News


News

Showing articles from http://remproject.org/rss External_link

[18 total ]
Toolbar

I've just committed a first version of Rem's toolbar; the icons and the toolbar itself were designed using the Jucer, "Juce's UI component builder application. It comes along as part of the Juce source tree." as Jules describes it:

The Jucer is an awesome tool; I could customize the C++ templates ...

Missing libraries, fixed

If you downloaded yesterday the Windows installer, it lacked some important libraries that are part of the redistributable runtime for applications built using Visual C++ 2008 Express Edition. This has been fixed now, so you can download the installer again, and it should work flawlessly. As always, feel free to ...

Version 1.0 is out!

Rem version 1.0 is ready to use! This version just supports the creation, storage and retrieval of use case diagrams, but the source code is ready to be extended, to support the creation of other types of diagrams.

Download and enjoy!

Reading and Writing

Rem is every day closer to version 1.0, officially scheduled for August 28th. This past month I've been adding lots of functionality to the software, including the ability to read and write its own files. Remember that Rem files are actually SQLite databases, which ensures that files are cross-platform, and ...

Release 0.1 is here!

I've just uploaded the binaries, source and documentation for Rem release 0.1! The GUI architecture is quite stable now, and I'm extending the system with new features every week. Feel free to download and comment! This is an early beta, so crashes might happen. Use with caution!

Missing libraries, fixed (again)

But this time for Linux. Somehow Poco and Juce cannot be linked together as static libraries (there are duplicate symbols conflicting when linking) so I have changed the Linux x86 distribution, including a copy of the libPocoFoundation.so.5 file (which is the exact version needed by the Rem executable), and I ...

Missing libraries, fixed

If you downloaded yesterday the Windows installer, it lacked some important libraries that are part of the redistributable runtime for applications built using Visual C 2008 Express Edition. This has been fixed now, so you can download the installer again, and it should work flawlessly. As always, feel free to ...

Announcing Release 0.0.2 Alpha!

Here's a new (preliminary) release of Rem! The big news is that, thanks to CPack (the packaging utility bundled with CMake) Windows and Leopard users have now installers to setup the application in their systems easier than ever.

There are also lots of bug fixes, small modifications, a grid background on ...

Toolbar

I've just committed a first version of Rem's toolbar; the icons and the toolbar itself were designed using the Jucer, "Juce's UI component builder application. It comes along as part of the Juce source tree." as Jules describes it:

The Jucer is an awesome tool; I could customize the C templates ...

ActiveRecord and Unit Tests

Unit tests are a great thing.

Today I've committed a revised version of the implementation of the ActiveRecord pattern, which saves instances of objects in SQLite databases. This new architecture replaces the "Curiously Recurring Template ... [More] Pattern" used before, where ActiveRecord inherited (via template parameters) of the BelongsTo and HasMany classes:

[source:c]
... [Less]