axiel7 / MoeList

Another unofficial Android MAL client

Home Page:https://moelist.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Show which episode will air

blackholeearth opened this issue · comments

Request (required)
Can you put which episode will be airing?
İs this info available?

Airing 'ep08' in 2 days.

İf not available,
count airing start day as ep1 . Add 1 episode for each passed week .

İn anime watching list.

Additional context

Screenshot_20231004-214325_MoeList

Examples
Show here examples of the feature if exists in other app.

No it's not available and I won't count it manually since nowadays a lot of anime doesn't have a fixed schedule.

If you want this feature I recommend you to migrate to AniList and check my other app AniHyou

How to get Anilist nextAiringEpisode by using mal-id

example mal-id is spyXfamily .

query  {
  Media(idMal: 53887, type: ANIME) {
    siteUrl
    id
    idMal
    nextAiringEpisode {
      id
      episode
      airingAt
      timeUntilAiring #total seconds 
    }
    title {
      english
    }
  }
}

You can test it here : Anilist graphql playground


You can also put
Multiple mal-ids from Watching Tab which has "Airing" into Array.

Get multiple results with single request.

query  {
  Page (page: 0, perPage: 50) {
    pageInfo {
      total
      currentPage
      lastPage
      hasNextPage
      perPage
    }
    
    media(idMal_in: [53887, 52990, 52991], 
                type: ANIME)
  {
    id
    idMal
    nextAiringEpisode {
      episode
      timeUntilAiring
    }
    title {
      english
    }
  }
  }
}


How to get Anilist nextAiringEpisode by using mal-id

Yeah I know how to do it with the AniList API since my other app AniHyou has it. I won't implement features that aren't available in MyAnimeList itself.

If you want this feature so bad I recommend you again to migrate to AniList, you can easily import your list from MAL.