Incremented version to 2019-01-28-3 and updated ReadMe

This commit is contained in:
Said Achmiz 2019-01-28 23:49:16 +00:00
parent 7dab93d29e
commit b4e3d57ee0
3 changed files with 20 additions and 6 deletions

View File

@ -1,17 +1,23 @@
Name: Papyrus Name: Papyrus
Version: 2019-01-28-2 Version: 2019-01-28-3
Description: Skin for PmWiki Description: Skin for PmWiki
Author: Said Achmiz Author: Said Achmiz
Contact: said@saidachmiz.net Contact: said@saidachmiz.net
Copyright: Copyright 2019 Said Achmiz Copyright: Copyright 2019 Said Achmiz
xhtml validation: Passed (http://validator.w3.org/) xhtml validation: Passed (http://validator.w3.org/)
Files: Files:
papyrus.tmpl - template file papyrus.tmpl - template file
papyrus.css - style sheet papyrus.css - style sheet
papyrus.php - script file papyrus.php - script file
papyrus.jpg - papyrus background papyrus.jpg - papyrus background
ReadMe.txt - this file ReadMe.txt - this file
wikilib.d/ - directory of bundled wikipages
License:
This skin is released under the GNU General Public License This skin is released under the GNU General Public License
as published by the Free Software Foundation; either version as published by the Free Software Foundation; either version
@ -19,12 +25,18 @@ as published by the Free Software Foundation; either version
Installation: Installation:
1) Un-zip papyrus.zip into your skins directory
1) Unpack papyrus.tar.gz into your skins directory
2) Enable the papyrus skin in your config.php with: 2) Enable the papyrus skin in your config.php with:
$Skin = 'papyrus'; $Skin = 'papyrus';
Changelog
Changelog:
v. 2019-01-28-3
* Added bundled Site.EditForm and Site.EditQuickReference pages
* Revamped edit view
v. 2019-01-28-2 v. 2019-01-28-2
* Various tweaks and bug fixes * Various tweaks and bug fixes

View File

@ -1,7 +1,7 @@
/* PAPYRUS skin for PmWiki /* PAPYRUS skin for PmWiki
Copyright 2019 Said Achmiz Copyright 2019 Said Achmiz
Version: 2019-01-28-2 Version: 2019-01-28-3
More info at these URLs: More info at these URLs:
@ -15,6 +15,7 @@
* papyrus.tmpl (skin template) * papyrus.tmpl (skin template)
* papyrus.php (skin script file) * papyrus.php (skin script file)
* ReadMe.txt (instructions & info) * ReadMe.txt (instructions & info)
* wikilib.d/ (directory of bundled wikipages)
*/ */
/*************/ /*************/

View File

@ -3,7 +3,7 @@
/* PAPYRUS skin for PmWiki /* PAPYRUS skin for PmWiki
Copyright 2019 Said Achmiz Copyright 2019 Said Achmiz
Version: 2019-01-28-2 Version: 2019-01-28-3
More info at these URLs: More info at these URLs:
@ -17,11 +17,12 @@
* papyrus.jpg (background pattern) * papyrus.jpg (background pattern)
* papyrus.tmpl (skin template) * papyrus.tmpl (skin template)
* ReadMe.txt (instructions & info) * ReadMe.txt (instructions & info)
* wikilib.d/ (directory of bundled wikipages)
*/ */
global $FmtPV; global $FmtPV;
$FmtPV['$SkinName'] = '"Papyrus"'; $FmtPV['$SkinName'] = '"Papyrus"';
$FmtPV['$SkinVersion'] = '"2019-01-28-2"'; $FmtPV['$SkinVersion'] = '"2019-01-28-3"';
## Append the modification time to the URL as a GET parameter; this should be ignored ## Append the modification time to the URL as a GET parameter; this should be ignored
## by the web server, but is seen as part of the unique URL of the remote resource by ## by the web server, but is seen as part of the unique URL of the remote resource by