##// END OF EJS Templates
crecord: remove toggleamend...
crecord: remove toggleamend Previous commit removed its only calling site.

File last commit:

r44166:32aa6cef default
r44340:51bfd056 default
Show More
next
23 lines | 675 B | text/plain | TextLexer
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == New Features ==
Martin von Zweigbergk
log: add config for making `hg log -G` always topo-sorted...
r42500
== New Experimental Features ==
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == Bug Fixes ==
Martin von Zweigbergk
templates: make {indent("", " ")} be empty...
r44093 * The `indent()` template function was documented to not indent empty lines,
but it still indented the first line even if it was empty. It no longer does
that.
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457
== Backwards Compatibility Changes ==
Martin von Zweigbergk
narrow: don't hexify paths and double-hexify known nodes on wire (BC)...
r43214
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == Internal API Changes ==
Martin von Zweigbergk
relnotes: add note about changes to match.{explicit,reverse}dir...
r44216 * Matcher instances no longer have a `explicitdir` property. Consider
rewriting your code to use `repo.wvfs.isdir()` and/or
`ctx.hasdir()` instead. Also, the `traversedir` property is now
also called when only `explicitdir` used to be called. That may
mean that you can simply remove the use of `explicitdir` if you
were already using `traversedir`.