{"id":16603283,"url":"https://github.com/dbrgn/galerio","last_synced_at":"2025-07-01T23:06:41.937Z","repository":{"id":62800990,"uuid":"319082654","full_name":"dbrgn/galerio","owner":"dbrgn","description":"A simple generator for self-contained HTML flexbox galleries written in Rust.","archived":false,"fork":false,"pushed_at":"2023-12-16T22:47:03.000Z","size":399,"stargazers_count":25,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-29T00:39:09.918Z","etag":null,"topics":["gallery","photography","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbrgn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-12-06T16:48:43.000Z","updated_at":"2025-01-03T08:17:17.000Z","dependencies_parsed_at":"2024-01-23T00:01:01.852Z","dependency_job_id":null,"html_url":"https://github.com/dbrgn/galerio","commit_stats":{"total_commits":25,"total_committers":1,"mean_commits":25.0,"dds":0.0,"last_synced_commit":"023c979878d1b1f7ece9aaecba32e6c09d1ff2d2"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/dbrgn/galerio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fgalerio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fgalerio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fgalerio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fgalerio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbrgn","download_url":"https://codeload.github.com/dbrgn/galerio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fgalerio/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263047677,"owners_count":23405280,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["gallery","photography","rust"],"created_at":"2024-10-12T00:48:56.047Z","updated_at":"2025-07-01T23:06:41.907Z","avatar_url":"https://github.com/dbrgn.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Galerio\n\n[![Build status][workflow-badge]][workflow]\n[![Crates.io Version][crates-io-badge]][crates-io]\n[![Crates.io Downloads][crates-io-download-badge]][crates-io-download]\n\nGalerio is a simple generator for HTML flexbox galleries written in Rust. From\na directory with JPEG files, it generates a self-contained gallery without\nexternal dependencies.\n\nDemo gallery: \u003chttps://tmp.dbrgn.ch/galerio-demo/\u003e\n\n## Features\n\n- Simple CSS3/Flexbox based gallery\n- Touch friendly lightbox for viewing images in full screen\n- ZIP download of entire gallery (can be turned off)\n- When resizing images, detect panorama photos and do not scale them\n\n## Screenshot\n\n![screenshot](screenshot.jpg)\n\n## Installing\n\nThrough cargo:\n\n    cargo install galerio\n\nFrom Arch Linux AUR:\n\n    yay -S galerio\n\n## Building\n\n    cargo build --release\n\nNote: Make sure to create a release build, otherwise processing will be insanely slow.\n\n## Usage\n\n    galerio 1.1.0\n\n    USAGE:\n        galerio [FLAGS] [OPTIONS] \u003cinput-dir\u003e \u003coutput-dir\u003e \u003ctitle\u003e\n\n    FLAGS:\n            --help                       Prints help information\n            --no-download                Disallow full gallery download as ZIP\n        -p, --resize-include-panorama    Resize panoramas as well\n            --skip-processing            Skip processing image files\n        -V, --version                    Prints version information\n\n    OPTIONS:\n        -l, --max-large-size \u003cmax-large-size\u003e    Max large image size in pixels\n        -h, --height \u003cthumbnail-height\u003e          Max thumbnail height in pixels [default: 300]\n\n    ARGS:\n        \u003cinput-dir\u003e     Input directory\n        \u003coutput-dir\u003e    Output directory\n        \u003ctitle\u003e         Gallery title\n\nExample:\n\n    galerio /home/user/pictures/switzerland2020/ /srv/www/galleries/switzerland2020/ \"Switzerland 2020\"\n\n\n## License\n\nLicensed under either of\n\n * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or\n   http://www.apache.org/licenses/LICENSE-2.0)\n * MIT license ([LICENSE-MIT](LICENSE-MIT) or\n   http://opensource.org/licenses/MIT) at your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall\nbe dual licensed as above, without any additional terms or conditions.\n\n\n\u003c!-- Badges --\u003e\n[workflow]: https://github.com/dbrgn/galerio/actions?query=workflow%3ACI\n[workflow-badge]: https://img.shields.io/github/actions/workflow/status/dbrgn/galerio/ci.yml?branch=main\n[crates-io]: https://crates.io/crates/galerio\n[crates-io-badge]: https://img.shields.io/crates/v/galerio.svg?maxAge=3600\n[crates-io-download]: https://crates.io/crates/galerio\n[crates-io-download-badge]: https://img.shields.io/crates/d/galerio.svg?maxAge=3600\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbrgn%2Fgalerio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbrgn%2Fgalerio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbrgn%2Fgalerio/lists"}