Thread: [Gambas-devel-svn] SF.net SVN: gambas: [1055] gambas/trunk (Page 2)
Brought to you by:
gambas
From: <ga...@us...> - 2008-02-02 10:54:10
|
Revision: 1055 http://gambas.svn.sourceforge.net/gambas/?rev=1055&view=rev Author: gambas Date: 2008-02-02 02:54:13 -0800 (Sat, 02 Feb 2008) Log Message: ----------- [CONFIGURATION] * NEW: Removed the out-of-date README.FEDORA and README.REDHAT files. [EXAMPLES] * BUG: Fixed the MoviePlayer example. * BUG: Fixed the Clock example. [WIKI CGI SCRIPT] * NEW: More titles and less borders. [INTERPRETER] * BUG: Uses the accurate method prototypes for Byte, Short and Single array classes. * BUG: Many fixes in the error management. [GB.DB] * BUG: Fixed many warnings and some 64 bits stuff in all database drivers. [GB.DEBUG] * NEW: More explicit error messages when the creation of debugger fifos fails. [GB.COMPRESS.ZLIB] * BUG: Fixed the compilation on 64 bits OS. [GB.CORBA] * NEW: Fixed some warnings. [GB.GTK] * NEW: Fixed some warnings. [GB.IMAGE] * NEW: Fixed some warnings. [GB.NET.SMTP] * NEW: Fixed some warnings. [GB.PDF] * NEW: Fixed some warnings. [GB.QT.KDE] * NEW: Fixed some warnings. [GB.SDL] * NEW: Fixed some warnings. [GB.SDL.SOUND] * NEW: Fixed some warnings. [GB.XML] * NEW: Fixed some warnings. [GB.XML.XLST] * NEW: Fixed some warnings. Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/doc.cgi/.lang/.pot gambas/trunk/app/src/doc.cgi/.lang/fr.mo gambas/trunk/app/src/doc.cgi/.lang/fr.po gambas/trunk/app/src/doc.cgi/.project gambas/trunk/app/src/doc.cgi/Main.module gambas/trunk/app/src/gambas3/.settings gambas/trunk/app/src/gambas3/Design.module gambas/trunk/app/src/gambas3/FAbout.form gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/support.txt gambas/trunk/examples/examples/Drawing/Clock/FClock.class gambas/trunk/examples/examples/Drawing/Sensor/.project gambas/trunk/examples/examples/Games/GameOfLife/.project gambas/trunk/examples/examples/Video/MoviePlayer/FMoviePlayer.form gambas/trunk/gb.compress.zlib/src/main.c gambas/trunk/gb.corba/src/CCorbaApplication.cpp gambas/trunk/gb.db.firebird/src/main.cpp gambas/trunk/gb.db.mysql/src/main.c gambas/trunk/gb.db.odbc/src/main.c gambas/trunk/gb.db.postgresql/src/main.c gambas/trunk/gb.db.sqlite2/src/main.cpp gambas/trunk/gb.db.sqlite3/src/main.cpp gambas/trunk/gb.desktop/src/desktop.c gambas/trunk/gb.gtk/src/CFont.cpp gambas/trunk/gb.gtk/src/CPictureBox.cpp gambas/trunk/gb.gtk/src/CScrollView.cpp gambas/trunk/gb.gtk/src/CSeparator.cpp gambas/trunk/gb.gtk/src/CSlider.cpp gambas/trunk/gb.gtk/src/CSpinBox.cpp gambas/trunk/gb.gtk/src/CStock.cpp gambas/trunk/gb.gtk/src/gpicture.cpp gambas/trunk/gb.gtk.svg/src/CSVG.c gambas/trunk/gb.image/src/kcpuinfo.cpp gambas/trunk/gb.net.smtp/src/base64.c gambas/trunk/gb.net.smtp/src/libsmtp_connection.c gambas/trunk/gb.pdf/src/CPdfDocument.cpp gambas/trunk/gb.qt.kde/src/CApplication.cpp gambas/trunk/gb.sdl/src/main.cpp gambas/trunk/gb.sdl.sound/src/sound.c gambas/trunk/gb.xml/src/CXMLDocument.c gambas/trunk/gb.xml/src/CXMLNode.c gambas/trunk/gb.xml/src/CXMLReader.c gambas/trunk/gb.xml/src/CXMLWriter.c gambas/trunk/gb.xml/src/xslt/CXSLT.c gambas/trunk/help/help/style.css gambas/trunk/main/gbc/gbc_read.c gambas/trunk/main/gbc/gbc_trans.c gambas/trunk/main/gbx/gb_error.c gambas/trunk/main/gbx/gb_error.h gambas/trunk/main/gbx/gbx_c_array.c gambas/trunk/main/gbx/gbx_c_error.c gambas/trunk/main/gbx/gbx_debug.c gambas/trunk/main/gbx/gbx_debug.h gambas/trunk/main/gbx/gbx_exec.c gambas/trunk/main/lib/db/CConnection.c gambas/trunk/main/lib/db/gb.db.h gambas/trunk/main/lib/db/gb.db.proto.h gambas/trunk/main/lib/db/main.c gambas/trunk/main/lib/db/main.h gambas/trunk/main/lib/debug/CDebug.c gambas/trunk/main/lib/debug/debug.c Removed Paths: ------------- gambas/trunk/README.FEDORA gambas/trunk/README.REDHAT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-02-06 00:25:43
|
Revision: 1060 http://gambas.svn.sourceforge.net/gambas/?rev=1060&view=rev Author: gambas Date: 2008-02-05 16:25:48 -0800 (Tue, 05 Feb 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Use TextEdit.RichText insted of TextEdit.Text. * BUG: END SUB can be the end of a method. The class analyze now takes ?\194?\160 that into account. [HELP] * BUG: Fixed the generated treeview. [COMPILER] * OPT: The NOT operator used just at the beginning of a conditional expression is optimized. Consequently, an expression like 'IF NOT 2' is now equivalent to 'IF 2 = 0' and not to 'IF (NOT 2) <> 0' as before. In other words, the boolean conversion is now done before the NOT, and not after. The following instructions are concerned: IF, WHILE, UNTIL. * NEW: BYREF is new keyword that is a more readable synonymous of '@'. [GB.DB.FORM] * BUG: Correctly manage data controls inside TabStrip-like containers. * BUG: Setting the focus on a non-initialized DataControl does not raise an error anymore. [GB.GTK] * BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a list of children widths, hidden children having a zero width. * BUG: Window arrangement is done before the Open event is raised, as in gb.qt. * BUG: Keyboard, focus and mouse events now work correctly on Window and DrawingArea controls. [GB.QT] * BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a list of children widths, hidden children having a zero width. * BUG: Many warning fixes. * BUG: Now the Control.Visible property works like in gb.gtk, i.e. it returns if the control was not explicitely hidden. Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/gambas3/.settings gambas/trunk/app/src/gambas3/CComponent.class gambas/trunk/app/src/gambas3/FAbout.class gambas/trunk/comp/src/gb.db.form/.lang/.pot gambas/trunk/comp/src/gb.db.form/.project gambas/trunk/comp/src/gb.db.form/DataControl.class gambas/trunk/comp/src/gb.db.form/DataSource.class gambas/trunk/gb.gtk/src/CSplitter.cpp gambas/trunk/gb.gtk/src/CSplitter.h gambas/trunk/gb.gtk/src/CWindow.cpp gambas/trunk/gb.gtk/src/gapplication.cpp gambas/trunk/gb.gtk/src/gcontainer.cpp gambas/trunk/gb.gtk/src/gcontrol.cpp gambas/trunk/gb.gtk/src/gdrawingarea.cpp gambas/trunk/gb.gtk/src/gmainwindow.cpp gambas/trunk/gb.gtk/src/gpicture.cpp gambas/trunk/gb.gtk/src/gpicture.h gambas/trunk/gb.gtk/src/gsignals.cpp gambas/trunk/gb.gtk/src/gsplitter.cpp gambas/trunk/gb.gtk/src/gsplitter.h gambas/trunk/gb.qt/share/gb.form.arrangement.h gambas/trunk/gb.qt/share/gb.form.picture.h gambas/trunk/gb.qt/src/CButton.cpp gambas/trunk/gb.qt/src/CCheckBox.cpp gambas/trunk/gb.qt/src/CContainer.cpp gambas/trunk/gb.qt/src/CDrawingArea.cpp gambas/trunk/gb.qt/src/CEmbedder.cpp gambas/trunk/gb.qt/src/CFrame.cpp gambas/trunk/gb.qt/src/CFrame.h gambas/trunk/gb.qt/src/CGridView.cpp gambas/trunk/gb.qt/src/CIconView.cpp gambas/trunk/gb.qt/src/CLabel.cpp gambas/trunk/gb.qt/src/CListBox.cpp gambas/trunk/gb.qt/src/CMenu.cpp gambas/trunk/gb.qt/src/CMessage.cpp gambas/trunk/gb.qt/src/CMovieBox.cpp gambas/trunk/gb.qt/src/CPanel.cpp gambas/trunk/gb.qt/src/CPicture.cpp gambas/trunk/gb.qt/src/CPicture.h gambas/trunk/gb.qt/src/CPictureBox.cpp gambas/trunk/gb.qt/src/CProgress.cpp gambas/trunk/gb.qt/src/CRadioButton.cpp gambas/trunk/gb.qt/src/CScreen.cpp gambas/trunk/gb.qt/src/CScrollBar.cpp gambas/trunk/gb.qt/src/CScrollView.cpp gambas/trunk/gb.qt/src/CSlider.cpp gambas/trunk/gb.qt/src/CSpinBox.cpp gambas/trunk/gb.qt/src/CSplitter.cpp gambas/trunk/gb.qt/src/CSplitter.h gambas/trunk/gb.qt/src/CTabStrip.cpp gambas/trunk/gb.qt/src/CTextArea.cpp gambas/trunk/gb.qt/src/CTextBox.cpp gambas/trunk/gb.qt/src/CTrayIcon.cpp gambas/trunk/gb.qt/src/CTreeView.cpp gambas/trunk/gb.qt/src/CWidget.cpp gambas/trunk/gb.qt/src/CWidget.h gambas/trunk/gb.qt/src/CWindow.cpp gambas/trunk/help/help/tree/tree.html gambas/trunk/main/gbc/gbc_class.c gambas/trunk/main/gbc/gbc_class.h gambas/trunk/main/gbc/gbc_header.c gambas/trunk/main/gbc/gbc_trans_ctrl.c gambas/trunk/main/gbc/gbc_trans_expr.c gambas/trunk/main/gbc/gbc_trans_tree.c gambas/trunk/main/gbx/gbx_expression.h gambas/trunk/main/lib/eval/eval.c gambas/trunk/main/share/gb_code.h gambas/trunk/main/share/gb_code_temp.h gambas/trunk/main/share/gb_reserved.h gambas/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...> - 2008-02-14 11:59:31
|
Revision: 1067 http://gambas.svn.sourceforge.net/gambas/?rev=1067&view=rev Author: gambas Date: 2008-02-14 03:59:36 -0800 (Thu, 14 Feb 2008) Log Message: ----------- [CONFIGURATION] * BUG: The external gettext library is now used only on OpenBSD. If needed, other systems can be added of course. * BUG: Fix Qt moc detection for OpenBSD. [DEVELOPMENT ENVIRONMENT] * NEW: In the menu editor, a new menu is now inserted after the current menu and not before. [INTERPRETER] * BUG: Object.Attach() and Object.Detach() now correctly deals with Observer objects. [COMPILER] * NEW: When a form method declaration has no END keyword, the error message is now accurate. It does not talk about the form definition anymore. [GB.GTK] * BUG: The use of alternative input methods do not print warnings anymore. Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/acinclude.m4 gambas/trunk/app/src/doc.cgi/Main.module gambas/trunk/gb.gtk/src/gapplication.cpp gambas/trunk/main/gbc/gbc_form.c gambas/trunk/main/gbc/gbc_header.c gambas/trunk/main/gbc/gbc_read.c gambas/trunk/main/gbx/gbx_c_class.c gambas/trunk/main/gbx/gbx_c_gambas.c gambas/trunk/main/gbx/gbx_c_gambas.h gambas/trunk/main/gbx/gbx_class.h gambas/trunk/main/gbx/gbx_class_init.c gambas/trunk/main/gbx/gbx_object.c gambas/trunk/main/gbx/gbx_object.h gambas/trunk/main/lib/eval/eval_analyze.c gambas/trunk/main/share/gbc_read_common.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-02-21 13:14:15
|
Revision: 1090 http://gambas.svn.sourceforge.net/gambas/?rev=1090&view=rev Author: gambas Date: 2008-02-21 05:14:16 -0800 (Thu, 21 Feb 2008) Log Message: ----------- [CONFIGURATION] * NEW: Configuration is aborted if libffi library and headers are not installed. [WIKI CGI SCRIPT] * NEW: New section for version-specific documentation. [INTERPRETER] * BUG: The gb.info file was wrong: Min() and Max() take only two arguments. * NEW: New LastEventName property in the Object class that returns the event name used by the last created object. [GB.DB.FORM] * NEW: DataControl raises the event of its internal editing control by using the new Object class property defined above. [GB.GTK] * BUG: The X and Y properties of the Window class now return the same values as gb.qt. [GB.QT] * BUG: Prevents a crash when a trayicon is destroyed or hidden during a trayicon event handler. Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/doc.cgi/.lang/.pot gambas/trunk/app/src/doc.cgi/.project gambas/trunk/app/src/doc.cgi/Main.module gambas/trunk/comp/src/gb.db.form/.lang/.pot gambas/trunk/comp/src/gb.db.form/DataControl.class gambas/trunk/gb.gtk/src/gmainwindow.cpp gambas/trunk/gb.qt/src/CTrayIcon.cpp gambas/trunk/main/configure.ac gambas/trunk/main/gbx/Makefile.am gambas/trunk/main/gbx/gbx_c_class.c gambas/trunk/main/gbx/gbx_class_info.c gambas/trunk/main/gbx/gbx_object.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-02-21 14:13:44
|
Revision: 1091 http://gambas.svn.sourceforge.net/gambas/?rev=1091&view=rev Author: gambas Date: 2008-02-21 06:13:47 -0800 (Thu, 21 Feb 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: 2.1 changes were merged. [INTERPRETER] * BUG: Static properties or methods returning virtual classes work again. Color[xxx] is one of them. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/CComponent.class gambas/trunk/app/src/gambas3/CCoolButton.class gambas/trunk/app/src/gambas3/CExportInfo.class gambas/trunk/app/src/gambas3/Design.module gambas/trunk/app/src/gambas3/FCreateProject.class gambas/trunk/app/src/gambas3/FDebugInfo.class gambas/trunk/app/src/gambas3/FDebugInfo.form gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FFind.class gambas/trunk/app/src/gambas3/FForm.class gambas/trunk/app/src/gambas3/FFormStack.class gambas/trunk/app/src/gambas3/FIconEditor.class gambas/trunk/app/src/gambas3/FIconEditor.form gambas/trunk/app/src/gambas3/FMain.class gambas/trunk/app/src/gambas3/FMain.form gambas/trunk/app/src/gambas3/FMakeExecutable.form gambas/trunk/app/src/gambas3/FMakeInstall.class gambas/trunk/app/src/gambas3/FMakeInstall.form gambas/trunk/app/src/gambas3/FMenu.class gambas/trunk/app/src/gambas3/FProperty.class gambas/trunk/app/src/gambas3/FProperty.form gambas/trunk/app/src/gambas3/FPropertyProject.class gambas/trunk/app/src/gambas3/FPropertyProject.form gambas/trunk/app/src/gambas3/FToolBar.class gambas/trunk/app/src/gambas3/FToolBox.class gambas/trunk/app/src/gambas3/FTranslate.class gambas/trunk/app/src/gambas3/FWelcome.class gambas/trunk/app/src/gambas3/FWelcome.form gambas/trunk/app/src/gambas3/MHelp.module gambas/trunk/app/src/gambas3/Package.module gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/install/Makefile.am gambas/trunk/app/src/gambas3/install/acinclude.m4 gambas/trunk/app/src/gambas3/template/CControl.class gambas/trunk/app/src/gambas3/template/list gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_api.h gambas/trunk/main/gbx/gbx_class_native.c gambas/trunk/main/share/gambas.h Added Paths: ----------- gambas/trunk/app/src/gambas3/img/16/preview.png gambas/trunk/app/src/gambas3/template/_component gambas/trunk/app/src/gambas3/template/ccontainer.png gambas/trunk/app/src/gambas3/template/ccontrol.png Removed Paths: ------------- gambas/trunk/app/src/gambas3/img/anim/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-02-24 16:43:44
|
Revision: 1108 http://gambas.svn.sourceforge.net/gambas/?rev=1108&view=rev Author: gambas Date: 2008-02-24 08:29:02 -0800 (Sun, 24 Feb 2008) Log Message: ----------- [CONFIGURATION] * BUG: Automatically search libraries in lib64 before searching in lib. * BUG: Fixed the $FFI_LIB test in main/configure.ac. [DEVELOPMENT ENVIRONMENT] * BUG: Tips of the days are displayed correctly again. [INTERPRETER] * BUG: Val() now takes the thousand separator into account when this separator is a space character. * BUG: Removed the 64 bits warning. * BUG: Fixes the 'lib64' problem. Now components are searched in the 'lib64' directory on 64 bits OS. If they are not stored in 'lib64', then the default 'lib' directory is used. * NEW: Passing argument by reference is not allowed anymore if not explicitely specified in the method declaration. [COMPILER] * NEW: Passing argument by reference is not allowed anymore if not explicitely specified in the method declaration. [INFORMER] * BUG: Fixes the 'lib64' problem. Now components are searched in the 'lib64' directory on 64 bits OS. If they are not stored in 'lib64', then the default 'lib' directory is used. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FTips.class gambas/trunk/main/configure.ac gambas/trunk/main/gbc/gbc_class.c gambas/trunk/main/gbc/gbc_class.h gambas/trunk/main/gbc/gbc_header.c gambas/trunk/main/gbc/gbi.c gambas/trunk/main/gbx/gb_error.c gambas/trunk/main/gbx/gbx_class.c gambas/trunk/main/gbx/gbx_exec.c gambas/trunk/main/gbx/gbx_exec_loop.c gambas/trunk/main/gbx/gbx_extern.c gambas/trunk/main/gbx/gbx_number.c gambas/trunk/main/gbx/gbx_project.c gambas/trunk/main/share/gb_code.h gambas/trunk/main/share/gb_code_temp.h gambas/trunk/main/share/gb_common.h gambas/trunk/main/share/gb_component.h gambas/trunk/main/share/gbc_trans_common.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-02-25 15:34:05
|
Revision: 1110 http://gambas.svn.sourceforge.net/gambas/?rev=1110&view=rev Author: gambas Date: 2008-02-25 07:34:04 -0800 (Mon, 25 Feb 2008) Log Message: ----------- [CONFIGURATION] * BUG: Pass the -fsigned-char option to gcc so that gambas compiles on architectures where char is unsigned by default. [INTERPRETER] * BUG: Fixed the conversion from negative integer to string. Modified Paths: -------------- gambas/trunk/acinclude.m4 gambas/trunk/comp/src/gb.settings/.project gambas/trunk/main/gbx/gbx_number.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2008-02-26 08:23:45
|
Revision: 1121 http://gambas.svn.sourceforge.net/gambas/?rev=1121&view=rev Author: lordheavy Date: 2008-02-26 00:23:51 -0800 (Tue, 26 Feb 2008) Log Message: ----------- [CONFIGURATION] * NEW: Now GB_COMPONENT_PKG_CONFIG() macro accept an optional warning message. * BUG: Add support for libffi through pkg-config when available. Modified Paths: -------------- gambas/trunk/acinclude.m4 gambas/trunk/main/configure.ac gambas/trunk/main/gbx/Makefile.am This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-11 13:30:04
|
Revision: 1153 http://gambas.svn.sourceforge.net/gambas/?rev=1153&view=rev Author: gambas Date: 2008-03-11 06:29:47 -0700 (Tue, 11 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: English and french tips were updated. A new tip was added. * NEW: Files that were opened at project close are automatically reopened ?\194?\160 when the project is loaded again. * NEW: A warning message is displayed when the GNU translation tools are not installed. * BUG: The code editor method combo-box is correctly updated now. * BUG: Some fixes in the automatic completion. * BUG: Replace points by dash in the name of packages generated by the IDE packager. * NEW: Updated russian translation * NEW: Updated french translation [DATABASE MANAGER] * NEW: Updated russian translation [EXAMPLES] * BUG: Fixed the Gravity and the GameOfLife examples so that they do not ?\194?\160 use public form controls anymore. [INTERPRETER] * OPT: Many optimizations in the string substitution routines, the internal datatype conversions, the INPUT and LINE INPUT instructions, the error messages generation, the object and string reference counting, and the memory allocation routines. * NEW: Opening a device file in direct mode (FOR READ/WRITE) is now automatically non blocking. * OPT: Lof() now only tries its different methods (ioctl and lseek) once. * BUG: Val() now ignores thousand separators characters at the end of the number. * NEW: A new flag for enabling the stack trace generation at each error. [GB.DEBUG] * BUG: The gb.debug component interface declaration was not 64-bits aware. [GB.EVAL] * BUG: The Highlight.Purge() method now correctly deals with non-ASCII characters. [GB.FORM] * BUG: TableView.Edit() does not raise a "read-only combo-box" error anymore. [GB.FORM.DIALOG] * BUG: Dialog buttons now are never cut. [GB.GTK] * BUG: Cached drawing areas are correctly redrawn now. * BUG: Loading big images now works correctly. There is apparently a bug in the GTK+ image loader, and I found a workaround. * BUG: Message boxes correctly display the text of their buttons now. [GB.QT] * BUG: The Open, and initial Move and Resize event of embedded forms are now always raised when you call the Show method or if you set the Visible property. Before, it was raised when the embedded form was actually shown. [GB.SETTINGS] * NEW: Settings are now stored in ~/.config/gambasX, where X is the gambas version number. * BUG: Strings are correctly quoted inside the settings file now. [GB.WEB] * NEW: Application.Protocol is a new property that allows to tell the ?\194?\160 component that the protocol is not necessarily "http". Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/doc.cgi/.lang/fr.po gambas/trunk/app/src/gambas-database-manager/.lang/.pot gambas/trunk/app/src/gambas-database-manager/.lang/fr.po gambas/trunk/app/src/gambas-database-manager/.lang/ru.mo gambas/trunk/app/src/gambas-database-manager/.lang/ru.po gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.lang/ru.mo gambas/trunk/app/src/gambas3/.lang/ru.po gambas/trunk/app/src/gambas3/.settings gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FMain.class gambas/trunk/app/src/gambas3/FTextEditor.class gambas/trunk/app/src/gambas3/FTips.form gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/tips/tips.en gambas/trunk/app/src/gambas3/tips/tips.fr gambas/trunk/comp/src/gb.form/.lang/.pot gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.form/FileView.class gambas/trunk/comp/src/gb.form/TableView.class gambas/trunk/comp/src/gb.settings/.project gambas/trunk/comp/src/gb.settings/Main.module gambas/trunk/comp/src/gb.settings/Settings.class gambas/trunk/comp/src/gb.web/Application.module gambas/trunk/comp/src/gb.web/Response.module gambas/trunk/examples/examples/Drawing/Gravity/.project gambas/trunk/examples/examples/Drawing/Gravity/FMain.class gambas/trunk/examples/examples/Games/GameOfLife/.project gambas/trunk/examples/examples/Games/GameOfLife/CGameField.class gambas/trunk/examples/examples/Games/GameOfLife/FMain.class gambas/trunk/gb.gtk/src/CMessage.cpp gambas/trunk/gb.gtk/src/gdrawingarea.cpp gambas/trunk/gb.gtk/src/gpicture.cpp gambas/trunk/gb.qt/src/CWindow.cpp gambas/trunk/main/gbc/gb_str.c gambas/trunk/main/gbc/gb_str.h gambas/trunk/main/gbx/gb_error.c gambas/trunk/main/gbx/gb_error.h gambas/trunk/main/gbx/gbx_class.c gambas/trunk/main/gbx/gbx_class.h gambas/trunk/main/gbx/gbx_class_init.c gambas/trunk/main/gbx/gbx_exec.c gambas/trunk/main/gbx/gbx_exec.h gambas/trunk/main/gbx/gbx_exec_pop.c gambas/trunk/main/gbx/gbx_exec_push.c gambas/trunk/main/gbx/gbx_extern.c gambas/trunk/main/gbx/gbx_number.c gambas/trunk/main/gbx/gbx_project.c gambas/trunk/main/gbx/gbx_stream.c gambas/trunk/main/gbx/gbx_stream.h gambas/trunk/main/gbx/gbx_stream_direct.c gambas/trunk/main/gbx/gbx_string.c gambas/trunk/main/gbx/gbx_subr_file.c gambas/trunk/main/gbx/gbx_subr_string.c gambas/trunk/main/gbx/gbx_subr_test.c gambas/trunk/main/gbx/gbx_subst.c gambas/trunk/main/gbx/gbx_subst.h gambas/trunk/main/gbx/gbx_value.h gambas/trunk/main/lib/debug/gb.debug.h gambas/trunk/main/lib/eval/CHighlight.c gambas/trunk/main/libltdl/aclocal.m4 gambas/trunk/main/share/gb_alloc.h gambas/trunk/main/share/gb_alloc_temp.h gambas/trunk/main/share/gb_code_temp.h Added Paths: ----------- gambas/trunk/app/src/doc.cgi/.lang/ru.mo gambas/trunk/app/src/doc.cgi/.lang/ru.po Removed Paths: ------------- gambas/trunk/examples/examples/Drawing/Gravity/modGravity.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-13 21:38:41
|
Revision: 1164 http://gambas.svn.sourceforge.net/gambas/?rev=1164&view=rev Author: gambas Date: 2008-03-13 14:38:43 -0700 (Thu, 13 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Ensure that the property panel is correctly shown or hidden when the project is opened. * NEW: Automatic completion is automatically inserted in all cases when pressing one of the following keys: '.','(','[','!'. [INTERPRETER] * BUG: Mid$("", 0) returns an error now. [GB.GTK] * BUG: The Font property management was fixed. * BUG: The icon text alignment was fixed in the IconView control. [GB.FORM] * NEW: The FileChooser bookmark list was redesigned. [GB.QT] * BUG: Control.Handle returns a Pointer now. Modified Paths: -------------- gambas/trunk/Makefile.am gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.settings gambas/trunk/app/src/gambas3/FAbout.form gambas/trunk/app/src/gambas3/FCompletion.class gambas/trunk/app/src/gambas3/FGotoLine.form gambas/trunk/app/src/gambas3/FWelcome.form gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/authors.txt gambas/trunk/comp/src/gb.form/.lang/.pot gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.form/DirView.class gambas/trunk/comp/src/gb.form/FDirChooser.class gambas/trunk/comp/src/gb.form/FDirChooser.form gambas/trunk/comp/src/gb.form/FMain.class gambas/trunk/comp/src/gb.form/FileView.class gambas/trunk/comp/src/gb.form/ValueBox.class gambas/trunk/comp/src/gb.form.mdi/.project gambas/trunk/comp/src/gb.form.mdi/FWorkspace.class gambas/trunk/examples/examples/Games/DeepSpace/MMain.module gambas/trunk/examples/examples/Games/GameOfLife/.settings gambas/trunk/gb.gtk/src/CFont.cpp gambas/trunk/gb.gtk/src/CScreen.cpp gambas/trunk/gb.gtk/src/gapplication.cpp gambas/trunk/gb.gtk/src/gcontrol.cpp gambas/trunk/gb.gtk/src/gdesktop.cpp gambas/trunk/gb.gtk/src/gdraw.cpp gambas/trunk/gb.gtk/src/gmessage.cpp gambas/trunk/gb.gtk/src/gtree.cpp gambas/trunk/gb.gtk/src/tablerender.h gambas/trunk/gb.qt/src/CTrayIcon.cpp gambas/trunk/gb.qt/src/share/CControl_desc.h 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...> - 2008-03-13 22:35:18
|
Revision: 1166 http://gambas.svn.sourceforge.net/gambas/?rev=1166&view=rev Author: gambas Date: 2008-03-13 15:35:22 -0700 (Thu, 13 Mar 2008) Log Message: ----------- [GB.QT] * BUG: Removed some memory leaks. [GB.GTK] * BUG: Removed some memory leaks. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.settings gambas/trunk/gb.gtk/src/CPicture.cpp gambas/trunk/gb.qt/share/gb.form.picture.h gambas/trunk/gb.qt/src/CImage.cpp gambas/trunk/gb.qt/src/CPicture.cpp gambas/trunk/gb.qt/src/CTabStrip.cpp gambas/trunk/gb.qt/src/CWidget.cpp gambas/trunk/gb.qt/src/CWindow.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-17 14:54:39
|
Revision: 1187 http://gambas.svn.sourceforge.net/gambas/?rev=1187&view=rev Author: gambas Date: 2008-03-17 07:54:17 -0700 (Mon, 17 Mar 2008) Log Message: ----------- [INTERPRETER] * NEW: New API for returning the parent (event observer) of an object. [COMPILER] * BUG: Setting a property without having to use ME is possible now, if the property is defined in the same file of course. * NEW: Mid$() can be used on the left side of an assignment. [GB.FORM] * BUG: ValueBox now reformats its contents after its Value property has been set. [GB.GTK] * BUG: Composed keys are correctly handled again by KeyPress events, but the SCIM input method does not work yet. * BUG: Form are their own event observer only if no event observer is defined at form instanciation. * BUG: The default tray icon is the same as gb.qt now. [GB.QT] * BUG: TrayIcon objects are correctly destroyed at program exit. * BUG: Form are their own event observer only if no event observer is defined at form instanciation. * BUG: TrayIcon Width, Height, ScreenX and ScreenY properties do not crash anymore when the tray icon is hidden. They return zero instead. Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/gambas3/.settings gambas/trunk/comp/src/gb.form/.info gambas/trunk/comp/src/gb.form/ValueBox.class gambas/trunk/examples/examples/Games/GameOfLife/.settings gambas/trunk/gb.gtk/src/CWindow.cpp gambas/trunk/gb.gtk/src/gapplication.cpp gambas/trunk/gb.gtk/src/gtrayicon.cpp gambas/trunk/gb.qt/src/CTrayIcon.cpp gambas/trunk/gb.qt/src/CWindow.cpp gambas/trunk/gb.qt/src/main.cpp gambas/trunk/main/gbc/gbc_class.c gambas/trunk/main/gbc/gbc_class.h gambas/trunk/main/gbc/gbc_trans.h gambas/trunk/main/gbc/gbc_trans_code.c gambas/trunk/main/gbc/gbc_trans_expr.c gambas/trunk/main/gbc/gbc_trans_subr.c gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_class.h gambas/trunk/main/gbx/gbx_class_native.c gambas/trunk/main/gbx/gbx_expression.h gambas/trunk/main/share/gambas.h gambas/trunk/main/share/gb_code_temp.h gambas/trunk/main/share/gb_reserved.h gambas/trunk/main/share/gb_reserved_temp.h Added Paths: ----------- gambas/trunk/gb.qt/share/gb.form.trayicon.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-18 10:04:11
|
Revision: 1191 http://gambas.svn.sourceforge.net/gambas/?rev=1191&view=rev Author: gambas Date: 2008-03-18 03:04:10 -0700 (Tue, 18 Mar 2008) Log Message: ----------- [INTERPRETER] * NEW: A new API that returns if the current language is right-to-left written. [GB.DRAW] * NEW: New Draw.Style.* style drawing methods for drawing arrows, check-boxes, option buttons, separators, focus rectangles, push buttons, panels, and splitter handles. * NEW: Draw.Save() and Draw.Restore() are two new methods that save and restore the state of the current drawing properties. [GB.GTK] * NEW: Support for the style drawing methods. * NEW: Support for Draw.Save() and Draw.Restore(). [GB.QT] * NEW: Support for the style drawing methods. * NEW: Support for Draw.Save() and Draw.Restore(). Modified Paths: -------------- gambas/trunk/TODO gambas/trunk/app/src/gambas3/.settings gambas/trunk/gb.gtk/src/CDraw.cpp gambas/trunk/gb.gtk/src/gdraw.cpp gambas/trunk/gb.gtk/src/gdraw.h gambas/trunk/gb.qt/share/gb.form.const.h gambas/trunk/gb.qt/src/CDraw.cpp gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_api.h gambas/trunk/main/lib/draw/CDraw.c gambas/trunk/main/lib/draw/CDraw.h gambas/trunk/main/lib/draw/gb.draw.h gambas/trunk/main/lib/draw/main.c gambas/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...> - 2008-03-18 12:48:47
|
Revision: 1192 http://gambas.svn.sourceforge.net/gambas/?rev=1192&view=rev Author: gambas Date: 2008-03-18 05:47:12 -0700 (Tue, 18 Mar 2008) Log Message: ----------- [COMPILER] * BUG: Removed the ability to compile property access without having to use the ME keyword. This is too disturbing. [GB.FORM] * NEW: Uses the Draw.Style API for drawing SidePanel arrows. [GB.FORM.MDI] * NEW: Uses the Draw.Style API for drawing Toolbar handles. [GB.QT] * BUG: The style drawing methods really work. Modified Paths: -------------- gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.form/FSidePanel.class gambas/trunk/comp/src/gb.form/FSidePanel.form gambas/trunk/comp/src/gb.form.mdi/FToolBar.class gambas/trunk/gb.gtk/src/gdraw.cpp gambas/trunk/gb.qt/src/CDraw.cpp gambas/trunk/main/gbc/gbc_trans_expr.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-19 14:33:33
|
Revision: 1199 http://gambas.svn.sourceforge.net/gambas/?rev=1199&view=rev Author: gambas Date: 2008-03-19 07:32:30 -0700 (Wed, 19 Mar 2008) Log Message: ----------- [WIKI CGI SCRIPT] * BUG: Some little layout fixes. [INTERPRETER] * OPT: Read the user home directory only if the current uid has changed. Otherwise, cache it into memory. * OPT: String memory management has been optimized. * OPT: Some little optimizations there and there. * NEW: A new interpreter option, "-k", that prevents shared library to be unloaded until the process terminates. That can be useful when debugging with valgrind. * OPT: System.Language property was optimized. * OPT: The gb_error.c file is now compiled with -O3. [GB.GTK] * BUG: Disable the management of input methods in TextBox and TextArea controls, so that the input methods are not disturbed. Consequently; SCIM and Bridged SCIM work again. * BUG: You can read keyboard events properties in a Form KeyPress or KeyRelease event handler correctly now. Modified Paths: -------------- gambas/trunk/app/src/doc.cgi/.lang/.pot gambas/trunk/app/src/doc.cgi/.project gambas/trunk/app/src/doc.cgi/Main.module gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.lang/fa.po gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.lang/gl_ES.po gambas/trunk/app/src/gambas3/.lang/hr.po gambas/trunk/app/src/gambas3/Project.module gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.web/.info gambas/trunk/comp/src/gb.web/.project gambas/trunk/examples/examples/OpenGL/PDFPresentation/.settings gambas/trunk/gb.gtk/src/gapplication.cpp gambas/trunk/gb.gtk/src/gcontrol.cpp gambas/trunk/gb.gtk/src/gcontrol.h gambas/trunk/gb.gtk/src/gkey.h gambas/trunk/gb.gtk/src/gsignals.cpp gambas/trunk/gb.gtk/src/gtextarea.cpp gambas/trunk/gb.gtk/src/gtextbox.cpp gambas/trunk/help/help/tree/tree.html gambas/trunk/main/gbx/Makefile.am gambas/trunk/main/gbx/gb_error.c gambas/trunk/main/gbx/gb_file.c gambas/trunk/main/gbx/gb_file.h gambas/trunk/main/gbx/gbx.c gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_api.h gambas/trunk/main/gbx/gbx_c_application.c gambas/trunk/main/gbx/gbx_c_array.c gambas/trunk/main/gbx/gbx_c_array.h gambas/trunk/main/gbx/gbx_c_collection.c 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_exec_pop.c gambas/trunk/main/gbx/gbx_exec_push.c gambas/trunk/main/gbx/gbx_local.c gambas/trunk/main/gbx/gbx_project.c gambas/trunk/main/gbx/gbx_project.h gambas/trunk/main/gbx/gbx_stack.c gambas/trunk/main/gbx/gbx_stack.h gambas/trunk/main/gbx/gbx_stream.c gambas/trunk/main/gbx/gbx_string.c gambas/trunk/main/gbx/gbx_string.h gambas/trunk/main/gbx/gbx_subr.c gambas/trunk/main/gbx/gbx_type.c gambas/trunk/main/gbx/gbx_type.h gambas/trunk/main/gbx/gbx_value.c gambas/trunk/main/gbx/gbx_value.h gambas/trunk/main/gbx/gbx_variant.h gambas/trunk/main/share/gb_alloc.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-19 23:50:43
|
Revision: 1203 http://gambas.svn.sourceforge.net/gambas/?rev=1203&view=rev Author: gambas Date: 2008-03-19 16:50:34 -0700 (Wed, 19 Mar 2008) Log Message: ----------- [INTERPRETER] * BUG: Fixes the string management optimizations. * OPT: Optimization of the string search function (InStr, RInstr). * OPT: Optimization of the Split() function. * OPT: Optimization of local variables initialization when entering a method. [GB.NET.SMTP] * BUG: Fixes the Makefile.am file so that the component compiles if the glib library is installed in a non-standard directory. [GB.QTE.EXT] * BUG: Fixes the gb.qte.ext.component file. Modified Paths: -------------- gambas/trunk/gb.net.smtp/src/Makefile.am gambas/trunk/gb.qte/src/ext/gb.qte.ext.component gambas/trunk/help/help/tree/tree.html gambas/trunk/main/gbx/gbx_c_array.c gambas/trunk/main/gbx/gbx_exec.c gambas/trunk/main/gbx/gbx_exec_loop.c gambas/trunk/main/gbx/gbx_stack.c gambas/trunk/main/gbx/gbx_stack.h gambas/trunk/main/gbx/gbx_string.c gambas/trunk/main/gbx/gbx_value.c gambas/trunk/main/gbx/gbx_value.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-20 22:35:00
|
Revision: 1209 http://gambas.svn.sourceforge.net/gambas/?rev=1209&view=rev Author: gambas Date: 2008-03-20 15:35:01 -0700 (Thu, 20 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The busy cursor is now correctly reset in all cases when clearing the recent file history. [GB.FORM] * BUG: The SidePanel.Border works correctly now. [GB.GTK] * BUG: Correctly handles mouse button events in the GridView control. * BUG: Setting GridView.Rows.Count to zero does not make rows too small anymore. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FMain.class gambas/trunk/app/src/gambas3/img/control/textedit.png gambas/trunk/comp/src/gb.form/.project gambas/trunk/comp/src/gb.form/FSidePanel.class gambas/trunk/examples/examples/Games/GameOfLife/.settings gambas/trunk/gb.gtk/src/gcontrol.cpp gambas/trunk/gb.gtk/src/gcontrol.h gambas/trunk/gb.gtk/src/ggridview.cpp gambas/trunk/gb.gtk/src/gsignals.cpp gambas/trunk/gb.gtk/src/gtools.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-21 02:06:03
|
Revision: 1220 http://gambas.svn.sourceforge.net/gambas/?rev=1220&view=rev Author: gambas Date: 2008-03-20 19:05:59 -0700 (Thu, 20 Mar 2008) Log Message: ----------- [INTERPRETER] * NEW: Removes some warnings with uid_t on some systems. [GB.EVAL] * BUG: Removes the use of a non existing function. [GB.DESKTOP] * BUG: Try to enhance the detection of libXtst. Modified Paths: -------------- gambas/trunk/gb.desktop/configure.ac gambas/trunk/main/gbx/gbx_c_file.c gambas/trunk/main/lib/eval/gb_error.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-21 15:40:00
|
Revision: 1226 http://gambas.svn.sourceforge.net/gambas/?rev=1226&view=rev Author: gambas Date: 2008-03-21 08:39:46 -0700 (Fri, 21 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Importing a form now correctly associates the imported pictures. [INTERPRETER] * BUG: Fixed some structure alignment issues. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FCreateFile.class gambas/trunk/main/gbx/gbx_value.h gambas/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...> - 2008-03-23 01:07:32
|
Revision: 1233 http://gambas.svn.sourceforge.net/gambas/?rev=1233&view=rev Author: gambas Date: 2008-03-22 18:07:33 -0700 (Sat, 22 Mar 2008) Log Message: ----------- [CONFIGURATION] * BUG: config.h.in files were removed from repository. [DEVELOPMENT ENVIRONMENT] * BUG: The initial stack backtrace list width is correct now. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FDebugInfo.class Removed Paths: ------------- gambas/trunk/app/config.h.in gambas/trunk/comp/config.h.in gambas/trunk/config.h.in gambas/trunk/examples/config.h.in gambas/trunk/gb.compress.bzlib2/config.h.in gambas/trunk/gb.compress.zlib/config.h.in gambas/trunk/gb.corba/config.h.in gambas/trunk/gb.crypt/config.h.in gambas/trunk/gb.db.firebird/config.h.in gambas/trunk/gb.db.mysql/config.h.in gambas/trunk/gb.db.odbc/config.h.in gambas/trunk/gb.db.postgresql/config.h.in gambas/trunk/gb.db.sqlite2/config.h.in gambas/trunk/gb.db.sqlite3/config.h.in gambas/trunk/gb.gtk/config.h.in gambas/trunk/gb.gtk.svg/config.h.in gambas/trunk/gb.image/config.h.in gambas/trunk/gb.net/config.h.in gambas/trunk/gb.net.curl/config.h.in gambas/trunk/gb.net.smtp/config.h.in gambas/trunk/gb.opengl/config.h.in gambas/trunk/gb.pcre/config.h.in gambas/trunk/gb.pdf/config.h.in gambas/trunk/gb.qt/config.h.in gambas/trunk/gb.qt.kde/config.h.in gambas/trunk/gb.qte/config.h.in gambas/trunk/gb.sdl/config.h.in gambas/trunk/gb.sdl.sound/config.h.in gambas/trunk/gb.v4l/config.h.in gambas/trunk/gb.xml/config.h.in gambas/trunk/help/config.h.in gambas/trunk/main/config.h.in This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-25 17:20:32
|
Revision: 1254 http://gambas.svn.sourceforge.net/gambas/?rev=1254&view=rev Author: gambas Date: 2008-03-25 10:19:59 -0700 (Tue, 25 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Procedure folding is usable now. Use CTRL+ENTER and CTRL+SHIT+ENTER to expand or collapse a procedure in the IDE editor. [GB.GTK] * BUG: Fix the Key.Enter keyboard constant value. * BUG: The AutoResize property of containers now takes the Padding property into account in all cases. [GB.QT] * BUG: The AutoResize property of containers now takes the Padding property into account in all cases. [GB.QT.EXT] * NEW: Procedure folding fixes and enhancements in Editor. * NEW: Editor interface has changed. * NEW: Editor highlight styles got a new Background property for defining the background color of a token. It can be Color.Transparent: then no background is drawn in that case. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/CComponent.class gambas/trunk/app/src/gambas3/Design.module gambas/trunk/app/src/gambas3/FCompletion.class gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FFind.class gambas/trunk/app/src/gambas3/FOutput.class gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/authors.txt gambas/trunk/gb.gtk/src/CKey.cpp gambas/trunk/gb.qt/share/gb.form.arrangement.h gambas/trunk/gb.qt/src/ext/CEditor.cpp gambas/trunk/gb.qt/src/ext/CEditor.h gambas/trunk/gb.qt/src/ext/gdocument.cpp gambas/trunk/gb.qt/src/ext/gdocument.h gambas/trunk/gb.qt/src/ext/gview.cpp gambas/trunk/gb.qt/src/ext/gview.h gambas/trunk/gb.qt/src/ext/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-25 23:11:06
|
Revision: 1257 http://gambas.svn.sourceforge.net/gambas/?rev=1257&view=rev Author: gambas Date: 2008-03-25 16:10:47 -0700 (Tue, 25 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Use a relative font size in the workspace, toolbox and property sheet. * NEW: The file information dialog was synchronized with Gambas 2. * BUG: UTF-8 fixes in the code editor. * BUG: Help pages on special method are opened correctly now. * BUG: Breakpoint list is not filled with impossible breakpoints anymore. * BUG: The procedure combo-box now always displays the correct current procedure name. [GB.QT.EXT] * BUG: Some fixes in Editor procedure folding. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FCompletion.class gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FInfo.class gambas/trunk/app/src/gambas3/FInfo.form gambas/trunk/app/src/gambas3/FMain.form gambas/trunk/app/src/gambas3/FToolBox.form gambas/trunk/app/src/gambas3/MHelp.module gambas/trunk/gb.qt/src/ext/CEditor.cpp gambas/trunk/gb.qt/src/ext/gview.cpp gambas/trunk/gb.qt/src/ext/gview.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-26 16:28:26
|
Revision: 1261 http://gambas.svn.sourceforge.net/gambas/?rev=1261&view=rev Author: gambas Date: 2008-03-26 09:28:18 -0700 (Wed, 26 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Save and restore which procedures are folded. [INTERPRETER] * BUG: Creates a new GB.SubstStringAdd() API for making a difference between substitution callbacks that return a string and those who call GB.SubstAdd() directly. [GB.DB] * BUG: Use the new GB.StringSubstAdd() API. [GB.FORM] * NEW: FileChooser and DirChooser got a new Reload() method that refreshes their contents. [GB.QT.EXT] * BUG: In Editor, a line must be colorized before knowing if it is a "procedure" limit. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/support.txt gambas/trunk/comp/src/gb.db.form/.project gambas/trunk/comp/src/gb.form/.info gambas/trunk/comp/src/gb.form/.lang/.pot gambas/trunk/comp/src/gb.form/DirChooser.class gambas/trunk/comp/src/gb.form/FDirChooser.class gambas/trunk/comp/src/gb.form/FileChooser.class gambas/trunk/gb.qt/src/ext/gview.cpp gambas/trunk/main/gbx/gbx_api.c gambas/trunk/main/gbx/gbx_string.c gambas/trunk/main/gbx/gbx_string.h gambas/trunk/main/gbx/gbx_subst.h gambas/trunk/main/lib/db/main.c gambas/trunk/main/share/gambas.h gambas/trunk/main/share/gb_alloc_temp.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-03-27 16:39:45
|
Revision: 1265 http://gambas.svn.sourceforge.net/gambas/?rev=1265&view=rev Author: gambas Date: 2008-03-27 09:27:24 -0700 (Thu, 27 Mar 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Theme configuration was redesigned and enhanced. * NEW: New option for setting the tabstrip title font size. * NEW: The file information dialog was redesigned again. * NEW: Some option names were changed. * NEW: A new "Project" virtual folder in the project treeview. It is exactly like the "Data" folder, except that the files and directories stored inside are not included in the generated executable. * NEW: As keywords are now displayed in lowercase by default, there is a new option for displaying them in uppercase as before. [INTERPRETER] * NEW: Object.GetProperty() can return the value of a constant. * NEW: Keywords are in lowercase by default, the first letter of the words staying in uppercase. [GB.EVAL] * NEW: The Highlight.Analyze() method always return keywords in uppercase, so that you can continue to easily do non case-sensitive comparisons. [GB.QT] * BUG: Changing the font of a TabStrip correctly refreshes its layout now. [GB.QT.EXT] * NEW: The Editor can force highlighted keywords to uppercase. It is only done when drawing the keyword. The internal text is not changed. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/cy.po gambas/trunk/app/src/gambas3/.lang/de.po gambas/trunk/app/src/gambas3/.lang/fa.po gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.lang/gl_ES.po gambas/trunk/app/src/gambas3/.lang/nl.po gambas/trunk/app/src/gambas3/CClassInfo.class gambas/trunk/app/src/gambas3/CComponent.class gambas/trunk/app/src/gambas3/CComponentBox.class gambas/trunk/app/src/gambas3/CControl.class gambas/trunk/app/src/gambas3/CCoolButton.class gambas/trunk/app/src/gambas3/CCoolTabs.class gambas/trunk/app/src/gambas3/CExportInfo.class gambas/trunk/app/src/gambas3/CMenu.class gambas/trunk/app/src/gambas3/CProjectInfo.class gambas/trunk/app/src/gambas3/CPropertyInfo.class gambas/trunk/app/src/gambas3/CSymbolInfo.class gambas/trunk/app/src/gambas3/Design.module gambas/trunk/app/src/gambas3/FAbout.class gambas/trunk/app/src/gambas3/FColorChooser.class gambas/trunk/app/src/gambas3/FColorChooser.form gambas/trunk/app/src/gambas3/FCommit.class gambas/trunk/app/src/gambas3/FCompletion.class gambas/trunk/app/src/gambas3/FCreateFile.class gambas/trunk/app/src/gambas3/FCreateProject.class gambas/trunk/app/src/gambas3/FDebugExpr.class gambas/trunk/app/src/gambas3/FDebugInfo.class gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FEditor.form gambas/trunk/app/src/gambas3/FFind.class gambas/trunk/app/src/gambas3/FFindList.class gambas/trunk/app/src/gambas3/FFontChooser.class gambas/trunk/app/src/gambas3/FForm.class gambas/trunk/app/src/gambas3/FFormStack.class gambas/trunk/app/src/gambas3/FGambas.class gambas/trunk/app/src/gambas3/FGotoLine.class gambas/trunk/app/src/gambas3/FGotoLine.form gambas/trunk/app/src/gambas3/FIconEditor.class gambas/trunk/app/src/gambas3/FInfo.class gambas/trunk/app/src/gambas3/FInfo.form gambas/trunk/app/src/gambas3/FList.class gambas/trunk/app/src/gambas3/FMain.class gambas/trunk/app/src/gambas3/FMain.form gambas/trunk/app/src/gambas3/FMakeExecutable.class gambas/trunk/app/src/gambas3/FMakeInstall.class gambas/trunk/app/src/gambas3/FMenu.class gambas/trunk/app/src/gambas3/FNewTranslation.class gambas/trunk/app/src/gambas3/FOpenProject.class gambas/trunk/app/src/gambas3/FOption.class gambas/trunk/app/src/gambas3/FOption.form gambas/trunk/app/src/gambas3/FOutput.class gambas/trunk/app/src/gambas3/FProjectEnv.class gambas/trunk/app/src/gambas3/FProjectItem.class gambas/trunk/app/src/gambas3/FProperty.class gambas/trunk/app/src/gambas3/FPropertyProject.class gambas/trunk/app/src/gambas3/FSave.class gambas/trunk/app/src/gambas3/FSelectIcon.class gambas/trunk/app/src/gambas3/FSignature.class gambas/trunk/app/src/gambas3/FText.class gambas/trunk/app/src/gambas3/FTextEditor.class gambas/trunk/app/src/gambas3/FTips.class gambas/trunk/app/src/gambas3/FToolBar.class gambas/trunk/app/src/gambas3/FToolBox.class gambas/trunk/app/src/gambas3/FTranslate.class gambas/trunk/app/src/gambas3/FWelcome.class gambas/trunk/app/src/gambas3/Language.module gambas/trunk/app/src/gambas3/MHelp.module gambas/trunk/app/src/gambas3/MMime.module gambas/trunk/app/src/gambas3/Package.module gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/Save.module gambas/trunk/app/src/gambas3/VersionControl.module gambas/trunk/app/src/gambas3/theme/amber gambas/trunk/app/src/gambas3/theme/amethyst gambas/trunk/app/src/gambas3/theme/emerald gambas/trunk/app/src/gambas3/theme/obsidian gambas/trunk/app/src/gambas3/theme/ruby gambas/trunk/app/src/gambas3/theme/sapphire gambas/trunk/app/src/gambas3/theme/visual gambas/trunk/gb.qt/src/CContainer.cpp gambas/trunk/gb.qt/src/CTabStrip.cpp gambas/trunk/gb.qt/src/CTabStrip.h gambas/trunk/gb.qt/src/ext/CEditor.cpp gambas/trunk/gb.qt/src/ext/gdocument.cpp gambas/trunk/gb.qt/src/ext/gdocument.h gambas/trunk/gb.qt/src/ext/gstring.h gambas/trunk/gb.qt/src/ext/gview.cpp gambas/trunk/gb.qt/src/main.cpp gambas/trunk/main/gbx/gbx_c_class.c gambas/trunk/main/gbx/gbx_expression.h gambas/trunk/main/lib/eval/CHighlight.c gambas/trunk/main/lib/eval/CSystem.c gambas/trunk/main/lib/eval/CSystem.h gambas/trunk/main/lib/eval/eval_analyze.c gambas/trunk/main/lib/eval/eval_analyze.h gambas/trunk/main/lib/eval/gb.eval.h gambas/trunk/main/share/gb_reserved_temp.h Added Paths: ----------- gambas/trunk/app/src/gambas3/CStyle.class gambas/trunk/app/src/gambas3/MTheme.module Removed Paths: ------------- gambas/trunk/app/src/gambas3/MColor.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dvi...@us...> - 2008-03-27 19:06:01
|
Revision: 1266 http://gambas.svn.sourceforge.net/gambas/?rev=1266&view=rev Author: dvillalobos Date: 2008-03-27 12:06:01 -0700 (Thu, 27 Mar 2008) Log Message: ----------- [EXAMPLES] * NEW: Spanish translation added/updated for all translatable projects. [GB.GB.FORM] * NEW: Spanish translation updated. [GB.FORM] * NEW: Spanish translation updated. [GB.FORM.DIALOG] * NEW: Spanish translation updated. [GB.FORM.MDI] * NEW: Spanish translation updated. [WIKI CGI SCRIPT] * NEW: Spanish translation updated. [DEVELOPMENT ENVIRONMENT] * NEW: Spanish translation updated. Modified Paths: -------------- gambas/trunk/app/src/doc.cgi/.lang/.pot gambas/trunk/app/src/doc.cgi/.lang/es.mo gambas/trunk/app/src/doc.cgi/.lang/es.po gambas/trunk/app/src/gambas3/.lang/es.mo gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/comp/src/gb.form/.info gambas/trunk/examples/examples/Automation/Scripting/.lang/es.mo gambas/trunk/examples/examples/Automation/Scripting/.lang/es.po gambas/trunk/examples/examples/Control/HighlightEditor/.lang/es.po gambas/trunk/examples/examples/Control/TextEdit/.lang/es.po gambas/trunk/examples/examples/Control/TreeView/.lang/es.po gambas/trunk/examples/examples/Games/Concent/.settings gambas/trunk/examples/examples/Networking/UDPServerClient/.lang/es.po Added Paths: ----------- gambas/trunk/comp/src/gb.db.form/.lang/es.mo gambas/trunk/comp/src/gb.db.form/.lang/es.po gambas/trunk/comp/src/gb.form/.lang/es.mo gambas/trunk/comp/src/gb.form/.lang/es.po gambas/trunk/comp/src/gb.form.dialog/.lang/es.mo gambas/trunk/comp/src/gb.form.dialog/.lang/es.po gambas/trunk/comp/src/gb.form.mdi/.lang/es.mo gambas/trunk/comp/src/gb.form.mdi/.lang/es.po gambas/trunk/examples/examples/Database/DataReportExample/.lang/es.mo gambas/trunk/examples/examples/Database/DataReportExample/.lang/es.po gambas/trunk/examples/examples/Database/Database/.lang/es.mo gambas/trunk/examples/examples/Database/Database/.lang/es.po gambas/trunk/examples/examples/Database/PictureDatabase/.lang/es.mo gambas/trunk/examples/examples/Database/PictureDatabase/.lang/es.po gambas/trunk/examples/examples/Drawing/Chart/.lang/es.mo gambas/trunk/examples/examples/Drawing/Chart/.lang/es.po gambas/trunk/examples/examples/Drawing/Clock/.lang/es.mo gambas/trunk/examples/examples/Drawing/Clock/.lang/es.po gambas/trunk/examples/examples/Drawing/Gravity/.lang/es.mo gambas/trunk/examples/examples/Drawing/Gravity/.lang/es.po gambas/trunk/examples/examples/Drawing/ImageViewer/.lang/es.mo gambas/trunk/examples/examples/Drawing/ImageViewer/.lang/es.po gambas/trunk/examples/examples/Drawing/OnScreenDisplay/.lang/es.mo gambas/trunk/examples/examples/Drawing/OnScreenDisplay/.lang/es.po gambas/trunk/examples/examples/Drawing/Sensor/.lang/es.mo gambas/trunk/examples/examples/Drawing/Sensor/.lang/es.po gambas/trunk/examples/examples/Games/Concent/.lang/es.mo gambas/trunk/examples/examples/Games/Concent/.lang/es.po gambas/trunk/examples/examples/Games/DeepSpace/.lang/es.mo gambas/trunk/examples/examples/Games/DeepSpace/.lang/es.po gambas/trunk/examples/examples/Games/RobotFindsKitten/.lang/es.mo gambas/trunk/examples/examples/Games/RobotFindsKitten/.lang/es.po gambas/trunk/examples/examples/Games/Solitaire/.lang/es.mo gambas/trunk/examples/examples/Games/Solitaire/.lang/es.po gambas/trunk/examples/examples/Misc/Evaluator/.lang/es.mo gambas/trunk/examples/examples/Misc/Evaluator/.lang/es.po gambas/trunk/examples/examples/Misc/Explorer/.lang/es.mo gambas/trunk/examples/examples/Misc/Explorer/.lang/es.po gambas/trunk/examples/examples/Misc/Notepad/.lang/es.mo gambas/trunk/examples/examples/Misc/Notepad/.lang/es.po gambas/trunk/examples/examples/Networking/ClientSocket/.lang/es.mo gambas/trunk/examples/examples/Networking/ClientSocket/.lang/es.po gambas/trunk/examples/examples/Networking/DnsClient/.lang/es.mo gambas/trunk/examples/examples/Networking/DnsClient/.lang/es.po gambas/trunk/examples/examples/Networking/HTTPGet/.lang/es.mo gambas/trunk/examples/examples/Networking/HTTPGet/.lang/es.po gambas/trunk/examples/examples/Networking/HTTPPost/.lang/es.mo gambas/trunk/examples/examples/Networking/HTTPPost/.lang/es.po gambas/trunk/examples/examples/Networking/SerialPort/.lang/es.mo gambas/trunk/examples/examples/Networking/SerialPort/.lang/es.po gambas/trunk/examples/examples/Networking/ServerSocket/.lang/es.mo gambas/trunk/examples/examples/Networking/ServerSocket/.lang/es.po gambas/trunk/examples/examples/Networking/WebBrowser/.lang/es.mo gambas/trunk/examples/examples/Networking/WebBrowser/.lang/es.po gambas/trunk/examples/examples/Printing/Printing/.lang/es.mo gambas/trunk/examples/examples/Printing/Printing/.lang/es.po gambas/trunk/examples/examples/Sound/CDPlayer/.lang/es.mo gambas/trunk/examples/examples/Sound/CDPlayer/.lang/es.po gambas/trunk/examples/examples/Sound/MusicPlayer/.lang/es.mo gambas/trunk/examples/examples/Sound/MusicPlayer/.lang/es.po gambas/trunk/examples/examples/Video/MoviePlayer/.lang/es.mo gambas/trunk/examples/examples/Video/MoviePlayer/.lang/es.po gambas/trunk/examples/examples/Video/MyWebCam/.lang/es.mo gambas/trunk/examples/examples/Video/MyWebCam/.lang/es.po This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |