Skip to content

Commit

Permalink
160403 release files
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximus5 committed Apr 2, 2016
1 parent c2a91df commit bb5a5bb
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 17 deletions.
4 changes: 2 additions & 2 deletions PortableApps/App/AppInfo/appinfo.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Version]
PackageVersion=16.3.29.0
DisplayVersion=160329
PackageVersion=16.4.3.0
DisplayVersion=160403

[Format]
Type=PortableApps.comFormat
Expand Down
20 changes: 20 additions & 0 deletions Release/ConEmu/WhatsNew-ConEmu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,26 @@ https://conemu.github.io/en/Whats_New.html
-------------------------------------------


2016.4.3
* ComSpec setting page moved under DefTerm.
* Avoid attempt to hook DefTerm from multiple processes in Aggressive mode.
* Improve logging of DefTerm internals.
* gh-604: Some improvements on cmd automatic attach.
The method may be registered on the ‘ComSpec’ settings page.
However, it's not a recommended option, because ConEmu has very slight
control over it, and even the logic ‘when we need to attach or not’
is fuzzy.
* gh-604: Registration buttons were not processed properly on ConSpec settings page.
* Corrections in `-new_console` switch trimming procedure.
* The space was not trimmed in `/C "C:\Temp\run.cmd -cur_console:o"`.
* Unexpected assertion removed in `/C "C:\Temp\run_pause.cmd "-cur_console:o""`
* Don't run the command started by Shift-Enter from Far Manager via ConEmuC.exe.
If one needs the command to be started in new ConEmu tab,
than install the Macro: `ConEmu/Far3_lua/ConEmu.ShiftEnter.lua`.
* Don't bypass MouseMove events to Far Menus when selection modifiers are pressed.
* gh-621: Try to mimic standard Windows Alt+Numbers behavior.


2016.3.29
* Redesign ‘Keys & Macro’ settings page. Let `Alt+F` put focus into the ‘Filter’ field.
* Hotkey `Ctrl+Alt+Break` was not processed properly.
Expand Down
2 changes: 1 addition & 1 deletion nuget/ConEmu.Core/ConEmu.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>

<id>ConEmu.Core</id>
<version>16.3.29.0</version>
<version>16.4.3.0</version>
<title>ConEmu.Core</title>
<authors>Maximus5</authors>
<owners>Maximus5</owners>
Expand Down
2 changes: 1 addition & 1 deletion nuget/chocolatey/ConEmu.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>

<id>ConEmu</id>
<version>16.3.29.0</version>
<version>16.4.3.0</version>
<title>ConEmu</title>
<authors>Maximus5</authors>
<owners>Maximus5, Xavier Decoster, Ethan J. Brown</owners>
Expand Down
2 changes: 1 addition & 1 deletion nuget/chocolatey/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$package = 'ConEmu'
$version = '16.03.29'
$version = '16.04.03'

$isSytem32Bit = (($Env:PROCESSOR_ARCHITECTURE -eq 'x86') -and `
($Env:PROCESSOR_ARCHITEW6432 -eq $null))
Expand Down
2 changes: 1 addition & 1 deletion nuget/chocolatey/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$package = 'ConEmu'
$version = '16.03.29'
$version = '16.04.03'


$isSytem32Bit = (($Env:PROCESSOR_ARCHITECTURE -eq 'x86') -and `
Expand Down
6 changes: 3 additions & 3 deletions src/ConEmu/version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// 160329
// 160403
#define MVV_1 16
#define MVV_2 3
#define MVV_3 29
#define MVV_2 4
#define MVV_3 3
#define MVV_4 0
#define MVV_4a ""
#undef MVV_git
Expand Down
10 changes: 5 additions & 5 deletions src/Setup/Setupper/VersionI.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define CONEMUVERN 16,3,29,0
#define CONEMUVERS "160329"
#define CONEMUVERL L"160329"
#define MSI86 "../ConEmu.160329.x86.msi"
#define MSI64 "../ConEmu.160329.x64.msi"
#define CONEMUVERN 16,4,3,0
#define CONEMUVERS "160403"
#define CONEMUVERL L"160403"
#define MSI86 "../ConEmu.160403.x86.msi"
#define MSI64 "../ConEmu.160403.x64.msi"
6 changes: 3 additions & 3 deletions src/Setup/Version.wxi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>

<?define Version = '$(var.MajorVersion).160.3290' ?>
<?define ConEmuVerS = '160329.$(var.Platform)' ?>
<?define Version = '$(var.MajorVersion).160.4030' ?>
<?define ConEmuVerS = '160403.$(var.Platform)' ?>

</Include>
</Include>

0 comments on commit bb5a5bb

Please sign in to comment.