├── .github ├── regenerate_rotations.sh └── workflows │ └── regenerate_rotations.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _arcade-organizer.sh ├── rotations ├── README.txt ├── additional-rotations.txt ├── generate_data_json.py ├── mame-rotations.txt ├── override-rotations.txt └── regenerate_mame-rotations.sh └── update_arcade-organizer.sh /.github/regenerate_rotations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/.github/regenerate_rotations.sh -------------------------------------------------------------------------------- /.github/workflows/regenerate_rotations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/.github/workflows/regenerate_rotations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/README.md -------------------------------------------------------------------------------- /_arcade-organizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/_arcade-organizer.sh -------------------------------------------------------------------------------- /rotations/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/README.txt -------------------------------------------------------------------------------- /rotations/additional-rotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/additional-rotations.txt -------------------------------------------------------------------------------- /rotations/generate_data_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/generate_data_json.py -------------------------------------------------------------------------------- /rotations/mame-rotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/mame-rotations.txt -------------------------------------------------------------------------------- /rotations/override-rotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/override-rotations.txt -------------------------------------------------------------------------------- /rotations/regenerate_mame-rotations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/rotations/regenerate_mame-rotations.sh -------------------------------------------------------------------------------- /update_arcade-organizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theypsilon/_arcade-organizer/HEAD/update_arcade-organizer.sh --------------------------------------------------------------------------------