Custom item name - PreCyz/GitDiffGenerator GitHub Wiki
You can use some predefine values when you are defining the file name prefix.
When you use predefined values, then these values will be replaced by the real ones. In above example {CURRENT_YEAR}
,
{CURRENT_MONTH_NAME}
, {CURRENT_WEEK_NUMBER}
will be replaced by the real values. Remember that your copyright item and the name of produced file will have the same name.
Here is an example to clarify things. Lets use the pattern from above picture as a base and assume that today is 2019-11-25
then the generated name will be: PR-2019-AUGUST-48
.
The list of predefine values is as follows:
CURRENT_DATE,
CURRENT_YEAR,
CURRENT_WEEK_NUMBER,
CURRENT_MONTH_NAME,
current_month_name,
CURRENT_MONTH_NUMBER,
START_DATE,
START_DATE_YEAR,
START_DATE_MONTH_NAME,
start_date_month_name,
START_DATE_MONTH_NUMBER,
START_DATE_WEEK_NUMBER,
END_DATE,
END_DATE_YEAR,
END_DATE_MONTH_NAME,
end_date_month_name,
END_DATE_MONTH_NUMBER,
END_DATE_WEEK_NUMBER
You may noticed that there are values written with capitol letters and non-capitol letters. It means that if you want to have start date month name written with non-capitol letters then you must choose following pattern {start_date_month_name}
. If you want to have the same value but written with capitol letters then choose {START_DATE_MONTH_NAME}
.
The UI contains smart autocompletion so you will have no problem to use predefined values. Autocompletion is case sensitive.