cen1
cen1
I've just lost several hours trying to figure out which token, scopes etc are needed.. could someone please add this information into provider docs so people are not chasing github...
Does this https://issues.redhat.com/browse/CDI-452 fall under this issue or is it different? Asking as to not open a duplicate.
I think defining the problem is key here. One of them which I encountered often was propagating headers from incoming request to async rest clients. In non async world, I...
Your code seems to work fine for me. ``` QFile oldZip("../../xiqixi.zip"); if (oldZip.exists()) oldZip.remove(); QuaZip zip("../../xiqixi .zip"); zip.open(QuaZip::mdCreate); compressFile(&zip, "../../file.txt", "file2.txt", "a"); zip.close(); if (zip.getZipError() != ZIP_OK) return 1; ```...
Can you send a code snippet just like mine to see how you call the functions?
This is supposed to be fixed in latest release
The API change did indeed appear in 6.5.0 but deprecation warning was added only in 6.8.0 as implemented. I guess I could lower it to 6.5.0 but is there any...
Not against lowering it, but I'd like to first understand the issue and possibly reproduce it. I've added `add_compile_definitions(DISABLE_DEPRECATED_BEFORE_QT_VERSION=0x600000)` to my CMakeLists.txt and then: ``` cmake -B build_673 -DQUAZIP_QT_MAJOR_VERSION=6 -DBUILD_SHARED_LIBS=ON...
1. Which OS? 2. Building from master? 3. Provided cmake log
This is a year late but I wanted to test this out our of sheer curiosity. The whole setup is very complicated and paintful for someone doing this for the...