Skip to content

Releases: lblod/ember-rdfa-editor-lblod-plugins

Release 16.0.1

16 Jan 15:32
Compare
Choose a tag to compare

Patch Changes

  • #375 93d3f7b Thanks @elpoelma! - Widen support for ember-intl to include version 5.7.2 due to outstanding issues with the 6.x releases.

Release 16.0.0

15 Jan 14:12
Compare
Choose a tag to compare

Major Changes

Release 15.2.2

02 Jan 12:47
Compare
Choose a tag to compare

Patch Changes

Release 15.2.1

15 Dec 07:20
deada93
Compare
Choose a tag to compare

Patch Changes

Release 15.2.0

14 Dec 15:37
f9f7fba
Compare
Choose a tag to compare

Minor Changes

Release 15.1.0

23 Nov 20:15
Compare
Choose a tag to compare

Minor Changes

  • #343 e9b428c Thanks @dkozickis! - GN-4130: Move styles for data-editor-highlight

    Styles that were applied to elements with the data-editor-highlight attribute (used by citation-plugin) moved from
    editor repository to this repo as part of the citation-plugin.

  • #351 f6fa933 Thanks @elpoelma! - Remove explicit creation of rdfa-id attributes

Patch Changes

Release 15.0.0

20 Oct 16:21
Compare
Choose a tag to compare

Major Changes

  • #323 5bedaab Thanks @elpoelma! - Remove usage of component helper in preparation of embroider-compatibility.

    This removal also causes a change in the variable-plugin insert-component API, the insert-components now need to be passed directly (instead of their path).

    Before:

    get variableTypes(): VariableConfig[] {
      return [
        {
          label: 'text',
          component: {
            path: 'variable-plugin/text/insert',
          },
        },
        {
          label: 'location',
          component: {
            path: 'variable-plugin/location/insert',
            options: {
              endpoint: 'https://dev.roadsigns.lblod.info/sparql',
            },
          },
        },
      ];
    }

    After:

    import TextVariableInsertComponent from '@lblod/ember-rdfa-editor-lblod-plugins/components/variable-plugin/text/insert';
    import LocationInsertComponent from '@lblod/ember-rdfa-editor-lblod-plugins/components/variable-plugin/location/insert';
    ...
    get variableTypes() {
      return [
        {
          label: 'text',
          component: TextVariableInsertComponent,
        },
        {
          label: 'location',
          component: LocationInsertComponent,
          options: {
            endpoint: 'https://dev.roadsigns.lblod.info/sparql',
          },
        },
      ];
    }
  • #333 04ea965 Thanks @elpoelma! - Drop support for ember 3.28
    The minimum required version of ember-source is now 4.8.0.
    The 5.x range remains untested.

Minor Changes

Patch Changes

Release 14.2.0

20 Oct 08:34
Compare
Choose a tag to compare

Minor Changes

  • #322 a168dc5 Thanks @x-m-el! - For article-structure plugin

    • The StructureSpec's constructor now also contains the optional argument state (an EditorState)
    • The existing structures' placeholders are translated using the document language
      • This is only the case if emberApplication plugin is configured.
        Recommended change: activate emberApplication plugin
      • Will fallback to translating based on browser locale (=old logic) if emberApplication plugin is not configured
  • #322 690738f Thanks @x-m-el! - For decision-plugin and standard-template-plugin

    Make use of state argument to translate placeholders based on document language instead of browser locale
    Depending on the place where placeholders are defined either of the following logic happens:

    • will always use document language
    • will use document language if emberApplication plugin is active. If not, defaults to browser locale (like before)

Patch Changes

  • #322 5ceca68 Thanks @x-m-el! - Using "show as words" for a number variable will convert the number to a string in the language in the document, instead of always showing Dutch.

Release 14.1.0

16 Oct 09:50
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #317 1d28bc9 Thanks @dkozickis! - GN-4538: Display correctly that there are no streets when searching in the address plugin

  • #316 e109035 Thanks @x-m-el! - - Bugfix: allowCustomFormat for rdfa-date variable will now disable custom formats if set to false.

    • No changes for old documents: date variables in old documents will allow custom formats, which is the default.

Release 14.0.0

02 Oct 13:37
Compare
Choose a tag to compare

Major Changes

  • #314 a4402a0 Thanks @piemonkey! - Remove Current Session Service from plugins, now classificatie uri needs to be passed in to the besluit-type plugin

  • #313 d4127ce Thanks @piemonkey! - Breaking change: Standard Template plugin now requires a list of templates to be passed in.
    No depends on ember-data.

Patch Changes

  • #309 679b030 Thanks @dkozickis! - GN-4539: Rename besluit to gemeentebesluit

  • #310 b07035f Thanks @dkozickis! - GN-4501: Fail gracefully when house number does not exist

    When house number does not exist provide user with an alternative of inserting
    address with just the street information.

  • #309 679b030 Thanks @dkozickis! - GN-4539: Rename references to decision in Citation plugin

    Instead of using decision use legalDocument in Citation plugin, to not confuse with besluit usage (which also means "decision" in Flemish).

  • #311 bb8eee6 Thanks @dkozickis! - GN-4544: Decision title sometimes is not present from public decisions query

  • #308 39f3105 Thanks @dkozickis! - GN-4534: Citation insert card filter enhancement

  • #307 03ab824 Thanks @elpoelma! - Allow municipality and street fields of address-variable to be cleared when editing

  • #312 52420c6 Thanks @elpoelma! - reset address-edit input fields when currentAddress property changes