diff --git a/Assets/online-sources.json b/Assets/online-sources.json index 3f497be..316a0aa 100644 --- a/Assets/online-sources.json +++ b/Assets/online-sources.json @@ -47,13 +47,14 @@ "web": [ { "name": "YouTube", "url": "https://www.youtube.com" }, { "name": "ARD Mediathek", "url": "https://www.ardmediathek.de" }, - { "name": "ZDF Mediathek", "url": "https://www.zdf.de/serien-und-filme" }, + { "name": "ZDF Mediathek", "url": "https://www.zdf.de/" }, { "name": "Netflix", "url": "https://www.netflix.com" }, { "name": "Disney+", "url": "https://www.disneyplus.com" }, { "name": "Joyn", "url": "https://www.joyn.de" }, { "name": "RTL+", "url": "https://plus.rtl.de" }, { "name": "ARTE", "url": "https://www.arte.tv/de" }, { "name": "Apple TV+", "url": "https://tv.apple.com" }, - { "name": "Amazon Prime Video", "url": "https://www.amazon.de/gp/video/storefront" } + { "name": "Amazon Prime Video", "url": "https://www.amazon.de/gp/video/storefront" }, + { "name": "n-tv", "url": "https://www.n-tv.de" } ] } diff --git a/ClockWindow.xaml b/ClockWindow.xaml new file mode 100644 index 0000000..ef4fe54 --- /dev/null +++ b/ClockWindow.xaml @@ -0,0 +1,16 @@ + + + + + diff --git a/ClockWindow.xaml.cs b/ClockWindow.xaml.cs new file mode 100644 index 0000000..169c1ef --- /dev/null +++ b/ClockWindow.xaml.cs @@ -0,0 +1,13 @@ +using System.Windows; + +namespace FritzTV; + +public partial class ClockWindow : Window +{ + public ClockWindow() + { + InitializeComponent(); + } + + public void UpdateTime(string time) => TxtClock.Text = time; +} diff --git a/MainWindow.xaml b/MainWindow.xaml index 9769afd..ef7e74d 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -227,41 +227,50 @@ - + + + + + + - - + + + HorizontalAlignment="Center" Visibility="Collapsed"/> + TextWrapping="Wrap" TextAlignment="Center" MaxWidth="600"/> - + - @@ -277,20 +286,11 @@