From fbad2e0ce41dd5dac5cd74c094838b6e5f5aad5b Mon Sep 17 00:00:00 2001 From: Matthew Connelly Date: Thu, 7 Nov 2019 14:09:02 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=80=20WinPlaza=20is=20gone=20?= =?UTF-8?q?=F0=9F=A6=80=20ported=20WInPlaza=20to=20.Net=20Core=203=20which?= =?UTF-8?q?=20brings=20with=20it=20the=20tiniest=20amount=20of=20bugfixes.?= =?UTF-8?q?.=20also=20made=20the=20main=20window=20resizable.=20for=20now,?= =?UTF-8?q?=20i'm=20dropping=20ClickOnce=20deployment=20(don't=20think=20.?= =?UTF-8?q?Net=20Core=20supports=20it=20anyway)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 2 +- NightwaveForWorkgroups/App.xaml | 6 + .../App.xaml.cs | 2 +- .../LICENSE.md | 0 .../MainWindow.xaml | 26 +- .../MainWindow.xaml.cs | 91 ++--- .../NightwaveForWorkgroups.csproj | 74 ++++ .../README.md | 0 .../Resources/app.ico | Bin .../Resources/app.png | Bin .../Resources/music.png | Bin .../Resources/muted.png | Bin .../Resources/nomusic.png | Bin .../Resources/playstop.png | Bin .../Resources/unmuted.png | Bin .../Resources/usr.ico | Bin .../Resources/usr.png | Bin NightwaveForWorkgroups/app.manifest | 33 ++ NightwaveForWorkgroups/bass.dll | Bin 0 -> 263168 bytes PlazaSharp.sln | 12 +- WinPlaza/App.config | 6 - WinPlaza/App.xaml | 14 - WinPlaza/Properties/AssemblyInfo.cs | 57 ---- WinPlaza/Properties/Settings.Designer.cs | 26 -- WinPlaza/Properties/Settings.settings | 7 - WinPlaza/Resources/muted.ico | Bin 1078 -> 0 bytes WinPlaza/Resources/nomusic.ico | Bin 1078 -> 0 bytes WinPlaza/Resources/nomusic1.png | Bin 239 -> 0 bytes WinPlaza/Resources/unmuted.ico | Bin 1078 -> 0 bytes WinPlaza/SNSigningKey.snk | Bin 596 -> 0 bytes WinPlaza/WinPlaza.csproj | 197 ----------- WinPlaza/app.manifest | 76 ----- WinPlaza/bass.dll | Bin 127669 -> 0 bytes WinPlaza/packages.config | 6 - libplaza/Main.cs | 321 ++++++++++++++---- libplaza/libplaza.csproj | 11 +- libplaza/libplaza.xml | 216 ++++++++++++ 37 files changed, 667 insertions(+), 516 deletions(-) create mode 100644 NightwaveForWorkgroups/App.xaml rename {WinPlaza => NightwaveForWorkgroups}/App.xaml.cs (89%) rename {WinPlaza => NightwaveForWorkgroups}/LICENSE.md (100%) rename {WinPlaza => NightwaveForWorkgroups}/MainWindow.xaml (83%) rename {WinPlaza => NightwaveForWorkgroups}/MainWindow.xaml.cs (85%) create mode 100644 NightwaveForWorkgroups/NightwaveForWorkgroups.csproj rename {WinPlaza => NightwaveForWorkgroups}/README.md (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/app.ico (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/app.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/music.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/muted.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/nomusic.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/playstop.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/unmuted.png (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/usr.ico (100%) rename {WinPlaza => NightwaveForWorkgroups}/Resources/usr.png (100%) create mode 100644 NightwaveForWorkgroups/app.manifest create mode 100644 NightwaveForWorkgroups/bass.dll delete mode 100644 WinPlaza/App.config delete mode 100644 WinPlaza/App.xaml delete mode 100644 WinPlaza/Properties/AssemblyInfo.cs delete mode 100644 WinPlaza/Properties/Settings.Designer.cs delete mode 100644 WinPlaza/Properties/Settings.settings delete mode 100644 WinPlaza/Resources/muted.ico delete mode 100644 WinPlaza/Resources/nomusic.ico delete mode 100644 WinPlaza/Resources/nomusic1.png delete mode 100644 WinPlaza/Resources/unmuted.ico delete mode 100644 WinPlaza/SNSigningKey.snk delete mode 100644 WinPlaza/WinPlaza.csproj delete mode 100644 WinPlaza/app.manifest delete mode 100644 WinPlaza/bass.dll delete mode 100644 WinPlaza/packages.config create mode 100644 libplaza/libplaza.xml diff --git a/.editorconfig b/.editorconfig index 080e05d..68c5b98 100644 --- a/.editorconfig +++ b/.editorconfig @@ -93,7 +93,7 @@ csharp_prefer_static_local_function = true:suggestion csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async # Code-block preferences -csharp_prefer_braces = when_multiline:suggestion +csharp_prefer_braces = false:suggestion csharp_prefer_simple_using_statement = true:suggestion # Expression-level preferences diff --git a/NightwaveForWorkgroups/App.xaml b/NightwaveForWorkgroups/App.xaml new file mode 100644 index 0000000..338b81d --- /dev/null +++ b/NightwaveForWorkgroups/App.xaml @@ -0,0 +1,6 @@ + + diff --git a/WinPlaza/App.xaml.cs b/NightwaveForWorkgroups/App.xaml.cs similarity index 89% rename from WinPlaza/App.xaml.cs rename to NightwaveForWorkgroups/App.xaml.cs index b8d9c58..28d4c2c 100644 --- a/WinPlaza/App.xaml.cs +++ b/NightwaveForWorkgroups/App.xaml.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Threading.Tasks; using System.Windows; -namespace WinPlaza { +namespace NightwaveForWorkgroups { /// /// Interaction logic for App.xaml /// diff --git a/WinPlaza/LICENSE.md b/NightwaveForWorkgroups/LICENSE.md similarity index 100% rename from WinPlaza/LICENSE.md rename to NightwaveForWorkgroups/LICENSE.md diff --git a/WinPlaza/MainWindow.xaml b/NightwaveForWorkgroups/MainWindow.xaml similarity index 83% rename from WinPlaza/MainWindow.xaml rename to NightwaveForWorkgroups/MainWindow.xaml index e9d7422..b238074 100644 --- a/WinPlaza/MainWindow.xaml +++ b/NightwaveForWorkgroups/MainWindow.xaml @@ -1,16 +1,16 @@ - + - - + + @@ -20,12 +20,12 @@ - + - +