summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Pierce <bcpierce002017@gmail.com>2018-02-09 13:50:03 -0500
committerBenjamin Pierce <bcpierce002017@gmail.com>2018-02-09 13:50:03 -0500
commit604b26ea093a72f40adc4f9c15ed087903d5afb8 (patch)
treec1dd7f00d1e4dd5a055cfbfe9e3f067d7b533300 /src
parent5faea1e4c75e1a9c2c2d51e720de216ef28c0e32 (diff)
downloadunison-604b26ea093a72f40adc4f9c15ed087903d5afb8.zip
unison-604b26ea093a72f40adc4f9c15ed087903d5afb8.tar.gz
unison-604b26ea093a72f40adc4f9c15ed087903d5afb8.tar.bz2
Add some recent improvements
Diffstat (limited to 'src')
-rw-r--r--src/RECENTNEWS17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/RECENTNEWS b/src/RECENTNEWS
index e69de29..a4b5a53 100644
--- a/src/RECENTNEWS
+++ b/src/RECENTNEWS
@@ -0,0 +1,17 @@
+* Some nontrivial changes to profile parsing (G.raud Meyer)
+ - '=' has been considered whitespace until now: several following
+ chars are considered as only one; trailing chars are discarded;
+ any non emty sequence of char is splitting. This is non standard
+ and leads to confusion, for example -ignore== 'Name .*=*' is
+ valid when -ignore='Name .*=*' is not, and worse -ignore='Name
+ *=' is the same as -ignore='Name *'. The parser now takes just
+ a single '=' as delimiter after the option name. Other =
+ characters are considered as part of the value being assigned to
+ the option.
+
+* Numerous improvements to the text user-interface (G.raud Meyer)
+ - New key-commands that restrict the display to a set of
+ "matching" items: ones that are offering to propagate changes in
+ a particular direction, conflicts, files to be merged, etc.,
+ plus several more useful key-commands. Type "?" to Unison to
+ see all available commands.