1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// TODO: Is this necessary?
// const COMMANDS: &[&str] = &[
// "check_for_updates",
// "check_for_updates_in_background",
// "can_check_for_updates",
// "current_version",
// "feed_url",
// "set_feed_url",
// "automatically_checks_for_updates",
// "set_automatically_checks_for_updates",
// "automatically_downloads_updates",
// "set_automatically_downloads_updates",
// "last_update_check_date",
// "reset_update_cycle",
// "update_check_interval",
// "set_update_check_interval",
// "check_for_update_information",
// "session_in_progress",
// "http_headers",
// "set_http_headers",
// "user_agent_string",
// "set_user_agent_string",
// "sends_system_profile",
// "set_sends_system_profile",
// "clear_feed_url_from_user_defaults",
// "reset_update_cycle_after_short_delay",
// "allowed_channels",
// "set_allowed_channels",
// "feed_url_override",
// "set_feed_url_override",
// "feed_parameters",
// "set_feed_parameters",
// "should_download_release_notes",
// "set_should_download_release_notes",
// "should_relaunch_application",
// "set_should_relaunch_application",
// "may_check_for_updates_config",
// "set_may_check_for_updates_config",
// "should_proceed_with_update",
// "set_should_proceed_with_update",
// "decryption_password",
// "set_decryption_password",
// "last_found_update",
// ];
use ;