Skip to content

Commit

Permalink
chg: pkg: changed version for the new release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikitex70 committed Oct 22, 2023
1 parent bfca80f commit 681e6b4
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
56 changes: 55 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,61 @@
# Changelog


## 1.4.7 (2023-06-24)
## v1.4.8 (2023-10-22)

### New

* Added support for `drawio` diagram extension (#131) [Michele Tessaro]

### Fix

* Fixes wrong number of arguments exception. [Liane Hampe]

The macro drawio_dmsf will raise an exception when a user applies
the macro to a previously uploaded drawio file (file ending does not
matter).

The error occurs in DmsfFileRevision#disk_file which has changed four
month ago.

* Fixes uncaught type error. [Liane Hampe]

Math support will only be provided if the user has checked the
corresponding box in plugin settings. When no math support is required
the javascript snippet should be ignored.

Since only MathJax will be ignored and not MathJax.Hub, javascript will
raise a type error. This is fixed with a further condition.

### Other

* Adds some unit tests. [Liane Hampe]

Will add some unit tests for drawio macros.

* Extends error message. [Liane Hampe]

The extension drawio is missing in an error message listing supported
diagram formats.

* Changes spelling in heredoc string. [Liane Hampe]

Will remove inverted comma (') from heredoc string since there are
interpreted as the beginning of a normal string
('text between inverted comma') which won't be closed.

The results is an unreadable code in some IDE such that vscode.

* Changes spelling in heredoc string. [Liane Hampe]

Will remove inverted comma (') from heredoc string since there are
interpreted as the beginning of a normal string
('text between inverted comma') which won't be closed.

The results is an unreadable code in some IDE such that vscode.


## v1.4.7 (2023-06-24)

### Fix

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ This macro handles diagrams saved as attachments of issues or wiki pages.

The supported diagrams format are:
* `xml`: normal diagram source in XML format
* `drawio`: an alias for `xml`, used to load exported diagrams from the [online ditor](https://app.diagrams.net/) without changing the file extension
* `png`: PNG image with an embedded XML source of the diagram (PNG+XML)
* `svg`: SVG image with an embedded XML source of the diagram (SVG+XML)

Expand Down
2 changes: 1 addition & 1 deletion init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name 'Redmine Drawio plugin'
author 'Michele Tessaro'
description 'Wiki macro plugin for inserting drawio diagrams into Wiki pages and Issues'
version '1.4.7'
version '1.4.8'
url 'https://github.com/mikitex70/redmine_drawio'
author_url 'https://github.com/mikitex70'

Expand Down

0 comments on commit 681e6b4

Please sign in to comment.