├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── report.yml └── workflows │ └── Parse_aproved_workflow.yml ├── .gitignore ├── List ├── A │ ├── README.md │ ├── SLES_530.24.md │ ├── SLUS_201.47.md │ ├── SLUS_213.95.md │ ├── SLUS_215.88.md │ └── SLUS_218.04.md ├── B │ ├── README.md │ ├── SLES_535.61.md │ ├── SLES_538.86.md │ ├── SLES_555.79.md │ ├── SLUS_200.35.md │ └── SLUS_213.76.md ├── C │ ├── README.md │ ├── SLES_525.68.md │ ├── SLES_527.68.md │ ├── SLES_552.04.md │ ├── SLUS_202.46.md │ ├── SLUS_206.49.md │ ├── SLUS_206.95.md │ ├── SLUS_209.73.md │ ├── SLUS_215.83.md │ └── SLUS_217.28.md ├── D │ ├── README.md │ ├── SCUS_971.46.md │ ├── SLES_541.86.md │ ├── SLUS_202.16.md │ ├── SLUS_209.98.md │ ├── SLUS_210.42.md │ └── SLUS_216.78.md ├── E │ └── README.md ├── F │ ├── README.md │ ├── SLES_535.40.md │ ├── SLPS_203.74.md │ └── SLUS_213.69.md ├── G │ ├── README.md │ ├── SCUS_973.99.md │ └── SCUS_974.81.md ├── H │ ├── README.md │ ├── SLUS_211.08.md │ └── SLUS_214.74.md ├── I │ ├── README.md │ └── SCUS_971.13.md ├── J │ ├── README.md │ ├── SCES-524.12.md │ ├── SCUS_971.24.md │ ├── SCUS_974.29.md │ ├── SCUS_975.58.md │ └── SLPM_651.40.md ├── K │ ├── README.md │ ├── SLPM_666.75.md │ └── SLUS_203.70.md ├── L │ └── README.md ├── M │ ├── README.md │ ├── SLUS_209.60.md │ ├── SLUS_210.87.md │ ├── SLUS_213.55.md │ ├── SLUS_215.50.md │ └── SLUS_216.13.md ├── N │ ├── README.md │ └── SLUS_218.01.md ├── NUMBERED │ └── README.md ├── O │ └── README.md ├── P │ ├── README.md │ ├── SLUS_208.75.md │ ├── SLUS_212.87.md │ └── SLUS_216.79.md ├── Q │ └── README.md ├── R │ ├── README.md │ ├── SLES_537.02.md │ ├── SLUS_201.38.md │ ├── SLUS_211.34.md │ └── SLUS_214.48.md ├── README.md ├── S │ ├── README.md │ ├── SCUS_974.72.md │ ├── SLES_533.93.md │ ├── SLES_547.24.md │ ├── SLUS_200.78.md │ ├── SLUS_202.59.md │ ├── SLUS_203.15.md │ ├── SLUS_206.22.md │ ├── SLUS_216.14.md │ └── SLUS_218.46.md ├── T │ ├── README.md │ ├── SLES_555.20.md │ ├── SLUS_200.90.md │ ├── SLUS_208.52.md │ ├── SLUS_209.58.md │ ├── SLUS_210.59.md │ ├── SLUS_215.54.md │ └── SLUS_216.02.md ├── U │ └── README.md ├── V │ └── README.md ├── W │ ├── README.md │ └── SLES_530.96.md ├── X │ └── README.md ├── Y │ └── README.md └── Z │ └── README.md ├── README.md ├── _config.yml ├── _includes ├── CD ├── DVD5 ├── DVD9 ├── ISO ├── NO ├── YES ├── ZSO └── table_header ├── logo.png ├── requirements.txt └── script ├── ProcessData.sh └── heading.TEMPLATE /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.github/ISSUE_TEMPLATE/report.yml -------------------------------------------------------------------------------- /.github/workflows/Parse_aproved_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.github/workflows/Parse_aproved_workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/.gitignore -------------------------------------------------------------------------------- /List/A/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 1 3 | --- 4 | 5 | A 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/A/SLES_530.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/A/SLES_530.24.md -------------------------------------------------------------------------------- /List/A/SLUS_201.47.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/A/SLUS_201.47.md -------------------------------------------------------------------------------- /List/A/SLUS_213.95.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/A/SLUS_213.95.md -------------------------------------------------------------------------------- /List/A/SLUS_215.88.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/A/SLUS_215.88.md -------------------------------------------------------------------------------- /List/A/SLUS_218.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/A/SLUS_218.04.md -------------------------------------------------------------------------------- /List/B/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 2 3 | --- 4 | 5 | B 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/B/SLES_535.61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/B/SLES_535.61.md -------------------------------------------------------------------------------- /List/B/SLES_538.86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/B/SLES_538.86.md -------------------------------------------------------------------------------- /List/B/SLES_555.79.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/B/SLES_555.79.md -------------------------------------------------------------------------------- /List/B/SLUS_200.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/B/SLUS_200.35.md -------------------------------------------------------------------------------- /List/B/SLUS_213.76.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/B/SLUS_213.76.md -------------------------------------------------------------------------------- /List/C/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 3 3 | --- 4 | 5 | C 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/C/SLES_525.68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLES_525.68.md -------------------------------------------------------------------------------- /List/C/SLES_527.68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLES_527.68.md -------------------------------------------------------------------------------- /List/C/SLES_552.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLES_552.04.md -------------------------------------------------------------------------------- /List/C/SLUS_202.46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_202.46.md -------------------------------------------------------------------------------- /List/C/SLUS_206.49.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_206.49.md -------------------------------------------------------------------------------- /List/C/SLUS_206.95.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_206.95.md -------------------------------------------------------------------------------- /List/C/SLUS_209.73.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_209.73.md -------------------------------------------------------------------------------- /List/C/SLUS_215.83.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_215.83.md -------------------------------------------------------------------------------- /List/C/SLUS_217.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/C/SLUS_217.28.md -------------------------------------------------------------------------------- /List/D/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 4 3 | --- 4 | 5 | D 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/D/SCUS_971.46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SCUS_971.46.md -------------------------------------------------------------------------------- /List/D/SLES_541.86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SLES_541.86.md -------------------------------------------------------------------------------- /List/D/SLUS_202.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SLUS_202.16.md -------------------------------------------------------------------------------- /List/D/SLUS_209.98.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SLUS_209.98.md -------------------------------------------------------------------------------- /List/D/SLUS_210.42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SLUS_210.42.md -------------------------------------------------------------------------------- /List/D/SLUS_216.78.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/D/SLUS_216.78.md -------------------------------------------------------------------------------- /List/E/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 5 3 | --- 4 | 5 | E 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/F/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 6 3 | --- 4 | 5 | F 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/F/SLES_535.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/F/SLES_535.40.md -------------------------------------------------------------------------------- /List/F/SLPS_203.74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/F/SLPS_203.74.md -------------------------------------------------------------------------------- /List/F/SLUS_213.69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/F/SLUS_213.69.md -------------------------------------------------------------------------------- /List/G/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 7 3 | --- 4 | 5 | G 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/G/SCUS_973.99.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/G/SCUS_973.99.md -------------------------------------------------------------------------------- /List/G/SCUS_974.81.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/G/SCUS_974.81.md -------------------------------------------------------------------------------- /List/H/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 8 3 | --- 4 | 5 | H 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/H/SLUS_211.08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/H/SLUS_211.08.md -------------------------------------------------------------------------------- /List/H/SLUS_214.74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/H/SLUS_214.74.md -------------------------------------------------------------------------------- /List/I/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 9 3 | --- 4 | 5 | I 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/I/SCUS_971.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/I/SCUS_971.13.md -------------------------------------------------------------------------------- /List/J/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 10 3 | --- 4 | 5 | J 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/J/SCES-524.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/J/SCES-524.12.md -------------------------------------------------------------------------------- /List/J/SCUS_971.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/J/SCUS_971.24.md -------------------------------------------------------------------------------- /List/J/SCUS_974.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/J/SCUS_974.29.md -------------------------------------------------------------------------------- /List/J/SCUS_975.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/J/SCUS_975.58.md -------------------------------------------------------------------------------- /List/J/SLPM_651.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/J/SLPM_651.40.md -------------------------------------------------------------------------------- /List/K/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 11 3 | --- 4 | 5 | K 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/K/SLPM_666.75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/K/SLPM_666.75.md -------------------------------------------------------------------------------- /List/K/SLUS_203.70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/K/SLUS_203.70.md -------------------------------------------------------------------------------- /List/L/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 12 3 | --- 4 | 5 | L 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/M/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 13 3 | --- 4 | 5 | M 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/M/SLUS_209.60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/M/SLUS_209.60.md -------------------------------------------------------------------------------- /List/M/SLUS_210.87.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/M/SLUS_210.87.md -------------------------------------------------------------------------------- /List/M/SLUS_213.55.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/M/SLUS_213.55.md -------------------------------------------------------------------------------- /List/M/SLUS_215.50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/M/SLUS_215.50.md -------------------------------------------------------------------------------- /List/M/SLUS_216.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/M/SLUS_216.13.md -------------------------------------------------------------------------------- /List/N/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 14 3 | --- 4 | 5 | N 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/N/SLUS_218.01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/N/SLUS_218.01.md -------------------------------------------------------------------------------- /List/NUMBERED/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 0 3 | --- 4 | 5 | \# 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/O/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 15 3 | --- 4 | 5 | O 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/P/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 16 3 | --- 4 | 5 | P 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/P/SLUS_208.75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/P/SLUS_208.75.md -------------------------------------------------------------------------------- /List/P/SLUS_212.87.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/P/SLUS_212.87.md -------------------------------------------------------------------------------- /List/P/SLUS_216.79.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/P/SLUS_216.79.md -------------------------------------------------------------------------------- /List/Q/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 17 3 | --- 4 | 5 | Q 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/R/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 18 3 | --- 4 | 5 | R 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/R/SLES_537.02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/R/SLES_537.02.md -------------------------------------------------------------------------------- /List/R/SLUS_201.38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/R/SLUS_201.38.md -------------------------------------------------------------------------------- /List/R/SLUS_211.34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/R/SLUS_211.34.md -------------------------------------------------------------------------------- /List/R/SLUS_214.48.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/R/SLUS_214.48.md -------------------------------------------------------------------------------- /List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/README.md -------------------------------------------------------------------------------- /List/S/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 19 3 | --- 4 | 5 | S 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/S/SCUS_974.72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SCUS_974.72.md -------------------------------------------------------------------------------- /List/S/SLES_533.93.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLES_533.93.md -------------------------------------------------------------------------------- /List/S/SLES_547.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLES_547.24.md -------------------------------------------------------------------------------- /List/S/SLUS_200.78.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_200.78.md -------------------------------------------------------------------------------- /List/S/SLUS_202.59.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_202.59.md -------------------------------------------------------------------------------- /List/S/SLUS_203.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_203.15.md -------------------------------------------------------------------------------- /List/S/SLUS_206.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_206.22.md -------------------------------------------------------------------------------- /List/S/SLUS_216.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_216.14.md -------------------------------------------------------------------------------- /List/S/SLUS_218.46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/S/SLUS_218.46.md -------------------------------------------------------------------------------- /List/T/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 20 3 | --- 4 | 5 | T 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/T/SLES_555.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLES_555.20.md -------------------------------------------------------------------------------- /List/T/SLUS_200.90.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_200.90.md -------------------------------------------------------------------------------- /List/T/SLUS_208.52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_208.52.md -------------------------------------------------------------------------------- /List/T/SLUS_209.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_209.58.md -------------------------------------------------------------------------------- /List/T/SLUS_210.59.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_210.59.md -------------------------------------------------------------------------------- /List/T/SLUS_215.54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_215.54.md -------------------------------------------------------------------------------- /List/T/SLUS_216.02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/T/SLUS_216.02.md -------------------------------------------------------------------------------- /List/U/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 21 3 | --- 4 | 5 | U 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/V/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 22 3 | --- 4 | 5 | V 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/W/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 23 3 | --- 4 | 5 | W 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/W/SLES_530.96.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/List/W/SLES_530.96.md -------------------------------------------------------------------------------- /List/X/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 24 3 | --- 4 | 5 | X 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/Y/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 25 3 | --- 4 | 5 | Y 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /List/Z/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | sort: 26 3 | --- 4 | 5 | Z 6 | = 7 | 8 | {% include list.liquid all=true %} 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/CD: -------------------------------------------------------------------------------- 1 | ![CD](https://img.shields.io/badge/%20-CD-E4FF00) -------------------------------------------------------------------------------- /_includes/DVD5: -------------------------------------------------------------------------------- 1 | ![DVD5](https://img.shields.io/badge/%20-DVD5-brightgreen) -------------------------------------------------------------------------------- /_includes/DVD9: -------------------------------------------------------------------------------- 1 | ![DVD9](https://img.shields.io/badge/%20-DVD9-orange) -------------------------------------------------------------------------------- /_includes/ISO: -------------------------------------------------------------------------------- 1 | ![ISO](https://img.shields.io/badge/%20-ISO-00E4FF) -------------------------------------------------------------------------------- /_includes/NO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/_includes/NO -------------------------------------------------------------------------------- /_includes/YES: -------------------------------------------------------------------------------- 1 | ![YES](https://img.shields.io/badge/%20-YES-1BFF00) -------------------------------------------------------------------------------- /_includes/ZSO: -------------------------------------------------------------------------------- 1 | ![ZSO](https://img.shields.io/badge/%20-ZSO-D500FF) -------------------------------------------------------------------------------- /_includes/table_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/_includes/table_header -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | -------------------------------------------------------------------------------- /script/ProcessData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/Open-PS2-Loader-Compatibility-list/HEAD/script/ProcessData.sh -------------------------------------------------------------------------------- /script/heading.TEMPLATE: -------------------------------------------------------------------------------- 1 | {% include table_header %} 2 | --------------------------------------------------------------------------------