--- Returns download information for a specific Redis version
--- @param ctx table Context object with version field
--- @return table Download info with version, url, and optional note
functionPLUGIN:PreInstall(ctx)localversion=ctx.versionreturn{version=version,url="https://download.redis.io/releases/redis-"..version..".tar.gz",note="Downloading Redis "..version.." source...",}end