Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4ad1eb7733 | ||
|
|
9a14a3efd5 | ||
|
|
d3d21399c4 | ||
|
|
0396c727c7 | ||
|
|
b1b9cd6d6c | ||
|
|
44249c8dcb | ||
|
|
02cd1850ef | ||
|
|
2c93a65305 | ||
|
|
1d646a869e | ||
|
|
92fdd48606 | ||
|
|
de20e51ba7 | ||
|
|
e8b228d96f | ||
|
|
4e229014ec | ||
|
|
4774983c71 | ||
|
|
89b4e4ac5b | ||
|
|
4d6c9b7747 |
@@ -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
13
gui/CHANGELOG.md
Normal 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
|
||||
BIN
gui/app.zip
BIN
gui/app.zip
Binary file not shown.
@@ -1 +1 @@
|
||||
v1.0.1
|
||||
v1.0.2
|
||||
|
||||
5
ishare2
5
ishare2
@@ -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}"
|
||||
|
||||
Reference in New Issue
Block a user