- 05 Mar, 2020 1 commit
-
-
kiilerix authored
Based on code inspection after hitting a crash in patchctx. --HG-- branch : stable
-
- 18 Nov, 2019 2 commits
-
-
Matt Harbison authored
Since hg 73e6d3346e4f.
-
Matt Harbison authored
-
- 01 Sep, 2019 1 commit
-
-
kiilerix authored
sed -i "s/\([^b]\)'\([^']*\)'\( \(not \)\?in \([^ ()]*\)\.extensions()\)/\1b'\2'\3/g" `hg mani`
-
- 25 Aug, 2019 1 commit
-
-
kiilerix authored
Debugging and print statements can tell more about failing asserts, but it is nice to get *some* information up front, also to make it easier to reproduce. General guidelines: Try to avoid anything that must compute something and thus can fail - try to just inspect local variables (or whatever assert looked at). For type related asserts, try to add repr(). Sometimes, multiple variables are relevant - in that case use tuples.
-
- 23 Aug, 2019 1 commit
-
-
Matt Harbison authored
A couple of notable things: - `tortoisehg.autoresolve` still gets a default value in backout and rebase, even though it is not registered dynamicdefault. - the following were left with '' as the default, because it is used to set text with a QString, and it is unknown how far back None would be accepted. (Any other '' -> None conversions are not used to set text) * email.cc * email.to * gpg.key * hostfingerprints.* (strange the default here is a list) - `tortoisehg.overlayicons` in nautilus-thg needs to be registered, as does `debug.delaylock`. - `web.name` still takes a default because it is dynamicdefault
-
- 12 Apr, 2019 1 commit
-
-
Matt Harbison authored
Converted with `2to3 -w -n -f dict .`, and then remove a bunch of list() wrapping. The only place it seemed necessary was in repoview.py, as the collection is traversed more than once.
-
- 24 Mar, 2019 1 commit
-
-
Matt Harbison authored
Fixed up after running `2to3 -w -n -f map .` It also replaced map+lambda with a list comprehension in qt_repotreemodel_test.py.
-
- 23 Mar, 2019 1 commit
-
-
Matt Harbison authored
This used `2to3 -w -n -f except .`, fixed an extra parenthesis in bugreport.py, and a commented out clause in pbranch.py.
-
- 14 Apr, 2018 1 commit
-
-
Yuya Nishihara authored
-
- 27 Aug, 2017 2 commits
-
-
Yuya Nishihara authored
The type argument appears to be broken in earlier versions of PyQt4 which are still widely used.
-
Yuya Nishihara authored
The type argument appears to be broken in earlier versions of PyQt4 which are still widely used.
-
- 23 Jul, 2017 1 commit
-
-
Yuya Nishihara authored
-
- 22 Jul, 2017 2 commits
-
-
Steve Borho authored
-
-
- 25 Sep, 2016 1 commit
-
-
Yuya Nishihara authored
Dropped star imports to help static analysis tools.
-
- 06 Jun, 2015 1 commit
-
-
Yuya Nishihara authored
-
- 19 May, 2015 1 commit
-
-
Yuya Nishihara authored
-
- 24 Apr, 2015 2 commits
-
-
Yuya Nishihara authored
--HG-- branch : stable
-
Yuya Nishihara authored
2eab72bd970d moved repo.status() to upper level, but it is only necessary on 'remove' command. --HG-- branch : stable
-
- 03 Aug, 2014 1 commit
-
-
Yuya Nishihara authored
All *_ui.py files need to be regenerated.
-
- 21 Feb, 2014 1 commit
-
-
Yuya Nishihara authored
scmutil.match() in StatusThread only works if cwd is repository root, so the other dialogs which use StatusWidget do chdir(repo.root) in command entry functions. QuickOpDialog also had chdir until 89fa569323e3, but I've removed it just because new command runner doesn't need it. --HG-- branch : stable
-
- 31 May, 2014 1 commit
-
-
Yuya Nishihara authored
Since e5814c65a783, kbfiles extension was no longer be supported.
-
- 01 Mar, 2014 1 commit
-
-
Yuya Nishihara authored
This makes sure progress bar is cleared on abort. Unlike CmdThread, CmdProc and CmdServer do not emulate the final pos=None message.
-
- 28 Sep, 2013 4 commits
-
-
Yuya Nishihara authored
-
Yuya Nishihara authored
-
Yuya Nishihara authored
-
Yuya Nishihara authored
addLfiles and addWithPrompt shouldn't be called without largefiles, and if it happened, addLfiles would raise UnboundLocalError.
-
- 27 Sep, 2013 1 commit
-
-
Yuya Nishihara authored
-
- 01 Dec, 2013 1 commit
-
-
Yuya Nishihara authored
-
- 15 Jul, 2013 1 commit
-
-
Yuya Nishihara authored
Still no widget accepts RepoAgent instance in place of repo, this can complete API change at command layer. RepoAgent instance will be passed to widget's constructor later.
-
- 01 Mar, 2014 1 commit
-
-
Yuya Nishihara authored
progressReceived signal is hard to manage because it has many positional arguments. The next commit will introduce ProgressMessage struct and replace these arguments emitted by command executors. In order to migrate to new signature, this changes command's progressReceived to be connected to new slot, named as setProgress(). The original progress() is kept for the other progress signals.
-
- 14 Jul, 2013 2 commits
-
-
Yuya Nishihara authored
#1313 can be fixed because buildcmdargs() inserts "--" appropriately.
-
Yuya Nishihara authored
-
- 13 Aug, 2013 2 commits
-
-
Yuya Nishihara authored
-
Yuya Nishihara authored
-
- 02 Jun, 2013 1 commit
-
-
Yuya Nishihara authored
`canonpats` isn't exposed as command-line option and it isn't assigned internally.
-
- 05 May, 2013 2 commits
-
-
Yuya Nishihara authored
-
Yuya Nishihara authored
-
- 30 Apr, 2013 1 commit
-
-
Yuya Nishihara authored
Since 3380d68b55d3, Qt's eventloop won't be executed if dlgfunc returns None. Instead of keeping hidden widget by quickop, now quickop.run returns dummy QWidget-like object to qtrun. This also fixes temporary appearance of empty window on drag_copy and drag_move. --HG-- branch : stable
-