Skip to content

Releases: dahlia/seonbi

Seonbi 0.3.6

16 Feb 04:31
0.3.6
bd08708
Compare
Choose a tag to compare

Released on February 16, 2023.

  • The iconv flag became ignored on Windows, because the flag had never worked on Windows.

  • Fixed a bug that seonbi.exe --help had suddenly terminated with the below error message on Windows: [#30]

    <stdout>: commitBuffer: invalid argument (invalid character)
    

Seonbi 0.3.5

13 Feb 17:28
0.3.5
9613b71
Compare
Choose a tag to compare

Released on February 13, 2023.

  • Official builds for Windows now contain required dynamic libraries (*.dll) besides executables (seonbi.exe & seonbi-api.exe). [#2]
  • Fixed a bug where Sino-Korean words that were not listed in the dictionary sometimes had been inaccurately phoneticized so that Initial Sound Law (頭音法則) had been applied to non-initial hanja of a word too. [#20]
  • Updated the Standard Korean Language Dictionary data (data/ko-kr-stdict.tsv) to the revision 2023-02.

Seonbi 0.3.4

17 Jan 18:58
0.3.4
6b158a3
Compare
Choose a tag to compare

Released on January 18, 2023.

  • Updated the Standard Korean Language Dictionary data (data/ko-kr-stdict.tsv) to the revision 2022-12.

Seonbi 0.3.3

10 Sep 05:55
0.3.3
ee1a3e5
Compare
Choose a tag to compare

Released on September 9, 2022.

  • Updated the Standard Korean Language Dictionary data (data/ko-kr-stdict.tsv) to the revision 2022-09.
  • Fixed a bug that Sino-Korean words are not phoneticized to Korean custom readings (習慣音) according to folk readings (俗音) and erroneous readings (訛音). Now such words are phoneticized to the most usual readings according to Standard Korean Language Dictionary. For example, 困難 is no more phoneticized to 곤난 but 곤란 instead. [#22]

Seonbi 0.3.2

10 Aug 18:52
0.3.2
c61307c
Compare
Choose a tag to compare

Released on August 11, 2022.

  • HTTP API now allows any headers from cross-origin. (Previously, it allowed only Content-Type.)
  • HTTP API now responds with header Vary: Origin for more accurate cache control.

Seonbi 0.3.1

26 Nov 18:37
0.3.1
Compare
Choose a tag to compare

Released on November 27, 2021.

  • Added prebuilt executable binaries for Apple Silicon (macos-arm64).

Seonbi 0.3.0

18 Nov 16:40
0.3.0
Compare
Choose a tag to compare

Released on November 18, 2021.

  • Since this version, it requires GHC 8.8.* at least, and supports GHC 9.0.* at most.

  • Now supports several content types besides HTML/XHTML. The below list shows all supported content types: [#18]

    • text/html (previously non-XHTML mode)
    • application/xhtml+xml (previously XHTML mode)
    • text/plain (added)
    • text/markdown (added)

    The below Haskell APIs changed:

    • Added Text.Seonbi.ContentTypes module.
    • Added contentType field for Configuration m a.
    • Removed xhtml field for Configuration m a in favor of new contentType field for the same type.

    The below CLI options changed:

    • Added -t/--content-type option with the default value text/html.
    • Removed Removed -x/--xhtml option in favor of new -t/--content-type option. In order to use XHTML mode, give it -t application/xhtml+xml option.

    The below HTTP APIs changed:

    • Added a mandatory field "content" to requests.
    • Deprecated the "sourceHtml" field of requests in favor of the new "content" field.
    • Added an optional field "contentType" with the default value "text/html" to requests.
    • Deprecated the "xhtml" field of requests in favor of the new "contentType" field. The legacy field will be gone in the next minor release. In order to use XHTML mode, configure "contentType" field with "application/xhtml+xml".
    • Added "content" field to responses.
    • Deprecated the "resultHtml" field of responses in favor of the new "content" field. The legacy field is not provided for non-HTML types, and will be gone in the next minor release.
    • Added "contentType" field to responses.
    • Added "warnings" field to responses.
  • Added Text.Seonbi.Html.Lang module.

  • Some transformations inappropriate for non-Korean contents are no more applied to elements written in other languages than Korean. The below functions respect elements lang attributes: [#10]

    • Text.Seonbi.Hanja.phoneticizeHanja
    • Text.Seonbi.Punctuation.normalizeStops
  • Removed several functions from Text.Seonbi.Trie module:

    • toListBy
    • lookupBy
    • submap
    • match
    • matches
    • alterBy
    • adjust
    • delete
    • mapBy
    • filterMap
  • Text.Seonbi.Trie.Trie type is not an instance of the following typeclasses anymore:

    • Generic a => Generic (Trie a)
    • Binary a => Binary (Trie a)
    • Generic1 Trie
    • type Rep (Trie a)
    • type Rep1 Trie
  • Added Text.Seonbi.Html.Printer.printText function.

  • Added Text.Seonbi.Html.Tag.headingLevel function.

  • Added Text.Seonbi.Html.Tag.headingTag function.

  • Added Text.Seonbi.Html.Tag.headingTag' function.

  • Added Text.Seonbi.Html.TagStack.last function.

Seonbi 0.2.3

26 Sep 10:36
0.2.3
Compare
Choose a tag to compare

Released on September 26, 2021.

  • Fixed stops normalizer's bug where trailing spaces following stops had been trimmed after normalized.
  • Fixed stops normalizer's buf where unnecessary trailing spaces following stops had been inserted after normalized. In particular, unnecessary spaces between stops and closing parentheses/brackets are no more inserted.

Seonbi 0.2.2

24 Sep 15:44
0.2.2
Compare
Choose a tag to compare

Released on September 25, 2021.

  • Fixed stops normalizer's bug where unnecessary trailing spaces following stops had been left even after normalized.
  • Fixed stops normalizer's bug where commas followed by tag boundaries had been not normalized.

Seonbi 0.2.1

23 Sep 10:41
0.2.1
Compare
Choose a tag to compare

Released on September 23, 2021.

  • Updated the Standard Korean Language Dictionary data (data/ko-kr-stdict.tsv) to the revision 2021-09.