Results 105 comments of bonukai

This proved to be much more complicated then I thought. For now I added platforms to details page, just like on IGDB. I would like to have multiple release dates...

Personal recommendation based on what you watched relay on access to other users data, and since this project is self hosted, this wouldn't be possible. One alternative would be to...

You can now filter pages by: `rated`, `unrated`, `on watchlist` and `seen`

Date for notications is set here: https://github.com/bonukai/MediaTracker/blob/0eabbd1c219ca8e92b892d09294c8929984ef87f/server/src/sendNotifications.ts#L85 `Date.prototype.toISOString()` converts date to [UTC](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) from your time zone. Maybe adding environment variable `TZ` to Docker may help, for example for New York...

> The [Tv maze](https://api.tvmaze.com/episodes/2304469) api shows what it looks like when no timezone is being used. > > `{"id":2304469,"url":"https://www.tvmaze.com/episodes/2304469/moon-knight-1x02-episode-2","name":"Episode 2","season":1,"number":2,"type":"regular","airdate":"2022-04-06","airtime":"","airstamp":"2022-04-06T12:00:00+00:00","runtime":47,"rating":{"average":null},"image":null,"summary":null,"_links":{"self":{"href":"https://api.tvmaze.com/episodes/2304469"}}}` So for Moon Knight Tv maze does't have an airtime,...

You were right about parsing dates in ISO format with `new Date()`. I replaced it with `parseISO` from [date-fns](https://date-fns.org/v2.21.1/docs/parseISO). I will make a new release when I finish working on...

Version `bonukai/mediatracker:0.1.0-beta6` is now released, with lists, this bug fix, and more

`DATABASE_PATH` isn't a good name for database name and `DATABASE_DATABASE` isn't a good name for database path. If we would keep just one setting, then it should be something different,...

You can now view logs in the settings page [http://localhost:7481/#/settings/logs](http://localhost:7481/#/settings/logs)

@BanCrash mediatracker is now available on npmjs.com, you don't have to build it yourself anymore ```bash npm install -g mediatracker mediatracker ```