| Offset 1, 1 lines modified | Offset 1, 1 lines modified | ||
| 1 | {"name":"vit","origin":"deskutils/vit","version":"1.2","comment":"Curses-based·interface·to·taskwarrior","maintainer":"ports@FreeBSD.org","www":"http://tasktools.org/projects/vit.html","abi":"FreeBSD:11:amd64","arch":"freebsd:11:x86:64","prefix":"/usr/local","flatsize":95692,"licenselogic":"single","licenses":["GPLv3"],"desc":"VIT·(Visual·Interactive·Taskwarrior)·is·a·lightweight,·curses-based·front·end\nfor·Taskwarrior·that·provides·a·convenient·way·to·quickly·navigate·and·process\ntasks.·VIT·allows·you·to·interact·with·tasks·in·a·Vi-intuitive·way.·A·goal·of\nVIT·is·to·allow·you·to·customize·the·way·in·which·you·use·Taskwarrior's·core\ncommands·as·well·as·to·provide·a·framework·for·easily·dispatching·external\ncommands·(both·user·scripts·and·Taskwarrior's·many·External·Scripts).\n\nWWW:·http://tasktools.org/projects/vit.html","deps":{"p5-Curses":{"origin":"devel/p5-Curses","version":"1.34"},"taskwarrior":{"origin":"deskutils/taskwarrior","version":"2.5.0_1"},"perl5":{"origin":"lang/perl5.20","version":"5.20.·✂ | 1 | {"name":"vit","origin":"deskutils/vit","version":"1.2","comment":"Curses-based·interface·to·taskwarrior","maintainer":"ports@FreeBSD.org","www":"http://tasktools.org/projects/vit.html","abi":"FreeBSD:11:amd64","arch":"freebsd:11:x86:64","prefix":"/usr/local","flatsize":95692,"licenselogic":"single","licenses":["GPLv3"],"desc":"VIT·(Visual·Interactive·Taskwarrior)·is·a·lightweight,·curses-based·front·end\nfor·Taskwarrior·that·provides·a·convenient·way·to·quickly·navigate·and·process\ntasks.·VIT·allows·you·to·interact·with·tasks·in·a·Vi-intuitive·way.·A·goal·of\nVIT·is·to·allow·you·to·customize·the·way·in·which·you·use·Taskwarrior's·core\ncommands·as·well·as·to·provide·a·framework·for·easily·dispatching·external\ncommands·(both·user·scripts·and·Taskwarrior's·many·External·Scripts).\n\nWWW:·http://tasktools.org/projects/vit.html","deps":{"p5-Curses":{"origin":"devel/p5-Curses","version":"1.34"},"taskwarrior":{"origin":"deskutils/taskwarrior","version":"2.5.0_1"},"perl5":{"origin":"lang/perl5.20","version":"5.20.·✂ |
| Offset 1, 12 lines modified | Offset 1, 12 lines modified | ||
| 1 | #!/usr/local/bin/perl·-w | 1 | #!/usr/local/bin/perl·-w |
| 2 | # | 2 | # |
| 3 | #·VIT·-·Visual·Interactive·Taskwarrior | 3 | #·VIT·-·Visual·Interactive·Taskwarrior |
| 4 | # | 4 | # |
| 5 | #·vit-1.2·built· | 5 | #·vit-1.2·built·Sat·Jun·11·21:36:19·UTC·2016 |
| 6 | # | 6 | # |
| 7 | #·Copyright·2012·-·2013,·Steve·Rader | 7 | #·Copyright·2012·-·2013,·Steve·Rader |
| 8 | #·Copyright·2013·-·2014,·Scott·Kostyshak | 8 | #·Copyright·2013·-·2014,·Scott·Kostyshak |
| 9 | use·strict; | 9 | use·strict; |
| 10 | use·Curses; | 10 | use·Curses; |
| 11 | use·Time::HiRes·qw(usleep); | 11 | use·Time::HiRes·qw(usleep); |
| Offset 66, 15 lines modified | Offset 66, 15 lines modified | ||
| 66 | our·$search_pat·=·''; | 66 | our·$search_pat·=·''; |
| 67 | our·$selection_attrs·=·''; | 67 | our·$selection_attrs·=·''; |
| 68 | our·@taskid2report·=·(); | 68 | our·@taskid2report·=·(); |
| 69 | our·$tasks_completed·=·0; | 69 | our·$tasks_completed·=·0; |
| 70 | our·$tasks_pending·=·0; | 70 | our·$tasks_pending·=·0; |
| 71 | our·$task_selected_idx·=·0; | 71 | our·$task_selected_idx·=·0; |
| 72 | our·$titlebar·=·0; | 72 | our·$titlebar·=·0; |
| 73 | our·$version·=·'vit-1.2·(2016061 | 73 | our·$version·=·'vit-1.2·(20160611)'; |
| 74 | our·$REPORT_LINES; | 74 | our·$REPORT_LINES; |
| 75 | our·$REPORT_COLS; | 75 | our·$REPORT_COLS; |
| 76 | our·$COLOR_HEADER·=·1; | 76 | our·$COLOR_HEADER·=·1; |
| 77 | our·$COLOR_REPORT_HEADER·=·2; | 77 | our·$COLOR_REPORT_HEADER·=·2; |
| 78 | our·$COLOR_SELECTION·=·3; | 78 | our·$COLOR_SELECTION·=·3; |
| 79 | our·$COLOR_EMPTY_LINE·=·4; | 79 | our·$COLOR_EMPTY_LINE·=·4; |