aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-09-29 18:05:17 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-09-29 23:35:53 +0900
commitf9c0e04259be9fd3be70486bc1eb76bf8f2612fe (patch)
tree44613ed9d828d8998065c398c3ac2bbf280bab14
parent534a15d05e0b6e1b44b6387003e1475150e848e8 (diff)
downloadlibquotient-f9c0e04259be9fd3be70486bc1eb76bf8f2612fe.tar.gz
libquotient-f9c0e04259be9fd3be70486bc1eb76bf8f2612fe.zip
Rename pieces with qmc/qmatrixclient
-rw-r--r--.appveyor.yml6
-rw-r--r--lib/jobs/downloadfilejob.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 1dbdf237..a9f67ee4 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,7 +1,7 @@
image: Visual Studio 2017
environment:
- #DEPLOY_DIR: libqmatrixclient-%APPVEYOR_BUILD_VERSION%
+ #DEPLOY_DIR: quotient-%APPVEYOR_BUILD_VERSION%
matrix:
- QTDIR: C:\Qt\5.13\msvc2017_64
VCVARS: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat"
@@ -30,7 +30,7 @@ build_script:
#after_build:
#- cmake --build build --target install
-#- 7z a libqmatrixclient.zip "%DEPLOY_DIR%\"
+#- 7z a quotient.zip "%DEPLOY_DIR%\"
# Uncomment this to connect to the AppVeyor build worker
#on_finish:
@@ -39,4 +39,4 @@ build_script:
test: off
#artifacts:
-#- path: libqmatrixclient.zip
+#- path: quotient.zip
diff --git a/lib/jobs/downloadfilejob.cpp b/lib/jobs/downloadfilejob.cpp
index 4e997326..3e037680 100644
--- a/lib/jobs/downloadfilejob.cpp
+++ b/lib/jobs/downloadfilejob.cpp
@@ -12,7 +12,7 @@ public:
explicit Private(const QString& localFilename)
: targetFile(new QFile(localFilename))
- , tempFile(new QFile(targetFile->fileName() + ".qmcdownload"))
+ , tempFile(new QFile(targetFile->fileName() + ".qtntdownload"))
{}
QScopedPointer<QFile> targetFile;