* Added DisableDropSound icon for blocks with no other sound blocks
* Bumped version to 1.1.0-beta8
This commit is contained in:
parent
79398667b4
commit
d686e6da39
|
@ -462,6 +462,8 @@
|
||||||
<DependentUpon>Settings.settings</DependentUpon>
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Resource Include="Resources\Icons\no_sound_dds_light.png" />
|
||||||
|
<Resource Include="Resources\Icons\no_sound_dds.png" />
|
||||||
<Resource Include="Resources\Icons\speaker_icon.png" />
|
<Resource Include="Resources\Icons\speaker_icon.png" />
|
||||||
<Resource Include="Resources\Icons\sound_dds.png" />
|
<Resource Include="Resources\Icons\sound_dds.png" />
|
||||||
<EmbeddedResource Include="Resources\Prophecies.txt" />
|
<EmbeddedResource Include="Resources\Prophecies.txt" />
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
* Filter sections are once again now expanded by default when scripts are opened, unless the new "Auto-expand all sections when opening scripts" setting is disabled
|
* Filter sections are once again now expanded by default when scripts are opened, unless the new "Auto-expand all sections when opening scripts" setting is disabled
|
||||||
* A new Clear Styles button has been added which removes all styles from the selected block (#96)
|
* A new Clear Styles button has been added which removes all styles from the selected block (#96)
|
||||||
* New buttons for adding/removing DisableDropSound from selected blocks have been added (#110)
|
* New buttons for adding/removing DisableDropSound from selected blocks have been added (#110)
|
||||||
|
* Added a new indicator for blocks with a DisableDropSound block present (#113)
|
||||||
* The Enable/Disable Block toggle button is now visible on both the Regular Block Items and Appearance Block Items views
|
* The Enable/Disable Block toggle button is now visible on both the Regular Block Items and Appearance Block Items views
|
||||||
* When there are too many block items to fit horizontally in a block a horizontal scrollbar will now appear
|
* When there are too many block items to fit horizontally in a block a horizontal scrollbar will now appear
|
||||||
* Fixed an issue with MinimapIcon block items causing an "Unused Theme Components" message box to erroneously be shown when saving (#116)
|
* Fixed an issue with MinimapIcon block items causing an "Unused Theme Components" message box to erroneously be shown when saving (#116)
|
||||||
|
|
|
@ -11,7 +11,7 @@ using System.Runtime.CompilerServices;
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
[assembly: AssemblyVersion("1.1.0")]
|
[assembly: AssemblyVersion("1.1.0")]
|
||||||
[assembly: AssemblyInformationalVersion("1.1.0-beta7")]
|
[assembly: AssemblyInformationalVersion("1.1.0-beta8")]
|
||||||
|
|
||||||
[assembly: InternalsVisibleTo("Filtration.Tests")]
|
[assembly: InternalsVisibleTo("Filtration.Tests")]
|
||||||
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
|
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
|
@ -139,6 +139,33 @@
|
||||||
</MultiBinding>
|
</MultiBinding>
|
||||||
</Image.Source>
|
</Image.Source>
|
||||||
</Image>
|
</Image>
|
||||||
|
<Image Height="28" Width="28" Margin="0,0,5,0" Source="../Resources/Icons/no_sound_dds_light.png">
|
||||||
|
<Image.ToolTip>
|
||||||
|
<TextBlock>
|
||||||
|
The default drop sound is disabled for this block.
|
||||||
|
<LineBreak />
|
||||||
|
Drops matched by this block emit no sound whatsoever
|
||||||
|
</TextBlock>
|
||||||
|
</Image.ToolTip>
|
||||||
|
<Image.Style>
|
||||||
|
<Style TargetType="Image">
|
||||||
|
<Setter Property="Visibility" Value="Collapsed" />
|
||||||
|
<Style.Triggers>
|
||||||
|
<MultiDataTrigger>
|
||||||
|
<MultiDataTrigger.Conditions>
|
||||||
|
<Condition Binding="{Binding HasCustomSound}" Value="False" />
|
||||||
|
<Condition Binding="{Binding HasSound}" Value="False" />
|
||||||
|
<Condition Binding="{Binding HasPositionalSound}" Value="False" />
|
||||||
|
<Condition Binding="{Binding HasDisabledDefaultSound}" Value="True" />
|
||||||
|
</MultiDataTrigger.Conditions>
|
||||||
|
<MultiDataTrigger.Setters>
|
||||||
|
<Setter Property="Visibility" Value="Visible" />
|
||||||
|
</MultiDataTrigger.Setters>
|
||||||
|
</MultiDataTrigger>
|
||||||
|
</Style.Triggers>
|
||||||
|
</Style>
|
||||||
|
</Image.Style>
|
||||||
|
</Image>
|
||||||
<Button Command="{Binding PlaySoundCommand}"
|
<Button Command="{Binding PlaySoundCommand}"
|
||||||
Width="32"
|
Width="32"
|
||||||
Height="32"
|
Height="32"
|
||||||
|
|
Loading…
Reference in New Issue