diff --git a/doc/cfgfile.rst b/doc/cfgfile.rst index d575c43..c07ca1b 100644 --- a/doc/cfgfile.rst +++ b/doc/cfgfile.rst @@ -283,7 +283,8 @@ the line with the key: `_, e.g. ``$SYSDIR``. The destination can also include ``${PRODUCT_NAME}``, which will be expanded - to the name of your application. + to the name of your application, and ``${PRODUCT_PUBLISHER}``, which will be expanded + to the publisher of your application. For instance, to put a data file in the (32 bit) common files directory: diff --git a/nsist/pyapp.nsi b/nsist/pyapp.nsi index 279a8c5..307c5fc 100644 --- a/nsist/pyapp.nsi +++ b/nsist/pyapp.nsi @@ -1,5 +1,6 @@ !define PRODUCT_NAME "[[ib.appname]]" !define PRODUCT_VERSION "[[ib.version]]" +!define PRODUCT_PUBLISHER "[[ib.publisher]" !define PY_VERSION "[[ib.py_version]]" !define PY_MAJOR_VERSION "[[ib.py_major_version]]" !define BITNESS "[[ib.py_bitness]]"