1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-18 01:41:27 +01:00

[PM-1834] Add Windows 8/8.1 deprecation notice (#5213)

This commit is contained in:
Oscar Hinton 2023-04-17 17:03:40 +02:00 committed by GitHub
parent 07c2c2af20
commit d605187de8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 65 additions and 0 deletions

View File

@ -73,4 +73,9 @@
</div> </div>
</div> </div>
</div> </div>
<ng-container *ngIf="oldOs">
<app-callout type="warning" class="os-deprecated">
{{ (deprecated ? "windows8Deprecated" : "windows8SoonDeprecated") | i18n }}
</app-callout>
</ng-container>
</form> </form>

View File

@ -1,3 +1,5 @@
import * as os from "os";
import { Component, NgZone } from "@angular/core"; import { Component, NgZone } from "@angular/core";
import { ActivatedRoute, Router } from "@angular/router"; import { ActivatedRoute, Router } from "@angular/router";
import { ipcRenderer } from "electron"; import { ipcRenderer } from "electron";
@ -27,6 +29,8 @@ const BroadcasterSubscriptionId = "LockComponent";
}) })
export class LockComponent extends BaseLockComponent { export class LockComponent extends BaseLockComponent {
private deferFocus: boolean = null; private deferFocus: boolean = null;
protected oldOs = false;
protected deprecated = false;
constructor( constructor(
router: Router, router: Router,
@ -66,6 +70,20 @@ export class LockComponent extends BaseLockComponent {
policyService, policyService,
passwordGenerationService passwordGenerationService
); );
if (process.platform === "win32") {
try {
const release = os.release();
const majorVersion = parseInt(release.split(".")[0], 10);
this.oldOs = majorVersion < 10;
if (new Date() > new Date("2023-05-31")) {
this.deprecated = true;
}
} catch (e) {
this.logService.error(e);
}
}
} }
async ngOnInit() { async ngOnInit() {

View File

@ -159,6 +159,12 @@
</div> </div>
</ng-template> </ng-template>
</div> </div>
<ng-container *ngIf="oldOs">
<app-callout type="warning" class="os-deprecated">
{{ (deprecated ? "windows8Deprecated" : "windows8SoonDeprecated") | i18n }}
</app-callout>
</ng-container>
</form> </form>
</div> </div>
<ng-template #environment></ng-template> <ng-template #environment></ng-template>

View File

@ -1,3 +1,5 @@
import * as os from "os";
import { Component, NgZone, OnDestroy, ViewChild, ViewContainerRef } from "@angular/core"; import { Component, NgZone, OnDestroy, ViewChild, ViewContainerRef } from "@angular/core";
import { FormBuilder } from "@angular/forms"; import { FormBuilder } from "@angular/forms";
import { ActivatedRoute, Router } from "@angular/router"; import { ActivatedRoute, Router } from "@angular/router";
@ -37,6 +39,8 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
showingModal = false; showingModal = false;
private deferFocus: boolean = null; private deferFocus: boolean = null;
protected oldOs = false;
protected deprecated = false;
get loggedEmail() { get loggedEmail() {
return this.formGroup.value.email; return this.formGroup.value.email;
@ -89,6 +93,20 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
super.onSuccessfulLogin = () => { super.onSuccessfulLogin = () => {
return syncService.fullSync(true); return syncService.fullSync(true);
}; };
if (process.platform === "win32") {
try {
const release = os.release();
const majorVersion = parseInt(release.split(".")[0], 10);
this.oldOs = majorVersion < 10;
if (new Date() > new Date("2023-05-31")) {
this.deprecated = true;
}
} catch (e) {
this.logService.error(e);
}
}
} }
async ngOnInit() { async ngOnInit() {

View File

@ -2233,5 +2233,13 @@
"example": "14" "example": "14"
} }
} }
},
"windows8SoonDeprecated": {
"message": "The operating system you are using will no longer be supported after the 2023.5.0 release. Upgrade to a supported operating system. Continuing without updating your operating system may result in unexpected behavior or security risks.",
"description": "Windows 8, 8.1 and Server 2012 R2 are no longer supported by Electron & Chromium. Show a notice on the login and lock screen while 2023.4.0 is the active version."
},
"windows8Deprecated": {
"message": "The operating system you are using is no longer supported. Continuing without updating your operating system may result in unexpected behavior.",
"description": "Windows 8, 8.1 and Server 2012 R2 are no longer supported by Electron & Chromium. Show a notice on the login and lock screen after 2023.5.0 is released."
} }
} }

View File

@ -272,3 +272,13 @@
} }
} }
} }
// TODO: Remove after 2023.4 release
.os-deprecated {
margin-top: 20px;
width: 500px;
}
#lock-page {
flex-direction: column;
}