Thread: [Gambas-devel-svn] SF.net SVN: gambas: [199] 2.0/trunk (Page 4)
Brought to you by:
gambas
From: <ga...@us...> - 2007-01-17 10:37:31
|
Revision: 199 http://svn.sourceforge.net/gambas/?rev=199&view=rev Author: gambas Date: 2007-01-17 02:37:31 -0800 (Wed, 17 Jan 2007) Log Message: ----------- [GB.QT COMPONENT] * BUG: GridView does not raise spurious Data event anymore when it is not visible. Modified Paths: -------------- 2.0/trunk/comp/src/gb.report/.component 2.0/trunk/comp/src/gb.report/.project 2.0/trunk/gb.qt/src/CGridView.cpp 2.0/trunk/gb.qt/src/CGridView.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-01-17 14:43:02
|
Revision: 204 http://svn.sourceforge.net/gambas/?rev=204&view=rev Author: gambas Date: 2007-01-17 06:43:02 -0800 (Wed, 17 Jan 2007) Log Message: ----------- ChangeLog was updated for 1.9.47 Modified Paths: -------------- 2.0/trunk/ChangeLog 2.0/trunk/comp/src/gb.report/FTest.class 2.0/trunk/comp/src/gb.report/FTest.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-01-19 19:56:37
|
Revision: 205 http://svn.sourceforge.net/gambas/?rev=205&view=rev Author: gambas Date: 2007-01-19 11:56:34 -0800 (Fri, 19 Jan 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The "About component" button works again in the project property dialog. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/MHelp.module 2.0/trunk/app/src/gambas2/support.txt 2.0/trunk/comp/src/gb.report/.info 2.0/trunk/comp/src/gb.report/.list 2.0/trunk/comp/src/gb.report/.project 2.0/trunk/comp/src/gb.report/ReportControl.class 2.0/trunk/gb.qt/src/gb.qt/Stock.class Added Paths: ----------- 2.0/trunk/gb.qt/src/gb.qt/stock/xfce.map This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2007-01-29 00:53:25
|
Revision: 211 http://svn.sourceforge.net/gambas/?rev=211&view=rev Author: lordheavy Date: 2007-01-28 16:53:22 -0800 (Sun, 28 Jan 2007) Log Message: ----------- If DISABLED file is present then the component is disabled, it fix the configure workaround for gb.sdl and gb.sdl.sound components. Modified Paths: -------------- 2.0/trunk/acinclude.m4 2.0/trunk/gb.sdl/configure.ac 2.0/trunk/gb.sdl.sound/configure.ac This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-01-31 19:39:25
|
Revision: 214 http://svn.sourceforge.net/gambas/?rev=214&view=rev Author: gambas Date: 2007-01-31 11:39:16 -0800 (Wed, 31 Jan 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Estonian was added to the language list. * NEW: Forms can be locked. * BUG: Text editor now displays cursor position in the toolbar and not in the title bar anymore. * BUG: Deleting backwards does not open the auto completion list if more than one character is deleted. [INTERPRETER] * BUG: You can reimplement an existing class in a project now without raising an error now. * NEW: Array classes got a new method, Exist(), that returns if a specified value exists inside the array. [GB.QT COMPONENT] * NEW: Drag.IconX and Drag.IconY allow to define the drag icon hotspot. [GB.NET.SMTP COMPONENT] * NEW: Error messages are more detailed if sending a mail fails. [GB.WEB COMPONENT] * BUG: Big arrays or collections are correctly read and written to the session file now. * BUG: URL-encoded requests are correctly parsed in all cases now. * NEW: Request.Exist() is a new method that tells if a specific field is defined in the request. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/app/src/gambas2/FForm.form 2.0/trunk/app/src/gambas2/FFormStack.class 2.0/trunk/app/src/gambas2/FTextEditor.class 2.0/trunk/app/src/gambas2/FTextEditor.form 2.0/trunk/app/src/gambas2/Language.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.web/.info 2.0/trunk/comp/src/gb.web/.list 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Main.module 2.0/trunk/comp/src/gb.web/Request.module 2.0/trunk/comp/src/gb.web/Session.module 2.0/trunk/gb.net.smtp/src/CSmtpClient.c 2.0/trunk/gb.qt/src/CClipboard.cpp 2.0/trunk/gb.qt/src/share/CDrag_desc.h 2.0/trunk/main/gbx/gbx_c_array.c 2.0/trunk/main/gbx/gbx_class.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-02-03 13:35:04
|
Revision: 216 http://svn.sourceforge.net/gambas/?rev=216&view=rev Author: gambas Date: 2007-02-03 05:34:58 -0800 (Sat, 03 Feb 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The IDE won't freeze anymore when loading a component that forgot to export some classes. [INTERPRETER] * NEW: You cannot change the class internal constructor and destructor anymore. Consequently, the GB_HOOK_NEW() and GB_HOOK_FREE() macro were removed. [COMPILER] * NEW: You can declare a non creatable class by using adding a 'CREATE PRIVATE' line at the beginning of the class source file. * NEW: An auto-creatable class should be declared with 'CREATE STATIC', and not 'CREATE' only now. [GB.QT.EXT] * BUG: Lines are drawn differently, and so long lines should be displayed correctly and faster in all cases now. [GB.REPORT] * BUG: ReportControl and ReportContainer are declared as non creatable. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/app/src/gambas2/FFormStack.class 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.report/.info 2.0/trunk/comp/src/gb.report/.list 2.0/trunk/comp/src/gb.report/.project 2.0/trunk/comp/src/gb.report/ReportContainer.class 2.0/trunk/comp/src/gb.report/ReportControl.class 2.0/trunk/comp/src/gb.report/ReportDrawing.class 2.0/trunk/comp/src/gb.report/ReportImage.class 2.0/trunk/comp/src/gb.report/TableCell.class 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.qt/src/ext/gview.cpp 2.0/trunk/gb.xml/src/CXMLNode.c 2.0/trunk/main/gbc/gbc_class.h 2.0/trunk/main/gbc/gbc_header.c 2.0/trunk/main/gbc/gbc_output.c 2.0/trunk/main/gbc/gbi.c 2.0/trunk/main/gbx/gb_error.c 2.0/trunk/main/gbx/gbx_api.c 2.0/trunk/main/gbx/gbx_class.c 2.0/trunk/main/gbx/gbx_class.h 2.0/trunk/main/gbx/gbx_class_load.c 2.0/trunk/main/gbx/gbx_class_native.c 2.0/trunk/main/gbx/gbx_exec.c 2.0/trunk/main/gbx/gbx_object.c 2.0/trunk/main/share/gambas.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-02-04 17:57:37
|
Revision: 218 http://svn.sourceforge.net/gambas/?rev=218&view=rev Author: gambas Date: 2007-02-04 09:57:35 -0800 (Sun, 04 Feb 2007) Log Message: ----------- [INTERPRETER] * NEW: gb.Case is a synonymous of gb.Text. * NEW: gb.Language is a new constant that indicates a localization-aware string comparison. gb.Language and gb.Case can be combined. * NEW: StrComp() and array Sort() method now supports localization-aware string comparisons. * BUG: CREATE PRIVATE attribute is not inherited anymore. * NEW: Class without dynamic variables now can be instanciated, even if it is useless! * BUG: Split() and Array.Join() have been rewritten. Now escapes characters must be doubled. Split("a,b''c,'d,e') returns the following array: [ "a", "b'c", "d,e" ]. Join() does the inverted job. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/main/gbc/gbc_class.c 2.0/trunk/main/gbc/gbc_dump.c 2.0/trunk/main/gbx/gbx_c_array.c 2.0/trunk/main/gbx/gbx_c_array.h 2.0/trunk/main/gbx/gbx_c_gambas.c 2.0/trunk/main/gbx/gbx_c_string.c 2.0/trunk/main/gbx/gbx_class.c 2.0/trunk/main/gbx/gbx_class_load.c 2.0/trunk/main/gbx/gbx_compare.c 2.0/trunk/main/gbx/gbx_compare.h 2.0/trunk/main/gbx/gbx_subr_string.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-02-04 22:17:45
|
Revision: 220 http://svn.sourceforge.net/gambas/?rev=220&view=rev Author: gambas Date: 2007-02-04 14:17:44 -0800 (Sun, 04 Feb 2007) Log Message: ----------- [DATABASE MANAGER] * BUG: The TableView in the SQL request window shows its headers again. [INTERPRETER] * BUG: Another bug fix in Split(). Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/FRequest.form 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/comp/src/gb.settings/.project 2.0/trunk/main/gbx/gbx_c_array.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-02-11 22:32:24
|
Revision: 227 http://svn.sourceforge.net/gambas/?rev=227&view=rev Author: gambas Date: 2007-02-11 14:31:40 -0800 (Sun, 11 Feb 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Syntax highlighting of CSS files. [INTERPRETER] * BUG: WAIT now does not freeze anymore when used in a console application. * BUG: Fixed the syntax information of IIf() and Temp$(). [GB.QT] * BUG: Fixed the path of GTK+ close stock icon. [GB.QT.EXT] * NEW: Highlight.Tag is a new property to associate a integer value with a text line. Use it with Highlight.State, to define the context of syntax highlighting. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/FCompletion.class 2.0/trunk/app/src/gambas2/FTextEditor.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.report/.info 2.0/trunk/comp/src/gb.report/.list 2.0/trunk/comp/src/gb.report/FTest.class 2.0/trunk/comp/src/gb.web/.info 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Request.module 2.0/trunk/gb.qt/src/ext/CEditor.cpp 2.0/trunk/gb.qt/src/ext/gdocument.cpp 2.0/trunk/gb.qt/src/ext/gdocument.h 2.0/trunk/gb.qt/src/gb.qt/.info 2.0/trunk/gb.qt/src/gb.qt/.list 2.0/trunk/gb.qt/src/gb.qt/.project 2.0/trunk/gb.qt/src/gb.qt/stock/gnome.map 2.0/trunk/main/gbx/gbx_class_info.c 2.0/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...> - 2007-02-21 12:33:08
|
Revision: 239 http://svn.sourceforge.net/gambas/?rev=239&view=rev Author: gambas Date: 2007-02-21 04:33:07 -0800 (Wed, 21 Feb 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The open project dialog has a new check-box that opens the new project in a new IDE window. [INFORMER] * NEW: The gbi program, that generates *.info files, does not abort anymore when there is an error during the processing of a component. [GB.DB.MYSQL DRIVER] * NEW: A flag is set at database connection to allow the use of stored procedures. [GB.QT.EXT] * BUG: The Dial control does not crash anymore when an incorrect value is set to the Step or PageStep property. Modified Paths: -------------- 2.0/trunk/README 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FOpenProject.class 2.0/trunk/app/src/gambas2/FOpenProject.form 2.0/trunk/app/src/gambas2/FWelcome.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.report/.info 2.0/trunk/comp/src/gb.report/.list 2.0/trunk/gb.db.mysql/src/main.c 2.0/trunk/gb.qt/src/ext/CDial.cpp 2.0/trunk/main/gbc/gbi.c 2.0/trunk/main/gbx/gbx_component.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-03-06 18:51:46
|
Revision: 241 http://svn.sourceforge.net/gambas/?rev=241&view=rev Author: gambas Date: 2007-03-06 10:51:45 -0800 (Tue, 06 Mar 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fixed the autocompletion of symbols by using UTF-8 String class instead of ASCII functions. [INTERPRETER] * BUG: The Timer Delay property is not limited to 3600 ms in the IDE anymore. [GB.WEB COMPONENT] * NEW: The Session file name now includes the IP address of the remote connection. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/FCompletion.class 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Session.module 2.0/trunk/main/gbx/gbx_c_timer.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-03-14 18:40:30
|
Revision: 244 http://svn.sourceforge.net/gambas/?rev=244&view=rev Author: gambas Date: 2007-03-14 11:40:26 -0700 (Wed, 14 Mar 2007) Log Message: ----------- [INTERPRETER] * BUG: A component that gets a public function of a class now automatically loads it. [GB.QT] * BUG: The global key event handler Application_KeyPress() now works as expected. Modified Paths: -------------- 2.0/trunk/examples/examples/Automation/KateBrowser/.project 2.0/trunk/examples/examples/Networking/WebBrowser/.project 2.0/trunk/main/gbx/gbx_api.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-03-15 19:10:23
|
Revision: 245 http://svn.sourceforge.net/gambas/?rev=245&view=rev Author: gambas Date: 2007-03-15 12:10:23 -0700 (Thu, 15 Mar 2007) Log Message: ----------- [COMPILER] * BUG: The number of dimensions of an array is correctly limited now. [GB.QT] * BUG: The default value of the ListBox.Mode property is Single. Modified Paths: -------------- 2.0/trunk/gb.qt/src/CListBox.cpp 2.0/trunk/gb.qt/src/CListBox.h 2.0/trunk/main/gbc/gbc_trans.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-03-19 21:08:28
|
Revision: 246 http://svn.sourceforge.net/gambas/?rev=246&view=rev Author: gambas Date: 2007-03-19 14:08:28 -0700 (Mon, 19 Mar 2007) Log Message: ----------- [INTERPRETER] * NEW: The Comp() function now understands the gb.Language constant. But contrary to String.Comp(), it ignores charset conversion errors. [GB.FORM] * BUG: The DirView and FileView controls now ignore charset conversion errors when parsing file names. Modified Paths: -------------- 2.0/trunk/comp/src/gb.form/.info 2.0/trunk/comp/src/gb.form/.lang/.pot 2.0/trunk/comp/src/gb.form/.list 2.0/trunk/comp/src/gb.form/.project 2.0/trunk/comp/src/gb.form/DirView.class 2.0/trunk/main/gbx/gbx_c_string.c 2.0/trunk/main/gbx/gbx_compare.c 2.0/trunk/main/gbx/gbx_compare.h 2.0/trunk/main/gbx/gbx_subr_test.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2007-03-20 01:45:09
|
Revision: 248 http://svn.sourceforge.net/gambas/?rev=248&view=rev Author: lordheavy Date: 2007-03-19 15:13:53 -0700 (Mon, 19 Mar 2007) Log Message: ----------- Change my email address to <lor...@us...> Modified Paths: -------------- 2.0/trunk/app/src/gambas2/about.txt 2.0/trunk/gb.gtk/src/gb.gtk/.info 2.0/trunk/gb.opengl/src/GL.c 2.0/trunk/gb.opengl/src/GL.h 2.0/trunk/gb.opengl/src/GLU.c 2.0/trunk/gb.opengl/src/GLU.h 2.0/trunk/gb.opengl/src/GLUtextureImage.c 2.0/trunk/gb.opengl/src/GLUtextureImage.h 2.0/trunk/gb.opengl/src/GLclipping.c 2.0/trunk/gb.opengl/src/GLcolorLighting.c 2.0/trunk/gb.opengl/src/GLcolorLighting.h 2.0/trunk/gb.opengl/src/GLconstants.c 2.0/trunk/gb.opengl/src/GLconstants.h 2.0/trunk/gb.opengl/src/GLdisplayList.c 2.0/trunk/gb.opengl/src/GLdisplayList.h 2.0/trunk/gb.opengl/src/GLfog.c 2.0/trunk/gb.opengl/src/GLfog.h 2.0/trunk/gb.opengl/src/GLframeBufferOps.c 2.0/trunk/gb.opengl/src/GLframeBufferOps.h 2.0/trunk/gb.opengl/src/GLinfo.c 2.0/trunk/gb.opengl/src/GLinfo.h 2.0/trunk/gb.opengl/src/GLpixelOperations.c 2.0/trunk/gb.opengl/src/GLpixelOperations.h 2.0/trunk/gb.opengl/src/GLprimitives.c 2.0/trunk/gb.opengl/src/GLprimitives.h 2.0/trunk/gb.opengl/src/GLrasterization.c 2.0/trunk/gb.opengl/src/GLselectPixmap.c 2.0/trunk/gb.opengl/src/GLtextureMapping.c 2.0/trunk/gb.opengl/src/GLtextureMapping.h 2.0/trunk/gb.opengl/src/main.c 2.0/trunk/gb.qt/src/gb.qt/.info 2.0/trunk/gb.qt/src/gb.qt/.list 2.0/trunk/gb.qt/src/opengl/CGLarea.cpp 2.0/trunk/gb.qt/src/opengl/CGLarea.h 2.0/trunk/gb.qt/src/opengl/main.cpp 2.0/trunk/gb.qt/src/opengl/main.h 2.0/trunk/gb.sdl/AUTHORS 2.0/trunk/gb.sdl/src/Ccolor.cpp 2.0/trunk/gb.sdl/src/Ccolor.h 2.0/trunk/gb.sdl/src/Cconst.cpp 2.0/trunk/gb.sdl/src/Cconst.h 2.0/trunk/gb.sdl/src/Cdesktop.cpp 2.0/trunk/gb.sdl/src/Cdesktop.h 2.0/trunk/gb.sdl/src/Cdraw.cpp 2.0/trunk/gb.sdl/src/Cdraw.h 2.0/trunk/gb.sdl/src/Cfont.cpp 2.0/trunk/gb.sdl/src/Cfont.h 2.0/trunk/gb.sdl/src/Cimage.cpp 2.0/trunk/gb.sdl/src/Cimage.h 2.0/trunk/gb.sdl/src/Ckey.cpp 2.0/trunk/gb.sdl/src/Ckey.h 2.0/trunk/gb.sdl/src/Cmouse.cpp 2.0/trunk/gb.sdl/src/Cmouse.h 2.0/trunk/gb.sdl/src/Cwindow.cpp 2.0/trunk/gb.sdl/src/Cwindow.h 2.0/trunk/gb.sdl/src/SDL_h.h 2.0/trunk/gb.sdl/src/SDLapp.cpp 2.0/trunk/gb.sdl/src/SDLapp.h 2.0/trunk/gb.sdl/src/SDLcore.cpp 2.0/trunk/gb.sdl/src/SDLcore.h 2.0/trunk/gb.sdl/src/SDLcursor.cpp 2.0/trunk/gb.sdl/src/SDLcursor.h 2.0/trunk/gb.sdl/src/SDLerror.cpp 2.0/trunk/gb.sdl/src/SDLerror.h 2.0/trunk/gb.sdl/src/SDLfont.cpp 2.0/trunk/gb.sdl/src/SDLfont.h 2.0/trunk/gb.sdl/src/SDLgfx.cpp 2.0/trunk/gb.sdl/src/SDLgfx.h 2.0/trunk/gb.sdl/src/SDLsurface.cpp 2.0/trunk/gb.sdl/src/SDLsurface.h 2.0/trunk/gb.sdl/src/SDLwindow.cpp 2.0/trunk/gb.sdl/src/SDLwindow.h 2.0/trunk/gb.sdl/src/main.cpp 2.0/trunk/gb.sdl/src/main.h 2.0/trunk/gb.sdl/src/timer.cpp 2.0/trunk/gb.sdl/src/timer.h 2.0/trunk/gb.sdl.sound/AUTHORS 2.0/trunk/gb.sdl.sound/src/cdrom.c 2.0/trunk/gb.sdl.sound/src/cdrom.h 2.0/trunk/gb.xml/src/rpc/gb.xml.rpc/.info 2.0/trunk/gb.xml/src/rpc/gb.xml.rpc/.list This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-03-29 19:33:27
|
Revision: 250 http://svn.sourceforge.net/gambas/?rev=250&view=rev Author: gambas Date: 2007-03-29 12:33:29 -0700 (Thu, 29 Mar 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Control names and groups cannot start with a digit anymore. [GB.QT.KDE] * BUG: Application_KeyPress global event handler now works when the gb.qt.kde is selected. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/CControl.class 2.0/trunk/gb.qt/src/gb.qt.h 2.0/trunk/gb.qt/src/main.cpp 2.0/trunk/gb.qt/src/main.h 2.0/trunk/gb.qt.kde/src/main.cpp 2.0/trunk/gb.qt.kde/src/main.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-01 09:14:21
|
Revision: 254 http://svn.sourceforge.net/gambas/?rev=254&view=rev Author: gambas Date: 2007-04-01 02:14:18 -0700 (Sun, 01 Apr 2007) Log Message: ----------- [INTERPRETER] * NEW: Support for standard error output redirection. [COMPILER] * NEW: A new instruction, ERROR TO, to redirect the standard error output like the OUTPUT TO instruction does for standard output. Modified Paths: -------------- 2.0/trunk/acinclude.m4 2.0/trunk/comp/src/gb.web/.info 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Application.module 2.0/trunk/main/gbc/gbc_trans.h 2.0/trunk/main/gbc/gbc_trans_subr.c 2.0/trunk/main/gbx/gbx_subr_file.c 2.0/trunk/main/gbx/gbx_subr_misc.c 2.0/trunk/main/share/gb_reserved_temp.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-01 19:24:55
|
Revision: 257 http://svn.sourceforge.net/gambas/?rev=257&view=rev Author: gambas Date: 2007-04-01 12:24:57 -0700 (Sun, 01 Apr 2007) Log Message: ----------- ChangeLog updated for 1.9.48 Modified Paths: -------------- 2.0/trunk/ChangeLog 2.0/trunk/comp/src/gb.settings/.info 2.0/trunk/comp/src/gb.settings/.project 2.0/trunk/comp/src/gb.settings/Settings.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-04 10:56:42
|
Revision: 259 http://svn.sourceforge.net/gambas/?rev=259&view=rev Author: gambas Date: 2007-04-04 03:56:44 -0700 (Wed, 04 Apr 2007) Log Message: ----------- [INTERPRETER] * NEW: Support for the new archive format. [ARCHIVER] * OPT: File names stored in archives are compressed. It saves a few bytes. This new format cannot be read by older interpreters. Modified Paths: -------------- 2.0/trunk/comp/src/gb.db.form/.info 2.0/trunk/comp/src/gb.db.form/.list 2.0/trunk/comp/src/gb.form.mdi/.info 2.0/trunk/comp/src/gb.info/.info 2.0/trunk/comp/src/gb.report/.info 2.0/trunk/comp/src/gb.report/.list 2.0/trunk/main/gbc/gba.c 2.0/trunk/main/gbc/gbc_archive.c 2.0/trunk/main/gbc/gbc_archive.h 2.0/trunk/main/gbx/gb_error.c 2.0/trunk/main/gbx/gbx_archive.c 2.0/trunk/main/share/gb_arch.h 2.0/trunk/main/share/gb_arch_temp.h 2.0/trunk/main/share/gb_magic.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-05 20:31:26
|
Revision: 261 http://svn.sourceforge.net/gambas/?rev=261&view=rev Author: gambas Date: 2007-04-05 13:31:15 -0700 (Thu, 05 Apr 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Project icons proportions are kept now. * NEW: Project icon is displayed on the root of the project tree view. * BUG: Not searching inside comments works now. * NEW: A new option for not searching inside strings. * NEW: Search options are saved in the project settings file. [GB.QT.EXT] * NEW: Editor.GetPurgedLine() method got options to return a source code line with or without comments, and with or without strings. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CProjectInfo.class 2.0/trunk/app/src/gambas2/FFind.class 2.0/trunk/app/src/gambas2/FFind.form 2.0/trunk/app/src/gambas2/FMakeInstall.form 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/gb.qt/src/ext/CEditor.cpp Added Paths: ----------- 2.0/trunk/app/src/gambas2/FMakeInstall2.class 2.0/trunk/app/src/gambas2/FMakeInstall2.form Removed Paths: ------------- 2.0/trunk/app/src/gambas2/FMakePackage.class 2.0/trunk/app/src/gambas2/FMakePackage.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-07 08:33:08
|
Revision: 262 http://svn.sourceforge.net/gambas/?rev=262&view=rev Author: gambas Date: 2007-04-07 01:33:04 -0700 (Sat, 07 Apr 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Inheritance and 'CREATE STATIC' flags are now correctly taken into account by the automatic completion. * NEW: The file create dialog can create CSS files now. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FCompletion.class 2.0/trunk/app/src/gambas2/FCreateFile.class 2.0/trunk/app/src/gambas2/FCreateFile.form 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/comp/src/gb.report/FTest.class 2.0/trunk/comp/src/gb.report/Report.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-07 23:38:27
|
Revision: 263 http://svn.sourceforge.net/gambas/?rev=263&view=rev Author: gambas Date: 2007-04-07 16:38:28 -0700 (Sat, 07 Apr 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Initial version of the new package creation dialog. Only Mandriva is supported, and only partially at the moment - Menu integration does not work yet. * NEW: A new "Replace" menu entry that opens the find panel and moves the focus directly in the replace text box. * BUG: Text search works correctly in the text editor now. * BUG: You can create a new directory directly in the project root directory again. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FEditor.form 2.0/trunk/app/src/gambas2/FFind.class 2.0/trunk/app/src/gambas2/FFind.form 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/FMakeInstall.class 2.0/trunk/app/src/gambas2/FMakeInstall.form 2.0/trunk/app/src/gambas2/FTextEditor.class 2.0/trunk/app/src/gambas2/FTextEditor.form 2.0/trunk/app/src/gambas2/Package.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/app/src/gambas2/img/16/comment.png 2.0/trunk/app/src/gambas2/img/16/uncomment.png 2.0/trunk/app/src/gambas2/img/16/word.png 2.0/trunk/app/src/gambas2/img/logo/debian.png 2.0/trunk/app/src/gambas2/img/logo/suse.png 2.0/trunk/app/src/gambas2/tips/tips.de 2.0/trunk/app/src/gambas2/tips/tips.en 2.0/trunk/app/src/gambas2/tips/tips.es 2.0/trunk/app/src/gambas2/tips/tips.fr 2.0/trunk/app/src/gambas2/tips/tips.it 2.0/trunk/app/src/gambas2/tips/tips.nl 2.0/trunk/app/src/gambas2/tips/tips.pl 2.0/trunk/app/src/gambas2/tips/tips.sl 2.0/trunk/app/src/gambas2/tips/tips.sv 2.0/trunk/app/src/gambas2/tips/tips.tr 2.0/trunk/app/src/gambas2/tips/tips.zh 2.0/trunk/comp/src/gb.form/.info 2.0/trunk/comp/src/gb.form/.lang/.pot 2.0/trunk/comp/src/gb.form/.project 2.0/trunk/comp/src/gb.form/Wizard.class Added Paths: ----------- 2.0/trunk/app/src/gambas2/img/16/string.png 2.0/trunk/app/src/gambas2/img/logo/fedora.png 2.0/trunk/app/src/gambas2/img/logo/mandriva.png 2.0/trunk/app/src/gambas2/img/logo/slackware.png 2.0/trunk/app/src/gambas2/install/ 2.0/trunk/app/src/gambas2/install/group/ 2.0/trunk/app/src/gambas2/install/group/debian 2.0/trunk/app/src/gambas2/install/group/mandriva 2.0/trunk/app/src/gambas2/install/group/redhat 2.0/trunk/app/src/gambas2/install/group/suse 2.0/trunk/app/src/gambas2/install/menu/ 2.0/trunk/app/src/gambas2/install/menu/debian 2.0/trunk/app/src/gambas2/install/menu/mandriva 2.0/trunk/app/src/gambas2/install/menu/redhat 2.0/trunk/app/src/gambas2/install/menu/suse Removed Paths: ------------- 2.0/trunk/app/src/gambas2/.icon/ 2.0/trunk/app/src/gambas2/group/ 2.0/trunk/app/src/gambas2/menu/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-09 20:30:56
|
Revision: 267 http://svn.sourceforge.net/gambas/?rev=267&view=rev Author: gambas Date: 2007-04-09 13:30:46 -0700 (Mon, 09 Apr 2007) Log Message: ----------- [CONFIGURATION] * The README.HOW-TO-PACKAGE-GAMBAS.html file has been updated. The text version of this file has been removed. [DEVELOPMENT ENVIRONMENT] * NEW: The packager can make packages for Mandriva 2007. The XDG menu system is supported. * BUG: Form files are read as soon as the form is loaded in the IDE, not just when the form editor is shown. This makes the automatic completion works in the class editor when the form is not opened yet. [GB.QT] * NEW: TextArea.Selected returns if some text is selected in the TextArea. * NEW: TextArea.Unselect() is a synonymous for TextArea.Selection.Hide. * NEW: TextArea.Selection.Clear() has been removed. * NEW: TextBox.Selected returns if some text is selected in the TextBox. * NEW: TextBox.Unselect() is a synonymous for TextBox.Selection.Hide. * NEW: TextBox.Selection.Clear() has been removed. [GB.QT.KDE.HTML] * NEW: WebBrowser.Find() is a new method that opens the text search dialog on the active frame. * NEW: WebBrowser.Selection.Text is a new property that returns the text selected in the active frame. * NEW: WebBrowser.Selection.HTML is a new property that returns the HTML code of what is selected in the active frame. * NEW: WebBrowser.Selected returns if something is selected in the active frame. Modified Paths: -------------- 2.0/trunk/README.HOW-TO-PACKAGE-GAMBAS.html 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FAbout.class 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMakeInstall.class 2.0/trunk/app/src/gambas2/FMakeInstall.form 2.0/trunk/app/src/gambas2/Package.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/examples/examples/Networking/WebBrowser/.project 2.0/trunk/examples/examples/Networking/WebBrowser/FBrowser.class 2.0/trunk/examples/examples/Networking/WebBrowser/FBrowser.form 2.0/trunk/gb.qt/src/CTextArea.cpp 2.0/trunk/gb.qt/src/CTextBox.cpp 2.0/trunk/gb.qt.kde/src/html/CWebBrowser.cpp 2.0/trunk/gb.qt.kde/src/html/CWebBrowser.h 2.0/trunk/gb.qt.kde/src/html/main.cpp 2.0/trunk/gb.xml/src/rpc/gb.xml.rpc/.info 2.0/trunk/gb.xml/src/rpc/gb.xml.rpc/.list Added Paths: ----------- 2.0/trunk/app/src/gambas2/CHANGELOG 2.0/trunk/examples/examples/Networking/WebBrowser/CHANGELOG Removed Paths: ------------- 2.0/trunk/README.HOW-TO-PACKAGE-GAMBAS 2.0/trunk/app/src/gambas2/FMakeInstall2.class 2.0/trunk/app/src/gambas2/FMakeInstall2.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-09 20:35:31
|
Revision: 268 http://svn.sourceforge.net/gambas/?rev=268&view=rev Author: gambas Date: 2007-04-09 13:35:31 -0700 (Mon, 09 Apr 2007) Log Message: ----------- [CONFIGURATION] * The README.HOW-TO-PACKAGE-GAMBAS.html file has been updated. The text version of this file has been removed. [DEVELOPMENT ENVIRONMENT] * NEW: The packager can make packages for Mandriva 2007. The XDG menu system is supported. * BUG: Form files are read as soon as the form is loaded in the IDE, not just when the form editor is shown. This makes the automatic completion works in the class editor when the form is not opened yet. [GB.QT] * NEW: TextArea.Selected returns if some text is selected in the TextArea. * NEW: TextArea.Unselect() is a synonymous for TextArea.Selection.Hide. * NEW: TextArea.Selection.Clear() has been removed. * NEW: TextBox.Selected returns if some text is selected in the TextBox. * NEW: TextBox.Unselect() is a synonymous for TextBox.Selection.Hide. * NEW: TextBox.Selection.Clear() has been removed. [GB.QT.KDE.HTML] * NEW: WebBrowser.Find() is a new method that opens the text search dialog on the active frame. * NEW: WebBrowser.Selection.Text is a new property that returns the text selected in the active frame. * NEW: WebBrowser.Selection.HTML is a new property that returns the HTML code of what is selected in the active frame. * NEW: WebBrowser.Selected returns if something is selected in the active frame. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/fr.po Removed Paths: ------------- 2.0/trunk/app/src/gambas2/CHANGELOG 2.0/trunk/examples/examples/Networking/WebBrowser/CHANGELOG This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-04-10 20:57:55
|
Revision: 271 http://svn.sourceforge.net/gambas/?rev=271&view=rev Author: gambas Date: 2007-04-10 13:57:56 -0700 (Tue, 10 Apr 2007) Log Message: ----------- [GB.DB] * BUG: The Result.Update() method does not lose blob data anymore. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/Package.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/main/lib/db/CResult.c 2.0/trunk/main/lib/db/CResult.h 2.0/trunk/main/lib/db/Makefile.am 2.0/trunk/main/lib/db/sqlite.c Added Paths: ----------- 2.0/trunk/main/lib/db/gb_barray.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |