├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── deploy_github_pages.sh ├── rst ├── Makefile ├── build_cards.py ├── build_help_sheets.sh ├── build_logo.sh ├── build_money.sh ├── source │ ├── _static │ │ ├── cards │ │ │ └── revolution │ │ │ │ ├── back_layers.svg │ │ │ │ └── front_layers.svg │ │ ├── help_sheets │ │ │ └── help_sheet.svg │ │ ├── icc │ │ │ └── PSOcoated_v3.icc │ │ ├── logo │ │ │ └── logo.svg │ │ ├── money │ │ │ ├── blue_banknote_modern.svg │ │ │ ├── green_banknote_modern.svg │ │ │ ├── red_banknote_modern.svg │ │ │ └── yellow_banknote_modern.svg │ │ ├── player │ │ │ ├── fiche-joueur.png │ │ │ └── fiche-joueur.svg │ │ └── spreadsheets │ │ │ ├── geconomicus_bank.ods │ │ │ └── geconomicus_money.ods │ ├── _templates │ │ └── layout.html │ ├── conf.py │ ├── debt_money.rst │ ├── direct_print.rst │ ├── index.rst │ ├── libre_money.rst │ ├── locale │ │ └── en_US │ │ │ └── LC_MESSAGES │ │ │ ├── debt_money.po │ │ │ ├── direct_print.po │ │ │ ├── index.po │ │ │ ├── libre_money.po │ │ │ ├── other_money.po │ │ │ ├── rules.po │ │ │ └── to_print.po │ ├── other_money.rst │ ├── rules.rst │ └── to_print.rst └── svg2svg.py └── update_translation.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/README.md -------------------------------------------------------------------------------- /deploy_github_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/deploy_github_pages.sh -------------------------------------------------------------------------------- /rst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/Makefile -------------------------------------------------------------------------------- /rst/build_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/build_cards.py -------------------------------------------------------------------------------- /rst/build_help_sheets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/build_help_sheets.sh -------------------------------------------------------------------------------- /rst/build_logo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/build_logo.sh -------------------------------------------------------------------------------- /rst/build_money.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/build_money.sh -------------------------------------------------------------------------------- /rst/source/_static/cards/revolution/back_layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/cards/revolution/back_layers.svg -------------------------------------------------------------------------------- /rst/source/_static/cards/revolution/front_layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/cards/revolution/front_layers.svg -------------------------------------------------------------------------------- /rst/source/_static/help_sheets/help_sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/help_sheets/help_sheet.svg -------------------------------------------------------------------------------- /rst/source/_static/icc/PSOcoated_v3.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/icc/PSOcoated_v3.icc -------------------------------------------------------------------------------- /rst/source/_static/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/logo/logo.svg -------------------------------------------------------------------------------- /rst/source/_static/money/blue_banknote_modern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/money/blue_banknote_modern.svg -------------------------------------------------------------------------------- /rst/source/_static/money/green_banknote_modern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/money/green_banknote_modern.svg -------------------------------------------------------------------------------- /rst/source/_static/money/red_banknote_modern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/money/red_banknote_modern.svg -------------------------------------------------------------------------------- /rst/source/_static/money/yellow_banknote_modern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/money/yellow_banknote_modern.svg -------------------------------------------------------------------------------- /rst/source/_static/player/fiche-joueur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/player/fiche-joueur.png -------------------------------------------------------------------------------- /rst/source/_static/player/fiche-joueur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/player/fiche-joueur.svg -------------------------------------------------------------------------------- /rst/source/_static/spreadsheets/geconomicus_bank.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/spreadsheets/geconomicus_bank.ods -------------------------------------------------------------------------------- /rst/source/_static/spreadsheets/geconomicus_money.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_static/spreadsheets/geconomicus_money.ods -------------------------------------------------------------------------------- /rst/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/_templates/layout.html -------------------------------------------------------------------------------- /rst/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/conf.py -------------------------------------------------------------------------------- /rst/source/debt_money.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/debt_money.rst -------------------------------------------------------------------------------- /rst/source/direct_print.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/direct_print.rst -------------------------------------------------------------------------------- /rst/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/index.rst -------------------------------------------------------------------------------- /rst/source/libre_money.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/libre_money.rst -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/debt_money.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/debt_money.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/direct_print.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/direct_print.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/libre_money.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/libre_money.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/other_money.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/other_money.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/rules.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/rules.po -------------------------------------------------------------------------------- /rst/source/locale/en_US/LC_MESSAGES/to_print.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/locale/en_US/LC_MESSAGES/to_print.po -------------------------------------------------------------------------------- /rst/source/other_money.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/other_money.rst -------------------------------------------------------------------------------- /rst/source/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/rules.rst -------------------------------------------------------------------------------- /rst/source/to_print.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/source/to_print.rst -------------------------------------------------------------------------------- /rst/svg2svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/rst/svg2svg.py -------------------------------------------------------------------------------- /update_translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libre-money-projects/Geconomicus/HEAD/update_translation.sh --------------------------------------------------------------------------------