This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from WereDev/develop
version 4.2.1
- Loading branch information
Showing
26 changed files
with
805 additions
and
858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
$compress = @{ | ||
Path = "Wu10Man\bin\Release\Wu10Man.exe", | ||
"Wu10Man\bin\Release\Wu10Man.exe.config", | ||
"Wu10Man\bin\Release\nlog.config", | ||
"Wu10Man\bin\Release\declutter.json", | ||
"Wu10Man\bin\Release\*.dll" | ||
CompressionLevel = "Optimal" | ||
DestinationPath = "Publish\Wu10Man_Portable.zip" | ||
} | ||
Compress-Archive @compress -Force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,62 @@ | ||
<UserControl x:Class="WereDev.Utils.Wu10Man.UserControls.DeclutterControl" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="clr-namespace:WereDev.Utils.Wu10Man.UserControls" | ||
mc:Ignorable="d" | ||
d:DesignHeight="353" | ||
d:DesignWidth="558"> | ||
<Grid Background="LightGray"> | ||
<Label Content="Uninstall Windows Clutter" HorizontalAlignment="Center" VerticalAlignment="Top" ClipToBounds="True" FontSize="14" FontWeight="Bold"/> | ||
|
||
<Grid Width="200" HorizontalAlignment="Left" Margin="5, 30, 5, 5" Background="#EEEEEE"> | ||
<Label> | ||
<Label.Content> | ||
<StackPanel> | ||
<TextBlock Margin="5, 0, 5, 0" TextWrapping="Wrap"> | ||
Windows 10 comes with a lot of "extra" software, aka clutter. | ||
Many of them are more annoying than useful and can be | ||
somewhat obtrusive. This screen can be used to uninstall | ||
that software. Reinstalling them can be done through | ||
the Windows Store. | ||
</TextBlock> | ||
<Button x:Name="btnShowMicrosoft" Margin="15, 30, 15, 0" Click="ShowMicrosoftApps">Show Microsoft Apps</Button> | ||
<Button x:Name="btnShowThirdParty" Margin="15, 30, 15, 0" Click="ShowThirdPartyApps">Show 3rd Party Apps</Button> | ||
</StackPanel> | ||
</Label.Content> | ||
</Label> | ||
</Grid> | ||
<Grid Width="350" HorizontalAlignment="Right" Margin="5, 30, 5, 5" Background="#EEEEEE" Name="grdMicrosoft" Visibility="Visible"> | ||
<ListView Height="275" Width="350" VerticalAlignment="Top" ItemsSource="{Binding Path=Packages}" | ||
BorderThickness="0" Background="Transparent" HorizontalAlignment="Center" Name="ListViewWindowsApps"> | ||
<ListView.ItemContainerStyle> | ||
<Style TargetType="{x:Type ListViewItem}"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="HorizontalAlignment" Value="Stretch"/> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type ListViewItem}"> | ||
<ContentPresenter /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
</ListView.ItemContainerStyle> | ||
<ListView.ItemTemplate> | ||
<DataTemplate> | ||
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0" Visibility="{Binding GetVisibility}"> | ||
<CheckBox Margin="0" VerticalAlignment="Center" IsChecked="{Binding CheckedForRemoval}" /> | ||
<Label Content="{Binding AppName}" Margin="0" VerticalAlignment="Center" HorizontalAlignment="Left" Width="300"/> | ||
</StackPanel> | ||
</DataTemplate> | ||
</ListView.ItemTemplate> | ||
</ListView> | ||
<Button Content="Remove Checked Apps" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="10" Width="150" Click="RemoveCheckedApps" /> | ||
<Button Content="{Binding SelectButtonText}" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="10" Width="150" Click="ToggleAppsSelection" /> | ||
</Grid> | ||
<local:ProgressBarControl Visibility="Hidden" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" x:Name="ProgressBar"></local:ProgressBarControl> | ||
</Grid> | ||
</UserControl> | ||
<localControls:UserControlBaseWithWorker | ||
x:Class="WereDev.Utils.Wu10Man.UserControls.DeclutterControl" | ||
x:TypeArguments="localModels:DeclutterModel" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:localControls="clr-namespace:WereDev.Utils.Wu10Man.UserControls" | ||
xmlns:localModels="clr-namespace:WereDev.Utils.Wu10Man.UserControls.Models" | ||
mc:Ignorable="d" | ||
d:DesignHeight="353" | ||
d:DesignWidth="558"> | ||
<Grid Background="LightGray"> | ||
<Label Content="Uninstall Windows Clutter" HorizontalAlignment="Center" VerticalAlignment="Top" ClipToBounds="True" FontSize="14" FontWeight="Bold"/> | ||
|
||
<Grid Width="200" HorizontalAlignment="Left" Margin="5, 30, 5, 5" Background="#EEEEEE"> | ||
<Label> | ||
<Label.Content> | ||
<StackPanel> | ||
<TextBlock Margin="5, 0, 5, 0" TextWrapping="Wrap"> | ||
Windows 10 comes with a lot of "extra" software, aka clutter. | ||
Many of them are more annoying than useful and can be | ||
somewhat obtrusive. This screen can be used to uninstall | ||
that software. Reinstalling them can be done through | ||
the Windows Store. | ||
</TextBlock> | ||
<Button x:Name="btnShowMicrosoft" Margin="15, 30, 15, 0" Click="ShowMicrosoftApps">Show Microsoft Apps</Button> | ||
<Button x:Name="btnShowThirdParty" Margin="15, 30, 15, 0" Click="ShowThirdPartyApps">Show 3rd Party Apps</Button> | ||
</StackPanel> | ||
</Label.Content> | ||
</Label> | ||
</Grid> | ||
<Grid Width="350" HorizontalAlignment="Right" Margin="5, 30, 5, 5" Background="#EEEEEE" Name="grdMicrosoft" Visibility="Visible"> | ||
<ListView Height="275" Width="350" VerticalAlignment="Top" ItemsSource="{Binding Path=Packages}" | ||
BorderThickness="0" Background="Transparent" HorizontalAlignment="Center" Name="ListViewWindowsApps"> | ||
<ListView.ItemContainerStyle> | ||
<Style TargetType="{x:Type ListViewItem}"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="HorizontalAlignment" Value="Stretch"/> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type ListViewItem}"> | ||
<ContentPresenter /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
</ListView.ItemContainerStyle> | ||
<ListView.ItemTemplate> | ||
<DataTemplate> | ||
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0" Visibility="{Binding GetVisibility}"> | ||
<CheckBox Margin="0" VerticalAlignment="Center" IsChecked="{Binding CheckedForRemoval}" /> | ||
<Label Content="{Binding AppName}" Margin="0" VerticalAlignment="Center" HorizontalAlignment="Left" Width="300"/> | ||
</StackPanel> | ||
</DataTemplate> | ||
</ListView.ItemTemplate> | ||
</ListView> | ||
<Button Content="Remove Checked Apps" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="10" Width="150" Click="RemoveCheckedApps" /> | ||
<Button Content="{Binding SelectButtonText}" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="10" Width="150" Click="ToggleAppsSelection" /> | ||
</Grid> | ||
</Grid> | ||
</localControls:UserControlBaseWithWorker> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.