New upstream version 0.7.0 upstream/0.7.0
authorgregor herrmann <gregoa@debian.org>
Fri, 30 Jul 2021 00:00:56 +0000 (02:00 +0200)
committergregor herrmann <gregoa@debian.org>
Fri, 30 Jul 2021 00:00:56 +0000 (02:00 +0200)
1  2 
ChangeLog
data/confclerk.1
data/confclerk.png

diff --cc ChangeLog
index 33d67e6d29f7bf7e2c6773a0067051bdc845e03f,0000000000000000000000000000000000000000..fd8df984f803936930699ac479ff6229b3281c18
mode 100644,000000..100644
--- /dev/null
+++ b/ChangeLog
@@@ -1,1854 -1,0 +1,1932 @@@
++2021-07-30  gregor herrmann  <gregor@toastfreeware.priv.at>
++
++      bump version from (unreleased) 0.6.5 to 0.7.0
++      because new features (cf. 'semver')
++
++      Update NEWS before release.
++
++      Use HTTPS in BUGS file.
++      (Not that it's usable but still …)
++
++      Add more generated files to .gitignore.
++
++      Clean up #includes.
++      (qtcreator is helpful but only partially.)
++
++      Update URLs of tested instances in README.
++      Remove 404 URLs, use latest conferences.
++
++      Bump copyright years.
++
++2021-07-28  Philipp Spitzer  <philipp@spitzer.priv.at>
++
++      Adjust alarm logic to include UTC offset or displayTimeShift.
++
++      Save adjusted displayTimeShift to database.
++
++      Adjust shown event time when displayTimeShift is set.
++
++      No lonely comma when city is missing.
++
++      Add active conference to application class.
++
++2021-07-21  Philipp Spitzer  <philipp@spitzer.priv.at>
++
++      Exchange "where" and "when" lines in conference dialog.
++
++      Show conference offset in conference dialog and prepare display offset.
++
++      Expose utc_offset and display_time_shift in Conference class.
++
++      Load utc_offset and display_time_shift with conference.
++
++      Parse and store utc_offset.
++
++      Add comment for day_change field in conference table definition.
++
++      Add utc_offset and display_time_shift columns to conference database.
++
++      Add links to XML files.
++
++2021-07-14  Philipp Spitzer  <philipp@spitzer.priv.at>
++
++      Adjust whitespace in if statements.
++
++      Fix typo "favourities" -> "favourites".
++
++      Delete unused variable to avoid a compiler warning.
++
++      Replace QModelIndex::child() to avoid a deprecation warning.
++
++      Replace QFontMetrics::width() with QFontMetrics::horizontalAdvance() to avoid a deprecation warning.
++
++      Replace QHash with QMultiHash to avoid a deprecation warning.
++
++2020-05-01  gregor herrmann  <gregoa@debian.org>
++
++      src/mvc/mvc.pro: add network module.
++      src/mvc/treeview.cpp includes src/app/appsettings.h on Maemo5 which includes
++      QNetworkProxy.
++
++2020-03-09  gregor herrmann  <gregor@toastfreeware.priv.at>
++
++      Update some URLs in the documentation.
++
++      Add appstream metadata file.
++
 +2017-12-08  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
++      bump version after release
++
 +      update NEWS before release of version 0.6.4
 +
 +2017-10-07  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Make toolbar in main window non-movable
 +      to prevent accidentally pulling it out.
 +
 +2017-10-06  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Settings (dialog): add username/password options for proxy server
 +      Cf. #59
 +
 +2017-10-05  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      update comment on default proxy value as we use QNetworkProxy::ProxyType instead of int now
 +
 +2017-10-05  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      AppSettings returns the proxy type as QNetworkProxy instead of int now.
 +
 +2017-10-05  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Settings (dialog): add HTTP+SOCKS5 radio buttons and use them
 +      Hopefully fixes: #59
 +
 +      Add ProxyType setting in preparation of SOCKS5 proxy support.
 +
 +2017-10-03  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Settings dialog: set port range to 1-65535 and right-align.
 +
 +      Settings dialog: change heading to "HTTP proxy settings".
 +      Fixes: #59
 +
 +2017-10-02  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      schedulexmlparser.cpp: add missing #include
 +      Found when building with gcc 4.2.1 under Maemo5.
 +
 +2017-10-02  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      C++98 compatibility: Variable initialization in SqlEngine class.
 +
 +      C++98 compatibility: Variable initialization in TransactionRaii class.
 +
 +      C++98 compatibility: Use throw() in destructor of std exceptions.
 +
 +      C++98 compatibility: QDialogButtonBox::StandardButton::Open -> QDialogButtonBox::Open.
 +
 +2017-10-02  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Make sure we build with -std=c++98 (under Unix and Qt4)
 +      because gcc 4.2.1 on Maemo5 doesn't know c++11, and with this setting we can
 +      prevent accidents also when building the Qt4 variant with a modern compiler.
 +
 +2017-10-01  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      bump version after release
 +
 +      update NEWS before release of version 0.6.3
 +
 +2017-09-27  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Now the links in the description are clickable. Fixes #49.
 +
 +      The ID of an event is checked now when importing the XML file.
 +
 +      Now using exceptions to report errors in schedulexmlparser.cpp.
 +
 +      Create dedicated sub-function to parse XML data (to prepare exception error reporting).
 +
 +      Use TransactionRaii in schedulexmlparser.cpp.
 +
 +      Implement transaction RAII.
 +
 +      Implement rollbackTransaction().
 +
 +2017-09-13  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      If no day_change was given for a conference 4 AM is assumed.
 +      Fixes #53.
 +
 +      Import schedules with dates attached to events correctly.
 +
 +      Avoid duplicate code when inserting/updating a conference.
 +
 +2017-09-13  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      URL input dialog: trim URL.
 +
 +2017-08-30  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Minor typographic improvement.
 +
 +      "Open" button is disabled not when no URL was entered.
 +
 +2017-08-30  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      Mention new location of database file under Qt5 in docs.
 +
 +      ifdef qt4 and qt5
 +
 +      Merge branch 'master' into qt5
 +
 +2017-08-30  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      When no track is present, use the special name "No track" is used. This fixes issue #56.
 +
 +2017-08-30  Martín Ferrari  <tincho@tincho.org>
 +
 +      Fix possibility for SQL injection attack.
 +
 +      Demangling exception class name from error message of unknown exceptions.
 +
 +      Write debug message in case of silently catched exceptions.
 +
 +      More specific error message for "unknown" exceptions.
 +
 +2017-08-27  gregor herrmann  <gregor@toastfreeware.priv.at>
 +
 +      TrackInsertException: make error message useful.
 +
 +      TrackInsertException: correctly derive from OrmSqlException.
 +
 +      Derive OrmException from std::runtime_error.
 +
 +2017-01-24  gregor herrmann  <gregoa@debian.org>
 +
 +      bump version after release
 +
 +      update NEWS before release.
 +
 +2017-01-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Used tr() for some more GUI strings (there are plenty more that should be treated this way).
 +
 +      Used tr() for some GUI strings (there are plenty more that should be treated this way).
 +
 +2017-01-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Handle SSL errors.
 +      Show warning with error messages, offer to ignore them or abort download.
 +
 +      Set some SSL parameters for network request.
 +
 +2017-01-22  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Merged definition and initialization of conflictSeverity.
 +
 +2017-01-22  gregor herrmann  <gregoa@debian.org>
 +
 +      Initialize conflictSeverity variable.
 +      Compiler warning with -Wmaybe-uninitialized.
 +
 +      confclerk.pro: add "-transparent white" to convert call
 +
 +      Fix typo in error message.
 +
 +      Update example schedule URLs in README.
 +
 +      Bump copyright years for icons.
 +
 +2017-01-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Now ignoring .blend1 files (backup files Blender creates after saving).
 +
 +      In the treeview, the right mouse button now back-cycles the favourite state of events.
 +
 +      Added back-cycling option in Event::cycleFavourite.
 +
 +      Updated renderings of the alarm icons after changing the Blender file.
 +
 +      The alarm icons had a black border instead of a white border in Blender 2.76b. Fixed it.
 +
 +      Updated renderings of the favourite icons after changing the Blender file.
 +
 +      The favourite icons had a black border instead of a white border in Blender 2.76b. Fixed it.
 +
 +      Re-rendered favourite icons with Blender 2.76b and added favourite-weak rendering.
 +
 +2017-01-21  gregor herrmann  <gregoa@debian.org>
 +
 +      Bump copyright years.
 +
 +      whitespace
 +
 +2017-01-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Addes white border to favourite-weak star.
 +
 +2017-01-20  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Renamed favourite-on.png to favourite-strong.png and favourite-off.png to favourite-no.png.
 +
 +      Now the conflict severity is drawn.
 +
 +      Removed deprecated functions.
 +
 +      Event favourite is now tristate in the code now and the corresponding buttons are tristate as well.
 +
 +      Checked in .gitignore.
 +
 +      favourite is now tristate instead of bool.
 +
 +2017-01-11  gregor herrmann  <gregoa@debian.org>
 +
 +      eventdialog: only convertFromPlainText description and abstract if they are not richtext.
 +
 +      Merge branch 'master' into qt5
 +
 +2015-01-20  gregor herrmann  <gregoa@debian.org>
 +
 +      Bump copyright year.
 +      In anticipation of a release in 2015.
 +
 +      Update release target.
 +      Exclude .git directory from tarball.
 +
 +2015-01-20  gregor herrmann  <gregoa@debian.org>
 +
 +      Update ChangeLog target.
 +      Use /usr/share/gnulib/build-aux/gitlog-to-changelog (in the gnulib) package
 +      instead of svn2cl, since we moved from subversion to git.
 +
 +      gitlog-to-changelog sums up the commits, whereas git2cl dumps them
 +      individually.
 +
 +2015-01-13  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Merged changes from trunk. It still compiles successfully. :-)
 +
 +2014-09-11  gregor herrmann  <gregoa@debian.org>
 +
 +      Make release target depend on distclean target to ensure we have no compiled objects or Makefiles in the release tarball.
 +
 +      bump version number after release
 +
 +      Finalize NEWS before release.
 +
 +      Update NEWS for 0.6.1 release.
 +
 +      Update reference URLs in README.
 +
 +      Update copyright notices.
 +
 +      confclerk.pro: fix typo in pod2man call.
 +
 +      confclerk.pro: cosmetic editoring.
 +
 +      confclerk.pro: add signature target.
 +      gpgp-sign tarball when making a release.
 +
 +2014-09-09  gregor herrmann  <gregoa@debian.org>
 +
 +      Fix SQL query which returned too many rooms.
 +
 +2013-09-24  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Now the application compiles for QT5.
 +      Note that the location of the database in Linux has changed from
 +      ~/.local/share/data/Toastfreeware/ConfClerk
 +      to
 +      ~/.local/share/Toastfreeware/ConfClerk
 +
 +      Fixed a yet unknown bug: The room name was not properly inserted in the room table.
 +
 +2013-09-10  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Escaped the strings that are shown in the dialog and preserve some layout.
 +
 +2013-07-04  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Make it impossible to hide the toolbar by disallowing its context menu (fixes #51).
 +
 +2013-06-26  gregor herrmann  <gregoa@debian.org>
 +
 +      remove TODO with one remaining item which I don't understand
 +
 +      move TODO item to trac, issue #52
 +
 +      move TODO item to trac, issue #51
 +
 +      move TODO item to trac, issue #50
 +
 +2013-06-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Applied "desktop-keywords.patch": add Keyword entry to confclerk.desktop Author: gregor herrmann <gregoa@debian.org>
 +
 +      Applied "spelling.patch": Description: fix a typo Author: gregor herrmann <gregoa@debian.org>
 +
 +2013-06-12  gregor herrmann  <gregoa@debian.org>
 +
 +      bump version for future release
 +
 +      Update NEWS for 0.6.0 release.
 +
 +      Set version to 0.6.0.
 +
 +2013-06-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed a "TODO" comment.
 +
 +2013-06-12  gregor herrmann  <gregoa@debian.org>
 +
 +      Update example URLs in README.
 +
 +2013-06-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Added some actions to the mainwindow - otherwise shortcuts don't work on MAEMO (see ticket #28).
 +
 +      Removed debug output.
 +
 +2013-05-30  gregor herrmann  <gregoa@debian.org>
 +
 +      Eventdialog: make sure the same colours as everywhere are used.
 +      Additionally adjust font size on maemo.
 +
 +      This should allow to close #48.
 +
 +2013-05-28  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Changed the event dialog layout hoping to improve issue #48.
 +
 +2013-05-28  gregor herrmann  <gregoa@debian.org>
 +
 +      Move removal of generated file into new releaseclean target.
 +
 +      .pro: Add created files to QMAKE_DISTCLEAN.
 +
 +2013-05-28  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Made sure the mainwindow is destroyed properly and the sql database is closed.
 +
 +2013-05-28  gregor herrmann  <gregoa@debian.org>
 +
 +      #include appsettings.h for maemo.
 +
 +2013-04-30  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Now the dayChange time is taken into account. This fixes #43.
 +
 +2013-04-19  gregor herrmann  <gregoa@debian.org>
 +
 +      bump copyright years
 +
 +      add Stefan to AUTHORS
 +
 +2013-04-16  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Formatted alarm message (closes ticket #46).
 +
 +      Alarms are reported via QSystemTray now (see ticket #46).
 +
 +2013-04-04  gregor herrmann  <gregoa@debian.org>
 +
 +      extend comment re systrayicon position
 +
 +2013-04-03  gregor herrmann  <gregoa@debian.org>
 +
 +      tray icon: add (commented out) debug output and ->hide
 +
 +2013-04-02  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Prepared to show an alarm message via tray icon on non-MAEMO systems.
 +
 +2013-04-02  gregor herrmann  <gregoa@debian.org>
 +
 +      fix typo in comment
 +
 +      fix typo in comment
 +
 +      fix typo in comment
 +
 +2013-03-19  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      The day tab is now the current tab when starting the program (ticket #44).
 +
 +      Current day is used now when starting the program or loading a conference (ticket #44).
 +
 +      Created more shortcuts (ticket #28).
 +
 +      Added comments to the SQL statements (back in October).
 +
 +2012-10-17  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      The focus is set to the search input field when the search icon is clicked.
 +
 +2012-10-17  gregor herrmann  <gregoa@debian.org>
 +
 +      When ConfClerk is called with arguments (alarm), check for >= 3.
 +      Alarmd seems to add an additional argument.
 +
 +      Rip out unused DBUS stuff.
 +
 +2012-10-17  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Fixed bug: Arguments for calling ConfClerk in an alarm event were not built correctly.
 +
 +      Changed int to string converstion method because the old method gave an compilation error on MAEMO.
 +
 +      We added the conferenceId to some alarm related methods (ticket #41).
 +
 +2012-10-08  gregor herrmann  <gregoa@debian.org>
 +
 +      Update URLs in README.
 +
 +2012-09-25  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Schmema update completed. Finally closing ticket #45.
 +
 +      Reloading a conference works now.
 +
 +      Fixed: Forgot to call query.exec() at several places.
 +
 +      Added sql file that updates the schema from version 000 to version 001.
 +
 +      Changed table names to have small letters.
 +
 +      Changed coding style of sql file.
 +
 +2012-09-25  gregor herrmann  <gregoa@debian.org>
 +
 +      Remove unsed (and removed from db) 'days' column fro xml parser and all sql parts.
 +
 +2012-09-25  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Suggestion for database schema version 001.
 +
 +2012-09-25  gregor herrmann  <gregoa@debian.org>
 +
 +      Don't insert empty string into picture column.
 +      (NOT NULL constraint removed from db schema.)
 +
 +      Remove empty-city-hack.
 +      (NOT NULL removed from db schema.)
 +
 +      Remove ifdef'd out members
 +
 +2012-09-06  gregor herrmann  <gregoa@debian.org>
 +
 +      One version for creating the directory is enough :)
 +      (Now tested on Windows, too.)
 +
 +2012-09-05  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Added a second possibility to create the directory and removed the TODO.
 +
 +2012-09-05  gregor herrmann  <gregoa@debian.org>
 +
 +      fix .mkpath()
 +      Creating the "." path works.
 +      Is this idiomatic? At least it works (under Windows).
 +
 +      TODO left: handle errors.
 +
 +2012-09-04  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Restructured the SqlEngine. Not yet finished (see "TODO" in the code).
 +
 +2012-09-04  gregor herrmann  <gregoa@debian.org>
 +
 +      fix some more header includes
 +
 +      fix typo in comment
 +
 +2012-08-27  gregor herrmann  <gregoa@debian.org>
 +
 +      fix #includes
 +      (detected by QtCreator and friends on windows)
 +
 +2012-08-22  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      On the way to fix #45.
 +
 +2012-08-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Fixed bug: Changing the conference URL resulted in an error message.
 +
 +2012-06-13  gregor herrmann  <gregoa@debian.org>
 +
 +      Add .pro.user.* to svn:ignore and remove it in the release target.
 +
 +      TODO: new item about duplicate documentation.
 +
 +      README: add Stefan to Contact section.
 +
 +2012-06-12  gregor herrmann  <gregoa@debian.org>
 +
 +      Bump version after 0.5.5 release.
 +
 +      Add release date in NEWS.
 +
 +      remove TODO item (expand/collapse)
 +
 +      Add more items to NEWS.
 +
 +      Add items to NEWS.
 +
 +      Add Stefan as a copyright holder to source files, too.
 +
 +      sync copyright notices between README and confclerk.pod
 +
 +2012-06-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Implemented expand/collapse of the event groups. Resolves ticket #31.
 +
 +      The groups starts at full hours again.
 +
 +      Philipp's comments to r1444.
 +
 +      Created icons collapse and expand.
 +
 +2012-05-03  gregor herrmann  <gregoa@debian.org>
 +
 +      createTimeGroups(): use QDateTime instead of QTime to avoid "midnight overflow". Cf. #42
 +
 +2012-05-02  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      This at least partly fixes #42 ("fun with time zones").
 +
 +2012-05-02  Stefan Strahl  <stef@nstrahl.de>
 +
 +      Changed inactive favourite icon to match alarm icon style
 +
 +2012-04-22  gregor herrmann  <gregoa@debian.org>
 +
 +      Show the AlarmOff icon in the timegroup header when the group has no alarms set.
 +
 +2012-04-19  gregor herrmann  <gregoa@debian.org>
 +
 +      Update copyright information in README for new icons.
 +
 +2012-04-19  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Changed the alarm icon due to ticket #40. I haven't tried it because I don't have an N900 device.
 +
 +2012-04-19  gregor herrmann  <gregoa@debian.org>
 +
 +      Update NEWS with recent bug fixes.
 +
 +      Update copyright in README for changed icons.
 +
 +2012-04-19  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Changed favourite icons as a response to ticket #40.
 +
 +2012-04-18  gregor herrmann  <gregoa@debian.org>
 +
 +      Handle redirects when importing schedules over the network.
 +      Fixes: #39
 +
 +2012-04-07  gregor herrmann  <gregoa@debian.org>
 +
 +      More output on errors.
 +
 +2012-04-05  gregor herrmann  <gregoa@debian.org>
 +
 +      Fix typo in docs.
 +
 +      Update exmple URLs in README.
 +
 +2012-03-21  gregor herrmann  <gregoa@debian.org>
 +
 +      Update copyright years.
 +
 +      Add note about fixed bug to NEWS.
 +
 +2012-03-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Hopefully fixed bug #38: As the alarm message was used to identify the event by setting it to the eventId and in r1359 the alarm message was changed to show the event title, alarms could not be deleted anymore. Therefore, two alarm attributes (int values) were introduced with this commit: "conferenceId" and "eventId" to identify the event and therefore, deleting alarms should work again. Additionally a second (not reported) bug was fixed: Activating an alarm in the treeview set the alarm to the current time plus 10 seconds.
 +      However, I don't know for sure whether this commit fixed bug #38 becaus I don't have a maemo device to test it.
 +
 +2012-03-20  gregor herrmann  <gregoa@debian.org>
 +
 +      Removed commented out reference to removed files.
 +
 +2012-03-20  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Deleted calendar.h and calendar.cpp as they are not used.
 +
 +      Deleted files that don't seem to be used.
 +
 +2012-03-11  gregor herrmann  <gregoa@debian.org>
 +
 +      typo in docs
 +
 +2011-12-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Updated the TODO list.
 +
 +      When the search toolbox button is clicked when the search dialog is already open, it is closed.
 +
 +      Implemented stub for expand/collape all.
 +
 +      Another layout study.
 +
 +      Changed layout details to study the effect in Maemo.
 +
 +      Better calculation of the day navigator date position.
 +
 +      Fixed by gregoa: Searching for titles where the events had no person did not find anything.
 +
 +      The search result is now synced with the daynavigator. When the search result is not on the current date, the date is changed.
 +
 +2011-11-27  gregor herrmann  <gregoa@debian.org>
 +
 +      Update URL list in README.
 +
 +2011-10-17  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Sorted by duration additionally to start.
 +
 +      Implemented "now" action and removed the "now" button from the day navigator.
 +
 +      Removed unused nowEvent functions.
 +
 +      Implemented the reload button functionality. Closes: #34
 +
 +      The conflict editor works again.
 +
 +      The favorite tab gets updated again after changing the favorite state.
 +
 +2011-10-05  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed the "Now" tab. Removed the day navigator inside tabs. Added a search button in the button bar.
 +      Right now, at least the following does not work:
 +      * update of favorites
 +      * conflict editor
 +      * setting favorite in the event dialog
 +
 +2011-09-21  gregor herrmann  <gregoa@debian.org>
 +
 +      Search dialog: less width, more lines.
 +
 +      Tabs: elide tabtexts.
 +
 +2011-09-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Implemented "unset dates" in the date navigator.
 +
 +      The dateChanged signal is transmitted to the tabcontainers now.
 +
 +      Introduced a toobar. Added a new global date navigator instance (the "old" ones are not removed yet).
 +
 +      Cleanup daynavigatorwidget.
 +
 +2011-09-14  gregor herrmann  <gregoa@debian.org>
 +
 +      Fix typo in NEWS.
 +
 +      bump version after release
 +
 +      Add date to NEWS before release.
 +
 +2011-09-12  gregor herrmann  <gregoa@debian.org>
 +
 +      Add NEWS items for upcoming 0.5.4 release.
 +
 +      Add dates to all releases in NEWS.
 +
 +      Day navigator widget: setDates() - change logic of setting mCurDate: if it's outside the conference range, set it to mStartDate   (and not to mEndDate when it's "greater") -- when going to an earlier   conference, starting on the last day doesn't really make sense - update() the widget after changing dates.   this might be a bit expensive but it ensure that the displayed date is   what we want, and since there are many day navigator widgets there's   probably no single other place
 +      Hopefully closes #36.
 +
 +      Replace some tabs with the usual spaces.
 +
 +2011-09-06  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Assigned confclerk icon to main window.
 +
 +      Now the progress bar is shown immediately after clicking the refresh conference button. Closes ticket #25.
 +
 +      Fixed ticket #26 (empty tabs after some actions).
 +
 +2011-09-06  Stefan Strahl  <stef@nstrahl.de>
 +
 +      Fixed ticket #20
 +
 +2011-09-06  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed one comment and fixed typos.
 +
 +2011-09-06  gregor herrmann  <gregoa@debian.org>
 +
 +      Mention frab (FrOSCon penta clone) and Grazer Linuxtage (fixes #33).
 +
 +2011-08-24  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Rewrote code to group events together with gregoa. Closes bug #22.
 +
 +2011-08-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      This should close ticket #35 ([maemo] conflict icon overlaps alarm icon).
 +
 +      Changed the drawing of events to make use of system colors and styles, at least partially.
 +
 +2011-08-16  gregor herrmann  <gregoa@debian.org>
 +
 +      bump version after release
 +
 +      Remove "TODO" from NEWS, a.k.a. prepare for release
 +
 +2011-08-15  gregor herrmann  <gregoa@debian.org>
 +
 +      Update NEWS.
 +
 +      Improve day navigator widget.
 +      (Still black magic, now even with #ifdefs :/)
 +
 +      .isEmpty() feels more Qtish then == ""
 +
 +      Only add ", $venue" to conference location when $venue is not empty.
 +
 +      ISO formatting of conference dates in conferenceeditor.
 +
 +      Quick fix for ticket: #32: if the schedule XML doesn't contain a city, we put "n/a" there.
 +      In the long run we might want to find a system for changing the database scheme; too bad sqlite has only limited ALTER TABLE support.
 +
 +      emit the parsingScheduleBegin() signal earlier, so we get the progressbar a bit earlier (cf. ticket #25)
 +
 +      mention FrOSCon as an example (although it's not working at the moment, cf. #32)
 +
 +2011-07-24  gregor herrmann  <gregoa@debian.org>
 +
 +      Use "-" in start-end. Closes: #30
 +
 +      Shift date text up by icon/2 in order to re-center the text. More or less at least.
 +
 +      Add today button to date navigator. TODO: date is not centered between prev/next arrows anymore.
 +      Cf. #29
 +
 +2011-07-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Make sure to remove src/bin/libqalarm.a on make clean.
 +
 +      bump version after release
 +
 +      Prepare NEWS before release of 0.5.2.
 +
 +      Remove conference/room records unconditionally from EVENT_ROOMS
 +
 +2011-07-22  gregor herrmann  <gregoa@debian.org>
 +
 +      SqlEngine::addRoomToDB: remove event/conference combinations from EVENT_ROOM that are already there. Should avoid duplicates on updates where the room name changes. Hopefully fixes ticket #24.
 +
 +      manpage: s/Desafinado/ConfClerk/
 +
 +2011-07-19  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Fixed ticket #23: No close button in conference dialog when no confernces are in the list.
 +
 +2011-07-15  gregor herrmann  <gregoa@debian.org>
 +
 +      Don't include tarballs in release tarballs ...
 +
 +      Distinguish "Presenter" and "Presenters" (instead of "Presenter(s)"). Closes: Ticket #17
 +
 +      Show event title instead of id in alarms.
 +
 +      Don't remove generated files in DISTCLEAN; otherwise they are gone during package builds :/
 +
 +      Add a TODO item.
 +
 +2011-07-14  gregor herrmann  <gregoa@debian.org>
 +
 +      Reorganize CLEAN and DISTCLEAN targets.
 +
 +      Bump VERSION after release.
 +
 +      Remove ChangeLog from svn (it's created via svn2cl, so this is circular). Add generated files to distclean target.
 +
 +      Update ChangeLog before release.
 +
 +2011-07-13  gregor herrmann  <gregoa@debian.org>
 +
 +      NEWS entry for 0.5.1 release.
 +
 +2011-07-13  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      This is just a quick-and-dirty workaround commit to aviod a drawing problem on maemo. This commit might be reverted ...
 +
 +      The speaker is preselected in the search dialog now.
 +
 +      First try to improve the colors (ticket #13).
 +
 +      The cancel button on the settings dialog works now (ticket #14) and the layout of the settings dialog is stable now (ticket #15).
 +
 +      Changed the menu to be non-hierarchical. Closes ticket #16.
 +
 +      Changed the placement of the date label again. Changed the date format to show the day-of-week.
 +
 +      Replaced "130" by s.width() when centering the date.
 +
 +2011-07-12  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      This commit closes ticket #12. The search terms are ANDed now and a call to trimmed() before splitting the search string avoids problems with leading/trailing spaces.
 +
 +2011-07-11  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Before querying the SEARCH_EVENT table, its existence is checked. Therefore a command line debug error message is avoided.
 +      This commit partly fixes ticket #10.
 +
 +      Error messages reported with the function error_essage are no longer writted to std:error because they are shown to the user anyway. This commit partly resolves ticket #10.
 +
 +      The description and person list of the event dialog is now selectable so that copy&paste is possible.
 +
 +2011-07-10  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Tuned the about dialog.
 +
 +      Minor tuning of the conference editor. The reload button now has a text on it.
 +
 +      Fixed bug (related to ticket #12): Only the last search term is used.
 +
 +      Undid changes to sqlengine.cpp I committed accidentally in r1318.
 +
 +2011-07-08  gregor herrmann  <gregoa@debian.org>
 +
 +      Split search keyword string on whitespace.
 +
 +      Avoid duplicate search results by using SELECT DISTINCT when filling the SEARCH_EVENT table.
 +
 +2011-07-05  gregor herrmann  <gregoa@debian.org>
 +
 +      Add DebConf11 URL to README.
 +
 +2011-07-04  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Cleaning of the conferenceeditor dialog.
 +
 +      Removed the ability to show "pictures" (maps) of rooms and maps of conferences. The XML file does not contain picture/map/image information of conferences or rooms. We left the room.picture definition in the database SQL because there is no "drop column" in sqlite.
 +
 +      Removed the unused status bar.
 +
 +2011-06-29  gregor herrmann  <gregoa@debian.org>
 +
 +      Some more s;TARGETDEPS;POST_TARGETDEPS;
 +
 +      s;scheduler;schedule application;
 +
 +      Bump version
 +
 +      Update changelog.
 +
 +2011-06-28  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed many of the qDebug() output lines (see ticket #10).
 +
 +2011-06-28  gregor herrmann  <gregoa@debian.org>
 +
 +      add copyright/license for exchanged icons
 +
 +2011-06-28  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Replaced the star icons with self-made versions (Blender 2.57b) that are better distinguishable. Closes ticket #8.
 +
 +2011-06-27  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Included application version in the about dialog. This closes ticket #9.
 +
 +2011-06-26  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Links in events are now clickable (resolves ticket #4).
 +
 +      Searching without active conference doesn't give an error message anymore (resolves ticket #7).
 +
 +      The '%' character doesn't have to be escaped anymore.
 +
 +      The window title was still "FOSDEM Schedule".
 +
 +2011-06-25  gregor herrmann  <gregoa@debian.org>
 +
 +      Add entries to NEWS file.
 +
 +      Shorten TODO.
 +
 +      Create a simple man page.
 +
 +      Add URLs for FOSDEM 2011, DebConf 2010, and 27C3 to README instead of TODO.
 +
 +      Remove the remaining last two fosdem files.
 +
 +      Update contact info.
 +
 +2011-06-25  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Bugs are now reported in the trac system.
 +
 +2011-06-24  gregor herrmann  <gregoa@debian.org>
 +
 +      Mark bug 3 as fixed.
 +
 +2011-06-24  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Enter or return triggers the search now when the focus is at the searchEdit or at one of the checkboxes.
 +
 +      Filed bug 7: Error message when searching without having conferences
 +
 +2011-06-24  gregor herrmann  <gregoa@debian.org>
 +
 +      Add another wishlist (more: design discussion) bug
 +
 +2011-06-24  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed unnecessary debug output and code.
 +
 +      Fixed bug reported by gregor: Too many authors are shown (form other conferences as well).
 +
 +2011-06-24  gregor herrmann  <gregoa@debian.org>
 +
 +      Improve release target in .pro
 +
 +2011-06-24  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Removed two unused variables to avoid compiler warnings.
 +
 +2011-06-24  gregor herrmann  <gregoa@debian.org>
 +
 +      Somewhere a slash was missing ...
 +
 +      Updated TODO.
 +
 +      Add contact info to README.
 +
 +      Update 'About' dialog.
 +
 +      Remove ULB, Campus Solbosch maps.
 +
 +      The big rename. Which was not so big after all ...
 +
 +      De-maemofy: make .desktop file generic, remove resized (old) icons and Makefile for installing them.
 +
 +      Add new resource file to app.pro
 +
 +      Icons, part 2: replace fosdem/brain icons with ConfClerk logo
 +
 +      Icons part 1: replace all icons (except the FOSDEM ones) with icons from current gnome-icon-theme
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Remove unused icons.
 +
 +      Another instance of the databasename. (NOTE: untested, this codepath is only used on maemo)
 +
 +      Move config and sqlite database. They are both at the xdg-specified locations now: ~/.local/share/data/Toastfreeware/ConfClerk/ConfClerk.sqlite ~/.config/Toastfreeware/ConfClerk.conf
 +
 +      Rename DBus service. Hopefully successful.
 +
 +      Add some conference URLs to TODO
 +
 +      New bug noted.
 +
 +      New bug noted.
 +
 +      qmake warning: POST_TARGETDEPS instead of TARGETDEPS
 +
 +      Remove libs in clean target.
 +
 +      Move and rename logo, create a target to convert it in .pro, add copyright/license to README. Update TODO.
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Checked the remaining code. Didn't find possibilities for SQL injections anymore.
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Update TODO.
 +
 +      Add release and changelog targets to project file.
 +
 +      Remove empty Changelog.
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Prevented SQL injections in function addPersonToDB.
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Add copyright to source.
 +
 +      Update GPL blurb in source files.
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Just adapted the page size to be rectangular.
 +
 +      This suggestion/"doodle"* for the new application icon was created just now by Christian Kling <kling_christian@gmx.at> who (he is sitting next to me right now) agreed to publish it under the GNU GPL (v2 or later).
 +      *Christian's words.
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      Remove ./debian directory, we'll do the packaging outside the "upstream" repository.
 +
 +      First round of documentation updates.
 +
 +      Prepare ChangeLog generation from svn logs.
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Prevented SQL injection in function addLinkToDB.
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      update TODO
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Fixed SQL error in searchEvent when no table was selected. Prevented SQL injection in searchEvent.
 +
 +2011-06-23  gregor herrmann  <gregoa@debian.org>
 +
 +      add TODO file
 +
 +2011-06-23  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Added some comments, removed and added some debug information.
 +
 +      Fixed a bug I introduced when reparing the addRoomToDB function.
 +
 +      Tracks are inserted now when importing new conferences.
 +
 +      void possible SQL injection in function addRoomToDB.
 +
 +      Removed copying the fosdem.sqlite database during the make process.
 +
 +2011-06-22  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      The database is now created from the program. We don't need to copy or provide fosdem.sqlite anymore.
 +
 +      Persons are deleted now when a conference is removed.
 +
 +      Added a file with bugs that I noticed when playing with the application.
 +
 +      Rooms are inserted now for additionally imported conferences.
 +
 +      Importing persons for multiple conferences works now.
 +
 +      Changed UNIQUE statements in the database table definition so that they make sense for multiple conferences and do no not prevent successful imports.
 +
 +2011-06-22  gregor herrmann  <gregoa@debian.org>
 +
 +      Insert new field xid_conference into table track, room and person.
 +
 +2011-06-21  Philipp Spitzer  <philipp@spitzer.priv.at>
 +
 +      Created schema for the database with additional colum xid_conference in the tables track, room and person.
 +
 +      Added menu item "quit".
 +
 +      Removed data directory from subdirs so that the manually created Makefile is not overwritten by qmake -r.
 +
 +      Removed dbus dependency on non-maemo platforms.
 +
 +2010-05-05  kirilma  <kirilma@localhost>
 +
 +      use enabled flag instead of repeated criateria check
 +
 +      add enabled flag
 +
 +      refactor: more compact drawing of controls
 +
 +      do not draw showmap button for event is there is no map for its room
 +
 +      refactor: cache whole Room object in Event
 +
 +      store room map in database
 +      show it if it's available, otherwise show a warning
 +      set proper values in default database
 +      new rooms imported as without maps
 +
 +      store path to conference map in database
 +      path stored as additional field in conference table
 +      if it's null or empty, "Show map" button is not shown
 +      if existing database does not have the field, it will be automatically added
 +
 +2010-05-04  kirilma  <kirilma@localhost>
 +
 +      UI tune: use buttonBox instead of single buttons to comply with platform conventions
 +      maemo5 does not print "Cancel" buttons, and names "OK" differently
 +      just use buttonBox, and it will behave properly at each platform
 +
 +2010-04-23  kirilma  <kirilma@localhost>
 +
 +      restore viewing of conference map
 +
 +      minor UI fixes
 +      fix size of UrlInputDialog
 +      restore [remove] button at the same button as [add]
 +
 +2010-04-22  kirilma  <kirilma@localhost>
 +
 +      remove obsoleted code
 +      also fix some types
 +
 +      optimization
 +
 +      fine tune geometry to look nicer
 +
 +      add authors for files
 +
 +      reworked UI for conference editing
 +      underlying representation of conference list is also changed
 +
 +      CC: fix endlines
 +
 +2010-04-16  kirilma  <kirilma@localhost>
 +
 +      use visible notifications of errors
 +      also early detect parsing errors
 +
 +2010-04-15  kirilma  <kirilma@localhost>
 +
 +      make label shorter to place all required buttons
 +
 +      fix deletion of last conference
 +      implement for cleaning all views in the tabs
 +      clean the models when no active conference found
 +      fix cleaning model and signalling views
 +
 +      implement deleting a conference
 +      pass event about it to mainwindow to update select control
 +      fix Conference::activeConference() to work when first conference is removed
 +
 +      add buttons for refreshm new url and delete and partly implement corresponding actions
 +      also changed Online -> Refresh
 +      delete action is not implemented yet
 +
 +      store URL's for conferences
 +      * use it at update
 +      * let user update the url before request
 +
 +      remove unused code
 +
 +      fix references in SQL
 +
 +2010-04-14  kirilma  <kirilma@localhost>
 +
 +      save output from updater QT designer
 +      update all ui files to the output format of the new Qt Designer (version: 4.5.3really4.5.2-0ubuntu1)
 +      to avoid unrelated changes in SCM later
 +
 +2010-04-13  kirilma  <kirilma@localhost>
 +
 +      remove unused class TabWidget
 +
 +      move Settings and About to Window Menu
 +      * remove Setting and About controls from widgets
 +      * make instead a window menus with the corresponding actions
 +      * rename "Proxy settings" to "Settings", placing the proxy button in a control group
 +
 +2010-04-12  kirilma  <kirilma@localhost>
 +
 +      build fix at maemo
 +      force order of computation
 +      some versions of qmake-qt4 require it
 +
 +      remove ON CONFLICE REPLACE for events
 +
 +      generate default database instead of using binary one
 +
 +      fix event insert or update
 +      * add error reporting for queries
 +      * actually run check query
 +      * properly get conference_is from event
 +      * fix checking of non-empty result
 +      * fix insert query
 +
 +      catch exceptions which leak outside of event handlers
 +      If we do not do this, QT will exit from event loop.
 +
 +2010-04-09  kirilma  <kirilma@localhost>
 +
 +      use update for events when they are already exists
 +      also use only parameters substitution for these queries
 +
 +      use transactions to make import faster
 +
 +2010-03-03  uzakmat  <uzakmat@localhost>
 +
 +      Preparing for release 0.4.1
 +
 +2010-03-03  timkoma  <timkoma@localhost>
 +
 +      UTC/LocalTime fix for import conference XML, DB queries for multiple conferences fixes
 +
 +2010-02-05  timkoma  <timkoma@localhost>
 +
 +      fix for import - ON CONFLICT REPLACE
 +
 +2010-02-05  uzakmat  <uzakmat@localhost>
 +
 +      alarm UTC/localtime fix
 +
 +2010-02-03  uzakmat  <uzakmat@localhost>
 +
 +      addition of Diablo specific installation instructions in INSTALL
 +
 +      installation of 40x40 icons enabled because of Diablo
 +
 +      release information added for release 0.3
 +
 +2010-02-03  timkoma  <timkoma@localhost>
 +
 +      performance improvement for Events
 +
 +      performance improvement for load persons
 +
 +2010-02-02  uzakmat  <uzakmat@localhost>
 +
 +      NEWS file update
 +
 +      A header with the proper copyright/lincence statement was added into each source/header file.
 +
 +2010-02-02  pavelpa  <pavelpa@localhost>
 +
 +      corrected 'exec' path when adding an alarm
 +
 +2010-02-02  uzakmat  <uzakmat@localhost>
 +
 +      NEWS file updated
 +
 +      README, INSTALL, AUTHORS - filled in
 +
 +2010-02-02  hanzes  <hanzes@localhost>
 +
 +      Alarm modifications
 +
 +2010-02-01  hanzes  <hanzes@localhost>
 +
 +      Alarm dbus connection added
 +
 +      Alarm dbus connection added
 +
 +2010-02-01  pavelpa  <pavelpa@localhost>
 +
 +      gradient for treeview items
 +
 +      changed permissions for the db  - TODO: check it on the device
 +
 +      compilation error fix
 +
 +      compilation error fix
 +
 +      N810 changes: maximized 'map' dialog
 +
 +2010-02-01  hanzes  <hanzes@localhost>
 +
 +      Alarm dbus connection added
 +
 +2010-02-01  pavelpa  <pavelpa@localhost>
 +
 +      added 'settings' icon for setting-up proxy(network connection)
 +
 +      GUI changes for N810 device
 +
 +2010-02-01  uzakmat  <uzakmat@localhost>
 +
 +      debian/control - Build-Depends section set
 +
 +2010-02-01  pavelpa  <pavelpa@localhost>
 +
 +      created resource which contains parsed schedule, so the user doesn't have to parse it by himself
 +
 +2010-02-01  uzakmat  <uzakmat@localhost>
 +
 +      alarm - example of dbus binding functional
 +
 +2010-02-01  pavelpa  <pavelpa@localhost>
 +
 +      updated schedule.en.xml to the newest version
 +
 +2010-01-30  pavelpa  <pavelpa@localhost>
 +
 +      changed fosdem icon in about dialog to brain-alone icon
 +
 +      changed copyright string
 +
 +      number of events/alarms/favs is bottom-aligned to the bottom of the icons
 +
 +2010-01-29  pavelpa  <pavelpa@localhost>
 +
 +      if the application is run for first time, network connection is set to Direct connection
 +
 +2010-01-29  uzakmat  <uzakmat@localhost>
 +
 +      initial binding of alarm to a DBus call
 +
 +2010-01-29  pavelpa  <pavelpa@localhost>
 +
 +      implemented 'proxy settings' dialog  - user can secify proxy for network communication
 +
 +      implemented importing the schedule from the Internet  - usded url: http://fosdem.org/2010/schedule/xml  - todo: hard-coded PROXY has to be fixed (add proxy settings dialog)
 +
 +      possible to have multiple conferences in the DB  - possible to switch among them  - conference schedules have to follow FOSDEM conference xml structure  - 'select Conference' bar is visible only if there are more than one conference available
 +
 +      modified 'about' dialog  - changed "Qt FOSDEM" -> "FOSDEM Schedule"
 +
 +2010-01-28  pavelpa  <pavelpa@localhost>
 +
 +      search fixed  - only the dates (range) which contain at least one event are selectable    - if there is only one event at a specified date - user can't switch to the next/prev date  - if search gives no results - a message is displayed to inform user about it
 +
 +      forgotten in previous commit
 +
 +      some performance optimizations  - favourities reloaded only if they have really changed  - otherwise only event in the question is updated
 +
 +      fixed 'conflicts' constrains
 +
 +      'now' events - displayed real now events, not just the testing ones
 +
 +2010-01-28  uzakmat  <uzakmat@localhost>
 +
 +      binary name changed to fosdem-schedule
 +
 +2010-01-28  pavelpa  <pavelpa@localhost>
 +
 +      changed conditions for conflicts
 +
 +      some 'delegate' drawing optimizations  - removed EVENT_CONFLICT table - used one SQL SELECT instead
 +
 +      conflicts updated correctly  - TODO: needs to do some drawing optimizations
 +
 +2010-01-28  uzakmat  <uzakmat@localhost>
 +
 +      package details updated to reflect the binary name change to fosdem-maemo
 +
 +2010-01-28  pavelpa  <pavelpa@localhost>
 +
 +      if no conference is in the DB, the user is automatically navigated to the conference tab, so he can import one
 +
 +      search tab - header is hidden in case no conf exists in the DB
 +
 +      event dialog GUI refactoring
 +
 +      about dialog  - added GNU GPL v2 notice
 +
 +      conference tab header is hidden if there isn't active conference  - handled some warnings
 +
 +2010-01-27  pavelpa  <pavelpa@localhost>
 +
 +      tabs' order changed
 +
 +      'nowTab' updated/loaded when application starts
 +
 +      'nowTab' list is automatically expanded
 +
 +      'conflict' list is automatically expanded
 +
 +      'conflict' dialog now contains list of events in conflict with given eventId
 +
 +      fixed 'copy-paste' error
 +
 +      implemented 'conflicts' dialog  - displays rooms instead of conflicts for now    - needs to implement additional methods in Event, ...
 +
 +      'alarm' button is hidden for not MAEMO
 +
 +2010-01-27  timkoma  <timkoma@localhost>
 +
 +      search fix
 +
 +2010-01-27  pavelpa  <pavelpa@localhost>
 +
 +      removed headers from *.h and *.cpp
 +
 +      removed appsettings  - created 'active' column in 'conference' table
 +
 +2010-01-27  timkoma  <timkoma@localhost>
 +
 +      refactoring of the TABS
 +
 +2010-01-27  pavelpa  <pavelpa@localhost>
 +
 +      modified 'about application' dialog
 +
 +      implemented 'links' in Event/EventDialog
 +
 +      refactored Event 'details' dialog  - TODO: implement 'links' method(s) in Event and use it in the dialog
 +
 +      Event 'details' dialog now contains also 'favourite' and 'alarm' buttons, so the user can set/unset the property directly from the dialog
 +
 +      'info' icon scaled to height of tabBar
 +
 +      'search' tab functionality moved to 'tabcontainer'
 +
 +      'conflicts' modifications  - preparing for the dialog showing also list of events in the conflict  - created 'EVENT_CONFLICT' for flaging events in conflict state  - TODO: not finished
 +
 +2010-01-26  pavelpa  <pavelpa@localhost>
 +
 +      conflicts refactoring  - has to be finished
 +
 +      SqlEngine made STATIC
 +
 +      implemented 'tab container' widget, which groups daynavigator with treeview   - moved functionality from mainwindow to tabcontainer   - TODO: 'search' tab not done yet
 +
 +2010-01-26  uzakmat  <uzakmat@localhost>
 +
 +      Addition of files required by the GNU coding standard
 +
 +2010-01-26  timkoma  <timkoma@localhost>
 +
 +      unique constraints added into sql
 +
 +2010-01-26  pavelpa  <pavelpa@localhost>
 +
 +      just removed unused button on 'day view' tab
 +
 +      reimplemented 'import schedule'
 +
 +2010-01-26  timkoma  <timkoma@localhost>
 +
 +      reload favourites
 +
 +2010-01-26  uzakmat  <uzakmat@localhost>
 +
 +      Alarm implementation modified
 +
 +2010-01-26  pavelpa  <pavelpa@localhost>
 +
 +      removed 'MainMenu' bar from MainWindow  - schedule is imported via 'conference' tab  - about app is launched when user clicks 'info' button/icon
 +
 +      import schedule dialog  - changed to widget  - moved to 'conference' tab
 +
 +2010-01-26  timkoma  <timkoma@localhost>
 +
 +      search done
 +
 +2010-01-26  hanzes  <hanzes@localhost>
 +
 +      NowTreeView refresh modified
 +
 +2010-01-26  pavelpa  <pavelpa@localhost>
 +
 +      "conference" tab - GUI modifications
 +
 +      About Application dialog is opened when "info" icon is clicked
 +
 +2010-01-26  hanzes  <hanzes@localhost>
 +
 +      Useless calendar class
 +
 +2010-01-26  pavelpa  <pavelpa@localhost>
 +
 +      forgotten in last CI
 +
 +      new TabWidget - contains "info" icon/button to show "AboutApplication" dialog
 +
 +2010-01-25  timkoma  <timkoma@localhost>
 +
 +      search update
 +
 +2010-01-25  korrco  <korrco@localhost>
 +
 +      room view added - finished
 +
 +      room view added - finished
 +
 +2010-01-25  timkoma  <timkoma@localhost>
 +
 +      search upgrade
 +
 +2010-01-25  korrco  <korrco@localhost>
 +
 +      room view added - need to test it
 +
 +2010-01-25  pavelpa  <pavelpa@localhost>
 +
 +      updated also groupings item (event parent item) if the user clicks eg. favourite/alarm icon (changes event data)
 +
 +      GUI work on Event Details dialog
 +
 +2010-01-25  uzakmat  <uzakmat@localhost>
 +
 +      postinst and postrm scripts added into the debian tree
 +
 +2010-01-25  timkoma  <timkoma@localhost>
 +
 +      search update
 +
 +2010-01-22  fortefr  <fortefr@localhost>
 +
 +      Conference map
 +
 +2010-01-22  pavelpa  <pavelpa@localhost>
 +
 +      fixed problem with storing conference ID to AppSettings
 +
 +      day navigator widget changes  - changed from Horizontal to Vertical
 +
 +2010-01-22  korrco  <korrco@localhost>
 +
 +      room.h and .cpp removed
 +
 +      room.h and .cpp removed
 +
 +      caching removed
 +
 +      caching removed
 +
 +2010-01-22  pavelpa  <pavelpa@localhost>
 +
 +      sanity check for consitency of confId in AppSettings and the DB
 +
 +      forgotten appsettings files
 +
 +      implemented NOW tab
 +
 +2010-01-21  pavelpa  <pavelpa@localhost>
 +
 +      modifications to import-schedule dialog  - closed automatically after parsing/importing schedule
 +
 +      EventModel signaling changed  - if some of the data (favourite,alarm) has changed on the event,    signal 'eventHasChanged' is emitted  - all treeViews (eg. DayView, FavsView, TracksView, ...) have to listen on this signal Only favouritiesView is 'reset' when current tab is changed in mainWindow  - 'cause time groupings have to be recreated, since favs may have changed
 +
 +      check for existence of conference before inserting it into DB
 +
 +      added 'Conference' tab - to list conference details  - implemented AppSettings for storing Application settings    - stored conference ID
 +
 +      removed schedule resource file, which was used for testing  - import schedule dialog replaces it's functionality
 +
 +2010-01-21  fortefr  <fortefr@localhost>
 +
 +      Warning handling
 +
 +2010-01-21  pavelpa  <pavelpa@localhost>
 +
 +      forgotten Import Schedule Dialog files
 +
 +2010-01-21  uzakmat  <uzakmat@localhost>
 +
 +      New installation path for the binary, Maemo optification added into debian/rules, new icons
 +
 +2010-01-21  pavelpa  <pavelpa@localhost>
 +
 +      import/search schedule dialog implemented
 +
 +2010-01-21  timkoma  <timkoma@localhost>
 +
 +      update for the search
 +
 +2010-01-21  fortefr  <fortefr@localhost>
 +
 +      Time conflict fix
 +
 +      Time conflict warning
 +
 +2010-01-21  korrco  <korrco@localhost>
 +
 +      exception handling changed
 +
 +2010-01-21  pavelpa  <pavelpa@localhost>
 +
 +      combined EVENT and VIRTUAL_EVENT => 'EVENT' now  - Maemo sqlite doesn't support Full-Text-Search
 +
 +2010-01-21  korrco  <korrco@localhost>
 +
 +      updateTab refactored
 +
 +      activities tab implemented
 +
 +      activities tab implemented
 +
 +      activities tab implemented
 +
 +2010-01-21  timkoma  <timkoma@localhost>
 +
 +      first working version of the search
 +
 +2010-01-21  pavelpa  <pavelpa@localhost>
 +
 +      event dialog - details about the Event is displayed in FullScreen mode
 +
 +      compilation error "linux" fix  - caused by previous commit
 +
 +      map is displayed in FullScreen mode
 +
 +2010-01-20  pavelpa  <pavelpa@localhost>
 +
 +      group items (time/track/...) are expanded on single-click
 +
 +      changed 'Activity' -> 'Track'
 +
 +      parsing activity from xml  - 'track' from xml schedule is treated as an activity
 +
 +      event dialog changes  - changed font/background colors  - title occupies more lines if it doesn't fit in one line
 +
 +      alarm dialog changes  - displayed additional Event's details  - autoresizing title (if it doesn't fit in one line)
 +
 +      updated alarm dialog
 +
 +2010-01-20  uzakmat  <uzakmat@localhost>
 +
 +      Makefile reverted as it was overwritten accidentally
 +
 +2010-01-20  pavelpa  <pavelpa@localhost>
 +
 +      implemented some error handling
 +
 +      alarm icon/stuff is relevant for MAEMO only  - used "MAEMO" define for conditional compilation
 +
 +      MAEMO: work on alarm  - snooze alarm  - cancel alarm  - run application which automatically display Event dialog for given Event ID
 +
 +2010-01-20  fortefr  <fortefr@localhost>
 +
 +      Warning icon (uncompleted)
 +
 +2010-01-20  timkoma  <timkoma@localhost>
 +
 +      temp commit for search tab
 +
 +2010-01-20  pavelpa  <pavelpa@localhost>
 +
 +      display event details in the treeView
 +
 +2010-01-20  korrco  <korrco@localhost>
 +
 +      activities viewed ordered by activity id and start time
 +
 +2010-01-20  fortefr  <fortefr@localhost>
 +
 +      Big icons fix 2
 +
 +      Big icons
 +      D    icons/favourite-off.png
 +      D    icons/favourite-on.png
 +      AM   icons/favourite-offBig.png
 +      AM   icons/favourite-onBig.png
 +      D    icons/alarm-off.png
 +      D    icons/compass.png
 +      D    icons/alarm-on.png
 +      AM   icons/alarm-offBig.png
 +      AM   icons/compassBig.png
 +      AM   icons/alarm-onBig.png
 +
 +2010-01-20  korrco  <korrco@localhost>
 +
 +      static allocation instead of dynamic added when creating activity map
 +
 +2010-01-20  pavelpa  <pavelpa@localhost>
 +
 +      some drawing modifications
 +
 +      the most recent FOSDEM 2010 schedule http://fosdem.org/schedule/xml
 +
 +2010-01-19  pavelpa  <pavelpa@localhost>
 +
 +      pali, nerob bordel
 +
 +      changed abstract/description/scrollbars color in eventdialog
 +
 +2010-01-19  korrco  <korrco@localhost>
 +
 +      support for view activities with their names added
 +
 +2010-01-19  pavelpa  <pavelpa@localhost>
 +
 +      event-dialog - displayed persons/presenters names  - implemented Event::persons() method to get persons names    associated with the given event ID
 +
 +      single-click is used to open event dialog
 +
 +      diplayed map is closed by single-click, instead of double-click
 +
 +      work on alarm
 +
 +      work on alarm
 +
 +2010-01-19  uzakmat  <uzakmat@localhost>
 +
 +      Addition of files required for a Debian package and Maemo specific files
 +
 +2010-01-19  fortefr  <fortefr@localhost>
 +
 +      Favourites dayNavigator
 +
 +2010-01-19  pavelpa  <pavelpa@localhost>
 +
 +      schedule.en.xml is now in resource  - for testing only  - will be removed from final application
 +
 +2010-01-19  korrco  <korrco@localhost>
 +
 +      minimal size for tabs set
 +
 +2010-01-19  fortefr  <fortefr@localhost>
 +
 +      Update tabs 2
 +      -This line, and those below, will be ignored--
 +
 +      M    src/gui/mainwindow.cpp
 +      M    src/gui/mainwindow.h
 +
 +2010-01-19  fortefr  <fortefr@localhost>
 +
 +      Automatic tabs update
 +      M    src/gui/mainwindow.ui
 +      M    src/gui/mainwindow.cpp
 +      M    src/gui/mainwindow.h
 +
 +2010-01-19  pavelpa  <pavelpa@localhost>
 +
 +      set MapDialog title
 +
 +      handled the case when the map is not available
 +
 +      map-name to map-path implemented  - correct map is displayed
 +
 +      fixed: icons overlapped
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      started work on displaying map  - implemented mapwindow  - map is hard-coded for now TODO: finish getting map path from the event
 +
 +      added maps
 +
 +      pali, nerob bordel
 +
 +      implemented 'Event' dialog to display relevant 'Event's info
 +
 +2010-01-18  korrco  <korrco@localhost>
 +
 +      sorting by activity id added
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      autoresizing activities treeView
 +
 +      implemented drawing icons + number of favs/alarms in the corresponding group
 +
 +2010-01-18  korrco  <korrco@localhost>
 +
 +      grouping by time equation changed - beter group deviding, also according to favourites
 +
 +      activities tab implemented - need to fit gui, functionality works fine
 +
 +      activities tab implemented - not finished yet
 +
 +      activities tab implemented - not finished yet
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      added 'alarm' columnt to the 'EVENT' table to signalize that the event has/hasn't alarm set
 +
 +2010-01-18  fortefr  <fortefr@localhost>
 +
 +      Favourites fix
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      maemo specific compilation fix
 +
 +2010-01-18  fortefr  <fortefr@localhost>
 +
 +      Fav table update M    trunk/src/gui/mainwindow.h M    trunk/src/gui/mainwindow.cpp M    trunk/src/mvc/treeview.h M    trunk/src/mvc/eventmodel.cpp M    trunk/src/mvc/event.h M    trunk/src/fosdem.pro
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      added GrayScale versions (inactive/OFF) of the icons
 +
 +2010-01-18  hanzes  <hanzes@localhost>
 +
 +      fixed sqlite statement
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      fixed: broken compilation for linux caused by previous commit
 +
 +      started work on alarm(libaalarm)
 +
 +      used 'MAEMO' define to create 'non-virtual' 'VIRUAL_EVENT' table instead of 'virtual' one, only for 'MAEMO' Linux stays untouched - creates real 'virtual' table for FTS support
 +
 +2010-01-18  korrco  <korrco@localhost>
 +
 +      current path print added
 +
 +2010-01-18  fortefr  <fortefr@localhost>
 +
 +      Temporal virtual_event change
 +
 +2010-01-18  pavelpa  <pavelpa@localhost>
 +
 +      fix: segfault  - fixes segfault when switching days in "Day View"  - TODO: needs to be verified, 'cause it looks like          it shouldn't work, but it does    - when calling 'QAbstractItemModel::removeRows()' it returns false,      but it prevents application from crash(segfault)      - possible explanation is that the timing has changed and so the        conditions for the segfault
 +
 +      added "Quit" to "File" menu
 +
 +2010-01-17  pavelpa  <pavelpa@localhost>
 +
 +      implemented method to force 'EventModel' emit a signal dataChanged() - so 'TreeView' know it has to redraw items corresponding to chanded indices (range of indeces)
 +
 +      created 'global.pri' file, which should cover all global definition of the project  - this file has to be include in each "*.pro" file, where it's needed  - defines "MAEMO" for handling 'MAEMO' specific code in source files  - defines "maemo" for handling 'MAEMO' specific files in "*.pro" file(s)
 +
 +      just minor corrections to 'event'
 +
 +      started work on 'favourities'  - created tavourities tree view in the MainWindow 'Favourities' tab  - listed some testing 'fav' events  - TODO: list isn't updated dynamically, which means that the list    isn't updated if the user adds/removes an event(s) to/from the    'favourities' list
 +
 +      implemented JOINing two tables  - modified 'ormrecord' to support JOINing two tables  - modified 'event' accordingly, since its items/columns    are splitted into two separate tables
 +
 +2010-01-16  pavelpa  <pavelpa@localhost>
 +
 +      work on favourite  - created 'favourite' column in EVENT table  - modified 'ormrecord' for setting record's elements  - favourities view not implemented
 +
 +2010-01-14  fortefr  <fortefr@localhost>
 +
 +      Compass icon
 +
 +      Map button/compass icon added
 +
 +      Testing svn, tabs added, misprint fixed
 +
 +2010-01-14  pavelpa  <pavelpa@localhost>
 +
 +      just some directory renaming  - renamed 'model' to 'mvc' (Model-View-Controller), since it contains also 'delegate' and 'view'
 +
 +2010-01-13  pavelpa  <pavelpa@localhost>
 +
 +      minor fix
 +
 +      implemented day navigator widget  - to switch between conference days
 +
 +      implemented 'conference' record for accessing info about the conference  - events are loaded from the first day of the conference
 +
 +      added about dialog(s) - some modifications needed     - About Qt: not scrollable     - About app: modifications to display items in system font/colors needed
 +
 +      added application icon
 +
 +2010-01-12  pavelpa  <pavelpa@localhost>
 +
 +      implemented xml parser  - parsing Schedule
 +
 +      modified model-view  - created own delegate to display TreeView items    - contains also 'controls' - which are clickable (handled in TreeView)  - created own TreeView inherited from QTreeView    - to handle control-clicks of the Delegate  - minor modifications to MainWindow UI    - QTreeView replaced by own TreeView    - autoresizing of TreeView  - icons added
 +
 +2010-01-07  korrco  <korrco@localhost>
 +
 +      TODO for exception handling added
 +
 +      support for creating GUI via QtCreator added
 +
 +2010-01-02  komarma  <komarma@localhost>
 +
 +      Creating EventModel class
 +
 +2009-12-31  komarma  <komarma@localhost>
 +
 +      Fixing datetime conversion
 +
 +2009-12-30  komarma  <komarma@localhost>
 +
 +      Adding database loading and data conversion to orm module
 +
 +2009-12-29  komarma  <komarma@localhost>
 +
 +      Adding orm module
 +
 +2009-12-28  komarma  <komarma@localhost>
 +
 +      Creating initial application directory structure.
 +
 +      Creating initial repository structure
index d616506cee3345dfb1ef65973259869faab4bc4c,0000000000000000000000000000000000000000..75144ff7cf1dd3939d488f7d401a199924b08a32
mode 100644,000000..100644
--- /dev/null
@@@ -1,190 -1,0 +1,194 @@@
- .\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35)
++.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40)
 +.\"
 +.\" Standard preamble:
 +.\" ========================================================================
 +.de Sp \" Vertical space (when we can't use .PP)
 +.if t .sp .5v
 +.if n .sp
 +..
 +.de Vb \" Begin verbatim text
 +.ft CW
 +.nf
 +.ne \\$1
 +..
 +.de Ve \" End verbatim text
 +.ft R
 +.fi
 +..
 +.\" Set up some character translations and predefined strings.  \*(-- will
 +.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
 +.\" double quote, and \*(R" will give a right double quote.  \*(C+ will
 +.\" give a nicer C++.  Capital omega is used to do unbreakable dashes and
 +.\" therefore won't be available.  \*(C` and \*(C' expand to `' in nroff,
 +.\" nothing in troff, for use with C<>.
 +.tr \(*W-
 +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
 +.ie n \{\
 +.    ds -- \(*W-
 +.    ds PI pi
 +.    if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
 +.    if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\"  diablo 12 pitch
 +.    ds L" ""
 +.    ds R" ""
 +.    ds C` ""
 +.    ds C' ""
 +'br\}
 +.el\{\
 +.    ds -- \|\(em\|
 +.    ds PI \(*p
 +.    ds L" ``
 +.    ds R" ''
 +.    ds C`
 +.    ds C'
 +'br\}
 +.\"
 +.\" Escape single quotes in literal strings from groff's Unicode transform.
 +.ie \n(.g .ds Aq \(aq
 +.el       .ds Aq '
 +.\"
 +.\" If the F register is >0, we'll generate index entries on stderr for
 +.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
 +.\" entries marked with X<> in POD.  Of course, you'll have to process the
 +.\" output yourself in some meaningful fashion.
 +.\"
 +.\" Avoid warning from groff about undefined register 'F'.
 +.de IX
 +..
- .if !\nF .nr F 0
- .if \nF>0 \{\
- .    de IX
- .    tm Index:\\$1\t\\n%\t"\\$2"
++.nr rF 0
++.if \n(.g .if rF .nr rF 1
++.if (\n(rF:(\n(.g==0)) \{\
++.    if \nF \{\
++.        de IX
++.        tm Index:\\$1\t\\n%\t"\\$2"
 +..
- .    if !\nF==2 \{\
- .        nr % 0
- .        nr F 2
++.        if !\nF==2 \{\
++.            nr % 0
++.            nr F 2
++.        \}
 +.    \}
 +.\}
++.rr rF
 +.\" ========================================================================
 +.\"
 +.IX Title "CONFCLERK 1"
- .TH CONFCLERK 1 "2017-08-30" "Version 0.6.4" "Offline conference scheduler"
++.TH CONFCLERK 1 "2021-07-29" "Version 0.7.0" "Offline conference scheduler"
 +.\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 +.\" way too many mistakes in technical documents.
 +.if n .ad l
 +.nh
 +.SH "NAME"
 +ConfClerk \- offline conference schedule application
 +.SH "SYNOPSIS"
 +.IX Header "SYNOPSIS"
 +\&\fBconfclerk\fR
 +.SH "DESCRIPTION"
 +.IX Header "DESCRIPTION"
 +\&\fBConfClerk\fR is an application written in Qt, which makes conference
 +schedules available offline.  It displays the conference schedule
 +from various views, supports searches on various items (speaker, speech topic,
 +location, etc.) and enables you to select favorite events and create your own
 +schedule.
 +.PP
 +At the moment \fBConfClerk\fR is able to import schedules in \s-1XML\s0 format created
 +by the PentaBarf conference management system (or frab) used by e.g. \s-1FOSDEM,\s0
 +DebConf, FrOSCon, Grazer Linuxtage, and the \s-1CCC.\s0
 +.PP
 +ConfClerk is targeted at mobile devices like the Nokia N810 and N900 but
 +works on any system running Qt.
 +.SH "OPTIONS"
 +.IX Header "OPTIONS"
 +None.
 +.SH "CONFIGURATION"
 +.IX Header "CONFIGURATION"
 +The configuration can be done via the graphical interface.
 +.PP
 +The configuration is saved in the default QSettings location, i.e.:
 +.IP "Linux" 4
 +.IX Item "Linux"
 +\&\fI~/.config/Toastfreeware/ConfClerk.conf\fR
 +.IP "Windows" 4
 +.IX Item "Windows"
 +In the registry (search for the Toastfreeware key, should be at
 +\&\fIHKEY_CURRENT_USER\eSoftware\eToastfreeware\eConfClerk\fR).
 +.IP "Other \s-1OS\s0" 4
 +.IX Item "Other OS"
 +Cf. the QSettings documentation at 
- <http://doc.qt.nokia.com/stable/qsettings.html#locations\-where\-application\-settings\-are\-stored>.
++<https://doc.qt.io/qt\-5/qsettings.html#platform\-specific\-notes>.
 +.SH "FILES"
 +.IX Header "FILES"
 +\&\fBConfClerk\fR keeps its database in the location proposed by the \s-1XDG\s0 Base
- Directory specification <http://standards.freedesktop.org/basedir\-spec/basedir\-spec\-latest.html>:
++Directory specification <https://standards.freedesktop.org/basedir\-spec/basedir\-spec\-latest.html>:
 +.PP
 +So the configuration (see \*(L"\s-1CONFIGURATION\*(R"\s0) is stored at
 +\&\fI~/.config/Toastfreeware/ConfClerk.conf\fR and the database is kept at
 +\&\fI~/.local/share/data/Toastfreeware/ConfClerk/ConfClerk.sqlite\fR (Qt4)
 +\&\fI~/.local/share/Toastfreeware/ConfClerk/ConfClerk.sqlite\fR (Qt5).
 +.SH "COPYRIGHT AND LICENSE"
 +.IX Header "COPYRIGHT AND LICENSE"
 +.SS "Main code"
 +.IX Subsection "Main code"
 +.Vb 4
 +\&    Copyright (C) 2010 Ixonos Plc.
- \&    Copyright (C) 2011\-2017, Philipp Spitzer <philipp@toastfreeware.priv.at>
- \&    Copyright (C) 2011\-2017, gregor herrmann <gregor@toastfreeware.priv.at>
- \&    Copyright (C) 2011\-2017, Stefan Strahl <stefan@toastfreeware.priv.at>
++\&    Copyright (C) 2011\-2021, Philipp Spitzer <philipp@toastfreeware.priv.at>
++\&    Copyright (C) 2011\-2021, gregor herrmann <gregor@toastfreeware.priv.at>
++\&    Copyright (C) 2011\-2021, Stefan Strahl <stefan@toastfreeware.priv.at>
 +\&
 +\&    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.
 +\&
 +\&    You should have received a copy of the GNU General Public License along
 +\&    with this program; if not, write to the Free Software Foundation, Inc.,
 +\&    51 Franklin Street, Fifth Floor, Boston, MA 02110\-1301 USA.
 +.Ve
 +.SS "Additional resources"
 +.IX Subsection "Additional resources"
 +.IP "data/confclerk.*:" 4
 +.IX Item "data/confclerk.*:"
 +.Vb 1
 +\&    Copyright (C) 2011, Christian Kling <kling_christian@gmx.at>
 +\&
 +\&    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.
 +.Ve
 +.IP "icons/*" 4
 +.IX Item "icons/*"
 +All icons are taken from the Debian package gnome-icon-theme, which contains
 +the following notice (as of 2011\-06\-24):
 +.Sp
 +.Vb 12
 +\&    Copyright © 2002\-2008:
 +\&      Ulisse Perusin <uli.peru@gmail.com>
 +\&      Riccardo Buzzotta <raozuzu@yahoo.it>
 +\&      Josef Vybíral <cornelius@vybiral.info>
 +\&      Hylke Bons <h.bons@student.rug.nl>
 +\&      Ricardo González <rick@jinlabs.com>
 +\&      Lapo Calamandrei <calamandrei@gmail.com>
 +\&      Rodney Dawes <dobey@novell.com>
 +\&      Luca Ferretti <elle.uca@libero.it>
 +\&      Tuomas Kuosmanen <tigert@gimp.org>
 +\&      Andreas Nilsson <nisses.mail@home.se>
 +\&      Jakub Steiner <jimmac@novell.com>
 +\&
 +\&    GNOME icon theme is distributed under the terms of either
 +\&    GNU LGPL v.3 or Creative Commons BY\-SA 3.0 license.
 +.Ve
 +.IP "src/icons/favourite*, src/icons/alarm*, src/icons/collapse*, src/icons/expand*:" 4
 +.IX Item "src/icons/favourite*, src/icons/alarm*, src/icons/collapse*, src/icons/expand*:"
 +.Vb 2
 +\&    Copyright (C) 2012\-2017, Philipp Spitzer <philipp@toastfreeware.priv.at>
 +\&    Copyright (C) 2012\-2017, Stefan Strahl <stefan@toastfreeware.priv.at>
 +\&
 +\&    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.
 +.Ve
index 16411cece7a3bc3ce99f1c1554200b264abbc05d,0000000000000000000000000000000000000000..5cca88eee06209c57d2c61a99bbf59778cbb35aa
mode 100644,000000..100644
Binary files differ