From: Galen Charlton Date: Wed, 4 Nov 2015 17:10:43 +0000 (+0000) Subject: LP#1482336: use *.adoc as extension for extant release notes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=adb63b4a03e5c48a99642a7d9f205583780a77ff;p=evergreen%2Fpines.git LP#1482336: use *.adoc as extension for extant release notes Note that for any pending branches that already have release notes, the *.txt extension will still be recognized. This patch also adjusts the release notes script to account for the new name of the template file. Signed-off-by: Galen Charlton Signed-off-by: Galen Charlton --- diff --git a/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.adoc b/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.adoc new file mode 100644 index 0000000000..4602acf86b --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.adoc @@ -0,0 +1,9 @@ +PO Actions Selector Always Visible +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The actions selector is now always visible in the purchase order view, +even when no lineitems exist. With this, users can print PO's that +only contain direct charges. + +The custom "Add Brief Record" button is no longer present, since the +same action is accessible via the now-visible selector. diff --git a/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.txt b/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.txt deleted file mode 100644 index 4602acf86b..0000000000 --- a/docs/RELEASE_NOTES_NEXT/Acquisitions/po-actions-selector.txt +++ /dev/null @@ -1,9 +0,0 @@ -PO Actions Selector Always Visible -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -The actions selector is now always visible in the purchase order view, -even when no lineitems exist. With this, users can print PO's that -only contain direct charges. - -The custom "Add Brief Record" button is no longer present, since the -same action is accessible via the now-visible selector. diff --git a/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.adoc b/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.adoc new file mode 100644 index 0000000000..beb174ae81 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.adoc @@ -0,0 +1,11 @@ +Include parts label when sorting copies in the public catalog +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +The list of copies on the record details page now includes +the part label in the default sort order. + +Specifically, copies are now sorted by (in order), org unit, then +call number, then part label sortkey, then copy number, and +finally barcode. + +Previously, the hierarchy was org unit, then call number, +then copy number, and finally barcode diff --git a/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.txt b/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.txt deleted file mode 100644 index beb174ae81..0000000000 --- a/docs/RELEASE_NOTES_NEXT/OPAC/Adjust_copy_sort_order.txt +++ /dev/null @@ -1,11 +0,0 @@ -Include parts label when sorting copies in the public catalog -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The list of copies on the record details page now includes -the part label in the default sort order. - -Specifically, copies are now sorted by (in order), org unit, then -call number, then part label sortkey, then copy number, and -finally barcode. - -Previously, the hierarchy was org unit, then call number, -then copy number, and finally barcode diff --git a/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.adoc b/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.adoc new file mode 100644 index 0000000000..63cdf934f7 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.adoc @@ -0,0 +1,18 @@ +Feature Title +^^^^^^^^^^^^^ +Some text describing the feature. Blah blah blah blah blah blah blah blah +blah blah blah. + + * bullet + ** item 1 + ** item 2 + * list + +Subsection title ++++++++++++++++++++ +Subsection description, perhaps listing permissions needed, etc. + + * thing 1 + * thing 2 + * thing 3 + diff --git a/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.txt b/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.txt deleted file mode 100644 index 63cdf934f7..0000000000 --- a/docs/RELEASE_NOTES_NEXT/RELEASE_NOTE_TEMPLATE.txt +++ /dev/null @@ -1,18 +0,0 @@ -Feature Title -^^^^^^^^^^^^^ -Some text describing the feature. Blah blah blah blah blah blah blah blah -blah blah blah. - - * bullet - ** item 1 - ** item 2 - * list - -Subsection title -+++++++++++++++++++ -Subsection description, perhaps listing permissions needed, etc. - - * thing 1 - * thing 2 - * thing 3 - diff --git a/docs/RELEASE_NOTES_NEXT/create_release_notes.sh b/docs/RELEASE_NOTES_NEXT/create_release_notes.sh index 120dc2ffd3..151dc19fe5 100755 --- a/docs/RELEASE_NOTES_NEXT/create_release_notes.sh +++ b/docs/RELEASE_NOTES_NEXT/create_release_notes.sh @@ -50,7 +50,7 @@ for i in `ls -l|grep ^d|awk '{print $9}'`; do fi done -files=$(ls *{txt,adoc} 2>/dev/null | grep -v 'RELEASE_NOTE_TEMPLATE.txt') +files=$(ls *{txt,adoc} 2>/dev/null | grep -v 'RELEASE_NOTE_TEMPLATE.adoc') if [ "_$files" != "_" ]; then echo >> $outfile echo Miscellaneous >> $outfile