Template:Version: Difference between revisions

From Untold Dawn
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
     }}
     }}
   | <!-- else no 'since' -->
   | <!-- else no 'since' -->
     {{#if:{{{until|}}|
     {{#if:{{{until|}}}|
       This {{{type|page}}} applies up to version {{{until}}} (current: {{{1}}})
       This {{{type|page}}} applies up to version {{{until}}} (current: {{{1}}})
       | This {{{type|page}}} applies to version {{{1}}}
       | This {{{type|page}}} applies to version {{{1}}}
Line 33: Line 33:


   <!-- Add status information if applicable -->
   <!-- Add status information if applicable -->
   {{#if:{{{status|}}|
   {{#if:{{{status|}}}|
     {{#ifeq:{{{status}}}|deprecated
     {{#ifeq:{{{status}}}|deprecated
       | , but is now deprecated.
       | , but is now deprecated.
Line 46: Line 46:


   <!-- Add notes link if provided -->
   <!-- Add notes link if provided -->
   {{#if:{{{notes|}}|
   {{#if:{{{notes|}}}|
     See [[{{{notes}}}]] for more details.
     See [[{{{notes}}}]] for more details.
   }}
   }}

Revision as of 23:28, 10 December 2024

This template helps manage documentation that is version-specific. It allows you to specify which versions a page or section applies to, indicate if something is deprecated, and link to release notes.

Usage

{{Version
|version          <!-- Required. The main version this content applies to -->
|since=            <!-- Optional. The version where this feature was introduced -->
|until=            <!-- Optional. The last version where this feature applies -->
|status=           <!-- Optional. Can be 'deprecated' or 'removed' -->
|notes=            <!-- Optional. A page or section linking to detailed changelog/release notes -->
|type=             <!-- Optional. Defaults to 'page'. Could be 'section', 'feature', etc. -->
}}