699d4ede1d
Add .prettierrc.json, .markdownlint.json, .yamllint.yaml, .gitattributes Run CSharpier, Prettier and markdownlint across the entire codebase. No logic changes — formatting, using order and line endings only.
34 lines
885 B
C#
34 lines
885 B
C#
using Dalamud.Interface.ImGuiNotification;
|
|
using HellionChat.Resources;
|
|
|
|
namespace HellionChat.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);
|
|
}
|
|
}
|
|
}
|