Mercurial > minori
annotate include/gui/translate/anime.h @ 118:39521c47c7a3
*: another huge megacommit, SORRY
The torrents page works a lot better now
Added the edit option to the anime list right click menu
Vectorized currently playing files
Available player and extensions are now loaded at runtime
from files in (dotpath)/players.json and (dotpath)/extensions.json
These paths are not permanent and will likely be moved to
(dotpath)/recognition
...
...
...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 07 Nov 2023 23:40:54 -0500 |
parents | c4bb49c2f6eb |
children | f88eda79c60a |
rev | line source |
---|---|
10 | 1 #include "core/anime.h" |
2 | |
3 namespace Translate { | |
4 | |
15 | 5 std::string ToString(const Anime::ListStatus status); |
6 std::string ToString(const Anime::SeriesFormat format); | |
7 std::string ToString(const Anime::SeriesSeason season); | |
8 std::string ToString(const Anime::SeriesStatus status); | |
90
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
9 std::string ToString(const Anime::Services service); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
10 Anime::Services ToService(const std::string& str); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
11 std::string ToString(const Anime::TitleLanguage language); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
12 Anime::TitleLanguage ToLanguage(const std::string& str); |
10 | 13 |
14 } // namespace Translate |