aboutsummaryrefslogtreecommitdiffstats
path: root/progress.c
AgeCommit message (Expand)AuthorFilesLines
2023-09-29parse: separate out parsing functions from config.hCalvin Wan1-1/+1
2023-04-24hash-ll.h: split out of hash.h to remove dependency on repository.hElijah Newren1-0/+1
2023-04-11treewide: remove cache.h inclusion due to pager.h changesElijah Newren1-1/+1
2023-04-11pager.h: move declarations for pager.c functions from cache.hElijah Newren1-0/+1
2023-04-11treewide: be explicit about dependence on trace.h & trace2.hElijah Newren1-0/+1
2023-03-21treewide: remove unnecessary inclusion of gettext.hElijah Newren1-1/+0
2023-02-24mark unused parameters in signal handlersJeff King1-1/+1
2022-02-03progress API: unify stop_progress{,_msg}(), fix trace2 bugÆvar Arnfjörð Bjarmason1-18/+3
2022-02-03progress.c: refactor stop_progress{,_msg}() to use helpersÆvar Arnfjörð Bjarmason1-28/+36
2022-02-03progress.c: use dereferenced "progress" variable, not "(*p_progress)"Ævar Arnfjörð Bjarmason1-6/+9
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2020-08-17Merge branch 'ma/stop-progress-null-fix'Junio C Hamano1-2/+10
2020-08-10progress: don't dereference before checking for NULLMartin Ågren1-2/+10
2020-05-15progress: call trace2_region_leave() only after calling _enter()Derrick Stolee1-6/+2
2020-05-12trace2: log progress time and throughputEmily Shaffer1-0/+17
2020-04-27progress.c: silence cgcc suggestion about internal linkageĐoàn Trần Công Danh1-1/+1
2019-11-27progress: create GIT_PROGRESS_DELAYDerrick Stolee1-2/+13
2019-09-17Test the progress displaySZEDER Gábor1-2/+30
2019-09-17Revert "progress: use term_clear_line()"SZEDER Gábor1-11/+18
2019-07-11Merge branch 'dr/progress-i18n'Junio C Hamano1-2/+1
2019-07-02l10n: localizable upload progress messagesDimitriy Ryazantcev1-2/+1
2019-06-27progress: use term_clear_line()SZEDER Gábor1-17/+11
2019-05-30Merge branch 'sg/progress-off-by-one-fix'Junio C Hamano1-1/+1
2019-05-28progress: avoid empty line when breaking the progress lineSZEDER Gábor1-1/+1
2019-04-25Merge branch 'jk/xmalloc'Junio C Hamano1-13/+5
2019-04-25Merge branch 'sg/overlong-progress-fix'Junio C Hamano1-21/+53
2019-04-15progress: break too long progress bar linesSZEDER Gábor1-3/+24
2019-04-15progress: clear previous progress update dynamicallySZEDER Gábor1-4/+7
2019-04-12progress: use xmalloc/xcallocJeff King1-13/+5
2019-04-05progress: assemble percentage and counters in a strbuf before printingSZEDER Gábor1-12/+23
2019-04-05progress: make display_progress() return voidSZEDER Gábor1-8/+5
2019-03-22progress: add sparse mode to force 100% complete messageJeff Hostetler1-3/+35
2017-12-19Merge branch 'en/rename-progress'Junio C Hamano1-14/+15
2017-12-04progress: drop delay-threshold codeLars Schneider1-19/+5
2017-12-04progress: set default delay threshold to 100%, not 0%Jeff King1-1/+1
2017-11-15progress: fix progress meters when dealing with lots of workElijah Newren1-14/+15
2017-08-19progress: simplify "delayed" progress APIJunio C Hamano1-5/+10
2017-07-09progress: show overall rate in last updateRené Scharfe1-2/+6
2017-02-16stop_progress_msg: convert xsnprintf to xstrfmtMaxim Moseychuk1-7/+4
2016-02-22use xmallocz to avoid size arithmeticJeff King1-1/+1
2015-09-25stop_progress_msg: convert sprintf to xsnprintfJeff King1-1/+1
2015-09-25progress: store throughput display in a strbufJeff King1-10/+8
2015-05-19progress: treat "no terminal" as being in the foregroundJeff King1-1/+2
2015-04-15progress: no progress in backgroundLuke Mewburn1-6/+16
2014-07-13progress: simplify performance measurement by using getnanotime()Karsten Blees1-35/+36
2014-02-24i18n: mark all progress lines for translationNguyễn Thái Ngọc Duy1-1/+2
2013-04-10strbuf: create strbuf_humanise_bytes() to show byte sizesAntoine Pelisse1-28/+15
2009-10-14change throughput display units with fast linksNicolas Pitre1-1/+7
2009-09-14Nicolas Pitre has a new email addressNicolas Pitre1-1/+1
2009-04-25progress bar: round to the nearest instead of truncating downNicolas Pitre1-4/+4
2008-06-08progress.c: avoid use of dynamic-sized arrayBoyd Lynn Gerber1-3/+8
2007-11-20Flush progress message buffer in display().Johannes Sixt1-0/+3
2007-11-08nicer display of thin pack completionNicolas Pitre1-6/+13
2007-11-07make display of total transferred fully accurateNicolas Pitre1-25/+39
2007-11-05make display of total transferred more accurateNicolas Pitre1-24/+22
2007-11-01Show total transferred as part of throughput progressNicolas Pitre1-3/+26
2007-11-01make sure throughput display gets updated even if progress doesn't moveNicolas Pitre1-0/+3
2007-10-30add some copyright notice to the progress display codeNicolas Pitre1-0/+10
2007-10-30add throughput to progress displayNicolas Pitre1-4/+76
2007-10-30make struct progress an opaque typeNicolas Pitre1-6/+27
2007-10-17more compact progress displayNicolas Pitre1-28/+25
2007-05-23Fix the progress code to output LF only when it is really neededAlex Riesen1-1/+5
2007-04-22provide a facility for "delayed" progress reportingNicolas Pitre1-0/+34
2007-04-22make progress "title" part of the common progress interfaceNicolas Pitre1-4/+8
2007-04-22common progress display supportNicolas Pitre1-0/+68