Skip to content

Commit

Permalink
修复URL转码功能异常的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
188080501 committed Nov 15, 2017
1 parent 7ff75e1 commit 9e00838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/TextGroup/UrlEncode/cpp/urlencode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using namespace UrlEncode;

QString Manage::encode(const QString &string)
{
return QUrl::toPercentEncoding( string );
return QUrl::toPercentEncoding( string, "/:?=" );
}

QString Manage::decode(const QString &string)
Expand Down
2 changes: 1 addition & 1 deletion lib/JQToolsLibrary/include/JQToolsLibrary.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <QObject>
#include <QPointer>

#define JQTOOLS_VERSIONSTRING "17.9.12"
#define JQTOOLS_VERSIONSTRING "17.11.15"

class QQmlApplicationEngine;

Expand Down

0 comments on commit 9e00838

Please sign in to comment.