Skip to content

Commit

Permalink
Merge pull request RT-Thread#1161 from xiangxistu/master
Browse files Browse the repository at this point in the history
【release】webclient/webnet new version
  • Loading branch information
Guozhanxin authored Jan 17, 2022
2 parents 19053da + 495cfff commit 1a0304c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
7 changes: 6 additions & 1 deletion iot/webclient/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ if PKG_USING_WEBCLIENT
prompt "Version"
help
Select the webclient version
default PKG_USING_WEBCLIENT_LATEST_VERSION
default PKG_USING_WEBCLIENT_V220

config PKG_USING_WEBCLIENT_V220
bool "v2.2.0"

config PKG_USING_WEBCLIENT_V212
bool "v2.1.2"
Expand All @@ -93,6 +96,7 @@ if PKG_USING_WEBCLIENT

config PKG_WEBCLIENT_VER
string
default "v2.2.0" if PKG_USING_WEBCLIENT_V220
default "v2.1.2" if PKG_USING_WEBCLIENT_V212
default "v2.1.1" if PKG_USING_WEBCLIENT_V211
default "v2.1.0" if PKG_USING_WEBCLIENT_V210
Expand All @@ -104,6 +108,7 @@ if PKG_USING_WEBCLIENT
config PKG_WEBCLIENT_VER_NUM
hex
default 0x99999 if PKG_USING_WEBCLIENT_LATEST_VERSION
default 0x20200 if PKG_USING_WEBCLIENT_V220
default 0x20102 if PKG_USING_WEBCLIENT_V212
default 0x20101 if PKG_USING_WEBCLIENT_V211
default 0x20100 if PKG_USING_WEBCLIENT_V210
Expand Down
5 changes: 5 additions & 0 deletions iot/webclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
"URL": "https://github.com/RT-Thread-packages/webclient/archive/2.1.2.zip",
"filename": "webclient-2.1.2.zip"
},
{
"version": "v2.2.0",
"URL": "https://github.com/RT-Thread-packages/webclient/archive/refs/tags/2.2.0.zip",
"filename": "webclient-2.2.0.zip"
},
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/webclient.git",
Expand Down
7 changes: 6 additions & 1 deletion iot/webnet/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ if PKG_USING_WEBNET
prompt "Version"
help
Select the webnet version
default PKG_USING_WEBNET_LATEST_VERSION
default PKG_USING_WEBNET_V203

config PKG_USING_WEBNET_V203
bool "v2.0.3"

config PKG_USING_WEBNET_V202
bool "v2.0.2"
Expand All @@ -115,6 +118,7 @@ if PKG_USING_WEBNET

config PKG_WEBNET_VER
string
default "v2.0.3" if PKG_USING_WEBNET_V203
default "v2.0.2" if PKG_USING_WEBNET_V202
default "v2.0.1" if PKG_USING_WEBNET_V201
default "v2.0.0" if PKG_USING_WEBNET_V200
Expand All @@ -126,6 +130,7 @@ if PKG_USING_WEBNET
default 0x20000 if PKG_USING_WEBNET_V200
default 0x20001 if PKG_USING_WEBNET_V201
default 0x20002 if PKG_USING_WEBNET_V202
default 0x20003 if PKG_USING_WEBNET_V203

endif

5 changes: 5 additions & 0 deletions iot/webnet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
"icon": "https://www.rt-thread.org/qa/template/fxiaomi/style/image/logo.png",
"homepage": "https://github.com/RT-Thread-packages/webnet#readme",
"site": [
{
"version": "v2.0.3",
"URL": "https://github.com/RT-Thread-packages/webnet/archive/refs/tags/2.0.3.zip",
"filename": "webnet-2.0.3.zip"
},
{
"version": "v2.0.2",
"URL": "https://github.com/RT-Thread-packages/webnet/archive/2.0.2.zip",
Expand Down

0 comments on commit 1a0304c

Please sign in to comment.