mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 06:04:37 -04:00
* Replaced profile links to anchors so we can open in new tab if we like * Refactored how update checking works. We now explicitly check and send back on the same API. We have a weekly job that will push an update to the user. * Implemented a changelog tab * Ported over a GA fix for using ' in PR bodies. * Don't check cert for Github
16 lines
401 B
C#
16 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using API.DTOs.Update;
|
|
using API.Services.Tasks;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IVersionUpdaterService
|
|
{
|
|
Task<UpdateNotificationDto> CheckForUpdate();
|
|
Task PushUpdate(UpdateNotificationDto update);
|
|
Task<IEnumerable<UpdateNotificationDto>> GetAllReleases();
|
|
}
|
|
}
|