├── COPYING ├── README.md ├── Screenshot from 2024-04-04 19-45-22.png ├── data ├── de.hummdudel.Libellus.appdata.xml.in ├── de.hummdudel.Libellus.desktop.in ├── de.hummdudel.Libellus.gschema.xml ├── icons │ ├── blur-symbolic.svg │ ├── hicolor │ │ ├── scalable │ │ │ ├── actions │ │ │ │ ├── funnel-outline-symbolic.svg │ │ │ │ ├── funnel-symbolic.svg │ │ │ │ ├── library-symbolic.svg │ │ │ │ ├── star-large-symbolic.svg │ │ │ │ └── user-trash-symbolic.svg │ │ │ └── apps │ │ │ │ └── de.hummdudel.Libellus.svg │ │ └── symbolic │ │ │ └── apps │ │ │ └── de.hummdudel.Libellus-symbolic.svg │ ├── meson.build │ └── scroll-on-a-roll-symbolic.svg └── meson.build ├── de.hummdudel.Libellus.json ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── meson.build └── pt_BR.po └── src ├── api.js ├── api ├── 5e-SRD-Ability-Scores.json ├── 5e-SRD-Alignments.json ├── 5e-SRD-Backgrounds.json ├── 5e-SRD-Classes.json ├── 5e-SRD-Conditions.json ├── 5e-SRD-Damage-Types.json ├── 5e-SRD-Equipment-Categories.json ├── 5e-SRD-Equipment.json ├── 5e-SRD-Feats.json ├── 5e-SRD-Features.json ├── 5e-SRD-Languages.json ├── 5e-SRD-Levels.json ├── 5e-SRD-Magic-Items.json ├── 5e-SRD-Magic-Schools.json ├── 5e-SRD-Monsters.json ├── 5e-SRD-Proficiencies.json ├── 5e-SRD-Races.json ├── 5e-SRD-Rule-Sections.json ├── 5e-SRD-Rules.json ├── 5e-SRD-Skills.json ├── 5e-SRD-Spells.json ├── 5e-SRD-Subclasses.json ├── 5e-SRD-Subraces.json ├── 5e-SRD-Traits.json └── 5e-SRD-Weapon-Properties.json ├── character_sheet.js ├── data_builder.js ├── dbus.js ├── de.hummdudel.Libellus.data.gresource.xml ├── de.hummdudel.Libellus.in ├── de.hummdudel.Libellus.src.gresource.xml ├── de.hummdudel.Libellus.xml ├── dnd.js ├── filter.js ├── filter_dialog.ui ├── filter_page.ui ├── filter_row.ui ├── gtk └── help-overlay.ui ├── main.js ├── meson.build ├── modules.js ├── results.js ├── source.js ├── source_dialog.ui ├── source_row.ui ├── window.js └── window.ui /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot from 2024-04-04 19-45-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/Screenshot from 2024-04-04 19-45-22.png -------------------------------------------------------------------------------- /data/de.hummdudel.Libellus.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/de.hummdudel.Libellus.appdata.xml.in -------------------------------------------------------------------------------- /data/de.hummdudel.Libellus.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/de.hummdudel.Libellus.desktop.in -------------------------------------------------------------------------------- /data/de.hummdudel.Libellus.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/de.hummdudel.Libellus.gschema.xml -------------------------------------------------------------------------------- /data/icons/blur-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/blur-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/funnel-outline-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/actions/funnel-outline-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/funnel-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/actions/funnel-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/library-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/actions/library-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/star-large-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/actions/star-large-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/actions/user-trash-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/actions/user-trash-symbolic.svg -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/de.hummdudel.Libellus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/scalable/apps/de.hummdudel.Libellus.svg -------------------------------------------------------------------------------- /data/icons/hicolor/symbolic/apps/de.hummdudel.Libellus-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/hicolor/symbolic/apps/de.hummdudel.Libellus-symbolic.svg -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/icons/scroll-on-a-roll-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/icons/scroll-on-a-roll-symbolic.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/data/meson.build -------------------------------------------------------------------------------- /de.hummdudel.Libellus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/de.hummdudel.Libellus.json -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | pt_BR 2 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('libellus', preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api.js -------------------------------------------------------------------------------- /src/api/5e-SRD-Ability-Scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Ability-Scores.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Alignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Alignments.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Backgrounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Backgrounds.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Classes.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Conditions.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Damage-Types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Damage-Types.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Equipment-Categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Equipment-Categories.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Equipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Equipment.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Feats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Feats.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Features.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Languages.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Levels.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Magic-Items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Magic-Items.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Magic-Schools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Magic-Schools.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Monsters.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Proficiencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Proficiencies.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Races.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Races.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Rule-Sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Rule-Sections.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Rules.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Skills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Skills.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Spells.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Subclasses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Subclasses.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Subraces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Subraces.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Traits.json -------------------------------------------------------------------------------- /src/api/5e-SRD-Weapon-Properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/api/5e-SRD-Weapon-Properties.json -------------------------------------------------------------------------------- /src/character_sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/character_sheet.js -------------------------------------------------------------------------------- /src/data_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/data_builder.js -------------------------------------------------------------------------------- /src/dbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/dbus.js -------------------------------------------------------------------------------- /src/de.hummdudel.Libellus.data.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/de.hummdudel.Libellus.data.gresource.xml -------------------------------------------------------------------------------- /src/de.hummdudel.Libellus.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/de.hummdudel.Libellus.in -------------------------------------------------------------------------------- /src/de.hummdudel.Libellus.src.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/de.hummdudel.Libellus.src.gresource.xml -------------------------------------------------------------------------------- /src/de.hummdudel.Libellus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/de.hummdudel.Libellus.xml -------------------------------------------------------------------------------- /src/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/dnd.js -------------------------------------------------------------------------------- /src/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/filter.js -------------------------------------------------------------------------------- /src/filter_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/filter_dialog.ui -------------------------------------------------------------------------------- /src/filter_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/filter_page.ui -------------------------------------------------------------------------------- /src/filter_row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/filter_row.ui -------------------------------------------------------------------------------- /src/gtk/help-overlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/gtk/help-overlay.ui -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/main.js -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/modules.js -------------------------------------------------------------------------------- /src/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/results.js -------------------------------------------------------------------------------- /src/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/source.js -------------------------------------------------------------------------------- /src/source_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/source_dialog.ui -------------------------------------------------------------------------------- /src/source_row.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/source_row.ui -------------------------------------------------------------------------------- /src/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/window.js -------------------------------------------------------------------------------- /src/window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertzuiopy/Libellus/HEAD/src/window.ui --------------------------------------------------------------------------------