Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Solitaire-GTK-Portable.zip | 2025-10-10 | 33.3 MB | |
Solitaire-GTK.msi | 2025-10-10 | 21.6 MB | |
Solitaire-GTK.msix | 2025-10-10 | 35.3 MB | |
README.md | 2025-10-10 | 3.0 kB | |
Release v184 source code.tar.gz | 2025-10-10 | 16.8 MB | |
Release v184 source code.zip | 2025-10-10 | 16.8 MB | |
Totals: 6 Items | 123.9 MB | 0 |
Stable Release
Version: 1.0.184
Commit: [843884]
Build: [#184]
๐ Solitaire Collection
Classic card games including Klondike Solitaire, FreeCell, and Spider Solitaire with a modern GTK interface.
๐ฆ Downloads
- Solitaire-GTK.msi - Windows installer with uninstall support
- Solitaire-GTK.msix - Unsigned package ready for Microsoft Store submission
- Solitaire-GTK-Portable.zip - Portable version (no installation required)
๐ฎ Games Included
- ๐ก Klondike Solitaire - The classic card game
- ๐ FreeCell - Strategic card sorting
- ๐ท๏ธ Spider Solitaire - Multi-deck challenge
โจ Installer Features (MSI)
- โ User/Machine installation scope choice
- โ Custom installation directory
- โ Start menu shortcuts for all games with individual icons
- โ Optional desktop shortcuts for each game with their specific icons
- โ Proper uninstall support with registry cleanup
- โ MIT License agreement
- โ Add/Remove Programs integration
- โ Uninstall shortcut in Start Menu
๐ช Microsoft Store Submission
The MSIX package in this release is unsigned and ready for Microsoft Store submission through Partner Center. Before uploading: 1. Update the Identity Name and Publisher in the manifest with values from Partner Center 2. Upload the unsigned MSIX file - Microsoft handles signing during certification
๐ฆ Package Comparison
Feature | MSI | MSIX | Portable |
---|---|---|---|
Installation Required | Yes | Yes | No |
Start Menu Integration | โ | โ | โ |
Auto-Update Support | โ | โ | โ |
Microsoft Store Ready | โ | โ | โ |
Enterprise Deployment | โ | โ | โ |
Sandboxed | โ | โ | โ |
Traditional Uninstall | โ | โ | โ |
Code Signing Required | โ | Store | โ |
๐ ๏ธ Technical Details
- Built on: Linux (Fedora 41 container)
- MSI compiled on: Windows Latest
- MSIX compiled on: Windows Latest
- Store-Compliant Assets: Multiple scale factors (100%, 125%, 150%, 200%)
- GTK3 runtime included
- All dependencies bundled
- Sound effects and card graphics included
- Individual game icons for better visual identification
๐ฏ Silent Installation (MSI only)
For enterprise and automated deployments:
:::cmd
# Silent install with desktop shortcuts
msiexec /i Solitaire-GTK.msi /quiet /norestart DESKTOP_SHORTCUT=1
# Silent install without desktop shortcuts
msiexec /i Solitaire-GTK.msi /quiet /norestart DESKTOP_SHORTCUT=0
# Silent uninstall
msiexec /x Solitaire-GTK.msi /quiet /norestart
Command-line Properties:
- DESKTOP_SHORTCUT=1
- Create desktop shortcuts (default: 1)
- INSTALLFOLDER="C:\Program Files\Solitaire Collection"
- Custom install path
Built with โค๏ธ using GitHub Actions