Skip to content

Commit

Permalink
[rel] version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bgallois committed Dec 22, 2021
1 parent 3c54833 commit f0b6a7a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 1.3.1

Version 1.3.1 of OpenJournal comes with several fixes. Journal in the cloud can now be successfully exported as PDF. Exporting a journal with images in PDF is now possible. Image display for cloud journal is now improved and does not necessitate refreshing the page after first loading.

### Fixes

* Compilation error for C++17
* Cloud journal exportation
* Images journal exportation
* Images loading on the cloud

### Features

* Refactore alarm

## 1.3.0

Version 1.3.0 of OpenJournal comes with several efficiency improvements. The user interface is now smoother with no flickering at refresh in low bandwidth conditions. Version 1.3.0 comes with a new feature called the OpenJournal cloud. It is now possible to store journals on the cloud (after registration) and to update and retrieve journal entries using POST HTTPS requests. This version sees a change in concurrency modification. True concurrency is not supported in OpenJournal. You can’t edit the same journal on several computers. However, one journal open on several computers will update itself if the two subsequent changes on two different computers are separated by more than twenty seconds. With this new behavior, an OpenJournal inactive on some computer can't overwrite the cloud journal opened and possibly modified by another computer.
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int main(int argc, char *argv[]) {
lock.open(QIODevice::WriteOnly | QIODevice::Text);
a.setOrganizationName("Analysabl");
a.setApplicationName("OpenJournal");
a.setApplicationVersion("1.3.0");
a.setApplicationVersion("1.3.1");
QFontDatabase::addApplicationFont(":/Lato.ttf");
QFontDatabase::addApplicationFont(":/Caveat.ttf");
QObject::connect(&a, &QApplication::aboutToQuit, &lock, [&lock]() {
Expand Down

0 comments on commit f0b6a7a

Please sign in to comment.