Pages

Sunday, January 25, 2015

Financer - Configuration file

Definition of the configuration files for Financer and Capital applications:
<?xml version="1.0" encoding="UTF-8"?> <config> <database> <connection host="localhost" port="5432" dbname="financer" user="postgres" password="postgres" sslmode="disable" filepath="financer.db" type="SQLite"/> </database> <language id="pt-BR"/> <rfid port="COM4" speed="57200"/> <logger> <log.entry name="system" level="0" enabled="true"/> <log.entry name="database" level="0" enabled="true"/> </logger> </config>

Saturday, January 17, 2015

Financer - SQLite database support

Developing support to store application data in SQLite database.
There will be now support for PostgreSQL to distributed usage of the application and support for SQLite to use the application as standalone.

Removed invoice module. At now, no plans to add this module to the personal finance application

Focus now on complete SQLite support and start to develop internalization.

Wednesday, January 14, 2015

IssueDB 0.2.3

IssueDB version 0.2.3 Changes:
  • Reload projects list after register a new project.
  • Fix application name on main window.
  • Builds for Fedora Linux, FreeBSD, MS Windows and Mac OS X.

Tuesday, January 13, 2015

Financer, Capital - Internationalization

Define an internationalization format portable and human-editable for Financer and Capital applications like Android.

Example:

en-US.xml:
<resources lang="English"> <string name="welcome_message">Welcome</string> </resources>
pt-BR.xml:
<resources lang="Português"> <string name="welcome_message">Bem-Vindo</string> </resources>

PostgreSQL on Fedora

sudo yum install postgresql postgresql-server \ postgresql-contrib postgresql-devel postgresql-libs
Useful steps: fedoraproject.org/wiki/PostgreSQL

For local development you can trust connections in: /var/lib/pgsql/data/pg_hba.conf

Monday, January 12, 2015

IssueDB 0.2.2

IssueDB version 0.2.2 Changes:
  • Database setup on initialization.
  • More operating systems (this will be customizable in the future).
  • Fixes.

Sunday, January 04, 2015

Financer - Fedora dependencies

Financer dependencies on Fedora Linux:
sudo yum groupinstall development-libs development-tools gnome-software-development
sudo yum install perl
sudo yum install cmake
sudo yum install postgresql postgresql-devel
sudo yum install libjpeg-turbo libjpeg-turbo-devel
sudo yum install libtiff libtiff-devel
sudo yum install libSM libSM-devel