Mercurial > minori
view dep/anitomy/anitomy/options.h @ 320:1b5c04268d6a
services/kitsu: ACTUALLY finish GetAnimeList
there are some things the API just... doesn't provide. therefore
we have to request the genres separately any time a new anime info
box is opened...
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 12 Jun 2024 19:49:19 -0400 |
parents | 5c0397762b53 |
children | a0aa8c8c4307 |
line wrap: on
line source
/* ** Copyright (c) 2014-2017, Eren Okka ** ** This Source Code Form is subject to the terms of the Mozilla Public ** License, v. 2.0. If a copy of the MPL was not distributed with this ** file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #pragma once #include <vector> #include "string.h" namespace anitomy { struct Options { string_t allowed_delimiters = L" _.&+,|"; std::vector<string_t> ignored_strings; bool parse_episode_number = true; bool parse_episode_title = true; bool parse_file_extension = true; bool parse_release_group = true; }; } // namespace anitomy