{translate('Installation')}
{translate('Installation Path')} {": "}
-
-
+
+
{translate('End-user license agreement')}
{translate('agreement_tip')}
diff --git a/src/ui_interface.rs b/src/ui_interface.rs
index e32fcb49d..c39a58068 100644
--- a/src/ui_interface.rs
+++ b/src/ui_interface.rs
@@ -426,6 +426,14 @@ pub fn install_path() -> String {
return "".to_owned();
}
+#[inline]
+pub fn install_options() -> String {
+ #[cfg(windows)]
+ return crate::platform::windows::get_install_options();
+ #[cfg(not(windows))]
+ return "{}".to_owned();
+}
+
#[inline]
pub fn get_socks() -> Vec
{
#[cfg(not(any(target_os = "android", target_os = "ios")))]