├── .gitignore ├── legacy ├── stk.txt ├── 20x.txt ├── 30x.txt ├── umil.txt ├── 30x_qa.txt ├── modx_1x.txt ├── stk_qa.txt └── umil_qa.txt ├── phpbb ├── 20x.txt ├── 30x.txt ├── 30x_qa.txt └── versions.json ├── modx └── modx_1x.txt ├── umil ├── umil.txt └── umil_qa.txt ├── stk ├── stk.txt └── stk_qa.txt └── phpbb-extensions ├── pages_versions.json ├── boardrules_versions.json ├── autogroups_versions.json ├── media_embed_versions.json ├── skeleton_versions.json ├── googleanalytics_versions.json ├── boardannouncements_versions.json ├── collapsible_categories_versions.json └── ad_management_versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /legacy/stk.txt: -------------------------------------------------------------------------------- 1 | ../stk/stk.txt -------------------------------------------------------------------------------- /legacy/20x.txt: -------------------------------------------------------------------------------- 1 | ../phpbb/20x.txt -------------------------------------------------------------------------------- /legacy/30x.txt: -------------------------------------------------------------------------------- 1 | ../phpbb/30x.txt -------------------------------------------------------------------------------- /legacy/umil.txt: -------------------------------------------------------------------------------- 1 | ../umil/umil.txt -------------------------------------------------------------------------------- /phpbb/20x.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | 23 4 | -------------------------------------------------------------------------------- /legacy/30x_qa.txt: -------------------------------------------------------------------------------- 1 | ../phpbb/30x_qa.txt -------------------------------------------------------------------------------- /legacy/modx_1x.txt: -------------------------------------------------------------------------------- 1 | ../modx/modx_1x.txt -------------------------------------------------------------------------------- /legacy/stk_qa.txt: -------------------------------------------------------------------------------- 1 | ../stk/stk_qa.txt -------------------------------------------------------------------------------- /legacy/umil_qa.txt: -------------------------------------------------------------------------------- 1 | ../umil/umil_qa.txt -------------------------------------------------------------------------------- /modx/modx_1x.txt: -------------------------------------------------------------------------------- 1 | 1.2.6 2 | http://www.phpbb.com/mods/modx/ 3 | -------------------------------------------------------------------------------- /umil/umil.txt: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | http://www.phpbb.com/mods/umil/ 3 | -------------------------------------------------------------------------------- /umil/umil_qa.txt: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | http://www.phpbb.com/mods/umil/ 3 | -------------------------------------------------------------------------------- /stk/stk.txt: -------------------------------------------------------------------------------- 1 | 1.0.7-PL3 2 | https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941 3 | -------------------------------------------------------------------------------- /stk/stk_qa.txt: -------------------------------------------------------------------------------- 1 | 1.0.7-PL3 2 | https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941 3 | 4 | -------------------------------------------------------------------------------- /phpbb/30x.txt: -------------------------------------------------------------------------------- 1 | 3.0.14 2 | https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941 3 | 3.3.15 4 | https://www.phpbb.com/community/viewtopic.php?t=2661607 5 | -------------------------------------------------------------------------------- /phpbb/30x_qa.txt: -------------------------------------------------------------------------------- 1 | 3.0.14 2 | https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941 3 | 3.3.15 4 | https://www.phpbb.com/community/viewtopic.php?t=2661607 5 | -------------------------------------------------------------------------------- /phpbb-extensions/pages_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.2", 5 | "download": "https://www.phpbb.com/customise/db/download/106826", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/pages/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.2", 14 | "download": "https://www.phpbb.com/customise/db/download/106826", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/pages/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/boardrules_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.2", 5 | "download": "https://www.phpbb.com/customise/db/download/115476", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/boardrules/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.2", 14 | "download": "https://www.phpbb.com/customise/db/download/115476", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/boardrules/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/autogroups_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.0", 5 | "download": "https://www.phpbb.com/customise/db/download/113866", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/auto_groups/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.0", 14 | "download": "https://www.phpbb.com/customise/db/download/113866", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/auto_groups/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/media_embed_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.0", 5 | "download": "https://www.phpbb.com/customise/db/download/136036", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/mediaembed/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.0", 14 | "download": "https://www.phpbb.com/customise/db/download/136036", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/mediaembed/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/skeleton_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.2", 5 | "download": "https://www.phpbb.com/customise/db/download/133296", 6 | "announcement": "https://www.phpbb.com/customise/db/official_tool/ext_skeleton/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.2", 14 | "download": "https://www.phpbb.com/customise/db/download/133296", 15 | "announcement": "https://www.phpbb.com/customise/db/official_tool/ext_skeleton/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/googleanalytics_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.2", 5 | "download": "https://www.phpbb.com/customise/db/download/136386", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/googleanalytics/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.2", 14 | "download": "https://www.phpbb.com/customise/db/download/136386", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/googleanalytics/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/boardannouncements_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.2", 5 | "download": "https://www.phpbb.com/customise/db/download/106821", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/boardannouncements/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.2", 14 | "download": "https://www.phpbb.com/customise/db/download/106821", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/boardannouncements/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/collapsible_categories_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.0", 5 | "download": "https://www.phpbb.com/customise/db/download/116426", 6 | "announcement": "https://www.phpbb.com/customise/db/extension/collapsible_forum_categories/", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.0", 14 | "download": "https://www.phpbb.com/customise/db/download/116426", 15 | "announcement": "https://www.phpbb.com/customise/db/extension/collapsible_forum_categories/", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb-extensions/ad_management_versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "1.0": { 4 | "current": "1.0.0-b2", 5 | "download": "https://github.com/phpbb-extensions/ad-management/releases/download/1.0.0-b2/phpbb_ads_1.0.0-b2.zip", 6 | "announcement": "https://github.com/phpbb-extensions/ad-management/releases/tag/1.0.0-b2", 7 | "eol": null, 8 | "security": false 9 | } 10 | }, 11 | "unstable": { 12 | "1.0": { 13 | "current": "1.0.0-b2", 14 | "download": "https://github.com/phpbb-extensions/ad-management/releases/download/1.0.0-b2/phpbb_ads_1.0.0-b2.zip", 15 | "announcement": "https://github.com/phpbb-extensions/ad-management/releases/tag/1.0.0-b2", 16 | "eol": null, 17 | "security": false 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /phpbb/versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable": { 3 | "3.0": { 4 | "current": "3.0.14", 5 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941", 6 | "eol": null, 7 | "security": false 8 | }, 9 | "3.1": { 10 | "current": "3.1.12", 11 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2453376", 12 | "eol": null, 13 | "security": false 14 | }, 15 | "3.2": { 16 | "current": "3.2.11", 17 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2573411", 18 | "eol": null, 19 | "security": false 20 | }, 21 | "3.3": { 22 | "current": "3.3.15", 23 | "announcement": "https://www.phpbb.com/community/viewtopic.php?t=2661607", 24 | "eol": null, 25 | "security": false 26 | } 27 | }, 28 | "unstable": { 29 | "3.0": { 30 | "current": "3.0.14", 31 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2313941", 32 | "eol": null, 33 | "security": false 34 | }, 35 | "3.1": { 36 | "current": "3.1.12", 37 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2453376", 38 | "eol": null, 39 | "security": false 40 | }, 41 | "3.2": { 42 | "current": "3.2.11", 43 | "announcement": "https://www.phpbb.com/community/viewtopic.php?f=14&t=2573411", 44 | "eol": null, 45 | "security": false 46 | }, 47 | "3.3": { 48 | "current": "3.3.15", 49 | "announcement": "https://www.phpbb.com/community/viewtopic.php?t=2661607", 50 | "eol": null, 51 | "security": false 52 | }, 53 | "4.0": { 54 | "current": "4.0.0-a1", 55 | "announcement": "https://blog.phpbb.com/2025/09/27/phpbb-4-0-0-a1-the-first-alpha-release-is-here/", 56 | "eol": null, 57 | "security": false 58 | } 59 | } 60 | } 61 | --------------------------------------------------------------------------------