Skip to content

Commit

Permalink
prepare version 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joshirio committed Feb 4, 2020
1 parent a75a72d commit b1b5638
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
CHANGELOG

Version 2.6
===========

### New Features
- New sync driver: generic folder sync for any folder based sync service, like Nextcloud and OwnCloud (#126)
- New safe edit mode where destructive actions are disabled and only record editing is allowed (#82)
- Allow empty rows and columns by default in form view. New setting to enable auto pruning of unused space (#120).
- Automatic column width based on contents, as a new option in the settings (#116)
- Improve performance of scrolling by allowing to hide images in table view (#107)
- Italian translation (thanks to Pierfrancesco Passerini)

### Improvements
- Set current date in CalenderWidget popup when date is not set (#91)
- Collections can be renamed als by clicking on the context menu
- CSV exports now include the original file name of images (#83)
- Ask for user permission before checking for updates
- Minor fixes in German translation files
- Improve slightly the styling of view mode buttons in tool bar

### Bug Fixes
- Duplicated collections no longer produce empty CSV and PDF files (#121, #122)
- Duplicated collections no longer contain inconsistent records with null ids (#122)
- Critical bug where deleting a field results in "invalid_column" (#125)
- Don't update last modification date time if no data was changed in table view (#115)
- Save and restore section order correctly in table view (#119)


Version 2.5
===========

Expand Down
4 changes: 2 additions & 2 deletions utils/definitionholder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// Static variables initialization
//-----------------------------------------------------------------------------

QString DefinitionHolder::VERSION = "2.5";
QString DefinitionHolder::VERSION = "2.6";
QString DefinitionHolder::NAME = "Symphytum";
QString DefinitionHolder::COMPANY = "giowisys";
QString DefinitionHolder::DOMAIN_NAME = "giowisys.com";
Expand All @@ -26,7 +26,7 @@ QString DefinitionHolder::DOWNLOAD_URL = "https://github.com/giowck/symphytum"
"/blob/master/doc/update/update.md";
QString DefinitionHolder::HELP_URL = "https://github.com/giowck/symphytum/wiki";
QString DefinitionHolder::DONATE_URL = "https://github.com/giowck/symphytum/blob/master/doc/donate.md";
int DefinitionHolder::SOFTWARE_BUILD = 10;
int DefinitionHolder::SOFTWARE_BUILD = 11;
int DefinitionHolder::DATABASE_VERSION = 4;
bool DefinitionHolder::APP_STORE = false;
bool DefinitionHolder::APPIMAGE_LINUX = false;
Expand Down

0 comments on commit b1b5638

Please sign in to comment.