{"id":42591609,"url":"https://github.com/threadi/downloadlist","last_synced_at":"2026-04-26T10:02:04.865Z","repository":{"id":39921518,"uuid":"445820597","full_name":"threadi/downloadlist","owner":"threadi","description":"Provides a Wordpress-Gutenberg block for capturing a download list with file type specific icons.","archived":false,"fork":false,"pushed_at":"2026-04-10T22:37:34.000Z","size":7031,"stargazers_count":8,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-04-11T00:09:49.394Z","etag":null,"topics":["gutenberg-blocks","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/download-list-block-with-icons/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/threadi.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-08T13:01:38.000Z","updated_at":"2026-04-10T22:37:33.000Z","dependencies_parsed_at":"2023-02-08T05:15:36.348Z","dependency_job_id":"bf9d36fb-c7a6-4e68-8e91-c3072468e82f","html_url":"https://github.com/threadi/downloadlist","commit_stats":null,"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/threadi/downloadlist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Fdownloadlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Fdownloadlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Fdownloadlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Fdownloadlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/threadi","download_url":"https://codeload.github.com/threadi/downloadlist/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/threadi%2Fdownloadlist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32292958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gutenberg-blocks","wordpress","wordpress-plugin"],"created_at":"2026-01-28T23:13:21.167Z","updated_at":"2026-04-26T10:02:04.855Z","avatar_url":"https://github.com/threadi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Download List Block with Icons\n\nThis repository is the database for the plugin _Download List Block with Icons_. This provides a Gutenberg block to manage a download list with file type specific icons.\n\n## Usage\n\nAfter checkout go through the following steps:\n\n1. copy _build/build.properties.dist_ to _build/build.properties_.\n2. modify the build/build.properties file - note the comments in the file.\n3. execute the command in _build/_: `ant init`\n4. after that the plugin can be activated in WordPress\n\n## Test\n\nRun `npm start` to compile the Block Editor-Scripts for tests.\n\n## Release\n\n1. increase the version number in _build/build.properties_.\n2. execute the following command in _build/_: `ant build`\n3. after that you will finde in the release directory a zip file which could be used in WordPress to install it.\n\n## Translations\n\nI recommend to use [PoEdit](https://poedit.net/) to translate texts for this plugin.\n\n### generate pot-file\n\nRun in main directory:\n\n`wp i18n make-pot . languages/download-list-block-with-icons.pot --exclude=docs,css,src,svn`\n\n### update translation-file\n\n1. Open .po-file of the language in PoEdit.\n2. Go to \"Translate\" \u003e \"Update from POT-file\".\n3. After this the new entries are added to the language-file.\n\n### export translation-file\n\n1. Open .po-file of the language in PoEdit.\n2. Go to File \u003e Save.\n3. Upload the generated .mo-file and the .po-file to the plugin-folder languages/\n\n### generate json-translation-files\n\nRun in main directory:\n\n`wp i18n make-json languages --no-purge`\n\nOR use ant in build/-directory: `ant json-translations`\n\n## Build blocks\n\n### Requirements\n\n`npm install`\n\n### Run for development\n\n`npm start`\n\n### Run for release\n\n`npm run build`\n\nHint: will be called by ant-command mentioned above.\n\n## Check for WordPress Coding Standards\n\n### Initialize\n\n`composer install`\n\n### Run\n\n`vendor/bin/phpcs --standard=ruleset.xml .`\n\n### Repair\n\n`vendor/bin/phpcbf --standard=ruleset.xml .`\n\n## Check for WordPress VIP Coding Standards\n\nHint: this check runs against the VIP-GO-platform which is not our target for this plugin. Many warnings can be ignored.\n\n### Run\n\n`vendor/bin/phpcs --extensions=php --ignore=*/vendor/*,*/node_modules/*,*/block/*,*/svn/*,*/src/* --standard=WordPress-VIP-Go .`\n\n## Check PHP compatibility\n\n`vendor/bin/phpcs -p app --standard=PHPCompatibilityWP`\n\n### Generate documentation\n\n`vendor/bin/wp-documentor parse classes --format=markdown --output=docs/hooks.md --prefix=downloadlist_ --exclude=Section.php --exclude=Tab.php --exclude=Import.php --exclude=Export.php --exclude=Field_Base.php --exclude=Settings.php --exclude=Page.php`\n\n## Check with the plugin \"Plugin Check\"\n\nThis runs the plugin check as the plugin check in the WordPress repository does on every plugin update. It should result in no errors.\n\nHint: run this not in the development environment, it would also check all dependencies that is unnecessary.\nUse a normal WordPress installation with an installed PCP plugin.\n\n`wp plugin check --error-severity=7 --warning-severity=6 --include-low-severity-errors --categories=plugin_repo --format=json --slug=personio-integration-light .`\n\n## PHP Unit tests\n\n### Preparation\n\nBe sure to have run `composer install` or `composer update` before.\n\nThen: `composer test-install`\n\n### Run\n\n`composer test`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthreadi%2Fdownloadlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthreadi%2Fdownloadlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthreadi%2Fdownloadlist/lists"}