[Old Settings] Warn the user on Windows < 1903 that next version won't be supported (#10313)

This commit is contained in:
Andrey Nekrasov 2021-03-19 12:39:18 +03:00 committed by GitHub
parent 3a15276668
commit 057e92afb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -58,6 +58,9 @@ export class GeneralSettings extends React.Component <any, any> {
return (
<Stack tokens={{childrenGap:20}}>
<Text variant='xLarge'>Available PowerToys</Text>
{
<span style={{color:"#c50500", fontWeight: "bold", fontSize: "17px" }} dangerouslySetInnerHTML={{__html: "Next release of PowerToys will require Windows 10 version 1903 (May 2019 Update) or newer to run." }} />
}
{ Object.keys(power_toys_enabled).map(
(key) => {
let enabled_value=power_toys_enabled[key];
@ -259,6 +262,9 @@ export class GeneralSettings extends React.Component <any, any> {
<Stack>
<Text variant='xLarge'>About PowerToys (Preview)</Text>
<Label>Version {this.state.settings.general.powertoys_version}</Label>
{
<span style={{color:"#c50500", fontWeight: "bold", fontSize: "17px" }} dangerouslySetInnerHTML={{__html: "Next release of PowerToys will require Windows 10 version 1903 (May 2019 Update) or newer to run." }} />
}
<PrimaryButton
styles={{
root: {

File diff suppressed because one or more lines are too long