Changelog

For the latest update news please follow our blog. This page lists all changes, improvements, and fixes to the application.

Update
Trigger the actual download (your existing link) Open the ad URL in a new tab simultaneouslyMay 11th, 2026
new: <div class="dwn-section">
<?php if ($song['file_320']): ?>
<a class="dbutton"
href="<?= SITE_URL ?>/download?id=<?= $song['id'] ?>&quality=320"
onclick="window.open('https://11745.xml.4armn.com/direct-link?pubid=1011200&siteid=[SITE_ID]&directlinkid=122907', '_blank'); return true;">
<svg viewBox="0 0 24 24" class="svg-dwn" fill="none" stroke="#fff" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 12.3v7a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"/>
<polyline points="7.9 12.3 12 16.3 16.1 12.3"/>
<line x1="12" y1="2.7" x2="12" y2="14.2"/>
</svg>
Download in 320Kbps
</a>
<?php endif; ?>
</div>
Old: <div class="dwn-section">
<?php if ($song['file_320']): ?>
<a class="dbutton" href="<?= SITE_URL ?>/download?id=<?= $song['id'] ?>&quality=320">
<svg viewBox="0 0 24 24" class="svg-dwn" fill="none" stroke="#fff" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12.3v7a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"/><polyline points="7.9 12.3 12 16.3 16.1 12.3"/><line x1="12" y1="2.7" x2="12" y2="14.2"/></svg>
Download in 320Kbps
</a>
<?php endif; ?>
</div>
Update
PopAds CodeMay 9th, 2026
new: echo '<link rel="stylesheet" href="/style.main.css">';
include __DIR__ . '/popads.php';
Old: echo '<link rel="stylesheet" href="/style.main.css">';
Bug Fix
Add Downlaod Link ADSMay 8th, 2026
new: <a class="dbutton" href="https://onionclose.com/jrmjbyqm5?key=e4d0217d480ce5e27f0c4c2773808dd1"
rel="nofollow noopener"
data-dl="<?= SITE_URL ?>/download?id=<?= $song['id'] ?>&quality=320"
onclick="startDL(this)">


<script>
function startDL(el){
setTimeout(function(){
var a=document.createElement('a');
a.href=el.getAttribute('data-dl');
a.download='';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}, 0);
}
</script>
Old: <a class="dbutton" href="<?= SITE_URL ?>/download?id=<?= $song['id'] ?>&quality=320">