Browse Source

v2.50.01

pull/3852/head v2.50.01
Janusz Białobrzewski 8 years ago
parent
commit
06cd40e93f
  1. 6
      CommonAssemblyInfo.cs
  2. 8
      GitExtSshAskPass/SshAskPass.rc2
  3. 8
      GitExtensionsShellEx/GitExtensionsShellEx.rc
  4. 2
      GitExtensionsVSIX/source.extension.vsixmanifest
  5. 21
      GitUI/Resources/ChangeLog.md
  6. 4
      Setup/MakeInstallers.cmd
  7. 2
      Setup/MakeMonoArchive.cmd
  8. 2
      appveyor.yml

6
CommonAssemblyInfo.cs

@ -19,6 +19,6 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.50")]
[assembly: AssemblyFileVersion("2.50")]
[assembly: AssemblyInformationalVersion("2.50.00")]
[assembly: AssemblyVersion("2.50.01")]
[assembly: AssemblyFileVersion("2.50.01")]
[assembly: AssemblyInformationalVersion("2.50.01")]

8
GitExtSshAskPass/SshAskPass.rc2

@ -13,8 +13,8 @@
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,50,0,0
PRODUCTVERSION 2,50,0,0
FILEVERSION 2,50,01,0
PRODUCTVERSION 2,50,01,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -30,12 +30,12 @@ BEGIN
BLOCK "040904B0"
BEGIN
VALUE "FileDescription", "Git Extensions"
VALUE "FileVersion", "2.50"
VALUE "FileVersion", "2.50.01"
VALUE "InternalName", "Git Extensions"
VALUE "LegalCopyright", "Copyright 2013-2017"
VALUE "OriginalFilename", "GitExtSshAskPass.exe"
VALUE "ProductName", "Git Extensions"
VALUE "ProductVersion", "2.50.00"
VALUE "ProductVersion", "2.50.01"
END
END
BLOCK "VarFileInfo"

8
GitExtensionsShellEx/GitExtensionsShellEx.rc

@ -50,8 +50,8 @@ IDI_ICONCREATEREPOSITORY ICON "Resources\\IconRepoCreate.ico"
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,50,0,0
PRODUCTVERSION 2,50,0,0
FILEVERSION 2,50,01,0
PRODUCTVERSION 2,50,01,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -67,12 +67,12 @@ BEGIN
BLOCK "040904B0"
BEGIN
VALUE "FileDescription", "Git Extensions"
VALUE "FileVersion", "2.50"
VALUE "FileVersion", "2.50.01"
VALUE "InternalName", "Git Extensions"
VALUE "LegalCopyright", "Copyright 2008-2017"
VALUE "OriginalFilename", "GitExtensionsShellEx.dll"
VALUE "ProductName", "Git Extensions"
VALUE "ProductVersion", "2.50.00"
VALUE "ProductVersion", "2.50.01"
END
END
BLOCK "VarFileInfo"

2
GitExtensionsVSIX/source.extension.vsixmanifest

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Publisher="GitExt Team" Version="2.50" Language="en-US" Id="GitExtensions..3166f76a-2b07-410a-a72a-509d6a2d146c" />
<Identity Publisher="GitExt Team" Version="2.50.01" Language="en-US" Id="GitExtensions..3166f76a-2b07-410a-a72a-509d6a2d146c" />
<DisplayName>GitExtensions</DisplayName>
<Description xml:space="preserve" >Git Extensions is a graphical user interface for Git that allows you to control Git without using the command-line</Description>
<MoreInfo>http://gitextensions.github.io/</MoreInfo>

21
GitUI/Resources/ChangeLog.md

@ -1,5 +1,15 @@
Changelog
=========
### [Version 2.50.01] (07 July 2017)
#### Fixes:
* Push branch with no upstream defaults to first remote and not to "origin" - Issue [3821]
* [Bug] after 2.50 unable to use "Revert selected lines" from commit window - Issue [3819]
* [Bug / Regression] It is not possible to run an external difftool (F3) in the diff view of "Commit index / Current unstaged changes" - Issue [3814]
* Merge Conflict contextmenu items are disabled in 2.5.0 - Issue [3809]
* GitExtensions gives continuous System.ArgumentNullException - Issue [3806]
* SEG FAULT on every git operation. - Issue [3804]
* Amend Commit is not working in Version 2.5 - Issue [3786]
### [Version 2.50] (23 June 2017)
@ -1873,4 +1883,13 @@ Changelog
[3761]:https://github.com/gitextensions/gitextensions/issues/3761
[3755]:https://github.com/gitextensions/gitextensions/issues/3755
[3762]:https://github.com/gitextensions/gitextensions/pull/3762
[3762]:https://github.com/gitextensions/gitextensions/pull/3762
[Version 2.50.01]:https://github.com/gitextensions/gitextensions/releases/tag/v2.50.01
[3821]:https://github.com/gitextensions/gitextensions/issues/3821
[3819]:https://github.com/gitextensions/gitextensions/issues/3819
[3814]:https://github.com/gitextensions/gitextensions/issues/3814
[3809]:https://github.com/gitextensions/gitextensions/issues/3809
[3806]:https://github.com/gitextensions/gitextensions/issues/3806
[3804]:https://github.com/gitextensions/gitextensions/issues/3804
[3786]:https://github.com/gitextensions/gitextensions/issues/3786

4
Setup/MakeInstallers.cmd

@ -6,8 +6,8 @@ rem
rem Update this version number with every release
rem
setlocal
set version=2.50.00
set numericVersion=2.50
set version=2.50.01
set numericVersion=2.50.01
if not "%APPVEYOR_BUILD_VERSION%"=="" (
set version=%APPVEYOR_BUILD_VERSION%
set numericVersion=%APPVEYOR_BUILD_VERSION%

2
Setup/MakeMonoArchive.cmd

@ -8,7 +8,7 @@ rem
rem Update this version number with every release
rem
setlocal
set version=2.50.00
set version=2.50.01
if not "%APPVEYOR_BUILD_VERSION%"=="" set version=%APPVEYOR_BUILD_VERSION%
set normal=GitExtensions-%version%-Mono.zip
set szip="..\packages\7-Zip.CommandLine.9.20.0\tools\7za"

2
appveyor.yml

@ -1,4 +1,4 @@
version: 2.50.00.{build}
version: 2.50.01.{build}
os: Visual Studio 2015

Loading…
Cancel
Save