Thread: [Gambas-devel-svn] SF.net SVN: gambas:[7669] gambas/trunk/main/gbx (Page 7)
Brought to you by:
gambas
From: <ga...@us...> - 2016-03-26 13:09:22
|
Revision: 7669 http://sourceforge.net/p/gambas/code/7669 Author: gambas Date: 2016-03-26 13:09:20 +0000 (Sat, 26 Mar 2016) Log Message: ----------- [INTERPRETER] * NEW: Stream.IsTerm is a new property that returns if a stream is a terminal. * NEW: Stream.Term.Resize() is a new method that resizes a terminal. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_c_file.c gambas/trunk/main/gbx/gbx_c_file.h gambas/trunk/main/gbx/gbx_class_init.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-04-10 13:10:27
|
Revision: 7735 http://sourceforge.net/p/gambas/code/7735 Author: gambas Date: 2016-04-10 13:10:25 +0000 (Sun, 10 Apr 2016) Log Message: ----------- [INTERPRETER] * NEW: Stream.Term.Width and Stream.Term.Height are two new properties that return the size of the terminal associated with the stream, if any. * NEW: As soon as the terminal size is read on any stream with the previous properties, the SIGWINCH signal is watched, and the Application_Resize() public method of the startup class is called each time this signal is catched, meaning that the terminal has been resized. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_c_file.c gambas/trunk/main/gbx/gbx_c_file.h gambas/trunk/main/gbx/gbx_class_info.c gambas/trunk/main/gbx/gbx_class_init.c gambas/trunk/main/gbx/gbx_exec_loop.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-07-07 08:50:36
|
Revision: 7807 http://sourceforge.net/p/gambas/code/7807 Author: gambas Date: 2016-07-07 08:50:33 +0000 (Thu, 07 Jul 2016) Log Message: ----------- [INTERPRETER] * BUG: The error backtrace is now reset only when raising a new error. Consequently, the information is now kept when an error is propagated. Modified Paths: -------------- gambas/trunk/main/gbx/gb_error.c gambas/trunk/main/gbx/gb_error.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-08-30 22:26:16
|
Revision: 7879 http://sourceforge.net/p/gambas/code/7879 Author: gambas Date: 2016-08-30 22:26:15 +0000 (Tue, 30 Aug 2016) Log Message: ----------- [INTERPRETER] * BUG: Fix detection of errors occuring inside interpreter API. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_debug.c gambas/trunk/main/gbx/gbx_object.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-11-18 14:50:41
|
Revision: 7983 http://sourceforge.net/p/gambas/code/7983 Author: gambas Date: 2016-11-18 14:50:40 +0000 (Fri, 18 Nov 2016) Log Message: ----------- [INTERPRETER] * BUG: Make CStr() and CDate() mutually coherent, by internally converting to UTC dates only. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_api.h gambas/trunk/main/gbx/gbx_date.c gambas/trunk/main/gbx/gbx_date.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-12-31 12:02:59
|
Revision: 8031 http://sourceforge.net/p/gambas/code/8031 Author: gambas Date: 2016-12-31 12:02:58 +0000 (Sat, 31 Dec 2016) Log Message: ----------- [INTERPRETER] * BUG: Forbid continuing and stay in debugger when an unhandled error is raised. This prevent crashes when an error occurs during variable initialization. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_exec.c gambas/trunk/main/gbx/gbx_exec.h gambas/trunk/main/gbx/gbx_exec_loop.c gambas/trunk/main/gbx/gbx_stack.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-11 16:57:45
|
Revision: 8052 http://sourceforge.net/p/gambas/code/8052 Author: gambas Date: 2017-01-11 16:57:44 +0000 (Wed, 11 Jan 2017) Log Message: ----------- [INTERPRETER] * BUG: Tasks do not inherit signal handler pipe anymore, they recreate it instead. Otherwise you have interferences with the parent process of the task, and some signals are lost. * BUG: Buffered streams now take the internal stream flag "available_now" into account. No idea why that was disabled. * BUG: Standard streams now set the internal stream flag "available_now" if they are not connected to a terminal. Which may not be necessarily accurate, so it is a temporary change. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_c_file.c gambas/trunk/main/gbx/gbx_c_process.c gambas/trunk/main/gbx/gbx_c_task.c gambas/trunk/main/gbx/gbx_signal.c gambas/trunk/main/gbx/gbx_signal.h gambas/trunk/main/gbx/gbx_stream_buffer.c gambas/trunk/main/gbx/gbx_watch.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-06-09 23:00:47
|
Revision: 8142 http://sourceforge.net/p/gambas/code/8142 Author: gambas Date: 2017-06-09 23:00:45 +0000 (Fri, 09 Jun 2017) Log Message: ----------- [INTERPRETER] * BUG: Don't raise events just after a process has been started and has just been terminated. Postpone them. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_archive.c gambas/trunk/main/gbx/gbx_c_process.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |