Major Features
- Number Generator – Generate multiple numbers at once (1–500), configurable separator (comma, newline, tab, pipe, custom), and custom seed fix
- Docker – Container prints php-rand version on start; build uses
PHP_RAND_VERSIONarg - Secrets – Prefer
.env.localfor Docker push secrets so they survive git pull/merge
📋 Detailed Changes (click to expand)
Number Generator
- Quantity – Generate 1–500 numbers per run; output joined with chosen separator
- Separator – Presets: Comma and space, Newline, Tab, Space, Pipe; or Custom (free text, max 20 chars). Newline/tab display correctly in copyable output (
white-space: pre-wrap) - Seed fix – Checkbox renamed to
numgenuseseedso it is no longer overwritten by a hidden field; seed applied once for multiple numbers (reproducible sequence) - Copyable output – Shared copyable div now uses
white-space: pre-wrapso newline-separated content displays and copies correctly
Docker
- Entrypoint – Prints
php-rand <version>to console on container start; version set via--build-arg PHP_RAND_VERSION=$VERSIONindocker-pushimage.sh - Secrets – Script sources
.env.localfirst, then.env;.env.localadded to.gitignoreso it is never removed by merges that deleted.envfrom repo history