Releases: nyaosorg/go-windows-mbcs
Releases · nyaosorg/go-windows-mbcs
v0.4.2
- Fix: that transform.Transform types returned by the functions NewEncoder and NewDecoder fails when source text is larger than 4096 bytes
(See also nyaosorg/nyagos issue 431 ) - Remove
Deprecated
from Filter types and methods
- NewEncoder / NewDecoder 関数が返す transform.Transfomer 型が、ソーステキストが 4096 バイトよりも大きい時に失敗する問題を修正
( nyaosorg/nyagos issue 431 も参照のこと ) - Filter型とそのメソッドから
Deprecated
を外した。
v0.4.1
- Unexpose types (
Decoder
/Encoder
) that should not be.- Some packages using them could not be built on Linux even if it could be built on Windows.
- Use the functions
NewDecoder
orNewEncoder
instead.
- 公開すべきでなかった型 (
Decoder
/Encoder
) を非公開 (_Decoder
/_Encoder
) とした- それらを使っているパッケージが Windows ではビルドできていても、Linux ではビルドできませんでした。
- かわりに
NewDecoder
もしくはNewEncoder
を使ってください。
v0.4.0
- Add functions:
NewEncoder(CODEPAGE)
andNewDecoder(CODEPAGE)
- On Linux, get the current encoding from the environment variable $LC_ALL and $LANG.
Now supporting encoding on Linux
932: japanese.ShiftJIS,
936: simplifiedchinese.GBK,
949: korean.EUCKR, // Unified Hangul Code
950: traditionalchinese.Big5,
951: traditionalchinese.Big5, // Big5-HKSCS
50222: japanese.ISO2022JP,
51932: japanese.EUCJP,
51949: korean.EUCKR,
52936: simplifiedchinese.HZGB2312,
65001: UTF8
v0.3.1
v0.3.0
- Add new types:
Decoder
,Encoder
,AutoDecoder
as implements of transform.Transformer - Deprecate the type:
Filter
and its methods and constructor
v0.2.0
v0.1.0
The version used in nyagos 4.4.13_1