aboutsummaryrefslogtreecommitdiffstats
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feat(ui): add tab to show gnupg infoSaturneric2022-07-232-1/+5
|
* style(src): reformat codeSaturneric2022-07-2217-97/+93
|
* fix: solve issue caused by sig bufferSaturneric2022-05-201-1/+1
|
* feat: explain Not Fully Valid reasonSaturneric2022-05-201-4/+5
|
* fix: remove useless log in Channel systemSaturneric2022-05-202-19/+6
|
* feat: track pending tasks in task runner systemSaturneric2022-05-205-16/+53
|
* pref: improve compiling speedSaturneric2022-05-202-3/+4
|
* fix: solve general problems for compilingSaturneric2022-05-191-9/+9
|
* fix: adjust initialized order and organizeSaturneric2022-05-192-4/+1
| | | | 1. disable command line file arg input ability
* pref: improve pch for compiling speedSaturneric2022-05-197-64/+66
|
* refactor: change log level for task systemSaturneric2022-05-195-49/+39
|
* perf: improve initialized and recover processSaturneric2022-05-192-10/+17
| | | | | | 1. init logging system 2. init ui 3. init main
* fix: solve dll export problem on inner classSaturneric2022-05-151-3/+27
|
* fix: need to link bcrypt in mingw for uuidSaturneric2022-05-151-0/+4
|
* fix: solve heading file include problem.Saturneric2022-05-151-2/+4
|
* Merge remote-tracking branch 'origin/develop-2.0.8' into develop-2.0.8Saturneric2022-05-141-2/+3
|\
| * fix(core): solve memory access issuesSaturneric2022-05-131-2/+3
| | | | | | | | 1. use gpg_key, not key(has been moved).
* | feat(core): upgrade task runner system.Saturneric2022-05-144-24/+270
|/
* fix: solve build issuesSaturneric2022-05-131-4/+6
| | | | | 1. target_link_libraries scope 2. icu version minimum
* fix: slove shared link problemSaturneric2022-05-131-1/+1
|
* feat: add a simple TaskRunner systemSaturneric2022-05-1310-9/+593
| | | | 1. solve multiple threads problem.
* perf: improve core performanceSaturneric2022-05-131-3/+3
|
* fix: solve build issuesSaturneric2022-05-131-3/+3
| | | | | 1. target_link_libraries scope 2. icu version minimum
* fix(core): fix a bug when key in smart carddev/2.0.7Saturneric2022-05-122-20/+44
|
* fix(core): let exposed api use FileOperatorSaturneric2022-05-121-27/+6
|
* feat(core): add charset operationsSaturneric2022-05-123-10/+205
| | | | | 1. introduce library icu 2. add CharsetOperator
* fix: fix build issues on linux platformSaturneric2022-05-092-103/+103
|
* fix: fix crash poblem when doing operationsSaturneric2022-05-098-137/+435
| | | | | | | | 1. refactor GpgFunctionObject to solve shared library problem. 2. fix multi-threading issues in refreshing. 3. improve loading speed for key list 4. improve ui operation 5. do other fixing and improving operations
* feat: add full support for xocde buildSaturneric2022-05-081-1/+3
| | | | | | 1. add GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY option for cmake 2. fix some issues on xcode build 3. remove certs from resource
* feat: merge tiny third_party library into coreSaturneric2022-05-081-2/+7
| | | | | 1. code detecting 2. qt-aes
* fix: solve issues in linux compilingSaturneric2022-05-081-0/+1
| | | | | 1. deb dependency update 2. ci update
* fix: add GpgFrontendCoreExport.h into .gitignoreSaturneric2022-05-071-42/+0
|
* fix: solve some issuesSaturneric2022-05-071-10/+2
| | | | | 1. slove deb packing issues 2. solve ci issues
* fix: link issue of intl in linux platformSaturneric2022-05-071-4/+8
|
* fix: remove vmime includeSaturneric2022-05-071-2/+0
|
* fix: use custom build gpgme libSaturneric2022-05-072-2/+53
| | | | 1. gpgme version of apt is too old.
* refactor: develop 2.0.6 startSaturneric2022-05-0756-506/+1053
| | | | | 1. delete smtp ability 2. change libs link type to dramatic
* fix: add openssl dependency for windows cidev/2.0.5Saturneric2022-05-051-1/+1
|
* fix(project): remove automatic buildSaturneric2022-04-101-1/+1
| | | | | 1. libarchive 2. libconfig++
* <fix>(core, ui): fix codacy issues.Saturneric2022-03-191-4/+4
| | | | | | 1. The scope of the variable 'r' can be reduced. 2. Class 'IMAPFolder' does not have a copy constructor which is recommended since it has dynamic memory/resource allocation(s). 3. Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20).
* <fix>(project): fix link issuesSaturneric2022-03-191-1/+1
|
* <fix>(core, ui): Fix issues related to compression and decompressionSaturneric2022-03-193-81/+115
| | | | 1. The problem with double-byte characters in the path (unresolved)
* <fix>(core): Fix the path compatibility problem of loading certificates ↵Saturneric2022-03-191-1/+1
| | | | under Windows.
* <fix>(core, ui): Fix path double-byte encoding problem under WindowsSaturneric2022-03-198-44/+114
|
* <feat>(core, ui): Provides the ability to handle foldersSaturneric2022-03-122-0/+317
| | | | 1. Convert folders to archive format for processing
* <fix>(core): Fix the existing problem of the key packageSaturneric2022-03-122-2/+24
| | | | | 1. Fix the password generation function 2. Add some log output
* Merge branch 'develop-2.0.5' of git.codesdream.com:GpgFrontend into ↵Saturneric2022-03-121-2/+5
|\ | | | | | | develop-2.0.5
| * <fix, refactor, feat> adjust the project configurationstehu2022-03-041-2/+5
| | | | | | | | | | | | 1. Fix possible problems with mac compilation 2. Add new third-party dependency libconfig 3. Use the correct project configuration to specify the C++ standard
* | <fix>(core): Fix the setting loading IO problem under WindowsSaturneric2022-03-121-6/+15
| |
* | <chore>(core): Resolve libarchive compile dependencies for WindowsSaturneric2022-03-122-1/+6
| |