Skip to content

Commit df3e61b

Browse files
committed
readme
1 parent cb21d13 commit df3e61b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ The benefit is that you can apply extremely complicated combinations of **automa
1010

1111
![Demo GIF](https://github.com/joshuatz/desktop-cloud-transform/raw/master/readme-files/Desktop%20Cloud%20Transform%20(DCT)%20-%20Dog%20Demo.gif "Using various saved configurations")
1212

13+
You can also just use it as a drag-and-drop uploader for Cloudinary, so that you can drop a local file onto the bottom upload area and instantly get back a public URL to use anywhere you like.
14+
1315
This Git readme file is really meant to cover the technical parts of the application and how to use it, rather than purpose, so for more info on the background and uses for this project, be sure to check out my project page [here](https://joshuatz.com/projects/applications/desktop-cloud-transform-dct/).
1416

1517
# Disclaimers:
@@ -43,6 +45,10 @@ Macro | Incoming Transformation | Outgoing Transformation | What it does
4345
1. Clone repo
4446
2. Open in QT Creator
4547
3. Build Release
48+
- Make sure you have openSSL in your system path
49+
50+
# Deploying
51+
I'm using windeployqt to pull in DLLs to bundle with my exe for release. however, it doesn't pull in OpenSSL although it is needed for the Cloudinary API calls.
4652

4753
# Notes to self:
4854
## Stats logging
@@ -77,6 +83,7 @@ Row | Category | Action | Uses Cloudinary (credits)
7783
- Incoming transformations on upload - https://cloudinary.com/documentation/upload_images#incoming_transformations
7884
# TODOS
7985
## !! - High priority - !!
86+
- Work on build script for creating deployment releases, and try to reduce output size
8087
- ~~Timeout for auto-close of success modal needs to be auto-cancelled if clicked on~~
8188
- For right now, just removed auto-close entirely
8289
## Backlog / Should implement

models/uploader.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,12 @@ void Uploader::receiveNetworkReply(QNetworkReply *reply){
164164

165165
if (reply->error()){
166166
result.success = false;
167-
qDebug() << "network reply error!";
168167
result.messageString = "Error in response from Cloudinary";
168+
qDebug() << "network reply error!";
169+
qDebug() << reply->errorString();
170+
if (reply->errorString().contains("TLS ",Qt::CaseInsensitive)){
171+
qDebug() << "SSL build version = " << QSslSocket::sslLibraryVersionString() << " || SSL lib version = " << QSslSocket::sslLibraryVersionString();
172+
}
169173
}
170174
else {
171175
result.success = true;

0 commit comments

Comments
 (0)