Merge pull request #50 from oldnapalm/master

Update to Zwift 1.0.49751
This commit is contained in:
zoffline
2020-04-29 22:48:48 -04:00
committed by GitHub
4 changed files with 16 additions and 16 deletions
+5 -5
View File
@@ -65,10 +65,10 @@ dependencies listed below. The necessary Apache configuration is inside the
<details><summary>Windows 10 Instructions</summary>
* Install Zwift
* If your Zwift version is 1.0.48969, you're all set.
* If your Zwift version is 1.0.49751, you're all set.
* If Zwift is not installed, install it before installing zoffline.
* If your Zwift version is newer than 1.0.48969 and zoffline is running from source: copy ``C:\Program Files (x86)\Zwift\Zwift_ver_cur.xml`` to zoffline's ``cdn/gameassets/Zwift_Updates_Root/`` overwriting the existing file.
* If your Zwift version is newer than 1.0.48969 and zoffline is not running from source: wait for zoffline to be updated.
* If your Zwift version is newer than 1.0.49751 and zoffline is running from source: copy ``C:\Program Files (x86)\Zwift\Zwift_ver_cur.xml`` to zoffline's ``cdn/gameassets/Zwift_Updates_Root/`` overwriting the existing file.
* If your Zwift version is newer than 1.0.49751 and zoffline is not running from source: wait for zoffline to be updated.
* On your Windows machine running Zwift, copy the following files in this repo to a known location:
* ``ssl/cert-zwift-com.p12``
* ``ssl/cert-zwift-com.pem``
@@ -91,9 +91,9 @@ to generate your own certificates and do the same.
<details><summary>Mac OS X Instructions (Thanks @oldnapalm!)</summary>
* Install Zwift
* If your Zwift version is 1.0.48969, you're all set.
* If your Zwift version is 1.0.49751, you're all set.
* If Zwift is not installed, install it before installing zoffline.
* If your Zwift version is newer than 1.0.48969: copy ``~/Library/Application Support/Zwift/ZwiftMac_ver_cur.xml`` to zoffline's ``cdn/gameassets/Zwift_Updates_Root/`` overwriting the existing file.
* If your Zwift version is newer than 1.0.49751: copy ``~/Library/Application Support/Zwift/ZwiftMac_ver_cur.xml`` to zoffline's ``cdn/gameassets/Zwift_Updates_Root/`` overwriting the existing file.
* On your Mac machine running Zwift, copy the following files in this repo to a known location:
* ``ssl/cert-zwift-com.p12``
* ``ssl/cert-zwift-com.pem``
@@ -1,7 +1,7 @@
<Zwift
version="1.0.48969"
version="1.0.49751"
GAME_URL="https://us-or-rly101.zwift.com"
manifest="ZwiftMac_1.0.48969_ec6cdfaf_manifest.xml"
manifest_checksum="1897373237"
manifest="ZwiftMac_1.0.49751_7bb84e31_manifest.xml"
manifest_checksum="-1100402001"
mandatory_version="0.0.0"
ver_cur_checksum="1271531551"/>
ver_cur_checksum="-1400870443"/>
@@ -1,7 +1,7 @@
<Zwift
version="1.0.48969"
version="1.0.49751"
GAME_URL="https://us-or-rly101.zwift.com"
manifest="Zwift_1.0.48969_ec6cdfaf_manifest.xml"
manifest_checksum="-567094760"
manifest="Zwift_1.0.49751_7bb84e31_manifest.xml"
manifest_checksum="-791865278"
mandatory_version="0.0.0"
ver_cur_checksum="317148842"/>
ver_cur_checksum="922412999"/>
+3 -3
View File
@@ -157,9 +157,9 @@ def api_users_login():
response.info.apis.todaysplan_url = "https://whats.todaysplan.com.au"
response.info.apis.trainingpeaks_url = "https://api.trainingpeaks.com"
response.info.time = int(time.time())
# udp_node = response.info.nodes.node.add()
# udp_node.ip = "34.218.60.145" # TCP telemetry server
# udp_node.port = 3023
udp_node = response.info.nodes.node.add()
udp_node.ip = "127.0.0.1" # TCP telemetry server
udp_node.port = 3023
return response.SerializeToString(), 200