mirror of
https://github.com/FrodoVDR/channellogos.git
synced 2023-10-10 11:36:54 +00:00
add uk logos
This commit is contained in:
12
debian/changelog
vendored
12
debian/changelog
vendored
@@ -1,3 +1,15 @@
|
||||
skindesigner-logos (0.0.1.git20141202.2106-0frodo0~trusty) trusty; urgency=low
|
||||
|
||||
* New upstream snapshot (commit a92319c), build 0009
|
||||
|
||||
-- Frodo <frodo.vdr@gmx.net> Tue, 02 Dec 2014 22:07:07 +0100
|
||||
|
||||
skindesigner-logos (0.0.1.git20141202.2105-0frodo0~precise) precise; urgency=low
|
||||
|
||||
* New upstream snapshot (commit a92319c), build 0009
|
||||
|
||||
-- Frodo <frodo.vdr@gmx.net> Tue, 02 Dec 2014 22:06:11 +0100
|
||||
|
||||
skindesigner-logos (0.0.1.git20141202.2014-0frodo0~trusty) trusty; urgency=low
|
||||
|
||||
* New upstream snapshot (commit d4e1b32), build 0008
|
||||
|
17
debian/check.pl
vendored
Executable file
17
debian/check.pl
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/perl
|
||||
use strict;
|
||||
use File::Basename;
|
||||
|
||||
foreach my $logo (glob("./logos/*")) {
|
||||
if ( "$logo" =~ /.png$/ )
|
||||
{
|
||||
print "$logo"."\n";
|
||||
my $name = $logo;
|
||||
$name =~ s/.png/.svg/g;
|
||||
if ( -f $name )
|
||||
{
|
||||
print "found: $name"."\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user