16 Commits

Author SHA1 Message Date
pnetlabrepo
4ad1eb7733 Update CHANGELOG.md 2023-01-30 20:20:51 -03:00
pnetlabrepo
9a14a3efd5 Update CHANGELOG.md 2023-01-30 20:20:24 -03:00
pnetlabrepo
d3d21399c4 Update version_gui 2023-01-30 20:17:55 -03:00
pnetlabrepo
0396c727c7 Update CHANGELOG.md 2023-01-30 20:17:48 -03:00
pnetlabrepo
b1b9cd6d6c Add files via upload 2023-01-30 20:14:42 -03:00
pnetlabrepo
44249c8dcb Update CHANGELOG.md 2023-01-30 20:11:59 -03:00
pnetlabrepo
02cd1850ef Update version 2023-01-30 20:11:29 -03:00
pnetlabrepo
2c93a65305 Update CHANGELOG.md 2023-01-30 20:11:22 -03:00
pnetlabrepo
1d646a869e Update ishare2 2023-01-30 20:09:41 -03:00
pnetlabrepo
92fdd48606 Update CHANGELOG.md 2023-01-30 15:49:07 -03:00
pnetlabrepo
de20e51ba7 Update CHANGELOG.md 2023-01-30 15:48:53 -03:00
pnetlabrepo
e8b228d96f Update version_gui 2023-01-30 15:47:28 -03:00
pnetlabrepo
4e229014ec Add files via upload 2023-01-30 15:47:06 -03:00
pnetlabrepo
4774983c71 Create CHANGELOG.md 2023-01-30 01:37:06 -03:00
pnetlabrepo
89b4e4ac5b Update version_gui 2023-01-30 01:21:03 -03:00
pnetlabrepo
4d6c9b7747 Update CHANGELOG.md 2023-01-30 01:20:53 -03:00
6 changed files with 25 additions and 4 deletions

View File

@@ -1,8 +1,11 @@
# Changelog
# Changelog for ishare2
All notable changes to this project will be documented in this file. You can upgrade ishare2 to the latest version using `ishare2 upgrade` and then selecting `option 1`
## [v1.6.1] - 2023-Jan-30
1) Added: Some instructions were added to `ishare2_gui_download()` function in order to avoid some errors related to missing packages (pip install uvicorn, pip install fastapi and pip install jinja2 instructions were added)
## [v1.6.0] - 2023-Jan-30
1) Added: Command `ishare2 gui stop` was added into ishare2_gui_download function in order to avoid errors when downloading/upgrading ishare2 GUI
1) Added: Command `ishare2 gui stop` was added into `ishare2_gui_download()` function in order to avoid errors when downloading/upgrading ishare2 GUI
## [v1.5.9] - 2023-Jan-30
1) Added: A new version control was added for ishare2 GUI. It can be seen using the `ishare2` command and looking at the bottom of it. New functions and variables were implemented. Also, using `ishare2 upgrade` > `option 3` it is possible to upgrade it.

13
gui/CHANGELOG.md Normal file
View File

@@ -0,0 +1,13 @@
# Changelog for ishare2 GUI
All notable changes to this project will be documented in this file. You can upgrade ishare2 GUI to the latest version using `ishare2 upgrade` and then selecting `option 3`
## [v1.0.2] - 2023-Jan-30
1) Added: Now, in home.html it is possible to see pnetlab and ishare2 GUI versions (Before, only ishare2 was possible to see)
2) Added: Now, in home.html it is possible to check both CHANGELOG.md files (ishare2 and ishare2 GUI files)
## [v1.0.1] - 2023-Jan-30
1) Added: Change made to show both CHANGELOG.md files (ishare2 and ishare2 GUI) in home.html
## [v1.0.0] - 2023-Jan-30
Initial release

Binary file not shown.

View File

@@ -1 +1 @@
v1.0.1
v1.0.2

View File

@@ -1092,6 +1092,11 @@ function ishare2_gui_download() {
wget -q $URL_REQUIREMENTS_GUI_APP -P /root
pip install -r /root/requirements.txt > /dev/null 2>&1
pip install uvicorn > /dev/null 2>&1
pip install fastapi > /dev/null 2>&1
pip install jinja2 > /dev/null 2>&1
rm /root/requirements.txt
echo -e "${GREEN}GUI has been downloaded and installed. Now, you can start it by using: ishare2 gui start${NO_COLOR}"

View File

@@ -1 +1 @@
v1.6.0
v1.6.1