Compare commits

..

3 Commits

Author SHA1 Message Date
CanbiZ
ee7b8f7e78
Update zigbee2mqtt.json (#411)
Some checks are pending
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Deploy Next.js site to Pages / build (push) Waiting to run
Deploy Next.js site to Pages / deploy (push) Blocked by required conditions
2024-11-21 09:56:52 +01:00
Håvard Gjøby Thom
068e52adc8
Fix incorrect hdd values in json files (#403) 2024-11-21 09:09:25 +01:00
Bram Suurd
378a9be1bc
Website: Add discord link to navbar (#405) 2024-11-21 07:51:02 +01:00
10 changed files with 26 additions and 15 deletions

View File

@ -1,5 +1,5 @@
import { MessagesSquare, Scroll } from "lucide-react"; import { MessagesSquare, Scroll } from "lucide-react";
import { FaGithub } from "react-icons/fa"; import { FaDiscord, FaGithub } from "react-icons/fa";
export const basePath = process.env.BASE_PATH; export const basePath = process.env.BASE_PATH;
@ -10,16 +10,22 @@ export const navbarLinks = [
icon: <FaGithub className="h-4 w-4" />, icon: <FaGithub className="h-4 w-4" />,
text: "Github", text: "Github",
}, },
{
href: `https://discord.gg/2wvnMDgdnU`,
event: "Discord",
icon: <FaDiscord className="h-4 w-4" />,
text: "Discord",
},
{ {
href: `https://github.com/community-scripts/${basePath}/blob/main/CHANGELOG.md`, href: `https://github.com/community-scripts/${basePath}/blob/main/CHANGELOG.md`,
event: "Change Log", event: "Change Log",
icon: <Scroll className="h-4 w-4" />, icon: <Scroll className="h-4 w-4 hidden sm:block" />,
text: "Change Log", text: "Change Log",
}, },
{ {
href: `https://github.com/community-scripts/${basePath}/discussions`, href: `https://github.com/community-scripts/${basePath}/discussions`,
event: "Discussions", event: "Discussions",
icon: <MessagesSquare className="h-4 w-4" />, icon: <MessagesSquare className="h-4 w-4 hidden sm:block" />,
text: "Discussions", text: "Discussions",
}, },
]; ];

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "2048", "ram": "2048",
"hdd": "2G", "hdd": "2",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "4096", "ram": "4096",
"hdd": "32G", "hdd": "32",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "2048", "ram": "2048",
"hdd": "12G", "hdd": "12",
"os": "debian", "os": "debian",
"version": 12 "version": 12
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "1", "cpu": "1",
"ram": "256", "ram": "256",
"hdd": "512M", "hdd": "0.5",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "2048", "ram": "2048",
"hdd": "12G", "hdd": "12",
"os": "debian", "os": "debian",
"version": 12 "version": 12
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "4096", "ram": "4096",
"hdd": "32G", "hdd": "32",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "2048", "ram": "2048",
"hdd": "2G", "hdd": "2",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -20,7 +20,7 @@
"resources": { "resources": {
"cpu": "2", "cpu": "2",
"ram": "2048", "ram": "2048",
"hdd": "2G", "hdd": "2",
"os": null, "os": null,
"version": null "version": null
} }

View File

@ -8,8 +8,8 @@
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": true, "privileged": true,
"interface_port": null, "interface_port": 9442,
"documentation": null, "documentation": "https://www.zigbee2mqtt.io/guide/getting-started/",
"website": "https://www.zigbee2mqtt.io/", "website": "https://www.zigbee2mqtt.io/",
"logo": "https://github.com/Koenkk/zigbee2mqtt/blob/master/images/logo_bee_only.png?raw=true", "logo": "https://github.com/Koenkk/zigbee2mqtt/blob/master/images/logo_bee_only.png?raw=true",
"description": "Zigbee2MQTT is an open-source software project that allows you to use Zigbee-based smart home devices (such as those sold under the Philips Hue and Ikea Tradfri brands) with MQTT-based home automation systems, like Home Assistant, Node-RED, and others. The software acts as a bridge between your Zigbee devices and MQTT, allowing you to control and monitor these devices from your home automation system.", "description": "Zigbee2MQTT is an open-source software project that allows you to use Zigbee-based smart home devices (such as those sold under the Philips Hue and Ikea Tradfri brands) with MQTT-based home automation systems, like Home Assistant, Node-RED, and others. The software acts as a bridge between your Zigbee devices and MQTT, allowing you to control and monitor these devices from your home automation system.",
@ -41,5 +41,10 @@
"username": null, "username": null,
"password": null "password": null
}, },
"notes": [] "notes": [
{
"text": "You can find the post-install guide here: https://github.com/community-scripts/ProxmoxVE/discussions/410",
"type": "info"
}
]
} }