Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-11 | Removed _G.textadept. | ||
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions. | |||
2010-06-11 | Renamed textadept.events to events, renamed 'handle' and 'add_handler'. | ||
2010-03-10 | Removed side pane. | ||
2010-01-07 | Updated copyright to 2010. | ||
2009-07-12 | Use branded Scintilla structs to remove 'using namespace Scintilla' for OSX. | ||
2009-07-09 | Textadept now compiles as C code. | ||
2009-07-08 | Replace lua_dialog with gcocoadialog. | ||
2009-07-08 | Extended the event system to include project manager, find, command entry, etc. | ||
2009-07-08 | Linux version can be installed and run from anywhere. | ||
2009-02-15 | Minor refactoring, more encapsulation, and code cleanup. | ||
2009-02-14 | Refactored Project Manager code. | ||
2009-02-14 | Code cleanup. | ||
2009-02-14 | Added textadept.context_menu field for a custom popup context menu. | ||
2009-01-27 | Encapsulate cec_store so it's not global. | ||
2009-01-27 | Changed cec_store from GtkTreeStore type to GtkListStore. | ||
2009-01-27 | Moved Lua Command Entry code into its own separate section like PM and Find. | ||
2009-01-26 | Menu label text is irrelevant for PM menu actions due to l10n; focus on menu_id. | ||
2009-01-24 | Added Find in Files support. | ||
2009-01-08 | Reformatted all C and Lua code to a single standard for each language. | ||
2009-01-03 | Added localization support. | ||
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module. | |||
2009-01-01 | Updated copyright dates for 2009. | ||
2008-11-11 | Find functionality is mostly handled by Lua now. | ||
2008-11-08 | Added Lua interface functions to mimick find box button presses. | ||
2008-11-01 | Added support for some AppleEvents, use Scintilla namespace on OSX. | ||
2008-10-27 | Updated Textadept to compile and run on OSX with native GTK framework. | ||
2008-09-23 | Merged overloaded 'l_handle_event' functions into one with default parameter. | ||
2008-09-23 | Merged 'set_docstatusbar_text' function into 'set_statusbar_text' with a flag. | ||
2008-09-23 | Removed unused 'resize_split' function. | ||
2008-09-21 | Textadept gracefully exits when errors occur in core/init.lua. | ||
Originally the error message was displayed in Textadept, but any attempts to close the program would fail because core/init.lua wasn't properly loaded. Errors from 'l_load_script' are displayed in a dialog box now. | |||
2008-09-21 | Code cleanup. | ||
2008-09-21 | Use textadept.exe path as textadept_home instead of C:\Program Files\textadept. | ||
2008-09-19 | Added preliminary support for Textadept on Windows. | ||
2008-08-08 | Replaced C code for setting default editor and buffer properties with Lua code. | ||
2008-06-18 | Re-structured src/textadept.h. | ||
2008-06-17 | Added Tab-completion to Lua Command Entry. | ||
2008-06-15 | Merged properties.h into textadept.h and textadept.c. | ||
2008-06-15 | Eliminated build warnings. | ||
2008-03-03 | Updated copyright notice to include the year 2008. | ||
2008-02-03 | Added textadept.reset() function for resetting the Lua state. | ||
The l_init function takes an additional reinit boolean as a result. When resetting, the package.loaded and _G tables are cleared. Since the textadept.buffers, textadept.views, and arg tables were originally in _G, they were moved to the LUA_REGISTRYINDEX table so as not to be lost. They are still available in _G, but as links to the tables in LUA_REGISTRYINDEX. textadept.reset() sets a global RESETTING boolean to true when init.lua is re-run so things like reloading a session or reloading files from the command line do not occur. The boolean is set to nil afterwards. | |||
2007-11-08 | Moved GTK/GDK keypress mask logic from lua_interface.c to textadept.c. | ||
2007-11-03 | Various reformatting for consistency. | ||
2007-09-26 | Changed warn to be static to fix compile errors; src/textadept.h | ||
2007-09-23 | Rearranged and cleaned up src/lua_interface.c; moved warn to src/textadept.h. | ||
2007-09-23 | Renamed l_handle_signal to l_handle_event. | ||
2007-09-23 | Added dynamically defined GTK menus and menubar. | ||
2007-08-06 | Initial import of core C files. | ||