Specify correct branch (#274)

* Specify correct branch

* Add new license flag

* Remove deprecated fields
This commit is contained in:
Michiel Hazelhof
2025-12-23 17:10:00 +01:00
committed by GitHub
parent 389be8cea8
commit d305a3f202
2 changed files with 2 additions and 3 deletions

View File

@@ -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

View File

@@ -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])!));