├── .bandit ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── linux.yml ├── .gitignore ├── .tx └── config ├── AUTHORS ├── COPYING ├── ChangeLog ├── HACKING ├── NEWS ├── README.md ├── TODO ├── authors.xml ├── data ├── icons │ ├── 128x128 │ │ └── info.olasagasti.revelation.png │ ├── 16x16 │ │ └── info.olasagasti.revelation.png │ ├── 24x24 │ │ └── info.olasagasti.revelation.png │ ├── 256x256 │ │ └── info.olasagasti.revelation.png │ ├── 32x32 │ │ └── info.olasagasti.revelation.png │ ├── 48x48 │ │ ├── gnome-mime-application-x-revelation.png │ │ └── info.olasagasti.revelation.png │ ├── meson.build │ └── scalable │ │ ├── document-export.svg │ │ ├── document-import.svg │ │ ├── info.olasagasti.revelation.svg │ │ ├── object-locked.svg │ │ ├── password-change.svg │ │ ├── password-check.svg │ │ └── password-generate.svg ├── info.olasagasti.revelation.desktop.in.in ├── info.olasagasti.revelation.gschema.xml ├── info.olasagasti.revelation.metainfo.xml.in ├── meson.build ├── revelation.gresource.xml ├── revelation.xml └── ui │ ├── about.ui │ ├── entry-edit.ui │ ├── exception.ui │ ├── folder-edit.ui │ ├── help-overlay.ui │ ├── menubar.ui │ ├── message.ui │ ├── password-change.ui │ ├── password-checker.ui │ ├── password-generator.ui │ ├── password-lock.ui │ ├── password-open.ui │ ├── password-save.ui │ ├── popup-tree.ui │ ├── preferences-doubleclick.ui │ ├── preferences-files.ui │ ├── preferences-passwords.ui │ ├── preferences-toolbar.ui │ ├── preferences.ui │ ├── searchbar.ui │ └── toolbar.ui ├── meson.build ├── meson_post_conf.py ├── meson_post_install.py ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── POTFILES.skip ├── ca.po ├── cs.po ├── de.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── it_IT.po ├── lt.po ├── meson.build ├── nl.po ├── pl.po ├── pt_BR.po ├── ru.po ├── sr_RS.po ├── sv.po ├── uk.po └── zh.po ├── requirements.txt └── src ├── lib ├── __init__.py ├── config.py.in ├── data.py ├── datahandler │ ├── __init__.py │ ├── base.py │ ├── csvfile.py │ ├── fpm.py │ ├── gpass.py │ ├── keepassxc.py │ ├── netrc.py │ ├── pwsafe.py │ ├── rvl.py │ ├── splashid.py │ ├── text.py │ └── xhtml.py ├── dialog.py ├── entry.py ├── io.py ├── ui.py └── util.py ├── meson.build └── revelation.py /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.bandit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | ChangeLog will be built from hg repository during make dist 2 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/HACKING -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/TODO -------------------------------------------------------------------------------- /authors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/authors.xml -------------------------------------------------------------------------------- /data/icons/128x128/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/128x128/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/16x16/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/16x16/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/24x24/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/24x24/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/256x256/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/256x256/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/32x32/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/32x32/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/48x48/gnome-mime-application-x-revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/48x48/gnome-mime-application-x-revelation.png -------------------------------------------------------------------------------- /data/icons/48x48/info.olasagasti.revelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/48x48/info.olasagasti.revelation.png -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/icons/scalable/document-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/document-export.svg -------------------------------------------------------------------------------- /data/icons/scalable/document-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/document-import.svg -------------------------------------------------------------------------------- /data/icons/scalable/info.olasagasti.revelation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/info.olasagasti.revelation.svg -------------------------------------------------------------------------------- /data/icons/scalable/object-locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/object-locked.svg -------------------------------------------------------------------------------- /data/icons/scalable/password-change.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/password-change.svg -------------------------------------------------------------------------------- /data/icons/scalable/password-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/password-check.svg -------------------------------------------------------------------------------- /data/icons/scalable/password-generate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/icons/scalable/password-generate.svg -------------------------------------------------------------------------------- /data/info.olasagasti.revelation.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/info.olasagasti.revelation.desktop.in.in -------------------------------------------------------------------------------- /data/info.olasagasti.revelation.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/info.olasagasti.revelation.gschema.xml -------------------------------------------------------------------------------- /data/info.olasagasti.revelation.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/info.olasagasti.revelation.metainfo.xml.in -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/revelation.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/revelation.gresource.xml -------------------------------------------------------------------------------- /data/revelation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/revelation.xml -------------------------------------------------------------------------------- /data/ui/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/about.ui -------------------------------------------------------------------------------- /data/ui/entry-edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/entry-edit.ui -------------------------------------------------------------------------------- /data/ui/exception.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/exception.ui -------------------------------------------------------------------------------- /data/ui/folder-edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/folder-edit.ui -------------------------------------------------------------------------------- /data/ui/help-overlay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/help-overlay.ui -------------------------------------------------------------------------------- /data/ui/menubar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/menubar.ui -------------------------------------------------------------------------------- /data/ui/message.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/message.ui -------------------------------------------------------------------------------- /data/ui/password-change.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-change.ui -------------------------------------------------------------------------------- /data/ui/password-checker.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-checker.ui -------------------------------------------------------------------------------- /data/ui/password-generator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-generator.ui -------------------------------------------------------------------------------- /data/ui/password-lock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-lock.ui -------------------------------------------------------------------------------- /data/ui/password-open.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-open.ui -------------------------------------------------------------------------------- /data/ui/password-save.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/password-save.ui -------------------------------------------------------------------------------- /data/ui/popup-tree.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/popup-tree.ui -------------------------------------------------------------------------------- /data/ui/preferences-doubleclick.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/preferences-doubleclick.ui -------------------------------------------------------------------------------- /data/ui/preferences-files.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/preferences-files.ui -------------------------------------------------------------------------------- /data/ui/preferences-passwords.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/preferences-passwords.ui -------------------------------------------------------------------------------- /data/ui/preferences-toolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/preferences-toolbar.ui -------------------------------------------------------------------------------- /data/ui/preferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/preferences.ui -------------------------------------------------------------------------------- /data/ui/searchbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/searchbar.ui -------------------------------------------------------------------------------- /data/ui/toolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/data/ui/toolbar.ui -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/meson.build -------------------------------------------------------------------------------- /meson_post_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/meson_post_conf.py -------------------------------------------------------------------------------- /meson_post_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/meson_post_install.py -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | src/lib/config.py 2 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/it_IT.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(rvl_name, preset:'glib') 2 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/sr_RS.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/po/zh.po -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyGObject 2 | defusedxml 3 | pycryptodomex 4 | pwquality 5 | -------------------------------------------------------------------------------- /src/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/__init__.py -------------------------------------------------------------------------------- /src/lib/config.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/config.py.in -------------------------------------------------------------------------------- /src/lib/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/data.py -------------------------------------------------------------------------------- /src/lib/datahandler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/__init__.py -------------------------------------------------------------------------------- /src/lib/datahandler/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/base.py -------------------------------------------------------------------------------- /src/lib/datahandler/csvfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/csvfile.py -------------------------------------------------------------------------------- /src/lib/datahandler/fpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/fpm.py -------------------------------------------------------------------------------- /src/lib/datahandler/gpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/gpass.py -------------------------------------------------------------------------------- /src/lib/datahandler/keepassxc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/keepassxc.py -------------------------------------------------------------------------------- /src/lib/datahandler/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/netrc.py -------------------------------------------------------------------------------- /src/lib/datahandler/pwsafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/pwsafe.py -------------------------------------------------------------------------------- /src/lib/datahandler/rvl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/rvl.py -------------------------------------------------------------------------------- /src/lib/datahandler/splashid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/splashid.py -------------------------------------------------------------------------------- /src/lib/datahandler/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/text.py -------------------------------------------------------------------------------- /src/lib/datahandler/xhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/datahandler/xhtml.py -------------------------------------------------------------------------------- /src/lib/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/dialog.py -------------------------------------------------------------------------------- /src/lib/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/entry.py -------------------------------------------------------------------------------- /src/lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/io.py -------------------------------------------------------------------------------- /src/lib/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/ui.py -------------------------------------------------------------------------------- /src/lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/lib/util.py -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/revelation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikelolasagasti/revelation/HEAD/src/revelation.py --------------------------------------------------------------------------------