From 8a915e68293e69ee4b309bcdc0c70e219e01c57c Mon Sep 17 00:00:00 2001 From: Stephen Niedzielski Date: Mon, 4 May 2020 07:25:38 -0600 Subject: [PATCH] [config] Temporarily default to Legacy mode For all accounts, temporarily default to the Legacy skin version. This is to prevent regressions for third-parties until master has a complete logo and is in a shippable state. This change should be reverted as soon as interim changes in Latest mode are finished. Do these defaults need to be set elsewhere for development? Change-Id: I3c39352efe276b8574ab5d27fdab22901bc30b46 --- skin.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skin.json b/skin.json index 47b887f..f36d5dd 100644 --- a/skin.json +++ b/skin.json @@ -120,15 +120,15 @@ "description": "@var boolean Show skin-specific user preferences on the Special:Preferences appearance tab when true and hide them otherwise." }, "VectorDefaultSkinVersion": { - "value": "2", + "value": "1", "description": "@var string:['2'|'1'] The version ('2' for latest, '1' for legacy) of the Vector skin to use for anonymous users and as a fallback. The value is _not_ persisted." }, "VectorDefaultSkinVersionForExistingAccounts": { - "value": "2", + "value": "1", "description": "@var string:['2'|'1'] The version ('2' for latest, '1' for legacy) of the Vector skin to use when an existing user has not specified a preference. This configuration is not used for new accounts (see VectorDefaultSkinVersionForNewAccounts) and is impermanent. In the future, this field may contains versions such as \"beta\" which when specified and the BetaFeatures extension is installed, and the user is enrolled, the latest version is used otherwise legacy. The value is _not_ persisted." }, "VectorDefaultSkinVersionForNewAccounts": { - "value": "2", + "value": "1", "description": "@var string:['2'|'1'] The version ('2' for latest, '1' for legacy) of the Vector skin to **set** for newly created user accounts. **The value is persisted as a user preference.** This configuration is not used for preexisting accounts (see VectorDefaultSkinVersionForExistingAccounts) and only ever executed once at new account creation time." } },