Bug fixed (Build-on : GNU/Linux) -> target_file: PreferencesDialogStyle.cpp, target_line: 571#408
Conversation
…71, build_on: GNU/Linux, wxWedgets_v: 3.2.6\}
|
Hi ! Here a release for Linux system (already tested on GNU/Linux successfully). |
|
And a snap version here : https://snapcraft.io/flamerobin |
|
How do you generate the .deb? |
Note : In the main directory(the root), two directories(with some subdirectories) can be added like this : On the (A) tree , I can add some templates files, and some algos that will be used after the execution of this command For sure, before executing the Essentially, these are the scenarios and processes to be carried out. |
|
Hi ! I created a workflow file and implemented some templates and algos allowing to build, construct and install the deb resulting package (specially the flamerobin app). Here the status of the build : A pull request is pending for a merge. |
|
Hi ! I updated the workflow file (linux-build.yml) to ensure that, after building the Here the status of the new build. (Build successfully) Tested on Ubuntu 24.04 successfully. A pull request is pending. |
Hi !
Here a bug :
I fixed it by modifying this file PreferencesDialogStyle.cpp, the affected line is (line 571) :
style->setFontSize(atoi(fontSizeComboBoxM->GetString(fontSizeComboBoxM->GetSelection())));Here the update :
style->setFontSize(atoi(fontSizeComboBoxM->GetString(fontSizeComboBoxM->GetSelection()).ToStdString().c_str()));Build-on : GNU/Linux