Changes in v1.22.0 (English)
User-Facing Changes
- Prevent creation of empty lines at EOF without newline characters. (#79)
- Fixed an issue where the version string was empty when installed via 'go install'. (#82, #84; Thanks to @gsmitheidw)
- Add
-versionoption (#82, #85; Thanks to @gsmitheidw)
API Changes & Deprecations
- Deprecate
KeyEventArgs.CursorRowandCursorCol; useCurrentRow()andCurrentCol()instead. (#80) - Export
Application.isDirtyasIsDirty(#81)
Internal & Build Improvements
- Improved build portability by replacing local helper tools with
go run(make release,make manifest,make readmeandmake docs). (#83, #87)
Changes in v1.22.0 (Japanese)
ユーザインターフェイス変更
- EOF に到達した際、改行を含まない 0 バイト行を生成しないようにした。 (#79)
- go install でインストールした際に、バージョン情報が表示されない問題を修正した (#82, #84; Thanks to @gsmitheidw)
-versionオプションを追加 (#82, #85; Thanks to @gsmitheidw)
API 変更
KeyEventArgs.CursorRow,CursorColを Deprecated とした。今後は、かわりにCurrentRow(),CurrentCol()を使用のこと (#80)Application.isDirtyをIsDirtyとして公開とした (#81)