Skip to content

Commit

Permalink
renamed to Everything.NET, native shell context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
stax76 committed Dec 26, 2020
1 parent 824233f commit 98435f6
Show file tree
Hide file tree
Showing 12 changed files with 1,311 additions and 21 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

# Dark Everything Frontend

Simple Everything frontend with dark UI!
Voidtools Everything frontend with dark mode.

### Screenshot

![-](Screenshot.png)

### Requirements

- [Everything installation](https://www.voidtools.com/downloads)
- [Voidtools Everything installation](https://www.voidtools.com/downloads)
- [.NET 5 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-desktop-5.0.0-windows-x64-installer)

### Theme
Expand All @@ -18,4 +18,4 @@ https://github.com/DanPristupov/WpfExpressionBlendTheme

### Download

https://github.com/stax76/Everything-Frontend/releases
https://github.com/stax76/Everything.NET/releases
2 changes: 1 addition & 1 deletion src/App.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<Application x:Class="EverythingFrontend.App"
<Application x:Class="EverythingNET.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="View.xaml">
Expand Down
2 changes: 1 addition & 1 deletion src/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

using System.Windows;

namespace EverythingFrontend
namespace EverythingNET
{
public partial class App : Application
{
Expand Down
9 changes: 5 additions & 4 deletions src/Everything Frontend.csproj → src/Everything.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
<TargetFramework>net5.0-windows</TargetFramework>
<OutDir>$(SolutionDir)\bin</OutDir>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Everything.ico</ApplicationIcon>
<Authors>Frank Skare (stax76)</Authors>
<Copyright>Copyright (C) 2020 Frank Skare (stax76)</Copyright>
<Product>Everything Frontend</Product>
<Description>Simple Everything frontend with dark mode.</Description>
<AssemblyName>EverythingFrontend</AssemblyName>
<RootNamespace>EverythingFrontend</RootNamespace>
<Product>Everything.NET</Product>
<Description>Everything frontend with dark UI.</Description>
<AssemblyName>EverythingNET</AssemblyName>
<RootNamespace>EverythingNET</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Everything Frontend.sln → src/Everything.NET.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30717.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Everything Frontend", "Everything Frontend.csproj", "{3BFFE495-5090-41E3-8CF4-43E2A17657A0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Everything.NET", "Everything.NET.csproj", "{3BFFE495-5090-41E3-8CF4-43E2A17657A0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion src/Item.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

using System;

namespace EverythingFrontend
namespace EverythingNET
{
class Item
{
Expand Down
2 changes: 1 addition & 1 deletion src/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Runtime.InteropServices;
using System.Text;

namespace EverythingFrontend
namespace EverythingNET
{
class Model
{
Expand Down
Loading

0 comments on commit 98435f6

Please sign in to comment.