Uninstall button

This commit is contained in:
rift 2024-08-14 23:33:16 -05:00
parent 088071fa38
commit 053f2c1e66
4 changed files with 123 additions and 82 deletions

View file

@ -150,31 +150,31 @@ app.use("/scripts/", express.static("./database_assets/scripts"));
app.use(ssrHandler);
app.use(express.static(publicPath));
// await catalog_assets.create({
// package_name: "com.nebula.cybermonay",
// title: "Cyber Monay",
// image: "cyber_monay.jpg",
// author: "Nebula Services",
// version: "1.0.0",
// description: 'A parody of the famous "Cyber Monay" hack!',
// tags: ["Hacking", "Animated", "Funny"],
// payload: "com.nebula.cybermonay.css",
// background_video: "cyber_monay_test.mp4",
// type: "theme",
// });
await catalog_assets.create({
package_name: "com.nebula.cybermonay",
title: "Cyber Monay",
image: "cyber_monay.jpg",
author: "Nebula Services",
version: "1.0.0",
description: 'A parody of the famous "Cyber Monay" hack!',
tags: ["Hacking", "Animated", "Funny"],
payload: "com.nebula.cybermonay.css",
background_video: "cyber_monay_test.mp4",
type: "theme",
});
// await catalog_assets.create({
// package_name: "com.nebula.fortnite.jpg",
// title: "Fortnite.jpg",
// image: "fortnite.jpg",
// author: "Nebula Services",
// version: "1.0.0",
// description: "Like the image in Ultraviolet, now on Nebula!",
// tags: ["Image", "Funny"],
// payload: "com.nebula.cybermonay.css",
// background_image: "fortnite.jpg",
// type: "theme",
// });
await catalog_assets.create({
package_name: "com.nebula.fortnite.jpg",
title: "Fortnite.jpg",
image: "fortnite.jpg",
author: "Nebula Services",
version: "1.0.0",
description: "Like the image in Ultraviolet, now on Nebula!",
tags: ["Image", "Funny"],
payload: "com.nebula.cybermonay.css",
background_image: "fortnite.jpg",
type: "theme",
});
catalog_assets.sync();
const server = createServer();