mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-08-03 09:21:33 -07:00
Update to Zwift 1.0.100241
This commit is contained in:
@@ -95,10 +95,10 @@ zoffline can be installed on the same machine as Zwift or another local machine.
|
||||
<details><summary>Windows Instructions</summary>
|
||||
|
||||
* Install Zwift
|
||||
* If your Zwift version is 1.0.100145, you're all set.
|
||||
* If your Zwift version is 1.0.100241, you're all set.
|
||||
* If Zwift is not installed, install it before installing zoffline.
|
||||
* If your Zwift version is newer than 1.0.100145 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.100145 and zoffline is not running from source: wait for zoffline to be updated.
|
||||
* If your Zwift version is newer than 1.0.100241 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.100241 and zoffline is not running from source: wait for zoffline to be updated.
|
||||
* __NOTE:__ instead of performing the steps below you can instead just run the __configure_client__ script from https://github.com/zoffline/zwift-offline/releases/tag/zoffline_helper
|
||||
* On your Windows machine running Zwift, copy the following files in this repo to a known location:
|
||||
* ``ssl/cert-zwift-com.p12``
|
||||
@@ -124,9 +124,9 @@ to generate your own certificates and do the same.
|
||||
<details><summary>Mac OS X Instructions</summary>
|
||||
|
||||
* Install Zwift
|
||||
* If your Zwift version is 1.0.100145, you're all set.
|
||||
* If your Zwift version is 1.0.100241, you're all set.
|
||||
* If Zwift is not installed, install it before installing zoffline.
|
||||
* If your Zwift version is newer than 1.0.100145: 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.100241: 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,10 +1,10 @@
|
||||
<Zwift
|
||||
version="1.0.100145"
|
||||
sversion="1.19.2
|
||||
(100145)"
|
||||
gbranch="build/100145-rc-1.19.2.3-1.19.2"
|
||||
gcommit="36e192c9c12878e356d996ea7cd2643b0d1312f5"
|
||||
version="1.0.100241"
|
||||
sversion="1.20.0
|
||||
(100241)"
|
||||
gbranch="build/100241-rc-1.20.0.26-1.20.0"
|
||||
gcommit="e34205b8f8c34574b86eb830ef00aeed43ffbec8"
|
||||
GAME_URL="https://us-or-rly101.zwift.com"
|
||||
manifest="ZwiftMac_1.0.100145_b450422b_manifest.xml"
|
||||
manifest_checksum="1262011072"
|
||||
ver_cur_checksum="-1046114357"/>
|
||||
manifest="ZwiftMac_1.0.100241_b17b386b_manifest.xml"
|
||||
manifest_checksum="16630813"
|
||||
ver_cur_checksum="-751538810"/>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<Zwift
|
||||
version="1.0.100145"
|
||||
sversion="1.19.2
|
||||
(100145)"
|
||||
gbranch="build/100145-rc-1.19.2.3-1.19.2"
|
||||
gcommit="36e192c9c12878e356d996ea7cd2643b0d1312f5"
|
||||
version="1.0.100241"
|
||||
sversion="1.20.0
|
||||
(100241)"
|
||||
gbranch="build/100241-rc-1.20.0.26-1.20.0"
|
||||
gcommit="e34205b8f8c34574b86eb830ef00aeed43ffbec8"
|
||||
GAME_URL="https://us-or-rly101.zwift.com"
|
||||
manifest="Zwift_1.0.100145_b450422b_manifest.xml"
|
||||
manifest_checksum="-445295179"
|
||||
ver_cur_checksum="1677771087"/>
|
||||
manifest="Zwift_1.0.100241_b17b386b_manifest.xml"
|
||||
manifest_checksum="-934166853"
|
||||
ver_cur_checksum="1421176683"/>
|
||||
|
||||
+20
-7
@@ -1306,7 +1306,7 @@ def zwift_upload(player_id, activity):
|
||||
|
||||
# With 64 bit ids Zwift can pass negative numbers due to overflow, which the flask int
|
||||
# converter does not handle so it's a string argument
|
||||
@app.route('/api/profiles/<int:player_id>/activities/<string:activity_id>', methods=['PUT'])
|
||||
@app.route('/api/profiles/<int:player_id>/activities/<string:activity_id>', methods=['PUT', 'DELETE'])
|
||||
@jwt_to_session_cookie
|
||||
@login_required
|
||||
def api_profiles_activities_id(player_id, activity_id):
|
||||
@@ -1314,6 +1314,8 @@ def api_profiles_activities_id(player_id, activity_id):
|
||||
return '', 400
|
||||
if current_user.player_id != player_id:
|
||||
return '', 401
|
||||
if request.method == 'DELETE':
|
||||
return 'true', 200
|
||||
activity_id = int(activity_id) & 0xffffffffffffffff
|
||||
activity = activity_pb2.Activity()
|
||||
activity.ParseFromString(request.stream.read())
|
||||
@@ -1826,6 +1828,11 @@ def api_segment_results():
|
||||
return handle_segment_results(request)
|
||||
|
||||
|
||||
@app.route('/live-segment-results-service/leaders', methods=['GET'])
|
||||
def live_segment_results_service_leaders():
|
||||
return '', 200
|
||||
|
||||
|
||||
@app.route('/relay/worlds/<int:world_id>/leave', methods=['POST'])
|
||||
def relay_worlds_leave(world_id):
|
||||
return '{"worldtime":%ld}' % world_time()
|
||||
@@ -2085,13 +2092,12 @@ def experimentation_v1_variant():
|
||||
('pack_dynamics_30_watopia', 1, None),
|
||||
('pack_dynamics_30_exclude_events', None, None),
|
||||
#('game_1_19_system_alerts', 1, None),
|
||||
('zc_ios_aug_2021_release_sync', None, None),
|
||||
('game_1_16_2_ble_alternate_unpair_all_paired_devices', 1, None),
|
||||
('game_1_17_game_client_activity_event', None, None),
|
||||
('game_1_17_1_tdf_femmes_yellow_jersey', None, None),
|
||||
('game_1_17_ble_disable_component_sport_filter', 1, None),
|
||||
('game_1_18_new_welcome_ride', None, None),
|
||||
('game_1_19_achievement_service_persist', None, None),
|
||||
('game_1_19_achievement_service_persist', 1, None),
|
||||
('game_1_19_achievement_service_src_of_truth', None, None),
|
||||
('game_1_18_0_pack_dynamics_2_5_collision_push_back_removal', 1, None),
|
||||
('game_1_18_alternate_control_point_pairing', None, None),
|
||||
@@ -2101,15 +2107,22 @@ def experimentation_v1_variant():
|
||||
('game_1_19_0_default_rubberbanding', None, None),
|
||||
('game_1_19_use_tabbed_settings', None, 0),
|
||||
('pedal_assist_20', None, None),
|
||||
('game_1_19_segment_results_sub_active', None, 0),
|
||||
('game_1_19_hw_experiment_1', None, None),
|
||||
('game_1_19_segment_results_sub_active', 1, 0),
|
||||
('game_1_19_0_alternate_ble_dll', None, None),
|
||||
('game_1_20_hw_experiment_1', None, None),
|
||||
('game_1_19_paired_devices_alerts', 1, None),
|
||||
('game_1_19_real_time_unlocks', None, None),
|
||||
('game_1_20_apple_novus_ble_refactor', None, None),
|
||||
('game_1_20_0_ble_data_guard', 1, None),
|
||||
('game_1_20_disable_high_volume_send_mixpanel', None, None),
|
||||
('game_1_20_steering_mode_cleanup', None, None),
|
||||
('game_1_20_clickable_telemetry_box', None, None),
|
||||
('game_1_20_0_enable_stages_steering', None, 0),
|
||||
('game_1_15_assert_disable_abort', 1, None),
|
||||
('game_1_19_local_activity_persistence', None, None),
|
||||
('game_1_19_local_activity_persistence', 1, None),
|
||||
('game_1_18_holiday_mode', None, None),
|
||||
('game_1_17_noesis_enabled', None, None),
|
||||
('game_1_17_home_screen', None, None),
|
||||
('game_1_20_home_screen', None, None),
|
||||
('game_1_19_noesis_dummy', None, None),
|
||||
('game_1_14_settings_refactor', None, None)]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user