Beispiel #1
0
        public async Task CheckForYoutubeDLUpdates()
        {
            bool willUpdate = await YoutubeDLUpdateService.CheckForUpdates();

            if (willUpdate)
            {
                await UpdateYoutubeDL();
            }
        }
Beispiel #2
0
        public async Task UpdateYoutubeDL()
        {
            var msg = await YoutubeDLUpdateService.Update();

            dialogService.ShowMessageBox(msg, "Vividl - " + Resources.Info);
        }