Added fixes

devel
Alexey Berezhok 6 days ago
parent 93ac9a2d5d
commit f0086903a3

@ -13,6 +13,8 @@ export default {
return { return {
pageloader: false, pageloader: false,
hestia_wget: hestia_wget:
"wget https://raw.githubusercontent.com/bayrepo/hestiacp-rpm/refs/heads/rhel-version/install/hst-install.sh",
hestia_wget_devel:
"wget https://dev.brepo.ru/bayrepo/hestiacp/raw/branch/master/install/hst-install.sh", "wget https://dev.brepo.ru/bayrepo/hestiacp/raw/branch/master/install/hst-install.sh",
hestia_install: "sudo bash hst-install.sh", hestia_install: "sudo bash hst-install.sh",
installStr: "", installStr: "",
@ -28,9 +30,7 @@ export default {
return item.selected ? `${item.param} '${item.text}'` : ""; return item.selected ? `${item.param} '${item.text}'` : "";
} }
return item.param.includes("force") && item.selected return `${item.param}${item.selected ? " yes" : " no"}`;
? item.param
: `${item.param}${item.selected ? " yes" : " no"}`;
}, },
generateString() { generateString() {
const installStr = this.items.map(this.getOptionString).filter(Boolean); const installStr = this.items.map(this.getOptionString).filter(Boolean);
@ -156,6 +156,23 @@ export default {
Copy Copy
</button> </button>
</div> </div>
<p class="u-mb10">For downloading devel version use:</p>
<div class="u-pos-relative">
<input
type="text"
class="form-control u-monospace u-mb10"
v-model="hestia_wget_devel"
readonly
/>
<button
class="button-positioned"
@click="copyToClipboard(hestia_wget_devel, $event.target)"
type="button"
title="Copy to Clipboard"
>
Copy
</button>
</div>
<p class="u-mb10">Then run the following command:</p> <p class="u-mb10">Then run the following command:</p>
<div class="u-pos-relative"> <div class="u-pos-relative">
<textarea class="form-control u-min-height100" v-model="installStr" readonly /> <textarea class="form-control u-min-height100" v-model="installStr" readonly />

@ -3,7 +3,7 @@
Name: hestia Name: hestia
Version: 1.9.5 Version: 1.9.5
Release: 2%{dist} Release: 3%{dist}
Summary: Hestia Control Panel Summary: Hestia Control Panel
Group: System Environment/Base Group: System Environment/Base
License: GPLv3 License: GPLv3
@ -184,6 +184,12 @@ fi
%{_tmpfilesdir}/%{name}.conf %{_tmpfilesdir}/%{name}.conf
%changelog %changelog
* Sun Jun 01 2025 Alexey Berezhok <a@bayrepo.ru> - 1.9.5-3
- Added documentation fixes
- Change download path to github
- Added devel option to install script
- Added fixes
* Sun Apr 27 2025 Alexey Berezhok <a@bayrepo.ru> - 1.9.5-2 * Sun Apr 27 2025 Alexey Berezhok <a@bayrepo.ru> - 1.9.5-2
- Added clamav default config - Added clamav default config

Loading…
Cancel
Save