From 4c25b5eb8f7f25d8f69e96cd1b6dd48c9bbccd35 Mon Sep 17 00:00:00 2001 From: fabiobento512 Date: Tue, 18 May 2021 16:06:59 +0200 Subject: [PATCH] Updated readme and version for v1.2 release --- readme.txt | 8 +++++++- utilglobalvars.h | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index b2a2ca6..e2d610f 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ readme.txt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -FRequest v1.1c +FRequest v1.2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ---------------------------------- @@ -28,6 +28,7 @@ program configuration file (for private use) or the project file itself (for sha - The FRequest project files are stored in a way which allow easy collaboration via a VCS like Git, Svn or Team Foundation Server - Ability to add any kind of custom HTTP headers to the requests (automatically by taking the type in account or adding them manually) +- Global headers, headers that are applied to every request in the project - Network proxy support FRequest is licensed under GPL 3.0 (https://www.gnu.org/licenses/gpl-3.0.en.html). @@ -77,6 +78,11 @@ https://github.com/fabiobento512/FRequest ---------------------------------- Change Log: ---------------------------------- +1.2, 18-05-2021 +- Added global headers feature (thanks alevalv) +- Now request/reponse area is scrollabled (thanks fcolecumberri) +- Now request/reponse text uses courier new font (monospace) (thanks KaKi87 for the monospace suggestion) +---------------------------------- 1.1c, 20-01-2019 - Added official support for Linux (tests are made in Ubuntu LTS and the program is distributed using an appimage) - Fixed not showing body/headers response when an HTTP status code error is received like (500) (issue #7) diff --git a/utilglobalvars.h b/utilglobalvars.h index d136c9c..84dfa62 100755 --- a/utilglobalvars.h +++ b/utilglobalvars.h @@ -23,7 +23,7 @@ along with this program. If not, see . namespace GlobalVars{ static const QString AppName = "FRequest"; -static const QString AppVersion = "1.2 (Development)"; +static const QString AppVersion = "1.2"; static const QString LastCompatibleVersionConfig = "1.2"; static const QString LastCompatibleVersionProjects= "1.2"; static const QString AppConfigFileName = AppName + ".cfg";