diff --git a/README.md b/README.md index b92fac1..312323e 100755 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ This software allows one to: list of torrent magnets to paste in a torrent client on a distant server. * Get information from any anime (those come from myanimelist.net). * Get anime-related news from MyAnimeList.net. -* Get seasonal releases information (from [www.livechart.me](https://www.livechart.me)). +* Get seasonal releases information MyAnimeList.net. * Manage your anime files (watch and delete on click) * Manage watch lists. * More features are to come. diff --git a/pages/seasons.vue b/pages/seasons.vue index 7c5a5ae..285fb2e 100644 --- a/pages/seasons.vue +++ b/pages/seasons.vue @@ -18,10 +18,10 @@ v-tabs#tabs(dark, fixed, centered) v-tabs-bar.mablue v-tabs-slider.primary - v-tabs-item(v-for='i in 3', :href="'#' + i", :key='i') + v-tabs-item(v-for='i in 5', :href="'#' + i", :key='i') | {{ season[i].name }} v-tabs-items - v-tabs-content(v-for='i in 3', lazy, :id='`${i}`', :key='i') + v-tabs-content(v-for='i in 5', lazy, :id='`${i}`', :key='i') v-text-field.query(v-model='query', label='Search entry', dark) v-layout.elems(row, wrap) transition-group(name='list') @@ -124,6 +124,12 @@ OVAs () { return this.seasons.OVAs }, + ONAs () { + return this.seasons.ONAs + }, + Specials () { + return this.seasons.Specials + }, Movies () { return this.seasons.Movies }, @@ -132,6 +138,8 @@ '', {name: 'TV', items: this.TVs}, {name: 'OVA', items: this.OVAs}, + {name: 'ONA', items: this.ONAs}, + {name: 'Specials', items: this.Specials}, {name: 'Movies', items: this.Movies} ] },