mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
Merge branch 'revert_wayvr_revert' into 'main'
fix: Revert "disable and blacklist wayvr dashboard plugin" See merge request gabmus/envision!126
This commit is contained in:
commit
9be6234da0
2 changed files with 2 additions and 6 deletions
|
@ -249,10 +249,6 @@ impl App {
|
|||
.plugins
|
||||
.values()
|
||||
.filter_map(|cp| {
|
||||
// disable potentially unsafe wayvr_dashboard
|
||||
if cp.plugin.appid.contains("wayvr_dashboard") {
|
||||
return None;
|
||||
}
|
||||
if cp.enabled && cp.plugin.validate() {
|
||||
if let Err(e) = cp.plugin.mark_as_executable() {
|
||||
error!(
|
||||
|
|
|
@ -163,10 +163,10 @@ impl Plugin {
|
|||
|
||||
/// urls to manifest json files representing plugins.
|
||||
/// each manifest should be json and the link should always point to the latest version
|
||||
const MANIFESTS: [&str;2] = [
|
||||
const MANIFESTS: [&str;3] = [
|
||||
"https://github.com/galister/wlx-overlay-s/raw/refs/heads/meta/com.github.galister.wlx-overlay-s.json",
|
||||
"https://github.com/StardustXR/telescope/raw/refs/heads/main/envision/org.stardustxr.telescope.json",
|
||||
// wayvr dashboard potentially unsafe
|
||||
"https://github.com/olekolek1000/wayvr-dashboard/raw/refs/heads/meta/dev.oo8.wayvr_dashboard.json",
|
||||
];
|
||||
|
||||
pub async fn refresh_plugins() -> anyhow::Result<Vec<anyhow::Result<Plugin>>> {
|
||||
|
|
Loading…
Add table
Reference in a new issue