Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Zenamp-Portable.zip | 2025-09-14 | 26.6 MB | |
Zenamp.msi | 2025-09-14 | 16.7 MB | |
Zenamp.msix | 2025-09-14 | 28.3 MB | |
README.md | 2025-09-14 | 3.1 kB | |
Release v90 source code.tar.gz | 2025-09-14 | 6.1 MB | |
Release v90 source code.zip | 2025-09-14 | 6.2 MB | |
Totals: 6 Items | 83.9 MB | 0 |
Stable Release
Version: 1.0.90
Commit: [7c6824]
Build: [#90]
Downloads
- Zenamp.msi - Windows installer with uninstall support and file associations
- Zenamp.msix - Unsigned package ready for Microsoft Store submission
- Zenamp-Portable.zip - Portable version (no installation required)
What's Inside
- Multi-format playback: WAV, MP3, OGG, FLAC, MIDI, AIFF, OPUS
- OPL3 MIDI synthesis for authentic retro sound
- Complete playback controls with queue management
- Volume control (10% to 300%)
- Progress tracking with timestamps
- GTK3 interface for modern desktop integration
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
Silent Installation Support
For enterprise and automated deployments:
:::cmd
# Silent install with all features (MSI)
msiexec /i Zenamp.msi /quiet /norestart ASSOCIATE_FILES=1 DESKTOP_SHORTCUT=1
# Silent install without file associations (MSI)
msiexec /i Zenamp.msi /quiet /norestart ASSOCIATE_FILES=0 DESKTOP_SHORTCUT=0
# Silent uninstall (MSI)
msiexec /x Zenamp.msi /quiet /norestart
Command-line Properties (MSI only):
- ASSOCIATE_FILES=1
- Enable file associations (default: 1)
- DESKTOP_SHORTCUT=1
- Create desktop shortcut (default: 1)
- INSTALLFOLDER="C:\Program Files\Zenamp"
- Custom install path
Package Comparison
Feature | MSI | MSIX | Portable |
---|---|---|---|
Installation Required | Yes | Yes | No |
File Associations | ✅ | ✅ | ❌ |
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
- Embedded Icon: Icon properly embedded in executable
- Version Information: Full version details embedded
- Store-Compliant Assets: Multiple scale factors (100%, 125%, 150%, 200%)
- GTK3 runtime included
- All dependencies bundled
- Cross-compiled with MinGW
File Association Support
When file associations are enabled during installation: - WAV - Windows Audio files - MP3 - MPEG Audio Layer 3 - OGG - Ogg Vorbis files - FLAC - Free Lossless Audio Codec - MIDI - Musical Instrument Digital Interface (.mid/.midi) - AIFF - Audio Interchange File Format (.aiff/.aif) - OPUS - Royalty-free lossy audio codec - M3U - Audio playlist files
Right-click any supported audio file or playlist and select "Open with Zenamp" or "Play with Zenamp"!
Built with GitHub Actions