This repository has been archived by the owner on Jan 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
74 additions
and
166 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
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
7 changes: 0 additions & 7 deletions
7
Sources/MicSwitch/MainWindow/ViewModels/HotkeyEditorViewModel.cs
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
2 changes: 0 additions & 2 deletions
2
Sources/MicSwitch/MainWindow/ViewModels/IHotkeyEditorViewModel.cs
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
2 changes: 0 additions & 2 deletions
2
Sources/MicSwitch/MainWindow/ViewModels/IMainWindowViewModel.cs
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
1 change: 0 additions & 1 deletion
1
Sources/MicSwitch/MainWindow/ViewModels/IMicSwitchOverlayViewModel.cs
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,5 +1,4 @@ | ||
using MicSwitch.MainWindow.Models; | ||
using PoeShared.Native; | ||
|
||
namespace MicSwitch.MainWindow.ViewModels | ||
{ | ||
|
4 changes: 0 additions & 4 deletions
4
Sources/MicSwitch/MainWindow/ViewModels/IMicrophoneControllerViewModel.cs
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
11 changes: 0 additions & 11 deletions
11
Sources/MicSwitch/MainWindow/ViewModels/MicSwitchOverlayViewModel.cs
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
18 changes: 0 additions & 18 deletions
18
Sources/MicSwitch/MainWindow/ViewModels/MicrophoneControllerViewModel.cs
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
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,5 +1,4 @@ | ||
using MicSwitch.MainWindow.Models; | ||
using PoeShared.Modularity; | ||
|
||
namespace MicSwitch.Modularity | ||
{ | ||
|
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,47 @@ | ||
// ReSharper disable RedundantUsingDirective.Global | ||
global using PoeShared.Audio.ViewModels; | ||
global using PoeShared.Scaffolding.WPF; | ||
global using PoeShared.UI.Bindings; | ||
global using PoeShared.Wpf.Scaffolding; | ||
global using System.Collections.Generic; | ||
global using System.Diagnostics; | ||
global using System.Linq; | ||
global using PoeShared; | ||
global using PoeShared.Modularity; | ||
global using PoeShared.Native; | ||
global using PoeShared.Scaffolding; | ||
global using PoeShared.Logging; | ||
global using System; | ||
global using System.Reactive; | ||
global using System.Reactive.Concurrency; | ||
global using System.Reactive.Linq; | ||
global using System.Reactive.Subjects; | ||
global using System.Threading; | ||
global using System.Reactive.Disposables; | ||
global using System.Linq.Expressions; | ||
global using System.Collections.ObjectModel; | ||
global using System.Collections.Concurrent; | ||
global using System.Reactive.Threading.Tasks; | ||
global using System.Threading.Tasks; | ||
global using JetBrains.Annotations; | ||
global using PoeShared.Prism; | ||
global using PoeShared.UI; | ||
global using PoeShared.WindowSeekers; | ||
global using PoeShared.Services; | ||
global using ReactiveUI; | ||
global using Unity; | ||
global using System.IO; | ||
global using PropertyBinder; | ||
global using DynamicData; | ||
global using DynamicData.Binding; | ||
global using DynamicData.Kernel; | ||
global using WinSize = System.Drawing.Size; | ||
global using WinPoint = System.Drawing.Point; | ||
global using WinRectangle = System.Drawing.Rectangle; | ||
global using IDisposable = System.IDisposable; | ||
global using Guard = PoeShared.Guard; | ||
global using AwesomeIcons = PoeShared.Themes.AwesomeIcons; | ||
global using Path = System.IO.Path; | ||
global using Directory = System.IO.Directory; | ||
global using SearchOption = System.IO.SearchOption; | ||
global using File = System.IO.File; |
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.