show commands with text editor
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
- Fix showing incorrect timestamps in About dialog of Store version.
|
- Fix showing incorrect timestamps in About dialog of Store version.
|
||||||
- Fix Store page showing non existant ARM and x86 support.
|
- Fix Store page showing non existant ARM and x86 support.
|
||||||
- Fix opening zip files.
|
- Fix opening zip files.
|
||||||
|
- The list of available input commands is like before shown
|
||||||
|
by the text editor, so it's like everything else searchable.
|
||||||
|
|
||||||
5.7.0.0 Stable (2022-03-09)
|
5.7.0.0 Stable (2022-03-09)
|
||||||
|
|
||||||
|
|||||||
@@ -67,6 +67,14 @@ namespace mpvnet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void ShowTextWithEditor(string name, string text)
|
||||||
|
{
|
||||||
|
string file = Path.Combine(Path.GetTempPath(), name + ".txt");
|
||||||
|
App.TempFiles.Add(file);
|
||||||
|
File.WriteAllText(file, BR + text.Trim() + BR);
|
||||||
|
ProcessHelp.ShellExecute(file);
|
||||||
|
}
|
||||||
|
|
||||||
public static void ShowDialog(Type winType)
|
public static void ShowDialog(Type winType)
|
||||||
{
|
{
|
||||||
App.InvokeOnMainThread(new Action(() => {
|
App.InvokeOnMainThread(new Action(() => {
|
||||||
@@ -356,7 +364,7 @@ namespace mpvnet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Msg.ShowInfo(sb.ToString());
|
ShowTextWithEditor("command-list", sb.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ScaleWindow(float factor) => Core.RaiseScaleWindow(factor);
|
public static void ScaleWindow(float factor) => Core.RaiseScaleWindow(factor);
|
||||||
@@ -538,7 +546,7 @@ namespace mpvnet
|
|||||||
if (propValue.ContainsEx("${"))
|
if (propValue.ContainsEx("${"))
|
||||||
propValue += BR2 + Core.Expand(propValue);
|
propValue += BR2 + Core.Expand(propValue);
|
||||||
|
|
||||||
App.ShowInfo(prop + ": " + propValue);
|
App.ShowInfo(prop + "\n\n" + propValue);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user