ArtPress is a highly customizable theme for WordPress.
To create an installable zip file, run the following in the top level ArtPress directory
./ap.py -z <version suffix>
Where <version suffix>
is some string denoting a version E.g. :
./ap.py -z 1.2.3
will produce a zip file called ArtPress1.2.3.zip in the export/
directory.
Publishing a new version of ArtPress can be achieved by using the following command in the top level ArtPress directory
./ap.py -p <level>
Where <level>
is either major
, minor
or patch
. E.g. :
./ap.py -p minor
would update a current version of 1.2.3
to 1.3.0
To do a test publish
./ap.py -t -p minor
ensure that the -t
flag precedes the -p
flag or else the -t
flag is not recognized
and a real publish event takes place!
To make the ap.py
extra verbose pass it the -v
flag with some other flags.
./ap.py -v -z 1.2.3
./ap.py -v -t -p major