<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/third-party/cmake, branch v0.3.6</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>build/win: LibuvCMakeLists.txt: adapt to moved headers</title>
<updated>2018-11-01T03:35:36+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-01T03:35:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8480b74010254a23768085796ef0518becce1df6'/>
<id>8480b74010254a23768085796ef0518becce1df6</id>
<content type='text'>
Headers were moved in v1.21.0
https://github.com/libuv/libuv/commit/99ae3edf28fd5c848e886e41ac3f4bd40538e24d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Headers were moved in v1.21.0
https://github.com/libuv/libuv/commit/99ae3edf28fd5c848e886e41ac3f4bd40538e24d
</pre>
</div>
</content>
</entry>
<entry>
<title>deps: update to libuv v1.23.2</title>
<updated>2018-10-31T23:10:50+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-10-31T23:10:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=fc5dea02b6f44fc33ed831879ce280c45f9e1895'/>
<id>fc5dea02b6f44fc33ed831879ce280c45f9e1895</id>
<content type='text'>
Remove libuv-overlapped.patch since UV_OVERLAPPED_PIPE was included in
libuv v1.21.0:
https://github.com/libuv/libuv/commit/62a0f763a7d1a5bbaa2670b9d2687ba183d2c528

Notable changes since v1.12:
- 1.16.0
  - uv_os_getppid(): get parent PID
  - "win,tty: improve SIGWINCH support" (v1.15.0)
- 1.18.0
  - uv_os_getpid()
- 1.19.0
  - Windows: uv_kill() pid 0 now means "current process group", like unix.
    https://github.com/libuv/libuv/commit/890eedaf59cea75faaa6a14b4248a472dcadb831
- 1.20.0
  - unix,spawn: respect user stdio flags for new pipe
    https://github.com/libuv/libuv/commit/c409b3fcff51ea270724e4f43866764e65666095
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove libuv-overlapped.patch since UV_OVERLAPPED_PIPE was included in
libuv v1.21.0:
https://github.com/libuv/libuv/commit/62a0f763a7d1a5bbaa2670b9d2687ba183d2c528

Notable changes since v1.12:
- 1.16.0
  - uv_os_getppid(): get parent PID
  - "win,tty: improve SIGWINCH support" (v1.15.0)
- 1.18.0
  - uv_os_getpid()
- 1.19.0
  - Windows: uv_kill() pid 0 now means "current process group", like unix.
    https://github.com/libuv/libuv/commit/890eedaf59cea75faaa6a14b4248a472dcadb831
- 1.20.0
  - unix,spawn: respect user stdio flags for new pipe
    https://github.com/libuv/libuv/commit/c409b3fcff51ea270724e4f43866764e65666095
</pre>
</div>
</content>
</entry>
<entry>
<title>build/macOS: fix luajit install step</title>
<updated>2018-10-17T13:26:19+00:00</updated>
<author>
<name>dm1try</name>
<email>me@dmitry.it</email>
</author>
<published>2018-10-16T00:35:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=913588466dc981d5c1295f1a98e4de5e63b86a37'/>
<id>913588466dc981d5c1295f1a98e4de5e63b86a37</id>
<content type='text'>
prevent luajit to assigning default value to MACOSX_DEPLOYMENT_TARGET
ref #9050
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
prevent luajit to assigning default value to MACOSX_DEPLOYMENT_TARGET
ref #9050
</pre>
</div>
</content>
</entry>
<entry>
<title>third-party/unibilium: Fix parsing of extended capability entries</title>
<updated>2018-10-14T00:24:02+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2018-10-14T00:15:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=399864157b3c61ff76ced3f5e97056726b3f5b28'/>
<id>399864157b3c61ff76ced3f5e97056726b3f5b28</id>
<content type='text'>
In the 20180331 release, the format was slightly changed:

