1
0
mirror of https://github.com/desktop/desktop synced 2024-07-02 15:48:39 +00:00

Merge pull request #18892 from desktop/releases/3.4.2

Release 3.4.2
This commit is contained in:
Markus Olsson 2024-06-26 13:04:34 +02:00 committed by GitHub
commit f7404755ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

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

View File

@ -1,5 +1,11 @@
{
"releases": {
"3.4.2": [
"[New] Option to use Git Credential Manager for repositories hosted outside of GitHub.com - #18700",
"[New] Allow customizing tab character width in spaces - #15561",
"[Fixed] Remote urls containing spaces are now displayed in their entirety in the remote settings screen - #18876",
"[Fixed] Newly uploaded images are rendered in Pull Request comments and reviews - #18830"
],
"3.4.2-beta4": [
"[Fixed] Remote urls containing spaces are now displayed in their entirety in the remote settings screen - #18876",
"[Fixed] Newly uploaded images are rendered in Pull Request comments and reviews - #18830"

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: '28.2.3',
production: '30.0.8',
beta: '30.0.8',
}