Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f238bbf856 | ||
|
|
a0191576f0 | ||
|
|
1d96b69800 |
@@ -9,9 +9,7 @@
|
||||
<description>A Path of Exile loot filter script editor</description>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<copyright>Copyright 2018</copyright>
|
||||
<releaseNotes>* Fixed the Block Output Preview pane not working
|
||||
* The Block Output Preview pane now supports previewing multiple selected blocks
|
||||
* The Block Output Preview pane now supports selecting the text within it</releaseNotes>
|
||||
<releaseNotes>* Fixed crash on exit</releaseNotes>
|
||||
<dependencies />
|
||||
</metadata>
|
||||
<files>
|
||||
|
||||
@@ -10,8 +10,8 @@ using System.Runtime.CompilerServices;
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.1")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.1")]
|
||||
[assembly: AssemblyVersion("1.0.2")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.2")]
|
||||
|
||||
[assembly: InternalsVisibleTo("Filtration.Tests")]
|
||||
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
|
||||
|
||||
@@ -57,7 +57,8 @@ namespace Filtration.ViewModels.ToolPanes
|
||||
private void OnLastSelectedBlockChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (AvalonDockWorkspaceViewModel.ActiveScriptViewModel?.SelectedBlockViewModels == null ||
|
||||
AvalonDockWorkspaceViewModel.ActiveScriptViewModel.SelectedBlockViewModels.Count == 0)
|
||||
AvalonDockWorkspaceViewModel.ActiveScriptViewModel.SelectedBlockViewModels.Count == 0 ||
|
||||
AvalonDockWorkspaceViewModel.ActiveScriptViewModel.SelectedBlockViewModels.FirstOrDefault() == null)
|
||||
{
|
||||
PreviewText = string.Empty;
|
||||
return;
|
||||
|
||||
@@ -4,7 +4,7 @@ Filtration is an editor for Path of Exile item filter scripts.
|
||||
|
||||
## Current Release (Released 2018-09-30)
|
||||
<b>Installer</b><br>
|
||||
<a href="https://github.com/ben-wallis/Filtration/releases/download/1.0.0/Setup.exe">Setup.exe</a>
|
||||
<a href="https://github.com/ben-wallis/Filtration/releases/download/1.0.1/Setup.exe">Setup.exe</a>
|
||||
|
||||
## System Requirements
|
||||
Filtration requires .NET Framework 4.6.1 installed.
|
||||
@@ -24,10 +24,10 @@ If you'd like to make your script fully compatible with Filtration, please take
|
||||
## Screenshots
|
||||
|
||||
##### Main Window
|
||||
<img src="http://i.imgur.com/eAsMoSo.png" />
|
||||
<img src="https://i.imgur.com/d3tKEab.png" />
|
||||
|
||||
##### Theme Editor
|
||||
<img src="http://i.imgur.com/FJWJknO.png" />
|
||||
<img src="https://i.imgur.com/Pi9wds1.png" />
|
||||
|
||||
## Contact
|
||||
You can find me on irc.freenode.net in #filtration
|
||||
|
||||
Reference in New Issue
Block a user