File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 3.0.3 / 2024-08-29
2+
3+ * Remove the verification encryption key and unnecessary configurations
4+
15### 3.0.2 / 2020-06-29
26
37* Rescue exceptions in update manager thread
Original file line number Diff line number Diff line change @@ -29,8 +29,6 @@ def root_path
2929 setting :device_model , 'Ruby TD client'
3030 setting :system_version , 'Unknown'
3131 setting :application_version , '1.0'
32- setting :enable_storage_optimizer , true
33- setting :ignore_file_names , false
3432 end
3533end
3634
Original file line number Diff line number Diff line change @@ -36,13 +36,10 @@ def connect
3636 on TD ::Types ::Update ::AuthorizationState do |update |
3737 case update . authorization_state
3838 when TD ::Types ::AuthorizationState ::WaitTdlibParameters
39- set_tdlib_parameters ( parameters : TD ::Types ::TdlibParameters . new ( **@config ) )
40- when TD ::Types ::AuthorizationState ::WaitEncryptionKey
41- check_database_encryption_key ( encryption_key : TD . config . encryption_key ) . then do
42- @ready_condition_mutex . synchronize do
43- @ready = true
44- @ready_condition . broadcast
45- end
39+ set_tdlib_parameters ( **@config )
40+ @ready_condition_mutex . synchronize do
41+ @ready = true
42+ @ready_condition . broadcast
4643 end
4744 else
4845 # do nothing
Original file line number Diff line number Diff line change 11module TD
22 # tdlib-ruby version
3- VERSION = "3.0.2 "
3+ VERSION = "3.0.3 "
44end
You can’t perform that action at this time.
0 commit comments