From d22e7febda8720bc38069f7061adb43b98143c48 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 5 Mar 2018 23:25:07 +0100 Subject: [PATCH] common: bump version to 1.11 Mark significant changes since v1.10 and force CSS reload. --- charset.plp | 2 +- circus.css | 2 +- common.inc.plp | 4 ++-- dark.css | 2 +- darklite.css | 2 +- digraphs.plp | 2 +- index.plp | 2 +- keyboard.plp | 2 +- latin.plp | 2 +- lite.css | 2 +- mono.css | 2 +- perl.plp | 2 +- red.css | 2 +- source.plp | 2 +- vi.plp | 2 +- vimperator.plp | 2 +- 16 files changed, 17 insertions(+), 17 deletions(-) diff --git a/charset.plp b/charset.plp index e9f097d..f9c50d8 100644 --- a/charset.plp +++ b/charset.plp @@ -5,7 +5,7 @@ my @tablist = split m{/+}, $Request || 'default'; Html({ title => 'charset cheat sheet', - version => '1.1', + version => '1.2', description => [ "Reference sheet with all glyphs in common character encoding tables,", "and an overview of Unicode ranges and UTF-8 bytes.", diff --git a/circus.css b/circus.css index aed61fc..5844529 100644 --- a/circus.css +++ b/circus.css @@ -1,4 +1,4 @@ -@import url(light.css?1.10); +@import url(light.css?1.11); .l1 {background: #F77} .l1:hover a, .l1:hover a:visited, diff --git a/common.inc.plp b/common.inc.plp index 68ada33..e3316fc 100644 --- a/common.inc.plp +++ b/common.inc.plp @@ -72,7 +72,7 @@ sub stylesheet { return map { sprintf( '', - $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.10", $_ + $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.11", $_ ) } @avail; } @@ -120,7 +120,7 @@ sub Html { unshift @{ $meta->{raw} }, stylesheet($meta->{stylesheet}); push @{ $meta->{raw} }, ( - '', + '', ); # optional amends diff --git a/dark.css b/dark.css index 6cb893f..50ba184 100644 --- a/dark.css +++ b/dark.css @@ -1,4 +1,4 @@ -@import url(light.css?1.10); +@import url(light.css?1.11); body { background: #000; diff --git a/darklite.css b/darklite.css index b704627..7f5c113 100644 --- a/darklite.css +++ b/darklite.css @@ -1,4 +1,4 @@ -@import url(dark.css?1.10); +@import url(dark.css?1.11); th, td { border-color: #333; diff --git a/digraphs.plp b/digraphs.plp index 5e4a334..af71630 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -5,7 +5,7 @@ my $modename = $mode ? 'X.Org' : 'RFC-1345'; Html({ title => 'digraph cheat sheet', - version => '1.2', + version => '1.3', description => [ "Complete table of digraph characters from $modename.", ], diff --git a/index.plp b/index.plp index 8189519..57cca20 100644 --- a/index.plp +++ b/index.plp @@ -2,7 +2,7 @@ Html({ title => 'cheat sheets', - version => '1.10', + version => '1.11', description => [ "Cheat sheets summarising various software programs and standards.", ], diff --git a/keyboard.plp b/keyboard.plp index 2fe9c07..8060fa6 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -2,7 +2,7 @@ Html({ title => 'keyboard cheat sheet', - version => '1.0', + version => '1.1', stylesheet => [qw( light dark circus mono red )], keys => 1, }); diff --git a/latin.plp b/latin.plp index 56f9d03..199a49c 100644 --- a/latin.plp +++ b/latin.plp @@ -2,7 +2,7 @@ Html({ title => 'latin alphabet cheat sheet', - version => '1.4', + version => '1.5', description => [ ], keywords => [qw' diff --git a/lite.css b/lite.css index 269b0d6..d1b394f 100644 --- a/lite.css +++ b/lite.css @@ -1,4 +1,4 @@ -@import url(light.css?1.10); +@import url(light.css?1.11); .pm, td.c-na {background: #DFD} .po {background: #EFC} diff --git a/mono.css b/mono.css index 5879a4c..fbf3b40 100644 --- a/mono.css +++ b/mono.css @@ -1,4 +1,4 @@ -@import url(light.css?1.10); +@import url(light.css?1.11); a:active, a:visited:active, a:hover, a:visited:hover {color: inherit} diff --git a/perl.plp b/perl.plp index a5ef991..0476a9e 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => '1.2', + version => '1.3', keywords => [qw' perl version feature features comparison sheet cheat overview summary diff --git a/red.css b/red.css index f5763a1..bb2ee71 100644 --- a/red.css +++ b/red.css @@ -1,4 +1,4 @@ -@import url(light.css?1.10); +@import url(light.css?1.11); body { background: #000; diff --git a/source.plp b/source.plp index ef730a4..6d6057c 100644 --- a/source.plp +++ b/source.plp @@ -28,7 +28,7 @@ if ($source =~ s{(?<=\Q.inc.pl\E)/jsonp?$}{} and -r $source) { Html({ title => "$source source code", - version => '1.1', + version => '1.2', description => !$source ? 'Index of source files for this site.' : [ "Source code of the $source file at this site,", "with syntax highlighted and references linked." diff --git a/vi.plp b/vi.plp index 9a11580..39d498b 100644 --- a/vi.plp +++ b/vi.plp @@ -2,7 +2,7 @@ Html({ title => 'vi cheat sheet', - version => '1.3', + version => '1.4', description => [ "Interactive cheat sheet for vi text editors, notably Vim,", "describing each key in various modes.", diff --git a/vimperator.plp b/vimperator.plp index cd165a8..08ea859 100644 --- a/vimperator.plp +++ b/vimperator.plp @@ -2,7 +2,7 @@ Html({ title => 'vimperator cheat sheet', - version => '1.2', + version => '1.3', description => [ "Interactive cheat sheet for the Vimperator (or Pentadactyl)", "Firefox extension, describing the function of each key.", -- 2.30.0