gambas-devel-svn Mailing List for Gambas (Page 5)
Brought to you by:
gambas
This list is closed, nobody may subscribe to it.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(20) |
Oct
(61) |
Nov
(35) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(27) |
Feb
(24) |
Mar
(13) |
Apr
(95) |
May
(58) |
Jun
(27) |
Jul
(52) |
Aug
(60) |
Sep
(134) |
Oct
(118) |
Nov
(55) |
Dec
(52) |
2008 |
Jan
(149) |
Feb
(73) |
Mar
(152) |
Apr
(68) |
May
(51) |
Jun
(44) |
Jul
(47) |
Aug
(44) |
Sep
(82) |
Oct
(48) |
Nov
(54) |
Dec
(41) |
2009 |
Jan
(82) |
Feb
(48) |
Mar
(30) |
Apr
(21) |
May
(51) |
Jun
(68) |
Jul
(142) |
Aug
(96) |
Sep
(76) |
Oct
(29) |
Nov
(52) |
Dec
(126) |
2010 |
Jan
(73) |
Feb
(77) |
Mar
(120) |
Apr
(79) |
May
(58) |
Jun
(39) |
Jul
(58) |
Aug
(91) |
Sep
(74) |
Oct
(26) |
Nov
(67) |
Dec
(77) |
2011 |
Jan
(110) |
Feb
(100) |
Mar
(85) |
Apr
(107) |
May
(48) |
Jun
(43) |
Jul
(47) |
Aug
(112) |
Sep
(96) |
Oct
(62) |
Nov
(36) |
Dec
(125) |
2012 |
Jan
(54) |
Feb
(75) |
Mar
(65) |
Apr
(117) |
May
(95) |
Jun
(82) |
Jul
(128) |
Aug
(104) |
Sep
(111) |
Oct
(48) |
Nov
(141) |
Dec
(72) |
2013 |
Jan
(50) |
Feb
(36) |
Mar
(40) |
Apr
(23) |
May
(59) |
Jun
(30) |
Jul
(50) |
Aug
(55) |
Sep
(41) |
Oct
(56) |
Nov
(55) |
Dec
(70) |
2014 |
Jan
(72) |
Feb
(71) |
Mar
(31) |
Apr
(31) |
May
(47) |
Jun
(59) |
Jul
(51) |
Aug
(33) |
Sep
(76) |
Oct
(85) |
Nov
(91) |
Dec
(91) |
2015 |
Jan
(88) |
Feb
(42) |
Mar
(97) |
Apr
(31) |
May
(60) |
Jun
(52) |
Jul
(45) |
Aug
(54) |
Sep
(116) |
Oct
(65) |
Nov
(56) |
Dec
(46) |
2016 |
Jan
(48) |
Feb
(25) |
Mar
(87) |
Apr
(47) |
May
(46) |
Jun
(12) |
Jul
(24) |
Aug
(53) |
Sep
(35) |
Oct
(32) |
Nov
(55) |
Dec
(29) |
2017 |
Jan
(41) |
Feb
(13) |
Mar
(7) |
Apr
(17) |
May
(10) |
Jun
(7) |
Jul
(23) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <ga...@us...> - 2017-01-13 03:27:16
|
Revision: 8055 http://sourceforge.net/p/gambas/code/8055 Author: gambas Date: 2017-01-13 03:27:14 +0000 (Fri, 13 Jan 2017) Log Message: ----------- [GB.MARKDOWN] * NEW: Markdown.Verbatim is a new integer property that allows to enter or leave "verbatim" mode. It's a mode where markdown syntax is not interpreted anymore. Modified Paths: -------------- gambas/trunk/comp/src/gb.markdown/.info gambas/trunk/comp/src/gb.markdown/.src/Markdown.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-13 03:25:11
|
Revision: 8054 http://sourceforge.net/p/gambas/code/8054 Author: gambas Date: 2017-01-13 03:25:10 +0000 (Fri, 13 Jan 2017) Log Message: ----------- [GB.GUI.BASE] * NEW: GridView and its children classes display their selection in gray when they do not have the focus. * NEW: IconView displays its selection in gray when it does not have the focus. Modified Paths: -------------- gambas/trunk/comp/src/gb.gui.base/.info gambas/trunk/comp/src/gb.gui.base/.src/GridView/GridView.class gambas/trunk/comp/src/gb.gui.base/.src/IconView/IconView.class gambas/trunk/comp/src/gb.gui.base/.src/IconView/_IconView_Item.class gambas/trunk/comp/src/gb.gui.base/.src/Test/FIconView.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-13 03:22:37
|
Revision: 8053 http://sourceforge.net/p/gambas/code/8053 Author: gambas Date: 2017-01-13 03:22:35 +0000 (Fri, 13 Jan 2017) Log Message: ----------- [INTERPRETER] * BUG: Automatically restart mkfifo() and open() system calls when executing the PIPE instruction. Modified Paths: -------------- gambas/trunk/main/gbx/gbx_stream_pipe.c gambas/trunk/main/share/gb_common.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-01-09 21:59:29
|
Revision: 8051 http://sourceforge.net/p/gambas/code/8051 Author: gambix Date: 2017-01-09 21:59:27 +0000 (Mon, 09 Jan 2017) Log Message: ----------- [GB.TERM.FORM] * NEW: a new Class Mouse allow to manage mouse * NEW: Mouse events are working * NEW: Window support Maximize and close on mouse click * NEW: A new Message class allow to display a messagebox * NEW: A TermPictureBox is available just for fun... working only on Xterm compatible emulators. * OPT: And so on... Modified Paths: -------------- gambas/trunk/comp/src/gb.term.form/.component gambas/trunk/comp/src/gb.term.form/.info gambas/trunk/comp/src/gb.term.form/.list gambas/trunk/comp/src/gb.term.form/.project gambas/trunk/comp/src/gb.term.form/.src/Main.module gambas/trunk/comp/src/gb.term.form/.src/Main2.module gambas/trunk/comp/src/gb.term.form/.src/TermControl.class gambas/trunk/comp/src/gb.term.form/.src/TermPictureBox.class gambas/trunk/comp/src/gb.term.form/.src/TermWindows.class gambas/trunk/comp/src/gb.term.form/.startup Added Paths: ----------- gambas/trunk/comp/src/gb.term.form/.src/Dialog/ gambas/trunk/comp/src/gb.term.form/.src/Dialog/Message.class gambas/trunk/comp/src/gb.term.form/.src/Key.class gambas/trunk/comp/src/gb.term.form/.src/Module1.module gambas/trunk/comp/src/gb.term.form/.src/Mouse.class gambas/trunk/comp/src/gb.term.form/.src/TermForm.class gambas/trunk/comp/src/gb.term.form/.src/TermWindow.class Removed Paths: ------------- gambas/trunk/comp/src/gb.term.form/.src/Form.class gambas/trunk/comp/src/gb.term.form/.src/Term.class gambas/trunk/comp/src/gb.term.form/.src/Window.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-09 21:36:40
|
Revision: 8050 http://sourceforge.net/p/gambas/code/8050 Author: gambas Date: 2017-01-09 21:36:38 +0000 (Mon, 09 Jan 2017) Log Message: ----------- [GB.QT5.OPENGL] * BUG: The component now should compile correctly with C++11. [GB.QT5.WEBKIT] * BUG: The component now should compile correctly with C++11. Modified Paths: -------------- gambas/trunk/gb.qt5/src/opengl/Makefile.am gambas/trunk/gb.qt5/src/webkit/Makefile.am This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-09 14:47:01
|
Revision: 8049 http://sourceforge.net/p/gambas/code/8049 Author: gambas Date: 2017-01-09 14:46:59 +0000 (Mon, 09 Jan 2017) Log Message: ----------- [GB.QT5] * BUG: The component now should compile correctly with C++11. Modified Paths: -------------- gambas/trunk/gb.qt4/src/CMenu.cpp gambas/trunk/gb.qt4/src/CWidget.cpp gambas/trunk/gb.qt5/src/Makefile.am This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 22:35:35
|
Revision: 8048 http://sourceforge.net/p/gambas/code/8048 Author: gambas Date: 2017-01-07 22:35:34 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.TERM] * BUG: Fix local and control flags of terminal settings. Modified Paths: -------------- gambas/trunk/main/lib/term/cterm.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 14:08:02
|
Revision: 8047 http://sourceforge.net/p/gambas/code/8047 Author: gambix Date: 2017-01-07 14:08:01 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.FORM.EDITOR] * New: Preview: Some arrows to make more visible separators * New: Preview: Take folded lines into account. * New: Preview: Right mouse button to got fast to a point, left to slide or page up/down, center to fix the magnifier on a point. Modified Paths: -------------- gambas/trunk/comp/src/gb.form.editor/.info gambas/trunk/comp/src/gb.form.editor/.src/TextEditor.class Added Paths: ----------- gambas/trunk/comp/src/gb.form.editor/smallarrow.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 13:25:49
|
Revision: 8046 http://sourceforge.net/p/gambas/code/8046 Author: gambas Date: 2017-01-07 13:25:47 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Update debian & ubuntu package section lists. Modified Paths: -------------- gambas/trunk/app/src/gambas3/install/group/debian gambas/trunk/app/src/gambas3/install/group/ubuntu This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 13:05:11
|
Revision: 8045 http://sourceforge.net/p/gambas/code/8045 Author: gambas Date: 2017-01-07 13:05:09 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.NET.CURL] * BUG: HttpClient: Headers are now correctly parsed when the content length is zero. * BUG: HttpClient: Remove the initial space of the reason string. Modified Paths: -------------- gambas/trunk/gb.net.curl/src/CHttpClient.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 10:57:18
|
Revision: 8044 http://sourceforge.net/p/gambas/code/8044 Author: gambas Date: 2017-01-07 10:57:16 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.GTK] * BUG: Window.Show() works again on hidden windows. [GB.GTK3] * BUG: Window.Show() works again on hidden windows. [GB.QT4] * BUG: Window.Show() works again on hidden windows. [GB.QT5] * BUG: Window.Show() works again on hidden windows. Modified Paths: -------------- gambas/trunk/gb.gtk/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:58:21
|
Revision: 8043 http://sourceforge.net/p/gambas/code/8043 Author: gambas Date: 2017-01-07 00:58:20 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Update french translation. * NEW: Support for the new gb.term component. [INTERPRETER] * NEW: Add an API that returns the file descriptor associated with a specific stream. [GB.TERM] * NEW: New component for terminal management with an API very close to the one provided by the operating system. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.src/Component/CDocumentation.class gambas/trunk/app/src/gambas3/.src/Project.module gambas/trunk/main/configure.ac gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/lib/Makefile.am gambas/trunk/main/share/gambas.h Added Paths: ----------- gambas/trunk/main/lib/term/ gambas/trunk/main/lib/term/Makefile.am gambas/trunk/main/lib/term/cterm.c gambas/trunk/main/lib/term/cterm.h gambas/trunk/main/lib/term/gb.term.component gambas/trunk/main/lib/term/main.c gambas/trunk/main/lib/term/main.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:56:08
|
Revision: 8042 http://sourceforge.net/p/gambas/code/8042 Author: gambas Date: 2017-01-07 00:56:06 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Update support file. Modified Paths: -------------- gambas/trunk/app/src/gambas3/support.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:55:13
|
Revision: 8041 http://sourceforge.net/p/gambas/code/8041 Author: gambas Date: 2017-01-07 00:55:12 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.WEB.FORM] * BUG: WebDateBox: Settings the Value (or Date) property raise the Change event. * NEW: WebForm: The AddJavascriptFile() method now support extern javaascript files. * NEW: WebTable: EnsureVisible() is a new method ensuring that a specific row is visible to the screen. * BUG: WebTextBox: Fix the raise of Activate event. * BUG: WebTextBox: Fix autocompletion support. Modified Paths: -------------- gambas/trunk/comp/src/gb.web.form/.info gambas/trunk/comp/src/gb.web.form/.project gambas/trunk/comp/src/gb.web.form/.src/Calendar/WebDateBox.class gambas/trunk/comp/src/gb.web.form/.src/Header.class gambas/trunk/comp/src/gb.web.form/.src/Header.webpage gambas/trunk/comp/src/gb.web.form/.src/Test/Webform6.class gambas/trunk/comp/src/gb.web.form/.src/Test/Webform6.webform gambas/trunk/comp/src/gb.web.form/.src/WebForm.class gambas/trunk/comp/src/gb.web.form/.src/WebTable/WebTable.class gambas/trunk/comp/src/gb.web.form/.startup gambas/trunk/comp/src/gb.web.form/lib.js This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:50:27
|
Revision: 8040 http://sourceforge.net/p/gambas/code/8040 Author: gambas Date: 2017-01-07 00:50:25 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.FORM] * NEW: URLLabel: Add Alignment and Border properties. Modified Paths: -------------- gambas/trunk/comp/src/gb.form/.info gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.form/.src/Test/FSwitchButton.form gambas/trunk/comp/src/gb.form/.src/Test/FTestBalloon.form gambas/trunk/comp/src/gb.form/.src/URLLabel.class Added Paths: ----------- gambas/trunk/comp/src/gb.form/.src/Test/FMain.class gambas/trunk/comp/src/gb.form/.src/Test/FMain.form Removed Paths: ------------- gambas/trunk/comp/src/gb.form/.src/Test/Form3.class gambas/trunk/comp/src/gb.form/.src/Test/Form3.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:47:28
|
Revision: 8039 http://sourceforge.net/p/gambas/code/8039 Author: gambas Date: 2017-01-07 00:47:26 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.UTIL.WEB] * BUG: JSON.Encode() now correctly handles JSON.Null values. Modified Paths: -------------- gambas/trunk/comp/src/gb.util.web/.src/JSON.module gambas/trunk/comp/src/gb.util.web/.src/MMain.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:45:46
|
Revision: 8038 http://sourceforge.net/p/gambas/code/8038 Author: gambas Date: 2017-01-07 00:45:44 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [WEBSITE MAKER] * NEW: Update to Gambas 3.9.2. Modified Paths: -------------- gambas/trunk/app/other/MakeWebSite/.src/MMain.module gambas/trunk/app/other/MakeWebSite/gambas.sourceforge.net/main.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-07 00:44:30
|
Revision: 8037 http://sourceforge.net/p/gambas/code/8037 Author: gambas Date: 2017-01-07 00:44:28 +0000 (Sat, 07 Jan 2017) Log Message: ----------- [GB.EVAL.HIGHLIGHT] * NEW: Add some missing CSS properties and values. Modified Paths: -------------- gambas/trunk/comp/src/gb.eval.highlight/css/properties gambas/trunk/comp/src/gb.eval.highlight/css/values This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-02 21:29:11
|
Revision: 8036 http://sourceforge.net/p/gambas/code/8036 Author: gambas Date: 2017-01-02 21:29:10 +0000 (Mon, 02 Jan 2017) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Project property dialog: Make the 'Reset' button common to all tabs. It is visible only if the current tab can be reset. * NEW: Project property dialog: The component list is sorted so that checked components come first. Consequently, The checkbox that shows the selected components only has been removed. * NEW: Project property dialog: The defaut font of the help browser of the component chooser control is smaller now. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Help/MHelp.module gambas/trunk/app/src/gambas3/.src/Project/Component/FComponentChooser.class gambas/trunk/app/src/gambas3/.src/Project/Component/FComponentChooser.form gambas/trunk/app/src/gambas3/.src/Project/FProjectProperty.class gambas/trunk/app/src/gambas3/.src/Project/FProjectProperty.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-01 19:57:14
|
Revision: 8035 http://sourceforge.net/p/gambas/code/8035 Author: gambas Date: 2017-01-01 19:57:13 +0000 (Sun, 01 Jan 2017) Log Message: ----------- [GB.SDL2] * BUG: Image.Load() automatically converts loaded image to default SDL image format. Modified Paths: -------------- gambas/trunk/gb.sdl2/src/c_image.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-12-31 18:59:16
|
Revision: 8034 http://sourceforge.net/p/gambas/code/8034 Author: gambas Date: 2016-12-31 18:59:14 +0000 (Sat, 31 Dec 2016) Log Message: ----------- [GB.GTK] * BUG: Calling ShowModal() or ShowPopup() on an already opened window now raises an error. [GB.GTK3] * BUG: Calling ShowModal() or ShowPopup() on an already opened window now raises an error. [GB.QT4] * BUG: Calling ShowModal() or ShowPopup() on an already opened window now raises an error. [GB.QT5] * BUG: Calling ShowModal() or ShowPopup() on an already opened window now raises an error. Modified Paths: -------------- gambas/trunk/gb.gtk/src/CWindow.cpp gambas/trunk/gb.qt4/src/CWindow.cpp 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:12:00
|
Revision: 8033 http://sourceforge.net/p/gambas/code/8033 Author: gambas Date: 2016-12-31 12:11:58 +0000 (Sat, 31 Dec 2016) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Display an error message instead of crashing if no terminal is found. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.src/Editor/Form/FForm.form gambas/trunk/app/src/gambas3/.src/FMain.class gambas/trunk/app/src/gambas3/.src/Project.module 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:11:23
|
Revision: 8032 http://sourceforge.net/p/gambas/code/8032 Author: gambas Date: 2016-12-31 12:11:21 +0000 (Sat, 31 Dec 2016) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Option dialog: Move the 'Configure shortcuts' button to the 'Interface' tab. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Options/FOption.form 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. |