Skip to content

Commit 8381977

Browse files
committed
- Updated doc about color names of line.
1 parent 9c7574d commit 8381977

File tree

12 files changed

+34
-31
lines changed

12 files changed

+34
-31
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Map::Tube
22

3+
4.05 2025-04-02T17:40:00+00:00
4+
- Updated doc about color names of line.
5+
36
4.04 2025-03-29T06:00:00+00:00
47
- Fixed empty link issue, thanks @GWS.
58

Makefile.PL

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ WriteMakefile(
5252
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
5353
'meta-spec' => { version => 2 },
5454
provides => {
55-
'Map::Tube' => { file => 'lib/Map/Tube.pm' , version => '4.04' },
56-
'Map::Tube::Node' => { file => 'lib/Map/Tube/Node.pm' , version => '4.04' },
57-
'Map::Tube::Line' => { file => 'lib/Map/Tube/Line.pm' , version => '4.04' },
58-
'Map::Tube::Table' => { file => 'lib/Map/Tube/Table.pm' , version => '4.04' },
59-
'Map::Tube::Route' => { file => 'lib/Map/Tube/Route.pm' , version => '4.04' },
60-
'Map::Tube::Utils' => { file => 'lib/Map/Tube/Utils.pm' , version => '4.04' },
61-
'Map::Tube::Types' => { file => 'lib/Map/Tube/Types.pm' , version => '4.04' },
62-
'Map::Tube::Cookbook' => { file => 'lib/Map/Tube/Cookbook.pm' , version => '4.04' },
63-
'Map::Tube::Pluggable' => { file => 'lib/Map/Tube/Pluggable.pm', version => '4.04' },
64-
'Test::Map::Tube' => { file => 'lib/Test/Map/Tube.pm' , version => '4.04' },
55+
'Map::Tube' => { file => 'lib/Map/Tube.pm' , version => '4.05' },
56+
'Map::Tube::Node' => { file => 'lib/Map/Tube/Node.pm' , version => '4.05' },
57+
'Map::Tube::Line' => { file => 'lib/Map/Tube/Line.pm' , version => '4.05' },
58+
'Map::Tube::Table' => { file => 'lib/Map/Tube/Table.pm' , version => '4.05' },
59+
'Map::Tube::Route' => { file => 'lib/Map/Tube/Route.pm' , version => '4.05' },
60+
'Map::Tube::Utils' => { file => 'lib/Map/Tube/Utils.pm' , version => '4.05' },
61+
'Map::Tube::Types' => { file => 'lib/Map/Tube/Types.pm' , version => '4.05' },
62+
'Map::Tube::Cookbook' => { file => 'lib/Map/Tube/Cookbook.pm' , version => '4.05' },
63+
'Map::Tube::Pluggable' => { file => 'lib/Map/Tube/Pluggable.pm', version => '4.05' },
64+
'Test::Map::Tube' => { file => 'lib/Test/Map/Tube.pm' , version => '4.05' },
6565
},
6666
prereqs => {
6767
test => {

lib/Map/Tube.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube;
22

3-
$Map::Tube::VERSION = '4.04';
3+
$Map::Tube::VERSION = '4.05';
44
$Map::Tube::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube - Lightweight Routing Framework.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Cookbook.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Cookbook;
22

3-
$Map::Tube::Cookbook::VERSION = '4.04';
3+
$Map::Tube::Cookbook::VERSION = '4.05';
44
$Map::Tube::Cookbook::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Cookbook - Cookbook for Map::Tube library.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

@@ -248,7 +248,7 @@ terminology, which straightforwardly translates into JSON.)
248248
249249
=item * The C<color> attribute MAY specify the color which graphical representations of the map
250250
SHOULD use for this line. The value MUST be either a color in HTML-style triple-hexadecimal
251-
code (C<#RRGGBB>) or one of a set of color names predefined by L<Map::Tube::Utils> (q.v.).
251+
code (C<#RRGGBB>) or one of a set of color names predefined in C<share/color-names.txt>.
252252
253253
=item * Under the C<< <stations> >> element, there MUST be two or more C<< <station> >> elements,
254254
each completely defining one tube station.

lib/Map/Tube/Line.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Line;
22

3-
$Map::Tube::Line::VERSION = '4.04';
3+
$Map::Tube::Line::VERSION = '4.05';
44
$Map::Tube::Line::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Line - Class to represent the line in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Node.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Node;
22

3-
$Map::Tube::Node::VERSION = '4.04';
3+
$Map::Tube::Node::VERSION = '4.05';
44
$Map::Tube::Node::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Node - Class to represent the station in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Pluggable.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Pluggable;
22

3-
$Map::Tube::Pluggable::VERSION = '4.04';
3+
$Map::Tube::Pluggable::VERSION = '4.05';
44
$Map::Tube::Pluggable::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Pluggable - Class to load plugins for Map::Tube.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Route.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Route;
22

3-
$Map::Tube::Route::VERSION = '4.04';
3+
$Map::Tube::Route::VERSION = '4.05';
44
$Map::Tube::Route::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Route - Class to represent the route in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Table.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Table;
22

3-
$Map::Tube::Table::VERSION = '4.04';
3+
$Map::Tube::Table::VERSION = '4.05';
44
$Map::Tube::Table::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Table - Class to represent the table in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

lib/Map/Tube/Types.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Types;
22

3-
$Map::Tube::Types::VERSION = '4.04';
3+
$Map::Tube::Types::VERSION = '4.05';
44
$Map::Tube::Types::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Types - Attribute type definition for Map::Tube.
99
1010
=head1 VERSION
1111
12-
Version 4.04
12+
Version 4.05
1313
1414
=cut
1515

0 commit comments

Comments
 (0)