Skip to content

Commit

Permalink
[rel] version 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bgallois committed Jun 28, 2023
1 parent de1bf38 commit a827aad
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
unzip QMYSQL_MSVC2019_5.15.2.zip
copy libmariadb.dll OpenJournal\
copy plugins\sqldrivers\* OpenJournal\sqldrivers\
wget https://github.com/Qalculate/libqalculate/releases/download/v4.1.1/qalculate-4.1.1b-x64.zip
unzip qalculate-4.1.1b-x64.zip -d OpenJournal/
wget https://github.com/Qalculate/libqalculate/releases/download/v4.6.1/qalculate-4.6.1-x64.zip
unzip qalculate-4.6.1-x64.zip -d OpenJournal/
cd ..
makensis.exe /V3 resources/installer.nsi
- name: upload_artefact
Expand Down
19 changes: 17 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
## 1.3.3

Version 1.3.3 of OpenJOurnal comes with several internal fixes and the Qalculate support.

### Fixes

* Fix qalculate seg fault
* Fix memory leaks
* Fix Linux installation

### Features

* Support qalculate
* New icon

## 1.3.2

Version 1.3.2 of OpenJOurnal comes with several internal fixes.
Version 1.3.2 of OpenJournal comes with several internal fixes.

### Fixes

Expand All @@ -12,7 +27,7 @@ Version 1.3.2 of OpenJOurnal comes with several internal fixes.
* Support action
* Win and Mac tests
* Refactore database connection
* Refactore window geometry ssaving
* Refactore window geometry saving


## 1.3.1
Expand Down
2 changes: 1 addition & 1 deletion resources/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

!define VERSIONMAJOR 1
!define VERSIONMINOR 3
!define VERSIONBUILD 2
!define VERSIONBUILD 3
OutFile "../src/OpenJournalInstaller.exe"

# set desktop as install directory
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("Analyzable");
a.setApplicationName("OpenJournal");
a.setApplicationVersion("1.3.2");
a.setApplicationVersion("1.3.3");
QFontDatabase::addApplicationFont(":/Lato.ttf");
QFontDatabase::addApplicationFont(":/Caveat.ttf");
QObject::connect(&a, &QApplication::aboutToQuit, &lock, [&lock]() {
Expand Down

0 comments on commit a827aad

Please sign in to comment.