From 63f274620648226b83b601a9cc39b2265cfe7dae Mon Sep 17 00:00:00 2001 From: Mateusz Skoczek Date: Wed, 18 Feb 2026 01:01:53 +0100 Subject: [PATCH] about page fix --- .../VDownload.Core.ViewModels/About/AboutViewModel.cs | 4 ---- VDownload.Core/VDownload.Core.Views/About/AboutView.xaml | 5 ----- .../VDownload.Services.Data.Configuration/Models/About.cs | 3 --- VDownload/configuration.json | 7 +++---- 4 files changed, 3 insertions(+), 16 deletions(-) diff --git a/VDownload.Core/VDownload.Core.ViewModels/About/AboutViewModel.cs b/VDownload.Core/VDownload.Core.ViewModels/About/AboutViewModel.cs index 6d824a3..5576a23 100644 --- a/VDownload.Core/VDownload.Core.ViewModels/About/AboutViewModel.cs +++ b/VDownload.Core/VDownload.Core.ViewModels/About/AboutViewModel.cs @@ -41,9 +41,6 @@ namespace VDownload.Core.ViewModels.About [ObservableProperty] protected Uri _repositoryUrl; - [ObservableProperty] - protected Uri _donationUrl; - #endregion @@ -64,7 +61,6 @@ namespace VDownload.Core.ViewModels.About _developers = new ObservableCollection(_configurationService.Common.About.Developers.Select(x => new PersonViewModel(x.Name, x.Url))); _repositoryUrl = new Uri(_configurationService.Common.About.RepositoryUrl); - _donationUrl = new Uri(_configurationService.Common.About.DonationUrl); } #endregion diff --git a/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml b/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml index 12a1228..a33b267 100644 --- a/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml +++ b/VDownload.Core/VDownload.Core.Views/About/AboutView.xaml @@ -81,11 +81,6 @@ - - - diff --git a/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Configuration/Models/About.cs b/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Configuration/Models/About.cs index 594f411..e27fe44 100644 --- a/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Configuration/Models/About.cs +++ b/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Configuration/Models/About.cs @@ -12,9 +12,6 @@ namespace VDownload.Services.Data.Configuration.Models [ConfigurationKeyName("repository_url")] public string RepositoryUrl { get; set; } - [ConfigurationKeyName("donation_url")] - public string DonationUrl { get; set; } - [ConfigurationKeyName("developers")] public IEnumerable Developers { get; set; } diff --git a/VDownload/configuration.json b/VDownload/configuration.json index 0a6738c..bf97443 100644 --- a/VDownload/configuration.json +++ b/VDownload/configuration.json @@ -1,12 +1,11 @@ { "common": { "about": { - "repository_url": "https://github.com/mateuszskoczek/VDownload", - "donation_url": "https://paypal.me/mateuszskoczek", + "repository_url": "https://repos.mateuszskoczek.com/MateuszSkoczek/VDownload", "developers": [ { "name": "Mateusz Skoczek", - "url": "https://github.com/mateuszskoczek" + "url": "https://repos.mateuszskoczek.com/MateuszSkoczek" } ], "translation": [ @@ -15,7 +14,7 @@ "translators": [ { "name": "Mateusz Skoczek", - "url": "https://github.com/mateuszskoczek" + "url": "https://repos.mateuszskoczek.com/MateuszSkoczek" } ] }