mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-05 02:54:59 +00:00
93 lines
2.5 KiB
C#
93 lines
2.5 KiB
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Interactivity;
|
|
using AvaloniaEdit;
|
|
using AvaloniaEdit.Document;
|
|
using AvaloniaEdit.Editing;
|
|
using AvaloniaEdit.TextMate;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public class UpdateInfoView : TextEditor
|
|
{
|
|
protected override Type StyleKeyOverride => typeof(TextEditor);
|
|
|
|
public UpdateInfoView() : base(new TextArea(), new TextDocument())
|
|
{
|
|
IsReadOnly = true;
|
|
ShowLineNumbers = false;
|
|
WordWrap = true;
|
|
HorizontalScrollBarVisibility = ScrollBarVisibility.Disabled;
|
|
VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
|
|
|
|
TextArea.TextView.Margin = new Thickness(4, 0);
|
|
TextArea.TextView.Options.EnableHyperlinks = false;
|
|
TextArea.TextView.Options.EnableEmailHyperlinks = false;
|
|
|
|
}
|
|
|
|
protected override void OnLoaded(RoutedEventArgs e)
|
|
{
|
|
base.OnLoaded(e);
|
|
|
|
if (_textMate == null)
|
|
{
|
|
_textMate = Models.TextMateHelper.CreateForEditor(this);
|
|
Models.TextMateHelper.SetGrammarByFileName(_textMate, "README.md");
|
|
}
|
|
}
|
|
|
|
protected override void OnUnloaded(RoutedEventArgs e)
|
|
{
|
|
base.OnUnloaded(e);
|
|
|
|
if (_textMate != null)
|
|
{
|
|
_textMate.Dispose();
|
|
_textMate = null;
|
|
}
|
|
|
|
GC.Collect();
|
|
}
|
|
|
|
protected override void OnDataContextChanged(EventArgs e)
|
|
{
|
|
base.OnDataContextChanged(e);
|
|
|
|
if (DataContext is Models.Version ver)
|
|
Text = ver.Body;
|
|
}
|
|
|
|
private TextMate.Installation _textMate = null;
|
|
}
|
|
|
|
public partial class SelfUpdate : ChromelessWindow
|
|
{
|
|
public SelfUpdate()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CloseWindow(object _1, RoutedEventArgs _2)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void GotoDownload(object _, RoutedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://github.com/sourcegit-scm/sourcegit/releases/latest");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void IgnoreThisVersion(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button { DataContext: Models.Version ver })
|
|
ViewModels.Preferences.Instance.IgnoreUpdateTag = ver.TagName;
|
|
|
|
Close();
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|