Lite Catalog: Open Repository of Free Apps for Windows with Direct Installation
Lite Catalog is a Git repository featuring 141 open-source and free applications for Windows 10/11. The project provides metadata, links to original distributions, and verification tools. Automatic installation of portable versions simplifies deployment without a graphical interface. The Pascal source code is available under a license permitting use and study.
Repository Structure and Verification
The repository doesn't contain any software builds—only JSON-like INI files with metadata: descriptions, screenshots, repository links, and SHA1 hashes for integrity checks. This minimizes the risk of file tampering. Archived app versions are available for older Windows systems.
The catalog is divided into 7 categories to make searching easier. Developers can submit changes to the original repository, but forks require the author's permission.
Installation Without GUI
Users pull apps directly from GitHub: find the INI file in the relevant section, get the distribution link, and download. The Lite Catalog graphical client automates the process:
- Unpacking archives (zip, 7z, rar) into
C:\Programs\; - Creating desktop shortcuts;
- Verifying hashes before installation.
This is ideal for scripting and automating deployments in enterprise environments.
License and Contributions
The Pascal code is distributed under a restrictive license: use, distribution, and study are allowed, but modifications must go upstream. Distributing modified versions separately is prohibited without permission.
// Example INI file structure (simplified)
[AppName]
url=https://example.com/app.zip
sha1=da39a3ee5e6b4b0d3255bfef95601890afd80709
description=App description
category=Utilities
This format allows parsing metadata in scripts using any language.
Benefits for Developers
- Portability: portable versions require no admin rights;
- Verification: SHA1 hashes protect against tampered downloads;
- Openness: 141 apps with metadata for automation;
- Categorization: 7 sections for quick searches;
- Git Integration: direct access without third-party services.
The project is relevant for DevOps, where predictable software installation without bloatware is needed.
Scaling and Customization
Mid- and senior-level developers will appreciate integrating Lite Catalog into CI/CD pipelines. Parsing INI files with Bash or PowerShell enables automated deployment:
- Clone the repository;
- Extract metadata;
- Download and verify using SHA1;
- Unpack into the target directory.
For enterprise use, add GPO policies for C:\Programs\ or containerization.
Key Points
- 141 apps in 7 categories with metadata and SHA1 verification;
- Auto-installation of portable archives into
C:\Programs\with shortcuts; - Pascal code under a restrictive license, forks by permission;
- Direct GitHub access without GUI for scripting;
- Focus on open, free tools for Windows 10/11.
— Editorial Team
No comments yet.