aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/thread/Task.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix: discovered issuessaturneric2024-12-021-2/+7
|
* fix: remove mimalloc from sourcesaturneric2024-08-051-1/+2
| | | | Too bad, under Flatpak or even under Windows, this library can cause the program to crash. The reason for this is that there are some places that do not override the memory allocation method, but this does not guarantee that the mimalloc library will be loaded first in some environments (especially Flatpak) so I think it would be better to let the user install it themselves rather than include this library. Then override all mallocs as needed, which is easy to do. Sacrificing some of the security of the default state for the stability of the program feels necessary to me.
* feat: simplify loggingsaturneric2024-07-301-3/+3
|
* feat: update copyright infosaturneric2024-07-291-1/+1
|
* feat: remove spdlog and clean up logsaturneric2024-07-261-33/+5
|
* fix: slove codacy issuessaturneric2024-01-181-1/+1
|
* fix: solve discovered issuessaturneric2024-01-161-1/+4
|
* fix: make task and threading system safersaturneric2024-01-161-39/+51
|
* feat: upgrade threading system and make it clearersaturneric2024-01-151-98/+43
|
* refactor: remove boost and use QString instead of std::filesystem::pathsaturneric2024-01-121-13/+0
|
* refactor: use QString instead of std::string and improve threading systemsaturneric2024-01-121-17/+23
|
* fix: slove a multi-threads issue at task modelsaturneric2024-01-051-2/+2
|
* feat: integrate logging api to coresaturneric2024-01-051-38/+41
|
* fix: slove compilation issue on macossaturneric2023-12-221-1/+4
|
* fix: slove threading and memory issuessaturneric2023-12-151-41/+36
|
* feat: add buddled qt pinentry and make it workssaturneric2023-12-021-12/+12
|
* refactor: start to tidy up code using clang-tidysaturneric2023-10-281-13/+8
|
* feat: improve thread system and gathering gnupg options info to rtsaturneric2023-10-271-10/+57
|
* fix: solve some code tidy issuessaturneric2023-10-251-7/+5
|
* fix: solve some issues on log systemsaturneric2023-10-231-0/+3
|
* fix: improve the stability of thread systemsaturneric2023-10-191-26/+25
|
* feat: using pool for concurrent executions, not stable yetsaturneric2023-10-181-15/+14
|
* feat: simplify the thread system and improve its stabilitysaturneric2023-10-181-76/+44
|
* fix: improve thread and module relationsaturneric2023-10-181-6/+6
|
* feat: print stacktrace when exception caughtsaturneric2023-10-171-3/+16
|
* fix: solve compile and link issuessaturneric2023-10-161-3/+209
|
* refactor: use c++17 features and piml tech to rewrite DataObject and Tasksaturneric2023-10-161-191/+37
|
* fix: check and update copyright at filessaturneric2023-10-161-3/+5
|
* fix: solve some issues on linux .desktop filesaturneric2023-10-151-4/+2
|
* fix: solve codacy issuessaturneric2023-03-311-1/+1
|
* feat: implement concurrent task in a proper waySaturneric2023-02-181-4/+12
|
* fix: improve the task execution modelSaturneric2023-02-181-21/+65
|
* feat: improve task execute systemSaturneric2023-02-171-16/+38
|
* feat: change the log style in source filesSaturneric2023-02-031-19/+19
|
* feat: add advanced gnupg operationsSaturneric2023-01-071-2/+2
| | | | | | 1.fix some issues 2. add advanced gnupg operations 3. add configurations information in Gnupg Help Tab
* feat: track pending tasks in task runner systemSaturneric2022-05-201-10/+18
|
* refactor: change log level for task systemSaturneric2022-05-191-10/+10
|
* feat(core): upgrade task runner system.Saturneric2022-05-141-10/+81
|
* feat: add a simple TaskRunner systemSaturneric2022-05-131-0/+74
1. solve multiple threads problem.