monotone-commits-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Monotone-commits-diffs] net.venge.monotone: 46d701cb0f163e312543d5aad2


From: code
Subject: [Monotone-commits-diffs] net.venge.monotone: 46d701cb0f163e312543d5aad26ea7a247b58208
Date: Sun, 28 Nov 2010 03:39:31 GMT

revision:            46d701cb0f163e312543d5aad26ea7a247b58208
date:                2010-11-28T03:39:15
author:              Richard Levitte <address@hidden>
branch:              net.venge.monotone
changelog:
Only report that the workspace has not been updated if the user used --update.

manifest:
format_version "1"

new_manifest [f44111a9c4a528627aa952ef2979403070fe52e1]

old_revision [07b91bd7bb49a7ef5d09d1eac37ac4bbee5c0f03]

patch "NEWS"
 from [8f00fa4d536c26f515c982a2078102e5fba864c0]
   to [82e6621761e40979b4cdf7be2d5e500db32bb43d]

patch "maybe_workspace_updater.cc"
 from [476c3692b0ed2c99e1b2b90125adfb4125cce91d]
   to [f1d41132d47052f6b9f54980de4feb21348e715a]
============================================================
--- NEWS	8f00fa4d536c26f515c982a2078102e5fba864c0
+++ NEWS	82e6621761e40979b4cdf7be2d5e500db32bb43d
@@ -37,6 +37,11 @@ XXX XXX XX XX:XX:XX UTC 2010
           a diff using mtn diff, it would report that "/dev/null is
           binary".  This has been changed to it reports the actual
           name of the removed file instead.
+          (fixes monotone issue 111)
+
+        - mtn pull and mtn sync would always say that your workspace
+          has not been updated.  Now, it only does that when you used
+          the --update option and there were no updates.
           (fixes monotone issue 106)
 
         Internal
============================================================
--- maybe_workspace_updater.cc	476c3692b0ed2c99e1b2b90125adfb4125cce91d
+++ maybe_workspace_updater.cc	f1d41132d47052f6b9f54980de4feb21348e715a
@@ -59,7 +59,7 @@ void maybe_workspace_updater::maybe_do_u
     {
       update(app, args_vector());
     }
-  else
+  else if (app.opts.auto_update)
     {
       P(F("note: your workspace has not been updated"));
     }

reply via email to

[Prev in Thread] Current Thread [Next in Thread]