(linux binaries and sources, windows binaries comes soon)
Marcion is now more "user friendly", simple installation, MySql server is now embedded into application (just unpack and run), MDI interface, and some next visual and other improvements.
https://sourceforge.net/projects/marcion/files/for Admin: iam glad for you want help me with developing, sources in svn repository are prepared. First checkout repository
svn co https://marcion.svn.sourceforge.net/svnroot/marcion marcion
then copy directories of source tarball 'fonts','library','data' into new directory 'marcion' and 'mysql/data' into 'marcion/mysql'.
command
$ svn status
now open 'marcion.pro' in qt creator, then 'ibycus.pro' and 'djview.pro' and add them as dependencies. in options change info about your qt version and location and in build steps made changes proper for your system. Then build project. After successfull building, run
$ svn revert --depth=infinity .
$ svn status
this produce output like this:
[vagrant@localhost marcion]$ svn status
? marcion
? fonts
? library
? data
? mysql/data
and now is all ready for shared developing. Tell me also which nick do you want for svn accesing.
note: because of server is now embedded, is no important if your qt is build with --plugin-sql-mysql, and no sql plugin is more needed. It was replaced by class CMySql, which encapsulate functions of 'libmysqld.a' presented with headers in 'mysql' directory. So, do not include
QT += sql
into .pro file.
Thank you very much for your help.
(I am new with using subversion, so i hope that all is correct.)