common: bump version to 1.11 v1.11
authorMischa POSLAWSKY <perl@shiar.org>
Mon, 5 Mar 2018 22:25:07 +0000 (23:25 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Mon, 5 Mar 2018 22:51:17 +0000 (23:51 +0100)
Mark significant changes since v1.10 and force CSS reload.

16 files changed:
charset.plp
circus.css
common.inc.plp
dark.css
darklite.css
digraphs.plp
index.plp
keyboard.plp
latin.plp
lite.css
mono.css
perl.plp
red.css
source.plp
vi.plp
vimperator.plp

index e9f097d2b1f79c45ed2c9bfb0196bd52fadf181e..f9c50d87616715b9d304f6a16e06f4a8a8dc3f89 100644 (file)
@@ -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.",
index aed61fcaed6f5eafbc58ccfc910d392c6e17cfae..58445298f426beb736ea31996bdfb5d3dd4cbeaa 100644 (file)
@@ -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,
index 68ada33956a5a1dce7116da4d6181323ab8d4e88..e3316fc439a00246e5454d0f64194b3a1fb460a6 100644 (file)
@@ -72,7 +72,7 @@ sub stylesheet {
 
        return map { sprintf(
                '<link rel="%s" type="text/css" media="all" href="%s" title="%s">',
-               $_ 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} }, (
-               '<link rel="stylesheet" type="text/css" media="monochrome" href="/mono.css?1.10" title="light">',
+               '<link rel="stylesheet" type="text/css" media="monochrome" href="/mono.css?1.11" title="light">',
        );
 
        # optional amends
index 6cb893f2c88cc68f115950a23054b47953a2bd36..50ba18415fda2ebcce41f303eeb04bc9b060f6d2 100644 (file)
--- 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;
index b704627e5367831dc0d3a0c017a39bdb1f558cd9..7f5c1133b19d0c34c3059d5eee7a3d27f3ce2a37 100644 (file)
@@ -1,4 +1,4 @@
-@import url(dark.css?1.10);
+@import url(dark.css?1.11);
 
 th, td {
        border-color: #333;
index 5e4a3341812d689f3c4599061efd1e1e1c7a67d6..af71630b795cbebc7be5825d9449bb54c0fdd129 100644 (file)
@@ -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.",
        ],
index 81895192ba172dcd937df77c9980da8794cf214c..57cca2053319d5704f9a6aeecd2c5d245822a67b 100644 (file)
--- 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.",
        ],
index 2fe9c073bf656fc2db61df1a262b468d05343b56..8060fa605b30cd542b780773a8e2184ce7fbbdbe 100644 (file)
@@ -2,7 +2,7 @@
 
 Html({
        title => 'keyboard cheat sheet',
-       version => '1.0',
+       version => '1.1',
        stylesheet => [qw( light dark circus mono red )],
        keys => 1,
 });
index 56f9d03d8a206769aeb12918ab2edff127e9e65c..199a49c3b28a622d7b27c23823929ae3ed078dab 100644 (file)
--- 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'
index 269b0d623746ecf243d357533f05a504bd0d7f8b..d1b394f1449f0aef5c925c87bf700063175a53ab 100644 (file)
--- 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}
index 5879a4ca6fd4f0154c54609f3db61c9348779926..fbf3b40a7804f6d5f6cceaf59dcf841bf53f9b0c 100644 (file)
--- 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}
index a5ef991145750b9fbcb617837a58b5e481059a3a..0476a9e4ae14854e56aa90fce0996f40f29bf4bb 100644 (file)
--- 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 f5763a1a065db0caa69b70d7cee74a12d84f7385..bb2ee71c27ce3db7caacfb6ca61d321d32177153 100644 (file)
--- 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;
index ef730a49cccf4a54229ead63436d141b919c66ea..6d6057c5249492803ad32a7c0cabbdd6fcbc10c4 100644 (file)
@@ -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 9a115803b2d4c8dab08aa670f54ee59f853b2a88..39d498b567a4e12ca9fdea14a1fd3526fc3b073f 100644 (file)
--- 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.",
index cd165a8b92ef9e8efc9e613c72839ccb3075496d..08ea859b47b15126d8b097eb9d40783730c8b462 100644 (file)
@@ -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.",