├── .gitignore ├── LICENSE ├── README.md ├── project.clj ├── release.sh ├── src └── bltool │ ├── core.clj │ ├── data.clj │ ├── data │ ├── backloggery.clj │ ├── default.clj │ ├── edn.clj │ ├── html.clj │ ├── json.clj │ ├── steam.clj │ ├── text.clj │ └── xboxlive.clj │ └── flags.clj ├── steam2backloggery.bat └── steam2backloggery.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/project.clj -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/release.sh -------------------------------------------------------------------------------- /src/bltool/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/core.clj -------------------------------------------------------------------------------- /src/bltool/data.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data.clj -------------------------------------------------------------------------------- /src/bltool/data/backloggery.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/backloggery.clj -------------------------------------------------------------------------------- /src/bltool/data/default.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/default.clj -------------------------------------------------------------------------------- /src/bltool/data/edn.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/edn.clj -------------------------------------------------------------------------------- /src/bltool/data/html.clj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bltool/data/json.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/json.clj -------------------------------------------------------------------------------- /src/bltool/data/steam.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/steam.clj -------------------------------------------------------------------------------- /src/bltool/data/text.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/text.clj -------------------------------------------------------------------------------- /src/bltool/data/xboxlive.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/data/xboxlive.clj -------------------------------------------------------------------------------- /src/bltool/flags.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/src/bltool/flags.clj -------------------------------------------------------------------------------- /steam2backloggery.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/steam2backloggery.bat -------------------------------------------------------------------------------- /steam2backloggery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/bltool/HEAD/steam2backloggery.sh --------------------------------------------------------------------------------