From 3fc5d4b8036cc72e672e646399bcf9f6bd72ccc9 Mon Sep 17 00:00:00 2001 From: Ashary Vermaysha <34608589+vermaysha@users.noreply.github.com> Date: Fri, 19 Jan 2024 23:00:18 +0700 Subject: [PATCH] feat: add option for Windows browser (#303) --- src/Utils/generics.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Utils/generics.ts b/src/Utils/generics.ts index 2438682..a4aa2e3 100644 --- a/src/Utils/generics.ts +++ b/src/Utils/generics.ts @@ -19,6 +19,7 @@ export const Browsers = { ubuntu: browser => ['Ubuntu', browser, '20.0.04'] as [string, string, string], macOS: browser => ['Mac OS', browser, '10.15.7'] as [string, string, string], baileys: browser => ['Baileys', browser, '4.0.0'] as [string, string, string], + windows: browser => ['Windows', browser, '10.0.22621'] as [string, string, string], /** The appropriate browser based on your OS & release */ appropriate: browser => [ PLATFORM_MAP[platform()] || 'Ubuntu', browser, release() ] as [string, string, string] }