Compare commits

..

No commits in common. "ab0ebcbebf723a75fb021dfee4bda6d26b87c461" and "08cf6c3b172e43ea8fd2776a1812e77716ad1ba3" have entirely different histories.

3 changed files with 6 additions and 4 deletions

View File

@ -7,7 +7,7 @@ copyright_year = 2018
main_module = bin/git-issue
[MetaResources]
repository.url = https://gitea.federationhq.de/byterazor/App-Git-IssueManager.git
repository.url = https://gitcloud.federationhq.de/git/App-Git-IssueManager.git
repository.type = git
bugtracker.mailto = byterazor@federationhq.de

View File

@ -17,5 +17,6 @@ Manages issues within your repository using a "issues" branch.
=cut
app_exclude 'App::Git::IssueManager::Config','App::Git::IssueManager::Webinterface';
app_exclude 'App::Git::IssueManager::Config';
1;

View File

@ -7,7 +7,7 @@ extends qw(App::Git::IssueManager);
use Git::LowLevel;
use Git::IssueManager;
use Git::IssueManager::Issue;
use Text::ANSITable 0.602;
use Text::ANSITable;
use Term::ANSIColor;
use Try::Tiny;
use Data::Dumper;
@ -68,7 +68,8 @@ sub run
my $t = Text::ANSITable->new;
$t->use_utf8(1);
$t->use_color(1);
$t->border_style('UTF8::SingleLine');
$t->use_box_chars(1);
$t->border_style('Default::single_boxchar');
$t->columns(["ID", "Subject", "Type", "Priority", "Severity", "Status", "Author", "Worker"]);
@stati=@{$self->show_status};
for my $i (@issues)