Added ONAs and Specials in seasons

This commit is contained in:
Kylart 2017-11-17 14:26:44 +01:00
parent 6b6da13ba7
commit 3aeaf291fd
2 changed files with 11 additions and 3 deletions

View File

@ -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.

View File

@ -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}
]
},