File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
* It is strongly advised to perform an update of your tentacles after updating OctoBot. (start.py tentacles --install --all)*
8
8
9
+ ## [ 2.0.1] - 2024-07-09
10
+ ### Updated
11
+ - [ WebInterface] Add contact on extension page
12
+ - [ WebInterface] improve display
13
+ ### Fixed
14
+ - [ WebInterface] display issues
15
+
9
16
## [ 2.0.0] - 2024-07-05
10
17
### Added
11
18
- [ Extension] : New OctoBot extension to profit from the Strategy designer, secure TradingView webhooks and automatically updated crypto baskets
Original file line number Diff line number Diff line change 1
- # OctoBot [ 2.0.0 ] ( https://octobot.click/gh-changelog )
1
+ # OctoBot [ 2.0.1 ] ( https://octobot.click/gh-changelog )
2
2
[ ![ PyPI] ( https://img.shields.io/pypi/v/OctoBot.svg?logo=pypi )] ( https://octobot.click/gh-pypi )
3
3
[ ![ Downloads] ( https://pepy.tech/badge/octobot/month )] ( https://pepy.tech/project/octobot )
4
4
[ ![ Dockerhub] ( https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg?logo=docker )] ( https://octobot.click/gh-dockerhub )
Original file line number Diff line number Diff line change 16
16
17
17
PROJECT_NAME = "OctoBot"
18
18
AUTHOR = "Drakkar-Software"
19
- VERSION = "2.0.0 " # major.minor.revision
19
+ VERSION = "2.0.1 " # major.minor.revision
20
20
LONG_VERSION = f"{ VERSION } "
Original file line number Diff line number Diff line change 110
110
IS_CLOUD_ENV = os_util .parse_boolean_environment_var ("IS_CLOUD_ENV" , "false" )
111
111
CAN_INSTALL_TENTACLES = os_util .parse_boolean_environment_var ("CAN_INSTALL_TENTACLES" , str (not IS_CLOUD_ENV ))
112
112
TRACKING_ID = os .getenv ("TRACKING_ID" , "eoe1stwyun" if IS_DEMO else "eoe06soct7" if IS_CLOUD_ENV else "f726lk9q59" )
113
+ PH_TRACKING_ID = os .getenv ("PH_TRACKING_ID" , "phc_VydQbPkMXoNhgd0xJde4hUgbWGlEJ3aaLrSu5sudFdJ" )
113
114
# Profiles download urls to import at startup if missing, split by ","
114
115
TO_DOWNLOAD_PROFILES = os .getenv ("TO_DOWNLOAD_PROFILES" , None )
115
116
# Profiles to force select at startup, identified by profile id, download url or name
You can’t perform that action at this time.
0 commit comments