Go to file
Daniel Molkentin 78c7dc95a0 Add doc cmake targets (HTML, PDF, QtHelp, CHM, man)
make doc will build all of the above, except for CHM,
which needs manual preparation and can be built with
make doc-chm. See doc/scripts/README.rst for details.

We do our best to ensure to detect the required tools
before adding targets, so a build should always succeed.

Exception: On Debian and Ubuntu, the following packages are
required to build the PDF target (in addition to pdflatex
itself, which is autodetected):

* texlive-latex-recommended
* texlive-latex-extra
* texlive-fonts-recommended

If pdflatex is present, but those are not, the doc target
will fail.

Results can be found in $BUILDDIR/doc/$format.
2012-11-25 00:38:47 +01:00
admin add helper script to sign app bundle 2012-10-10 16:57:07 +02:00
cmake/modules Add doc cmake targets (HTML, PDF, QtHelp, CHM, man) 2012-11-25 00:38:47 +01:00
doc Add doc cmake targets (HTML, PDF, QtHelp, CHM, man) 2012-11-25 00:38:47 +01:00
resources Display error status in statusdialog. 2012-11-05 11:36:38 +01:00
src Allow alias setting in Settings group name. 2012-11-22 12:32:07 +01:00
test Add testing skeleton 2012-10-26 20:24:12 +02:00
translations [tx-robot] updated from transifex 2012-11-25 00:04:10 +01:00
.gitattributes Add .gitattributes, needed for clean git export 2012-10-18 13:42:47 +04:00
.gitignore Remove and do not try to commit temp editor files 2012-11-15 12:50:52 +01:00
.tag Export repo revision indicator 2012-10-12 14:44:21 +02:00
CMakeLists.txt Add doc cmake targets (HTML, PDF, QtHelp, CHM, man) 2012-11-25 00:38:47 +01:00
COPYING
COPYING.documentation Add doc cmake targets (HTML, PDF, QtHelp, CHM, man) 2012-11-25 00:38:47 +01:00
CPackOptions.cmake.in
ChangeLog More changelog entries for 1.1.2 2012-11-21 16:39:25 +01:00
OWNCLOUD.cmake Installer: Only show license on special request 2012-11-02 16:14:33 +01:00
OwnCloudCPack.cmake Mac: Do not deploy DMG background, doesn't work 2012-11-19 12:10:45 +01:00
README.md Fixed package download link. 2012-11-14 15:03:14 +01:00
VERSION.cmake Ready for Release Candidate 2012-11-22 15:58:56 +01:00
config.h.in
mirall.qrc Display error status in statusdialog. 2012-11-05 11:36:38 +01:00
sync-exclude.lst

README.md

Mirall

Introduction

Mirall synchronizes your folders with another computer.

The ultimate goals of Mirall are:

  • Network location aware: should not try to sync against your NAS if you are not in the home network
  • It is a zero-interaction tool. So forget about resolving conflicts.
  • It should work silently and realiably.

Mirall is in early stages of development, and may still eat your files or hang your computer.

  • Network location awareness not implemented yet
  • Current version supports local and remote (sftp and smb) folders.
  • It is powered by csync (http://www.csync.org), however the user does not know and other tools will be incorporated to provide other functionality.

Current issues

  • No sane way to backup conflicting versions yet, this should be solved in a near csync release (--conflictcopy, available in Jann's branch). Right now the newest copy wins.
  • You can't remove folder configurations Workaround: delete ~/.local/share/data/Mirall/folders/$alias and restart
  • Some tasks block the GUI (initial setup of watchers)
  • May be some concurrency issues

Roadmap

  • Improve robustness to minimize user interaction
  • Improve feedback and sync results
  • Add support for other folder types: tarsnap, duplicity, git (SparkleShare)

Requirements

  • Linux (currently it uses inotify to detect file changes)
  • unison installed in the local and remote machine (you should not care if you got Mirall with your favorite distribution)

Download

openSUSE

Source code

Building the source code

You need Qt 4.7 and cmake:

mkdir build
cd build
cmake ..
make

To generate a tarball:

mkdir build
cd build
cmake ..
make package_source

Authors

License

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.