├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── extras.json ├── gamedata.json ├── gamedata.json.readme.txt ├── hooks ├── adobeair │ ├── adobeair.install.hook │ └── adobeair.uninstall.hook ├── blastem │ └── blastem.install.hook ├── canabalt_android_and_pc │ └── canabalt_android_and_pc.install.hook ├── dontmove │ └── dontmove.install.hook ├── doodlegod │ └── doodlegod.install.hook ├── drawastickmanepic_bundle │ └── drawastickmanepic_bundle.install.hook ├── greedcorp │ └── greedcorp.install.hook ├── incredipede │ ├── incredipede.install.hook │ └── incredipede.patch ├── machinarium │ ├── machinarium │ └── machinarium.desktop ├── mcpixel_android_pc │ ├── mcpixel_android_pc.install.hook │ └── mcpixel_android_pc.uninstall.hook ├── monsterlovesyou │ └── monsterlovesyou.install.hook ├── nightsky_android_pc │ └── nightsky_android_pc.install.hook └── regencysolitaire │ └── regencysolitaire.install.hook ├── httpbot.py ├── humblebundle.py ├── installers ├── adobeair.install ├── adobeair.uninstall ├── basementcollection.install ├── basementcollection.uninstall ├── bindingofisaac.install ├── bindingofisaac.uninstall ├── bit_trip_beat.install ├── bit_trip_beat.uninstall ├── bit_trip_runner.install ├── bit_trip_runner.uninstall ├── blastem.install ├── blastem.uninstall ├── canabalt.install ├── canabalt.uninstall ├── crayonphysicsdeluxe.install ├── crayonphysicsdeluxe.uninstall ├── dearesther.install ├── dearesther.uninstall ├── dontmove.install ├── dontmove.uninstall ├── drawastickman.install ├── drawastickman.uninstall ├── fieldrunners.install ├── fieldrunners.uninstall ├── fieldrunners2.install ├── fieldrunners2.uninstall ├── fractal.install ├── fractal.uninstall ├── greedcorp.install ├── greedcorp.uninstall ├── incredipede.install ├── incredipede.uninstall ├── lonesurvivor.install ├── lonesurvivor.uninstall ├── machinarium.install ├── machinarium.uninstall ├── mcpixel.install ├── mcpixel.uninstall ├── metalslug3.install ├── metalslug3.uninstall ├── monsterlosvesyou.install ├── monsterlosvesyou.uninstall ├── nightsky.install ├── nightsky.uninstall ├── offspringfling.install ├── offspringfling.uninstall ├── papoandyo.install ├── papoandyo.uninstall ├── regencysolitaire.install ├── regencysolitaire.uninstall ├── starseedpilgrim.install ├── starseedpilgrim.uninstall ├── swordsandsoldiers.install ├── swordsandsoldiers.uninstall ├── torchlight.install ├── torchlight.uninstall ├── vessel.install └── vessel.uninstall ├── makeinstall ├── setup.cfg ├── setup.py └── todo.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.pyc 3 | *.egg-info 4 | ref/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/README.md -------------------------------------------------------------------------------- /extras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/extras.json -------------------------------------------------------------------------------- /gamedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/gamedata.json -------------------------------------------------------------------------------- /gamedata.json.readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/gamedata.json.readme.txt -------------------------------------------------------------------------------- /hooks/adobeair/adobeair.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/adobeair/adobeair.install.hook -------------------------------------------------------------------------------- /hooks/adobeair/adobeair.uninstall.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/adobeair/adobeair.uninstall.hook -------------------------------------------------------------------------------- /hooks/blastem/blastem.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/blastem/blastem.install.hook -------------------------------------------------------------------------------- /hooks/canabalt_android_and_pc/canabalt_android_and_pc.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/canabalt_android_and_pc/canabalt_android_and_pc.install.hook -------------------------------------------------------------------------------- /hooks/dontmove/dontmove.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/dontmove/dontmove.install.hook -------------------------------------------------------------------------------- /hooks/doodlegod/doodlegod.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/doodlegod/doodlegod.install.hook -------------------------------------------------------------------------------- /hooks/drawastickmanepic_bundle/drawastickmanepic_bundle.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/drawastickmanepic_bundle/drawastickmanepic_bundle.install.hook -------------------------------------------------------------------------------- /hooks/greedcorp/greedcorp.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/greedcorp/greedcorp.install.hook -------------------------------------------------------------------------------- /hooks/incredipede/incredipede.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/incredipede/incredipede.install.hook -------------------------------------------------------------------------------- /hooks/incredipede/incredipede.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/incredipede/incredipede.patch -------------------------------------------------------------------------------- /hooks/machinarium/machinarium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/machinarium/machinarium -------------------------------------------------------------------------------- /hooks/machinarium/machinarium.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/machinarium/machinarium.desktop -------------------------------------------------------------------------------- /hooks/mcpixel_android_pc/mcpixel_android_pc.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/mcpixel_android_pc/mcpixel_android_pc.install.hook -------------------------------------------------------------------------------- /hooks/mcpixel_android_pc/mcpixel_android_pc.uninstall.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/mcpixel_android_pc/mcpixel_android_pc.uninstall.hook -------------------------------------------------------------------------------- /hooks/monsterlovesyou/monsterlovesyou.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/monsterlovesyou/monsterlovesyou.install.hook -------------------------------------------------------------------------------- /hooks/nightsky_android_pc/nightsky_android_pc.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/nightsky_android_pc/nightsky_android_pc.install.hook -------------------------------------------------------------------------------- /hooks/regencysolitaire/regencysolitaire.install.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/hooks/regencysolitaire/regencysolitaire.install.hook -------------------------------------------------------------------------------- /httpbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/httpbot.py -------------------------------------------------------------------------------- /humblebundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/humblebundle.py -------------------------------------------------------------------------------- /installers/adobeair.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "adobeair" 3 | -------------------------------------------------------------------------------- /installers/adobeair.uninstall: -------------------------------------------------------------------------------- 1 | adobeair.install -------------------------------------------------------------------------------- /installers/basementcollection.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/basementcollection.install -------------------------------------------------------------------------------- /installers/basementcollection.uninstall: -------------------------------------------------------------------------------- 1 | basementcollection.install -------------------------------------------------------------------------------- /installers/bindingofisaac.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/bindingofisaac.install -------------------------------------------------------------------------------- /installers/bindingofisaac.uninstall: -------------------------------------------------------------------------------- 1 | bindingofisaac.install -------------------------------------------------------------------------------- /installers/bit_trip_beat.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "bittripbeat" 3 | -------------------------------------------------------------------------------- /installers/bit_trip_beat.uninstall: -------------------------------------------------------------------------------- 1 | bit_trip_beat.install -------------------------------------------------------------------------------- /installers/bit_trip_runner.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/bit_trip_runner.install -------------------------------------------------------------------------------- /installers/bit_trip_runner.uninstall: -------------------------------------------------------------------------------- 1 | bit_trip_runner.install -------------------------------------------------------------------------------- /installers/blastem.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "blastem" 3 | -------------------------------------------------------------------------------- /installers/blastem.uninstall: -------------------------------------------------------------------------------- 1 | blastem.install -------------------------------------------------------------------------------- /installers/canabalt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/canabalt.install -------------------------------------------------------------------------------- /installers/canabalt.uninstall: -------------------------------------------------------------------------------- 1 | canabalt.install -------------------------------------------------------------------------------- /installers/crayonphysicsdeluxe.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/crayonphysicsdeluxe.install -------------------------------------------------------------------------------- /installers/crayonphysicsdeluxe.uninstall: -------------------------------------------------------------------------------- 1 | crayonphysicsdeluxe.install -------------------------------------------------------------------------------- /installers/dearesther.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "dearesther" 3 | -------------------------------------------------------------------------------- /installers/dearesther.uninstall: -------------------------------------------------------------------------------- 1 | dearesther.install -------------------------------------------------------------------------------- /installers/dontmove.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "dontmove" 3 | -------------------------------------------------------------------------------- /installers/dontmove.uninstall: -------------------------------------------------------------------------------- 1 | dontmove.install -------------------------------------------------------------------------------- /installers/drawastickman.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/drawastickman.install -------------------------------------------------------------------------------- /installers/drawastickman.uninstall: -------------------------------------------------------------------------------- 1 | drawastickman.install -------------------------------------------------------------------------------- /installers/fieldrunners.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/fieldrunners.install -------------------------------------------------------------------------------- /installers/fieldrunners.uninstall: -------------------------------------------------------------------------------- 1 | fieldrunners.install -------------------------------------------------------------------------------- /installers/fieldrunners2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/fieldrunners2.install -------------------------------------------------------------------------------- /installers/fieldrunners2.uninstall: -------------------------------------------------------------------------------- 1 | fieldrunners2.install -------------------------------------------------------------------------------- /installers/fractal.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "fractal" 3 | -------------------------------------------------------------------------------- /installers/fractal.uninstall: -------------------------------------------------------------------------------- 1 | fractal.install -------------------------------------------------------------------------------- /installers/greedcorp.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "greedcorp" 3 | -------------------------------------------------------------------------------- /installers/greedcorp.uninstall: -------------------------------------------------------------------------------- 1 | greedcorp.install -------------------------------------------------------------------------------- /installers/incredipede.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/incredipede.install -------------------------------------------------------------------------------- /installers/incredipede.uninstall: -------------------------------------------------------------------------------- 1 | incredipede.install -------------------------------------------------------------------------------- /installers/lonesurvivor.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/lonesurvivor.install -------------------------------------------------------------------------------- /installers/lonesurvivor.uninstall: -------------------------------------------------------------------------------- 1 | lonesurvivor.install -------------------------------------------------------------------------------- /installers/machinarium.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "machinarium" 3 | -------------------------------------------------------------------------------- /installers/machinarium.uninstall: -------------------------------------------------------------------------------- 1 | machinarium.install -------------------------------------------------------------------------------- /installers/mcpixel.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/mcpixel.install -------------------------------------------------------------------------------- /installers/mcpixel.uninstall: -------------------------------------------------------------------------------- 1 | mcpixel.install -------------------------------------------------------------------------------- /installers/metalslug3.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "metalslug3" 3 | -------------------------------------------------------------------------------- /installers/metalslug3.uninstall: -------------------------------------------------------------------------------- 1 | metalslug3.install -------------------------------------------------------------------------------- /installers/monsterlosvesyou.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/monsterlosvesyou.install -------------------------------------------------------------------------------- /installers/monsterlosvesyou.uninstall: -------------------------------------------------------------------------------- 1 | monsterlosvesyou.install -------------------------------------------------------------------------------- /installers/nightsky.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/nightsky.install -------------------------------------------------------------------------------- /installers/nightsky.uninstall: -------------------------------------------------------------------------------- 1 | nightsky.install -------------------------------------------------------------------------------- /installers/offspringfling.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/offspringfling.install -------------------------------------------------------------------------------- /installers/offspringfling.uninstall: -------------------------------------------------------------------------------- 1 | offspringfling.install -------------------------------------------------------------------------------- /installers/papoandyo.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "papoandyo" 3 | -------------------------------------------------------------------------------- /installers/papoandyo.uninstall: -------------------------------------------------------------------------------- 1 | papoandyo.install -------------------------------------------------------------------------------- /installers/regencysolitaire.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/regencysolitaire.install -------------------------------------------------------------------------------- /installers/regencysolitaire.uninstall: -------------------------------------------------------------------------------- 1 | regencysolitaire.install -------------------------------------------------------------------------------- /installers/starseedpilgrim.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/starseedpilgrim.install -------------------------------------------------------------------------------- /installers/starseedpilgrim.uninstall: -------------------------------------------------------------------------------- 1 | starseedpilgrim.install -------------------------------------------------------------------------------- /installers/swordsandsoldiers.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/installers/swordsandsoldiers.install -------------------------------------------------------------------------------- /installers/swordsandsoldiers.uninstall: -------------------------------------------------------------------------------- 1 | swordsandsoldiers.install -------------------------------------------------------------------------------- /installers/torchlight.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "torchlight" 3 | -------------------------------------------------------------------------------- /installers/torchlight.uninstall: -------------------------------------------------------------------------------- 1 | torchlight.install -------------------------------------------------------------------------------- /installers/vessel.install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$(dirname "$0")"/../humblebundle.py --"${0##*.}" "vessel" 3 | -------------------------------------------------------------------------------- /installers/vessel.uninstall: -------------------------------------------------------------------------------- 1 | vessel.install -------------------------------------------------------------------------------- /makeinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/makeinstall -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/setup.py -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MestreLion/humblebundle/HEAD/todo.txt --------------------------------------------------------------------------------