reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 302db8da7b8d0f883f66787f6757612b17cc934c
parent a9158e0a4c942bb1a825e8eb7656227883c1ef34
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Sun,  6 Dec 2015 17:14:41 -0500

change the download name format for packages

Diffstat:
Msrc/transaction.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/transaction.cpp b/src/transaction.cpp @@ -111,7 +111,7 @@ void Transaction::install(Package *pkg) const Path path = installPath(pkg); const string dbName = pkg->category()->database()->name(); - Download *dl = new Download(dbName + "/" + pkg->name(), url); + Download *dl = new Download("[" + dbName + "] " + pkg->name(), url); dl->onFinish([=] { if(dl->status() != 200) { addError(dl->contents(), dl->name());