Files
hiperiso/src/plugson/www/plugson_donation.html
T
vasilito b459cd8732 fix: copy hiperiso EFI binaries to data partition during install
The chain boot path looks for hiperiso_x64.efi in /hiperiso/ on the data
partition. Without this, booting ISOs (non-memdisk) fails with
'ventoy not ready chain empty failed'.

The installer now mounts the data partition after writing the ESP image
and copies ./hiperiso/* (hiperiso_x64.efi, iso9660_x64.efi, udf_x64.efi,
vtoyutil_x64.efi, wimboot, memdisk, etc.) to it. This makes the ISO
chain boot work for non-memdisk boot modes.
2026-07-02 06:32:43 +03:00

58 lines
2.4 KiB
HTML

<div class="box box-primary" id="control">
<div class="box-header">
<div class="col-sm-8" style="padding-top:8px;">
<i class="fa fa-paypal">&nbsp;&nbsp;</i>
<h1 class="box-title" style="font-weight:bold;" id="id_h1_page_title">捐助</h1>
</div>
</div>
<legend></legend>
<div class="box-body">
<div id="id_donation_div_cn">
<p style="text-align:left;font-size:18px;color:#D01010;font-weight: bold;">
Hiperiso是开源免费的,如果你愿意捐助来支持这个工具以及我的工作,我会非常感激。
</p>
<p style="text-align:left;font-size:16px;">
你可以选择使用支付宝或微信进行捐助。
</p>
<div style="display:flex">
<div style="width:30%; text-align:center"> <img src="/static/img/AliPay.png?v=1" style="width:200px;height:200px;" ></img></div>
<div style="width:30%; text-align:center"> <img src="/static/img/WeChatPay.png?v=1" style="width:210px;height:210px;" ></img> </div>
</div>
</div>
<div id="id_donation_div_en">
<p style="text-align:left;font-size:18px;color:#D01010;font-weight: bold;">
It would be much appreciated if you want to make a small donation to support Hiperiso!
</p>
<p style="text-align:left;font-size:16px;">
PayPal and Bitcoin are avaliable for donation. You can chose any of them. <br/><br/>
<span style="font-weight:bold;">PayPal Link&nbsp;&nbsp;</span><a target="_blank" href="https://www.paypal.me/hiperiso">https://www.paypal.me/hiperiso</a><br/><br/>
<span style="font-weight:bold;">PayPal Account&nbsp;&nbsp;<span style="color:blue; font-weight:bold;"> adminpupkin@gmail.com</span></span><br/><br/>
<span style="font-weight:bold;">Bitcoin Address&nbsp;</span> <span style="color:blue; font-weight:bold;"> 19mZDWzZgzkHCi9YX9H3fYCUuCHq3W6wfT </span><br/>
</p>
</div>
</div>
</div>
<script type="text/javascript">
function HisoPageLanguageChange(newlang) {
HisoCommonChangeLanguage(newlang);
$('h1[id=id_h1_page_title]').text(g_hiso_cur_language.STR_PLUG_DONATION);
if (newlang === 'en') {
$('#id_donation_div_en').show();
$('#id_donation_div_cn').hide();
} else {
$('#id_donation_div_en').hide();
$('#id_donation_div_cn').show();
}
}
//Main process
HisoPageLanguageChange(g_current_language);
</script>