1
1
mirror of https://github.com/neosubhamoy/neodlp-website.git synced 2026-03-22 07:05:50 +05:30

feat: added homebrew package

This commit is contained in:
2026-02-21 23:31:16 +05:30
Verified
parent 0139fbbb88
commit 7de568a480
3 changed files with 652 additions and 192 deletions

821
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -16,23 +16,23 @@
"@radix-ui/react-dropdown-menu": "^2.1.16", "@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.8", "@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4", "@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.18", "@tailwindcss/vite": "^4.2.0",
"@types/canvas-confetti": "^1.9.0", "@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.2.9", "@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"astro": "^5.16.11", "astro": "^5.17.3",
"astro-loading-indicator": "^0.7.1", "astro-loading-indicator": "^0.7.1",
"canvas-confetti": "^1.9.4", "canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"lucide-react": "^0.562.0", "lucide-react": "^0.575.0",
"motion": "^12.27.5", "motion": "^12.34.3",
"next-themes": "^0.4.6", "next-themes": "^0.4.6",
"react": "^19.2.3", "react": "^19.2.4",
"react-dom": "^19.2.3", "react-dom": "^19.2.4",
"sonner": "^2.0.7", "sonner": "^2.0.7",
"tailwind-merge": "^3.4.0", "tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.18" "tailwindcss": "^4.2.0"
}, },
"devDependencies": { "devDependencies": {
"tw-animate-css": "^1.4.0" "tw-animate-css": "^1.4.0"

View File

@@ -251,7 +251,7 @@ export default function AllDownloadsSection({ release }: { release: LatestReleas
<TriangleAlert className="size-4 stroke-yellow-400" /> <TriangleAlert className="size-4 stroke-yellow-400" />
<AlertTitle>Experimental Binary Downloads!</AlertTitle> <AlertTitle>Experimental Binary Downloads!</AlertTitle>
<AlertDescription> <AlertDescription>
MacOS ARM64 binary downloads are experimental and may not open on Apple Silicon Macs if downloaded from browser (You will get 'Damaged File' error) it's because the binaries are not signed (signing MacOS binaries requires 99$/year Apple Developer Account subscription, which I can't afford RN!) and Apple Silicon Macs don't allow unsigned apps (downloaded from browser) to be installed on the system. If you want to use NeoDLP on your Apple Silicon Macs, you can simply use the command line Curl-Bash Installer (Recommended) given below! MacOS ARM64 binary downloads are experimental and may not open on Apple Silicon Macs if downloaded from browser (You will get 'Damaged File' error) it's because the binaries are not signed (signing MacOS binaries requires 99$/year Apple Developer Account subscription, which I can't afford RN!) and Apple Silicon Macs don't allow unsigned apps (downloaded from browser) to be installed on the system. If you want to use NeoDLP on your Apple Silicon Macs, you can simply install NeoDLP via Homebrew (Recommended) or use the command line Curl-Bash Installer given below!
</AlertDescription> </AlertDescription>
</Alert> </Alert>
</div> </div>
@@ -265,6 +265,9 @@ export default function AllDownloadsSection({ release }: { release: LatestReleas
<CommandSnippet title="Windows (WinGet)"> <CommandSnippet title="Windows (WinGet)">
winget install neosubhamoy.neodlp winget install neosubhamoy.neodlp
</CommandSnippet> </CommandSnippet>
<CommandSnippet title="MacOS (Homebrew)">
brew install neosubhamoy/tap/neodlp
</CommandSnippet>
<CommandSnippet title="MacOS (Curl-Bash Installer)"> <CommandSnippet title="MacOS (Curl-Bash Installer)">
curl -sSL https://neodlp.neosubhamoy.com/macos_installer.sh | bash curl -sSL https://neodlp.neosubhamoy.com/macos_installer.sh | bash
</CommandSnippet> </CommandSnippet>