diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index d447dc9..0000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1 +0,0 @@
-custom: ['https://paypal.me/mateuszskoczek']
\ No newline at end of file
diff --git a/.github/workflows/pull_request_dev.yml b/.github/workflows/pull_request_dev.yml
deleted file mode 100644
index 5349bb1..0000000
--- a/.github/workflows/pull_request_dev.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Build application on dev pull request
-
-
-on:
- pull_request:
- branches:
- - "dev"
- paths:
- - "VDownload**"
-
-
-jobs:
- build:
- name: Build
- runs-on: windows-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup .NET
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 8.0.x
- - name: Build
- run: dotnet build
\ No newline at end of file
diff --git a/.github/workflows/pull_request_master.yml b/.github/workflows/pull_request_master.yml
deleted file mode 100644
index 0853380..0000000
--- a/.github/workflows/pull_request_master.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Build application on master pull request
-
-
-on:
- pull_request:
- branches:
- - "master"
- paths:
- - "VDownload**"
-
-
-jobs:
- build:
- name: Build
- runs-on: windows-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup .NET
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 8.0.x
- - name: Build
- run: dotnet build
diff --git a/.github/workflows/push_dev.yml b/.github/workflows/push_dev.yml
deleted file mode 100644
index 49e3c90..0000000
--- a/.github/workflows/push_dev.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Build application on dev push
-
-
-on:
- push:
- branches:
- - "dev"
- paths:
- - "VDownload**"
-
-
-jobs:
- build:
- name: Build
- runs-on: windows-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup .NET
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 8.0.x
- - name: Build
- run: dotnet build
diff --git a/.github/workflows/push_master.yml b/.github/workflows/push_master.yml
deleted file mode 100644
index accf086..0000000
--- a/.github/workflows/push_master.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-name: Build and publish application on master push
-
-
-on:
- push:
- branches:
- - "master"
- - "features/github_actions"
- #paths:
- #- "VDownload**"
-
-
-jobs:
- build:
- name: Build
- runs-on: windows-latest
- env:
- MSBUILD_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\devenv.com
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup GitVersion
- uses: gittools/actions/gitversion/setup@v0.9.7
- with:
- versionSpec: 5.x
- - name: Determine Version
- uses: gittools/actions/gitversion/execute@v0.9.7
- id: gitversion
- with:
- useConfigFile: true
- configFilePath: .github/config/gitversion.yml
- - name: Set version in VDownload.csproj file
- id: package_version
- uses: KageKirin/set-csproj-version@v0
- with:
- file: VDownload/VDownload.csproj
- version: ${{steps.gitversion.outputs.SemVer}}
- - name: Set version in Package.appxmanifest file
- uses: Nambers/ReplaceStringInFile@v1.3
- with:
- path: VDownload/Package.appxmanifest
- oldString: 0\.0\.0\.0
- newString: ${{steps.gitversion.outputs.SemVer}}.0
- showFileContent: true
- escapeBackslash: true
- - name: Set version in app.manifest file
- uses: Nambers/ReplaceStringInFile@v1.3
- with:
- path: VDownload/app.manifest
- oldString: 0\.0\.0\.0
- newString: ${{steps.gitversion.outputs.SemVer}}.0
- showFileContent: true
- escapeBackslash: true
- - name: Setup .NET
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 8.0.x
- - name: Build application
- run: dotnet build -o build
- - name: Upload artifact
- uses: actions/upload-artifact@v2
- with:
- name: build
- path: build
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index a1de5d7..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,10 +0,0 @@
-## Changelog
-
-* Migration to Windows App SDK and WinUI 3
-* Code refactoring, MVVM pattern and Dependency Injection applied
-* Authentication data encryption added
-* Replacing native Windows media transcoding libraries with FFmpeg
-* Home - Cancel all button added
-* Subscriptions and Home - Error display improved
-* Subscriptions - New videos counter removed
-* Minor interface changes
diff --git a/VDownload.Services/VDownload.Services.UI/VDownload.Services.UI.WebView/WebViewWindow.xaml b/VDownload.Services/VDownload.Services.UI/VDownload.Services.UI.WebView/WebViewWindow.xaml
index 7ae602f..7d06f68 100644
--- a/VDownload.Services/VDownload.Services.UI/VDownload.Services.UI.WebView/WebViewWindow.xaml
+++ b/VDownload.Services/VDownload.Services.UI/VDownload.Services.UI.WebView/WebViewWindow.xaml
@@ -6,8 +6,9 @@
xmlns:local="using:VDownload.Services.UI.WebView"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:controls="using:Microsoft.UI.Xaml.Controls"
mc:Ignorable="d"
Closed="Window_Closed"
Activated="Window_Activated">
-
+