Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-12 | Updated to CDK 5.0-20200923. | ||
2020-10-12 | Updated LuaDoc for `ui.command_entry.append_history()`. | ||
Clarify that it's not normally needed. | |||
2020-10-12 | Added `ui.command_entry.append_history()` for manually appending history. | ||
Normally history is auto-appended by the default '\n' key handler, but some custom modes may have their own '\n' handlers and did not have a way to append history. | |||
2020-10-11 | Updated LuaDoc. | ||
2020-10-11 | Updated contact information. | ||
2020-10-11 | Fixed typo in Russian translation. | ||
2020-10-08 | Small LuaDoc update. | ||
2020-10-08 | More German translation updates. | ||
Thanks to Christof Böckler. | |||
2020-10-08 | Fixed bug listing bookmarks for all open buffers. | ||
2020-10-08 | Broke up textadept-modules into individual module repositories. | ||
Zip them all into a single archive during the build process. | |||
2020-10-08 | Updated spellchecking tests with various, non-UTF-8 encodings. | ||
2020-10-08 | Added `textadept.history` module for recording and navigating position history. | ||
2020-10-06 | `make clean-deps` should also remove Scintillua, Scinterm, and gtDialog zips. | ||
Otherwise, `make deps` and `make deps NIGHTLY=1` may not download the right ones. | |||
2020-10-06 | Only change EOL mode if an EOL is actually detected. | ||
2020-10-05 | Use CRLF line endings on Windows by default. | ||
2020-10-05 | Increase the width of dialogs that hold filenames in the terminal version. | ||
Long filenames are clipped. | |||
2020-10-05 | Fixed advancing caret for incremental find when text is not found. | ||
2020-10-05 | Various manual and documentation updates. | ||
2020-10-05 | Resolved conflicting menu mnemonics in "Tools" menu for English locale. | ||
2020-10-05 | Resize line number margin in view zoom. | ||
2020-10-05 | Updated German translation. | ||
Thanks to Christof Böckler. | |||
2020-10-04 | Collect garbage on reset. | ||
External modules that have finalizers (__gc metamethod) need to be run now, or else segfaults can occur when running the gc later with stale data. | |||
2020-10-02 | Added Scintilla patch for avoiding crashes with untrimmed XPM images. | ||
Once the patch submitted upstream is accepted, this patch will not be needed. | |||
2020-10-02 | Added Scintilla patch needed for drawing strikeout tabs in the terminal version. | ||
Once the patch submitted upstream is accepted, this patch will not be needed. | |||
2020-10-02 | Fixed python3 auto-detection for run commands. | ||
2020-10-02 | Command entry also considers contents of `textadept` as globals. | ||
Include buffer/view constants as well, which should have been there anyway. | |||
2020-10-02 | Fixed bad test. | ||
It was failing in a group setting, not individually. | |||
2020-10-02 | Handle startup errors more nicely. | ||
This also prevents a crash on exit in some circumstances, due to mismatched metatables. | |||
2020-10-01 | Moved 'docs/markdowndoc.lua' into 'scripts/markdowndoc.lua'. | ||
2020-10-01 | Added tag textadept_11.0_beta for changeset bb99fd89eb70 | ||
2020-10-01 | Handle CRLF in locale files. | ||
Previously, LF was expected, so CR (if present) would be in every message. | |||
2020-10-01 | Mark alpha and beta releases as pre-releases. | ||
2020-09-30 | Updated code plots. | ||
2020-09-30 | Updated stale links in changelog. | ||
2020-09-30 | Updated changelog. | ||
2020-09-30 | Updated Lua autocompletion and documentation. | ||
2020-09-30 | Updated for 11.0 beta. | ||
2020-09-30 | Document building Textadept using GTK 3.x instead of 2.24. | ||
2020-09-29 | Updated copyright information. | ||
2020-09-29 | Updated to latest gtdialog revision for improvements filtering huge lists. | ||
2020-09-27 | Fixed `io.quick_open()` not doing anything when file limit was exceeded. | ||
2020-09-25 | Updated Spanish translation. | ||
Thanks to Manuel Montenegro. | |||
2020-09-25 | Ensure version is included in Manual and API Documentation headers. | ||
2020-09-20 | Added code counting script and inline plots. | ||
Removed redundant stats link. | |||
2020-09-20 | Added option to disable temporary key shortcut compatibility checking. | ||
The compatibility checker is not perfect, and it serves primarily to remind users to double-check their key shortcuts for Textadept 11. | |||
2020-09-19 | Updated to Scintilla 4.4.5 and Scintillua 4.4.5-1. | ||
2020-09-19 | Keep download link in GitHub release notes. | ||
Having the direct links in e-mail notifications seems valuable. It also saves having to search through release assets in the Web UI. | |||
2020-09-19 | Added `events.COMMAND_TEXT_CHANGED`. | ||
This is analagous to `events.FIND_TEXT_CHANGED`. | |||
2020-09-19 | Added `events.FILE_{BEFORE,AFTER}_RELOAD` and save/restore bookmarks. | ||
Also moved buffer state save/restore into ui module. | |||
2020-09-19 | Added `ui.update()` for unit tests. | ||