Merge pull request #18466 from desktop/releases/3.3.14

Release 3.3.14
This commit is contained in:
tidy-dev 2024-04-16 13:59:13 +00:00 committed by GitHub
commit 6636b5aedc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"productName": "GitHub Desktop",
"bundleID": "com.github.GitHubClient",
"companyName": "GitHub, Inc.",
"version": "3.3.14-beta2",
"version": "3.3.14",
"main": "./main.js",
"repository": {
"type": "git",

View file

@ -1,5 +1,20 @@
{
"releases": {
"3.3.14": [
"[Fixed] The tab panel semantics in the \"Publish Repository\" and \"Clone a Repository\" are announced by screen readers - #18408",
"[Fixed] The check all button in the diff always only represents one selectable group - #18422",
"[Fixed] Images diffs of less than 200px in width do not render with a zero width for diff views other than `2-up` - #18405",
"[Fixed] Fix list accessibility semantics of the Pull Request list - #18397",
"[Fixed] Fix screen reader support of warning dialogs - #18371",
"[Fixed] Selecting the \"Configure manually\" radio option does not cause unexpected focus shift to the name input in the Git Configuration page of the welcome flow - #18341",
"[Fixed] All dialogs can be closed by pressing Esc - #18335",
"[Improved] The force push warning in the push dropdown now has a contrast of 4.5:1 - #18415",
"[Improved] Hyphen replacement and invalid sanitized name warnings and errors in the create branch and create repository dialogs are associated to the input by the aria-describedby attribute - #18404",
"[Improved] Add VapourSynth script files (.vpy) to test/x-python - #18364. Thanks @couleurm!",
"[Improved] The text contrast of tutorial steps when closed is 4.5:1 - #18342",
"[Improved] Upgrade to Electron v28.2.3 - #18185",
"[Removed] Remove support for macOS 10.13 and 10.14 - #18316"
],
"3.3.14-beta2": [
"[Fixed] The tab panel semantics in the \"Publish Repository\" and \"Clone a Repository\" are announced by screen readers - #18408",
"[Fixed] The check all button in the diff always only represents one selectable group - #18422",

View file

@ -15,7 +15,7 @@ type ChannelToValidate = 'production' | 'beta'
* to a previous version of GitHub Desktop without losing all settings.
*/
const ValidElectronVersions: Record<ChannelToValidate, string> = {
production: '26.2.4',
production: '28.2.3',
beta: '28.2.3',
}