&gt; 20180331
&gt;         + improve terminfo write/read by modifying the fourth item of the
&gt;           extended header to denote the number of valid strings in the extended
&gt;           string table (prompted by a comment in unibilium's sources).

Since the number of valid string capabilities is not necessarily the
same as extstrslen, it's not possible to sanity check the total number
of items up front anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the 20180331 release, the format was slightly changed:

&gt; 20180331
&gt;         + improve terminfo write/read by modifying the fourth item of the
&gt;           extended header to denote the number of valid strings in the extended
&gt;           string table (prompted by a comment in unibilium's sources).

Since the number of valid string capabilities is not necessarily the
same as extstrslen, it's not possible to sanity check the total number
of items up front anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>build/MSVC: remove libvterm-Fix-escape-sequences-for-MSVC.patch</title>
<updated>2018-09-04T04:41:55+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-09-04T04:41:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3b156664b5c247defa5c4e1924805766d872b9ec'/>
<id>3b156664b5c247defa5c4e1924805766d872b9ec</id>
<content type='text'>
Not needed after libvterm commit:
https://github.com/neovim/libvterm/commit/487f21dbf65f1c28962fef3f064603f415fbaeb2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not needed after libvterm commit:
https://github.com/neovim/libvterm/commit/487f21dbf65f1c28962fef3f064603f415fbaeb2
</pre>
</div>
</content>
</entry>
<entry>
<title>Raise minimum CMake version to 2.8.12 and remove compat code</title>
<updated>2018-06-18T12:00:30+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2018-06-16T14:20:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=23c9e3ec1ee16eef79bfebc5dd59de712e354ceb'/>
<id>23c9e3ec1ee16eef79bfebc5dd59de712e354ceb</id>
<content type='text'>
2.8.12 is supported by our main CI targets and [repology] confirms that
this is broadly supported.

[repology]: https://repology.org/metapackage/cmake/information
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2.8.12 is supported by our main CI targets and [repology] confirms that
this is broadly supported.

[repology]: https://repology.org/metapackage/cmake/information
</pre>
</div>
</content>
</entry>
<entry>
<title>deps: bump lua client</title>
<updated>2018-06-10T14:11:49+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-06-10T13:48:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0191061e34260ffe33bc40a608f5ae6d5fe44b9c'/>
<id>0191061e34260ffe33bc40a608f5ae6d5fe44b9c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build/msvc: Add support for building gettext tools with MSVC</title>
<updated>2018-06-10T01:50:44+00:00</updated>
<author>
<name>b-r-o-c-k</name>
<email>brockmammen@gmail.com</email>
</author>
<published>2018-06-08T02:31:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e17728a632048d96d4549566d93401da0fe2c677'/>
<id>e17728a632048d96d4549566d93401da0fe2c677</id>
<content type='text'>
Only includes the tools needed for Neovim: xgettext, msgfmt, and
msgmerge.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only includes the tools needed for Neovim: xgettext, msgfmt, and
msgmerge.
</pre>
</div>
</content>
</entry>
<entry>
<title>build/msvc: Add libiconv to bundled dependencies</title>
<updated>2018-06-10T01:50:02+00:00</updated>
<author>
<name>b-r-o-c-k</name>
<email>brockmammen@gmail.com</email>
</author>
<published>2018-06-07T01:39:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d87e5d70163addaa4ab140425c8bf875ea3b747f'/>
<id>d87e5d70163addaa4ab140425c8bf875ea3b747f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>deps: Fix libvterm and libtermkey escape sequences for MSVC</title>
<updated>2018-06-03T20:31:02+00:00</updated>
<author>
<name>b-r-o-c-k</name>
<email>brockmammen@gmail.com</email>
</author>
<published>2018-05-18T20:08:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a80f73f04317a161306d503a605bca2c1a7f73a0'/>
<id>a80f73f04317a161306d503a605bca2c1a7f73a0</id>
<content type='text'>
The escape sequence `\e` is non-standard and not supported by MSVC.
It caused the terminal emulator to incorrectly interpret certain keys.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The escape sequence `\e` is non-standard and not supported by MSVC.
It caused the terminal emulator to incorrectly interpret certain keys.
</pre>
</div>
</content>
</entry>
</feed>
