From d305a3f202e8d8d735a11cb29eb301cd756818f0 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Tue, 23 Dec 2025 17:10:00 +0100 Subject: [PATCH] Specify correct branch (#274) * Specify correct branch * Add new license flag * Remove deprecated fields --- README.md | 2 +- src/licenseGen/Program.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 803b2f0..0efad1d 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Aside from docker, which you also need for Bitwarden, BitBetter requires the fol With your dependencies installed, begin the installation of BitBetter by downloading it through Github or using the git command: ``` -git clone https://github.com/jakeswenson/BitBetter.git +git clone https://github.com/jakeswenson/BitBetter.git -b lite ``` ### Optional: Manually generating Certificate & Key diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index 39e10ec..6b2dfd1 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -467,12 +467,11 @@ internal class Program Set(type, license, "SmSeats", Int32.MaxValue); Set(type, license, "SmServiceAccounts", Int32.MaxValue); Set(type, license, "UseRiskInsights", true); - Set(type, license, "LimitCollectionCreationDeletion", true); - Set(type, license, "AllowAdminAccessToAllCollectionItems", true); Set(type, license, "Trial", false); Set(type, license, "LicenseType", Enum.Parse(licenseTypeEnum, "Organization")); Set(type, license, "UseOrganizationDomains", true); Set(type, license, "UseAdminSponsoredFamilies", true); + Set(type, license, "UsePhishingBlocker", true); Set(type, license, "Hash", Convert.ToBase64String((Byte[])computeHash.Invoke(license, [])!)); Set(type, license, "Signature", Convert.ToBase64String((Byte[])sign.Invoke(license, [cert])!));