Skip to content

Commit 44fb97d

Browse files
committed
180617 release files
1 parent 45d11bc commit 44fb97d

File tree

6 files changed

+49
-13
lines changed

6 files changed

+49
-13
lines changed

PortableApps/App/AppInfo/appinfo.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Version]
2-
PackageVersion=18.5.28.0
3-
DisplayVersion=180528
2+
PackageVersion=18.6.17.0
3+
DisplayVersion=180617
44

55
[Format]
66
Type=PortableApps.comFormat

Release/ConEmu/WhatsNew-ConEmu.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,42 @@ https://conemu.github.io/en/Whats_New.html
2020
-------------------------------------------
2121

2222

23+
2018.6.17
24+
* gh-1590: Quake activation (up/down) did not work properly with ChildGui in tab.
25+
* Show `-switch` style in ConEmuC help.
26+
* gh-1240: For those who want to run WinAPI console applications from POSIX layer: `ConEmuC -std -c your-command`.
27+
When you run connector (or wslbridge) console handles are set into POSIX mode,
28+
and only applications directly compiled for this mode will behave as they are in tty.
29+
In other words, if you run ‘ConEmu/cygwin-connector/bash’ and try to start Python
30+
outside of cygwin folder (e.g. downloaded from https://www.python.org/downloads/),
31+
the Python will not think it was started in terminal, because it was not linked
32+
with cygwin1.dll!
33+
The command `ConEmuC -std -c python` tries to reinitialize console to work
34+
like python was started from cmd.
35+
* gh-1567: Fixing ANSI scrolling issues.
36+
* Slightly expand Settings/Environment editor area.
37+
* Set default console pad size to `4`.
38+
* gh-728, gh-1570: Easy way to configure cmd prompt in default `{cmd}` task.
39+
When you run `{cmd}` task or any other task utilizing `CmdInit.cmd`
40+
you may set configuration variables on the Environment settings page:
41+
* `set ConEmuPromptNL=NO` - use one-line prompt;
42+
* `set ConEmuPromptNames=NO` - don't print `user@pc`.
43+
* Let configure `csudo` from Environment settings page.
44+
* `set ConEmuSudoSplit=NO` - run elevated console in new tab instead of split;
45+
* `set ConEmuSudoConfirm=NO` - disable ‘Press Enter or Esc to close console…’ confirmation.
46+
* Read more in docs: https://conemu.github.io/en/csudo.html
47+
* Fix selection artefacts when selected region goes out of the screen.
48+
* gh-1585: Don't reset search mode by clicking on scrollbar.
49+
* Support ‘Dynamic scrollbar range’ in search mode.
50+
* gh-1604, gh-393: Allow users enter buffer height values larger than 9999 to revert to maximum allowed 32766 (by Shawn Presser).
51+
* gh-1259, gh-1557: ANSI: Some characters disappear by moving cursor with right arrow key.
52+
* gh-1601: Add logging for keyboard indicators CAPS/NUM/SCRL.
53+
* Support additional batch init scripts in form of `{cmd} script.cmd <arguments>`.
54+
The script.cmd may be surrounded by `"`, but in that case, due to cmd parsing rules,
55+
you should append some script arguments without quotes.
56+
In other words, the tail of `{cmd}` **should not** end with `"`.
57+
58+
2359
2018.5.28
2460
* gh-1583: Let `-new_console` work in WSL.
2561
Note: `ConEmuC.exe` or `ConEmuC64.exe` are required to run commands,

Release/ConEmu/wsl/wsl-boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
uname -a
33
./256colors2.pl
44
cd ~
5-
`getent passwd $USER | cut -d: -f7` -l -i
5+
bash -l -i

src/ConEmu/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// 180528
1+
// 180617
22
#define MVV_1 18
3-
#define MVV_2 5
4-
#define MVV_3 28
3+
#define MVV_2 6
4+
#define MVV_3 17
55
#define MVV_4 0
66
#define MVV_4a ""
77
#undef MVV_git

src/Setup/Setupper/VersionI.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#define CONEMUVERN 18,5,28,0
2-
#define CONEMUVERS "180528"
3-
#define CONEMUVERL L"180528"
4-
#define MSI86 "../ConEmu.180528.x86.msi"
5-
#define MSI64 "../ConEmu.180528.x64.msi"
1+
#define CONEMUVERN 18,6,17,0
2+
#define CONEMUVERS "180617"
3+
#define CONEMUVERL L"180617"
4+
#define MSI86 "../ConEmu.180617.x86.msi"
5+
#define MSI64 "../ConEmu.180617.x64.msi"

src/Setup/Version.wxi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Include>
33

4-
<?define Version = '$(var.MajorVersion).180.5280' ?>
5-
<?define ConEmuVerS = '180528.$(var.Platform)' ?>
4+
<?define Version = '$(var.MajorVersion).180.6170' ?>
5+
<?define ConEmuVerS = '180617.$(var.Platform)' ?>
66

77
</Include>

0 commit comments

Comments
 (0)