aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix compiler warningsrekonqaqua2022-08-283-4/+5
|
* Merge pull request #151 from itay-grudev/v3.3.4-changelogv3.3.4Itay Grudev2022-04-041-0/+6
|\ | | | | v3.3.4 Changelog
| * Updated CHANGELOG.mdItay Grudev2022-04-041-1/+1
| | | | | | Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com>
| * v3.3.4 ChangelogItay Grudev2022-04-031-0/+6
| |
* | Merge pull request #152 from itay-grudev/6.2Itay Grudev2022-04-041-1/+3
|\ \ | |/ |/| Add Qt 6.2 to CI
| * Add Qt 6.2 to CIHennadii Chernyshchyk2022-04-041-1/+3
|/
* Merge pull request #150 from itay-grudev/cmake-flagsItay Grudev2022-04-031-1/+11
|\ | | | | Use more stricter Qt compile definitions
| * Add more stricter Qt compile definitionsHennadii Chernyshchyk2022-04-031-0/+10
| |
| * Bump minimum CMake version to 3.12.0Hennadii Chernyshchyk2022-04-031-1/+1
|/ | | | Since we use target_compile_definitions that was introduced in this version.
* Merge pull request #148 from christoph-cullmann/masterItay Grudev2022-04-031-4/+4
|\ | | | | Make it compile with Qt 6.2.x and stricter compile settings
| * make it compile with Qt 6.2.x and stricter compile settingsChristoph Cullmann2022-04-031-4/+4
|/
* Merge pull request #149 from itay-grudev/ci-on-prItay Grudev2022-04-031-0/+3
|\ | | | | Trigger CI on PRs
| * Trigger CI on PRs tooHennadii Chernyshchyk2022-04-031-0/+3
|/
* Merge pull request #147 from itay-grudev/v3.3.3-changelog-patchHennadii Chernyshchyk2022-02-141-0/+4
|\ | | | | v3.3.3 changelog patch
| * v3.3.3 changelog patchItay Grudev2022-02-141-0/+4
|/
* Merge pull request #146 from moodyhunter/masterItay Grudev2022-02-141-0/+4
|\ | | | | fix deprecated warnings on Qt6.3+
| * fix deprecated warnings on Qt6.3+Moody2022-02-131-0/+4
|/
* Merge pull request #145 from itay-grudev/itay-grudev-patch-1Itay Grudev2021-12-281-1/+1
|\ | | | | Corrected Git URL in README
| * Corrected Git URL in READMEItay Grudev2021-12-281-1/+1
|/
* Merge pull request #144 from itay-grudev/changelog_update_3.3.2Itay Grudev2021-11-241-0/+4
|\ | | | | Update CHANGELOG.md
| * Update CHANGELOG.mdv3.3.2Itay Grudev2021-11-241-0/+4
|/
* Merge pull request #143 from deepbluev7/fix-crash-on-ackItay Grudev2021-11-241-1/+3
|\ | | | | Fix crash when sending ack on removed connection
| * Fix crash when sending ack on removed connectionNicolas Werner2021-11-241-1/+3
|/ | | | | | | | | | The emit might interrupt our function and causes us to return to the event loop. In that time frame the other and might close the connection, causing our connection to be removed. In that case we call writeAck on a dangling pointer, in the best case causing a crash. So lets finish our business before emitting our signal. fixes #138
* Merge pull request #140 from itay-grudev/itay-grudev-patch-1Itay Grudev2021-10-041-1/+2
|\ | | | | Update README to clarify sendMessage return value
| * Update README.mdItay Grudev2021-09-201-1/+1
| |
| * Update README.mdItay Grudev2021-09-201-1/+2
| |
* | Merge pull request #141 from itay-grudev/refactor-ciItay Grudev2021-10-042-56/+87
|\ \ | |/ |/| Refactor CI
| * Update install-qt actionHennadii Chernyshchyk2021-10-031-1/+1
| |
| * Specify platform-dependend makeHennadii Chernyshchyk2021-10-031-5/+7
| |
| * Use multiply coresHennadii Chernyshchyk2021-10-031-0/+4
| | | | | | | | https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
| * Rename build-cmake.yml to build.ymlHennadii Chernyshchyk2021-10-031-0/+0
| |
| * Add QMake to CIHennadii Chernyshchyk2021-10-031-4/+25
| |
| * Remove pull_requestHennadii Chernyshchyk2021-10-031-3/+0
| | | | | | | | Triggers CI twice.
| * Ignore release draftsHennadii Chernyshchyk2021-10-031-0/+2
| |
| * Make CI labels more consistentHennadii Chernyshchyk2021-10-031-6/+6
| |
| * Format with prettierHennadii Chernyshchyk2021-10-031-31/+30
| |
| * Ignore changes in markdownHennadii Chernyshchyk2021-10-031-1/+7
|/
* Merge pull request #139 from mklein-de/appimage-executable-pathv3.3.1Itay Grudev2021-09-202-1/+15
|\ | | | | Added support for _AppImage_ dynamic executable paths. - _Michael Klein_
| * Update singleapplication_p.cppItay Grudev2021-09-201-1/+1
| |
| * Update singleapplication_p.cppItay Grudev2021-09-201-1/+1
| | | | | | Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com>
| * Update singleapplication_p.cppItay Grudev2021-09-201-2/+4
| |
| * v3.3.1Itay Grudev2021-09-201-0/+5
| |
| * Style and explanation improvementsItay Grudev2021-09-201-4/+4
| |
| * Compile fixMichael Klein2021-09-201-1/+1
| | | | | | Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com>
| * Use QByteArray instead of QStringMichael Klein2021-09-201-1/+1
| | | | | | Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com>
| * Use AppImage path for hash when running as AppImage.Michael Klein2021-09-201-1/+8
|/ | | | | | | | | | | | When an application is launched as AppImage, each instance is launched from its own FUSE-mounted filesystem, so each instance has its own executable path. The AppImage runtime sets the environment variable APPIMAGE to the absolute path to the .AppImage file, so we can use the content of this variable instead of QApplication::applicationFilePath() when set. Closes #77, #137
* Merge pull request #134 from itay-grudev/v3.3.0-changelogHennadii Chernyshchyk2021-08-041-0/+6
|\ | | | | v3.3.0 Changelog
| * Update CHANGELOG.mdItay Grudev2021-06-021-1/+1
| | | | | | Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com>
| * v3.3.0v3.3.0Itay Grudev2021-06-021-0/+6
|/
* Merge pull request #133 from njeisecke/masterItay Grudev2021-06-013-33/+78
|\ | | | | Fix protocol to solve #121 and #125