c424311b24
- Plugin commands trigger the command helper window now - Fix auto translation with empty text appearing - Switch up all dalamud payload usage to ROSS if possible - Prepare 7.5 changes - Cleanup
26 lines
781 B
C#
26 lines
781 B
C#
using ChatTwo.Resources;
|
|
using Dalamud.Interface.ImGuiNotification;
|
|
|
|
namespace ChatTwo.Util;
|
|
|
|
public static class WrapperUtil
|
|
{
|
|
public static void AddNotification(string content, NotificationType type, bool minimized = true)
|
|
{
|
|
Plugin.Notification.AddNotification(new Notification { Content = content, Type = type, Minimized = minimized });
|
|
}
|
|
|
|
public static void TryOpenUri(Uri uri)
|
|
{
|
|
try
|
|
{
|
|
Plugin.Log.Debug($"Opening URI {uri} in default browser");
|
|
Dalamud.Utility.Util.OpenLink(uri.ToString());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Plugin.Log.Error($"Error opening URI: {ex}");
|
|
AddNotification(Language.Context_OpenInBrowserError, NotificationType.Error);
|
|
}
|
|
}
|
|
} |