Thread: [Gambas-devel-svn] SF.net SVN: gambas: [546] 2.0/trunk (Page 10)
Brought to you by:
gambas
From: <ga...@us...> - 2007-09-01 10:51:12
|
Revision: 546 http://gambas.svn.sourceforge.net/gambas/?rev=546&view=rev Author: gambas Date: 2007-09-01 03:51:09 -0700 (Sat, 01 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Redesigned the menu editor so that it displays nicely whatever the default font is. [EXAMPLES] * NEW: AnalogClock example was rewritten by using the transformation matrix. [GB.DRAW] * BUG: Fixed the default behaviour of Draw.Ellipse() and Draw.Circle(). * NEW: Implementation of the old transformation matrix methods. Draw.Rotate() has not been implemented. Draw.Text() does not support it. [GB.QTE] * NEW: Synchronized with gb.qt. Modified Paths: -------------- 2.0/trunk/TODO 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/FMenu.form 2.0/trunk/app/src/gambas2/FPropertyProject.form 2.0/trunk/examples/examples/Drawing/AnalogWatch/.project 2.0/trunk/examples/examples/Drawing/AnalogWatch/FrmClock.class 2.0/trunk/examples/examples/Drawing/AnalogWatch/FrmClock.form 2.0/trunk/examples/examples/Games/GameOfLife/.project 2.0/trunk/examples/examples/Games/GameOfLife/CGameField.class 2.0/trunk/examples/examples/Games/GameOfLife/FMain.class 2.0/trunk/examples/examples/Games/GameOfLife/FMain.form 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.qt/src/CDraw.cpp 2.0/trunk/gb.qt/src/CTabStrip.cpp 2.0/trunk/gb.qt/src/CWidget.cpp 2.0/trunk/gb.qt/src/ext/CDraw.cpp 2.0/trunk/gb.qt/src/main.cpp 2.0/trunk/gb.qt/src/main.h 2.0/trunk/gb.qte/src/ext/Makefile.am 2.0/trunk/main/gbc/gbi.c 2.0/trunk/main/gbx/Makefile.am 2.0/trunk/main/gbx/gbx_archive.c 2.0/trunk/main/gbx/gbx_archive.h 2.0/trunk/main/gbx/gbx_c_enum.h 2.0/trunk/main/gbx/gbx_c_file.c 2.0/trunk/main/gbx/gbx_c_gambas.h 2.0/trunk/main/gbx/gbx_c_timer.h 2.0/trunk/main/gbx/gbx_component.c 2.0/trunk/main/gbx/gbx_component.h 2.0/trunk/main/gbx/gbx_event.h 2.0/trunk/main/gbx/gbx_library.h 2.0/trunk/main/gbx/gbx_object.c 2.0/trunk/main/gbx/gbx_subr_file.c 2.0/trunk/main/lib/draw/CDraw.c 2.0/trunk/main/lib/draw/Makefile.am 2.0/trunk/main/lib/draw/gb.draw.h 2.0/trunk/main/share/Makefile.am Added Paths: ----------- 2.0/trunk/gb.qte/src/ext/CDraw.cpp 2.0/trunk/gb.qte/src/ext/CDraw.h 2.0/trunk/main/gbx/gb_list.c 2.0/trunk/main/lib/draw/gb_list.c 2.0/trunk/main/lib/draw/matrix.c 2.0/trunk/main/lib/draw/matrix.h 2.0/trunk/main/share/gb_list.h 2.0/trunk/main/share/gb_list_temp.h Removed Paths: ------------- 2.0/trunk/gb.qt/src/share/CTabStrip_desc.h 2.0/trunk/gb.qte/src/share/CClipboard_desc.h 2.0/trunk/gb.qte/src/share/CDrag_desc.h 2.0/trunk/main/gbx/gbx_list.c 2.0/trunk/main/gbx/gbx_list.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-01 14:52:46
|
Revision: 547 http://gambas.svn.sourceforge.net/gambas/?rev=547&view=rev Author: gambas Date: 2007-09-01 07:52:45 -0700 (Sat, 01 Sep 2007) Log Message: ----------- [INTERPRETER] * NEW: Object.New() is a new method for instanciating objects. [COMPILER] * BUG: A syntax error is raised now when you use the NEW operator incorrectly. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/main/gbc/gbc_trans_expr.c 2.0/trunk/main/gbx/gbx_c_class.c 2.0/trunk/main/gbx/gbx_exec.c 2.0/trunk/main/gbx/gbx_exec.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-01 17:55:26
|
Revision: 548 http://gambas.svn.sourceforge.net/gambas/?rev=548&view=rev Author: gambas Date: 2007-09-01 10:54:55 -0700 (Sat, 01 Sep 2007) Log Message: ----------- [GB.DRAW] * BUG: Draw.Rect() now draws nothing if its width or its height is lower than 1. [GB.QT] * BUG: Drawable objects now get their default foreground color correctly. [GB.GTK] * BUG: Do not share fonts that are linked with a Gambas object. [GB.FORM] * BUG: DateChooser is drawn correctly again. * NEW: DateChooser.SetDateColor() is a new method to associate a background color to a specific date. * BUG: DateChooser does not strip the month combo-box anymore. 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/DateChooser.class 2.0/trunk/comp/src/gb.form/FCalendar.class 2.0/trunk/comp/src/gb.form/FCalendar.form 2.0/trunk/comp/src/gb.form/FMain.class 2.0/trunk/comp/src/gb.form/FMain.form 2.0/trunk/gb.gtk/src/CFont.cpp 2.0/trunk/gb.gtk/src/gfont.cpp 2.0/trunk/gb.gtk/src/gfont.h 2.0/trunk/gb.qt/src/CDraw.cpp 2.0/trunk/gb.qt/src/main.cpp 2.0/trunk/main/lib/draw/CDraw.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-04 15:30:34
|
Revision: 553 http://gambas.svn.sourceforge.net/gambas/?rev=553&view=rev Author: gambas Date: 2007-09-04 08:30:36 -0700 (Tue, 04 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The project environment dialog has been moved inside the project property dialog. * BUG: The project tree view popup menu does not show unwanted actions anymore. * NEW: The status message line is automatically cleared after one second. [GB.DB] * NEW: Drivers now can explain their behaviour against case sensitivity, and if this behaviour can be changed. [GB.QT] * NEW: Arrangement routine has been fixed and enhanced. The AutoResize property of vertical and horizontal arrangement is more clever now. * NEW: Window.AutoResize comes back, and should work now. [GB.GTK] * NEW: Arrangement routine has been fixed and enhanced as in gb.qt. * NEW: Window.AutoResize has been implemented. [GB.FORM] * NEW: DirChooser.ShowSplitter is a new boolean property that enables the button that shows the files. [GB.FORM.MDI] * NEW: ToolBar.AutoResize is a new boolean property, set by default. When not set, the toolbar always displays its children on one line. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FFind.class 2.0/trunk/app/src/gambas2/FFind.form 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/app/src/gambas2/FForm.form 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/FOpenProject.class 2.0/trunk/app/src/gambas2/FOpenProject.form 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/FPropertyProject.form 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/app/src/gambas2/img/control/textlabel.png 2.0/trunk/comp/src/gb.form/.info 2.0/trunk/comp/src/gb.form/.lang/.pot 2.0/trunk/comp/src/gb.form/DirChooser.class 2.0/trunk/comp/src/gb.form/DirView.class 2.0/trunk/comp/src/gb.form/FDirChooser.class 2.0/trunk/comp/src/gb.form/FDirChooser.form 2.0/trunk/comp/src/gb.form/FMain.class 2.0/trunk/comp/src/gb.form/FMain.form 2.0/trunk/comp/src/gb.form/FileChooser.class 2.0/trunk/comp/src/gb.form/FileView.class 2.0/trunk/comp/src/gb.form.mdi/.info 2.0/trunk/comp/src/gb.form.mdi/.project 2.0/trunk/comp/src/gb.form.mdi/FMain.form 2.0/trunk/comp/src/gb.form.mdi/FToolBar.class 2.0/trunk/comp/src/gb.form.mdi/FToolBar.form 2.0/trunk/comp/src/gb.form.mdi/ToolBar.class 2.0/trunk/examples/examples/Drawing/Sensor/FSensor.class 2.0/trunk/examples/examples/Games/GameOfLife/CGameField.class 2.0/trunk/gb.db.firebird/src/main.cpp 2.0/trunk/gb.gtk/src/gcontainer.cpp 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gcontrol.h 2.0/trunk/gb.gtk/src/gsignals.cpp 2.0/trunk/gb.qt/share/gb.form.arrangement.h 2.0/trunk/gb.qt/share/gb.form.properties.h 2.0/trunk/gb.qt/src/CContainer.cpp 2.0/trunk/gb.qt/src/CWindow.cpp 2.0/trunk/main/lib/db/CConnection.c 2.0/trunk/main/lib/db/gb.db.h 2.0/trunk/main/lib/draw/CDraw.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-05 08:53:06
|
Revision: 555 http://gambas.svn.sourceforge.net/gambas/?rev=555&view=rev Author: gambas Date: 2007-09-05 01:53:08 -0700 (Wed, 05 Sep 2007) Log Message: ----------- [GB.QT] * NEW: Window.Closed is a new property that returns if a window is closed. [GB.GTK] * NEW: Window.Closed is a new property that returns if a window is closed. [GB.FORM.MDI] * BUG: Closed MDI windows are correctly detected now. Modified Paths: -------------- 2.0/trunk/comp/src/gb.form/.project 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/examples/examples/Games/GameOfLife/.project 2.0/trunk/examples/examples/Games/GameOfLife/FMain.class 2.0/trunk/examples/examples/Games/GameOfLife/FMain.form 2.0/trunk/examples/examples/Games/Snake/.project 2.0/trunk/examples/examples/Games/Snake/FrmMain.class 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/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...> - 2007-09-06 00:16:31
|
Revision: 557 http://gambas.svn.sourceforge.net/gambas/?rev=557&view=rev Author: gambas Date: 2007-09-05 17:16:34 -0700 (Wed, 05 Sep 2007) Log Message: ----------- [GB.DRAW] * NEW: Draw.RichText() is a new method for drawing HTML-like text. * NEW: Draw.RichTextWidth() and Draw.RichTextHeight() are two new methods that return the size of a rich text. [GB.GTK] * NEW: TextArea Change and Cursor events were implemented. * NEW: Rich text now understand HTML entities, thanks to code from KDE libraries. * BUG: Some fixes in DrawingArea. May not work in some cases. Modified Paths: -------------- 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/src/CButton.cpp 2.0/trunk/gb.gtk/src/CDraw.cpp 2.0/trunk/gb.gtk/src/CDrawingArea.cpp 2.0/trunk/gb.gtk/src/CTextArea.cpp 2.0/trunk/gb.gtk/src/Makefile.am 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.gtk/src/gdraw.h 2.0/trunk/gb.gtk/src/gdrawingarea.cpp 2.0/trunk/gb.gtk/src/gdrawingarea.h 2.0/trunk/gb.gtk/src/glabel.cpp 2.0/trunk/gb.gtk/src/gmessage.cpp 2.0/trunk/gb.gtk/src/gtextarea.cpp 2.0/trunk/gb.gtk/src/gtextarea.h 2.0/trunk/gb.gtk/src/gtools.cpp 2.0/trunk/gb.gtk/src/gtools.h 2.0/trunk/gb.qt/src/CDraw.cpp 2.0/trunk/gb.qt/src/CImage.cpp 2.0/trunk/main/lib/draw/CDraw.c 2.0/trunk/main/lib/draw/gb.draw.h 2.0/trunk/main/lib/draw/matrix.c Added Paths: ----------- 2.0/trunk/gb.gtk/src/kentities.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-06 16:43:06
|
Revision: 559 http://gambas.svn.sourceforge.net/gambas/?rev=559&view=rev Author: gambas Date: 2007-09-06 08:04:39 -0700 (Thu, 06 Sep 2007) Log Message: ----------- [GB.QT] * BUG: Cached DrawingArea border now is correctly refreshed. [GB.GTK] * BUG: DrawingArea refresh behaviour was fixed. * NEW: DrawingArea.Tracking was implemented. * NEW: DrawingArea.Enabled specific behaviour was implemented. Note: a disabled DrawingArea has only the X11 Expose event set in its event mask. * BUG: Window.AutoResize has been correctly declared. Modified Paths: -------------- 2.0/trunk/examples/examples/Games/GameOfLife/.project 2.0/trunk/examples/examples/Games/GameOfLife/CGameField.class 2.0/trunk/examples/examples/Games/GameOfLife/FMain.class 2.0/trunk/examples/examples/Games/GameOfLife/FMain.form 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gcontrol.h 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.gtk/src/gdrawingarea.cpp 2.0/trunk/gb.gtk/src/gdrawingarea.h 2.0/trunk/gb.qt/share/gb.form.arrangement.h 2.0/trunk/gb.qt/src/CDrawingArea.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-07 08:01:16
|
Revision: 564 http://gambas.svn.sourceforge.net/gambas/?rev=564&view=rev Author: gambas Date: 2007-09-07 01:01:19 -0700 (Fri, 07 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Support for controls that are overridden in another component. [INTERPRETER] * BUG: Process.Tag property is now correctly freed when the Process object is destroyed [GB.GTK] * BUG: Label and TextLabel borders are displayed correctly now. [GB.GTK.EXT] * NEW: New component that adds footers to the GridView control. Two new properties: GridView.Footer to enable it, and GridView.Columns[].FooterText to define the text of each footer. Modified Paths: -------------- 2.0/trunk/app/src/doc.cgi/.lang/.pot 2.0/trunk/app/src/doc.cgi/.project 2.0/trunk/app/src/doc.cgi/Main.module 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CClassInfo.class 2.0/trunk/app/src/gambas2/CControl.class 2.0/trunk/app/src/gambas2/FToolBar.class 2.0/trunk/app/src/gambas2/FToolBox.class 2.0/trunk/app/src/gambas2/img/control/label.png 2.0/trunk/app/src/gambas2/img/control/textlabel.png 2.0/trunk/app/src/gambas2/img/control/workspace.png 2.0/trunk/examples/examples/Games/GameOfLife/.project 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/configure.ac 2.0/trunk/gb.gtk/src/CGridView.cpp 2.0/trunk/gb.gtk/src/CGridView.h 2.0/trunk/gb.gtk/src/Makefile.am 2.0/trunk/gb.gtk/src/gb.gtk.h 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/ggridview.cpp 2.0/trunk/gb.gtk/src/ggridview.h 2.0/trunk/gb.gtk/src/main.cpp 2.0/trunk/gb.qt/src/CGridView.h 2.0/trunk/main/gbx/gbx_c_process.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-08 08:21:22
|
Revision: 567 http://gambas.svn.sourceforge.net/gambas/?rev=567&view=rev Author: gambas Date: 2007-09-08 01:21:24 -0700 (Sat, 08 Sep 2007) Log Message: ----------- [GB.QT] * BUG: ProgressBar percentage is correctly rounded now. * BUG: Fixed the use of an uninitialized variable in GridView class. [GB.GTK] * BUG: ProgressBar percentage is correctly rounded now. Modified Paths: -------------- 2.0/trunk/gb.gtk/src/gprogressbar.cpp 2.0/trunk/gb.qt/src/CGridView.cpp 2.0/trunk/gb.qt/src/CProgress.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-08 22:23:48
|
Revision: 578 http://gambas.svn.sourceforge.net/gambas/?rev=578&view=rev Author: gambas Date: 2007-09-08 15:23:50 -0700 (Sat, 08 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Debugging yellow windows save their position correctly now. * NEW: Support for static classes, and objects that can be used like an array. I.e. they have a Count property, and are indexed by an integer. Support for objects indexed by strings is planned. * BUG: Error messages are correctly displayed when evaluating an expression during debugging. * BUG: Project property dialog tabs are correct now. * BUG: Breakpoints are not incorrectly set anymore at program startup. * NEW: Application.Env.Count is a new property that returns the number of environment variables. [GB.DB] * NEW: Result.Fields.Length does not crash anymore. [GB.DEBUG] * NEW: Support for static classes and objects that can be used like an array. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/Design.module 2.0/trunk/app/src/gambas2/FDebugExpr.class 2.0/trunk/app/src/gambas2/FDebugExpr.form 2.0/trunk/app/src/gambas2/FDebugInfo.class 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FMenu.class 2.0/trunk/app/src/gambas2/FMenu.form 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/FPropertyProject.form 2.0/trunk/comp/src/gb.db.form/.lang/.pot 2.0/trunk/comp/src/gb.db.form/DataSource.class 2.0/trunk/main/gbx/gbx_api.c 2.0/trunk/main/gbx/gbx_c_application.c 2.0/trunk/main/gbx/gbx_c_subcollection.c 2.0/trunk/main/gbx/gbx_class.c 2.0/trunk/main/gbx/gbx_class.h 2.0/trunk/main/gbx/gbx_class_desc.h 2.0/trunk/main/gbx/gbx_component.c 2.0/trunk/main/gbx/gbx_debug.c 2.0/trunk/main/gbx/gbx_debug.h 2.0/trunk/main/gbx/gbx_exec_enum.c 2.0/trunk/main/lib/db/CResultField.c 2.0/trunk/main/lib/debug/debug.c 2.0/trunk/main/lib/debug/gb.debug.h 2.0/trunk/main/lib/debug/print.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-09 22:41:10
|
Revision: 581 http://gambas.svn.sourceforge.net/gambas/?rev=581&view=rev Author: gambas Date: 2007-09-09 15:41:13 -0700 (Sun, 09 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Menu reorganization. * NEW: You an open a browser on the current project from the 'Tools' menu now. * NEW: The debugging yellow windows displays integer values in decimal and hexadecimal form now. * BUG: The form name is not put in the list of form controls anymore. * NEW: The image editor option was removed and replaced by a new 'Edit with' item in the project tree view pop-up menu. * NEW: Icon editor edition buttons are hidden when the icon is read-only. [GB.QT] * NEW: When a debugged program is paused, and run again, the program active window is automatically reactivated. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/ar.po 2.0/trunk/app/src/gambas2/.lang/ca.po 2.0/trunk/app/src/gambas2/.lang/cs.po 2.0/trunk/app/src/gambas2/.lang/cy.po 2.0/trunk/app/src/gambas2/.lang/de.po 2.0/trunk/app/src/gambas2/.lang/es.po 2.0/trunk/app/src/gambas2/.lang/fa.po 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/.lang/gl_ES.po 2.0/trunk/app/src/gambas2/.lang/hr.po 2.0/trunk/app/src/gambas2/.lang/hu.po 2.0/trunk/app/src/gambas2/.lang/id.po 2.0/trunk/app/src/gambas2/.lang/it.po 2.0/trunk/app/src/gambas2/.lang/ja.po 2.0/trunk/app/src/gambas2/.lang/nl.po 2.0/trunk/app/src/gambas2/.lang/no.po 2.0/trunk/app/src/gambas2/.lang/pl.po 2.0/trunk/app/src/gambas2/.lang/pt.po 2.0/trunk/app/src/gambas2/.lang/pt_BR.po 2.0/trunk/app/src/gambas2/.lang/ru.po 2.0/trunk/app/src/gambas2/.lang/sl.po 2.0/trunk/app/src/gambas2/.lang/sv.po 2.0/trunk/app/src/gambas2/.lang/tr.po 2.0/trunk/app/src/gambas2/.lang/zh.po 2.0/trunk/app/src/gambas2/.lang/zh_TW.po 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FDebugExpr.class 2.0/trunk/app/src/gambas2/FDebugExpr.form 2.0/trunk/app/src/gambas2/FGambas.class 2.0/trunk/app/src/gambas2/FGambas.form 2.0/trunk/app/src/gambas2/FIconEditor.class 2.0/trunk/app/src/gambas2/FIconEditor.form 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/FOption.class 2.0/trunk/app/src/gambas2/FOption.form 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.form/FBalloon.form 2.0/trunk/comp/src/gb.form/FColorChooser.form 2.0/trunk/comp/src/gb.form/FExpander.form 2.0/trunk/comp/src/gb.form/FFontChooser.form 2.0/trunk/comp/src/gb.form/FSidePanel.form 2.0/trunk/comp/src/gb.form/FToolBar.form 2.0/trunk/gb.qt/src/CWindow.cpp 2.0/trunk/gb.qt/src/CWindow.h 2.0/trunk/gb.qt/src/main.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-11 18:41:45
|
Revision: 588 http://gambas.svn.sourceforge.net/gambas/?rev=588&view=rev Author: gambas Date: 2007-09-11 11:41:49 -0700 (Tue, 11 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Many enhancements and fixes in debug windows. * NEW: Debug windows now follow the default system color palette. Otherwise, they would be sometimes not visible. * NEW: SIGTERM signal is not considered as a program crash anymore. [DATABASE MANAGER] * BUG: The gb.gtk GridView can emit the Change event with no current cell. Now that does lead to a crash anymore. * NEW: Table, field and index names are now case sensitive. [GB.DB] * NEW: Table, field and index names are now case sensitive. All drivers were modified according to this new policy. * NEW: The arguments of internal requests are now automatically quoted. That fixes a potential security hole. The following drivers are yet to be fixed: gb.db.firebird & gb.db.odbc. * BUG: Result class now correctly deals with its internal array of modification flags. [GB.DB.SQLITE2] * BUG: All gb.db.sqlite3 bug fixes were backported. [GB.DB.SQLITE3] * BUG: Reading a field having a NULL value works in all cases now. [GB.DEBUG] * BUG: The debugger does not return overridden fields aynmore when information on a class is asked. [GB.FORM] * BUG: Balloon foreground color is now always black, so that it is visible whatever the system foreground color is. [GB.FORM.MDI] * BUG: Does not try to close windows when they have became invalid. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas-database-manager/CTableViewEditor.class 2.0/trunk/app/src/gambas-database-manager/FTable.class 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/Design.module 2.0/trunk/app/src/gambas2/FDebugExpr.class 2.0/trunk/app/src/gambas2/FDebugExpr.form 2.0/trunk/app/src/gambas2/FDebugInfo.class 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FOption.form 2.0/trunk/app/src/gambas2/img/16/rename.png 2.0/trunk/comp/src/gb.form/FBalloon.form 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/examples/examples/Games/GameOfLife/.settings 2.0/trunk/gb.db.firebird/src/main.cpp 2.0/trunk/gb.db.mysql/src/main.c 2.0/trunk/gb.db.odbc/src/main.c 2.0/trunk/gb.db.postgresql/src/main.c 2.0/trunk/gb.db.sqlite2/src/dataset.cpp 2.0/trunk/gb.db.sqlite2/src/dataset.h 2.0/trunk/gb.db.sqlite2/src/main.cpp 2.0/trunk/gb.db.sqlite2/src/qry_dat.cpp 2.0/trunk/gb.db.sqlite2/src/qry_dat.h 2.0/trunk/gb.db.sqlite2/src/sqlitedataset.cpp 2.0/trunk/gb.db.sqlite2/src/sqlitedataset.h 2.0/trunk/gb.db.sqlite3/src/dataset.cpp 2.0/trunk/gb.db.sqlite3/src/main.cpp 2.0/trunk/gb.db.sqlite3/src/qry_dat.cpp 2.0/trunk/gb.db.sqlite3/src/sqlitedataset.cpp 2.0/trunk/gb.db.sqlite3/src/sqlitedataset.h 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.qt/src/main.cpp 2.0/trunk/main/gbx/gbx_debug.c 2.0/trunk/main/lib/db/CField.c 2.0/trunk/main/lib/db/CResultField.c 2.0/trunk/main/lib/db/gb.db.h 2.0/trunk/main/lib/db/gb_barray.h 2.0/trunk/main/lib/db/main.c 2.0/trunk/main/lib/db/main.h 2.0/trunk/main/lib/debug/print.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-13 21:59:50
|
Revision: 593 http://gambas.svn.sourceforge.net/gambas/?rev=593&view=rev Author: gambas Date: 2007-09-13 14:59:54 -0700 (Thu, 13 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The information balloon now appears only if you press SHIFT while moving the mouse across project tree view items. * BUG: The project '.lang' hidden directory that contains translation files is now automatically created and put under version control. * BUG: Add all specials methods in automatic completion. * BUG: Fix image rotation in icon editor. Image.Rotate now uses radians. [GB.QT] * NEW: ColumnView with AutoResize set now take the column label widths into account. * BUG: Key modifier properties (Key.Shift, Key.Control...) now return the accurate value during a KeyRelease event. Maybe gb.gtk should be checked for the same problem. [GB.FORM] * NEW: A few new icons in the stock. [GB.FORM.MDI] * NEW: The MDI windows menu has now an entry for closing all windows except the current one. [GB.SETTINGS] * BUG: The $XDG_CONFIG_HOME environmental variable is now taken into account. [GB.WEB] * BUG: The Request class now can handle submission of <select> form elements with multiple selection. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas-database-manager/FPassword.form 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FCompletion.class 2.0/trunk/app/src/gambas2/FForm.form 2.0/trunk/app/src/gambas2/FIconEditor.class 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.chart/.project 2.0/trunk/comp/src/gb.form/map/gnome.map 2.0/trunk/comp/src/gb.form/map/kde.map 2.0/trunk/comp/src/gb.form/map/map 2.0/trunk/comp/src/gb.form/stock/gtk/48/gtk-dialog-authentication.png 2.0/trunk/comp/src/gb.form/stock/qt/16/earth.png 2.0/trunk/comp/src/gb.form.mdi/.lang/fr.mo 2.0/trunk/comp/src/gb.form.mdi/.lang/fr.po 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/comp/src/gb.settings/.project 2.0/trunk/comp/src/gb.settings/Settings.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/CKey.cpp 2.0/trunk/gb.qt/src/CKey.h 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/gb.qt/src/CTreeView.h 2.0/trunk/gb.qt/src/CWidget.cpp Added Paths: ----------- 2.0/trunk/comp/src/gb.form/stock/default/16/access.png 2.0/trunk/comp/src/gb.form/stock/default/16/attach.png 2.0/trunk/comp/src/gb.form/stock/default/16/camera.png 2.0/trunk/comp/src/gb.form/stock/default/16/clock.png 2.0/trunk/comp/src/gb.form/stock/default/16/erase.png 2.0/trunk/comp/src/gb.form/stock/default/16/lamp.png 2.0/trunk/comp/src/gb.form/stock/default/16/lock.png 2.0/trunk/comp/src/gb.form/stock/default/16/mail.png 2.0/trunk/comp/src/gb.form/stock/default/16/mouse.png 2.0/trunk/comp/src/gb.form/stock/default/16/rotate-left.png 2.0/trunk/comp/src/gb.form/stock/default/16/rotate-right.png 2.0/trunk/comp/src/gb.form/stock/default/16/unlock.png 2.0/trunk/comp/src/gb.form/stock/default/16/wizard.png 2.0/trunk/comp/src/gb.form/stock/default/32/access.png 2.0/trunk/comp/src/gb.form/stock/default/32/attach.png 2.0/trunk/comp/src/gb.form/stock/default/32/camera.png 2.0/trunk/comp/src/gb.form/stock/default/32/clock.png 2.0/trunk/comp/src/gb.form/stock/default/32/erase.png 2.0/trunk/comp/src/gb.form/stock/default/32/lamp.png 2.0/trunk/comp/src/gb.form/stock/default/32/lock.png 2.0/trunk/comp/src/gb.form/stock/default/32/mail.png 2.0/trunk/comp/src/gb.form/stock/default/32/mouse.png 2.0/trunk/comp/src/gb.form/stock/default/32/rotate-left.png 2.0/trunk/comp/src/gb.form/stock/default/32/rotate-right.png 2.0/trunk/comp/src/gb.form/stock/default/32/unlock.png 2.0/trunk/comp/src/gb.form/stock/default/32/wizard.png 2.0/trunk/comp/src/gb.form/stock/default/48/access.png 2.0/trunk/comp/src/gb.form/stock/default/48/camera.png 2.0/trunk/comp/src/gb.form/stock/default/48/clock.png 2.0/trunk/comp/src/gb.form/stock/default/48/erase.png 2.0/trunk/comp/src/gb.form/stock/default/48/mouse.png 2.0/trunk/comp/src/gb.form/stock/default/48/rotate-left.png 2.0/trunk/comp/src/gb.form/stock/default/48/rotate-right.png 2.0/trunk/comp/src/gb.form/stock/default/48/wizard.png 2.0/trunk/comp/src/gb.form/stock/default/64/access.png 2.0/trunk/comp/src/gb.form/stock/default/64/camera.png 2.0/trunk/comp/src/gb.form/stock/default/64/clock.png 2.0/trunk/comp/src/gb.form/stock/default/64/mouse.png 2.0/trunk/comp/src/gb.form/stock/gtk/16/erase.png 2.0/trunk/comp/src/gb.form/stock/gtk/16/lamp.png Removed Paths: ------------- 2.0/trunk/comp/src/gb.form/stock/default/16/auth.png 2.0/trunk/comp/src/gb.form/stock/default/32/auth.png 2.0/trunk/comp/src/gb.form/stock/qt/16/rotate-left.png 2.0/trunk/comp/src/gb.form/stock/qt/16/rotate-right.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-15 12:03:28
|
Revision: 631 http://gambas.svn.sourceforge.net/gambas/?rev=631&view=rev Author: gambas Date: 2007-09-15 05:03:32 -0700 (Sat, 15 Sep 2007) Log Message: ----------- [COMPILER] * BUG: The '!' operator is now really case sensitive. [GB.GTK] * BUG: Frame control border is now correctly drawn again. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Request.module 2.0/trunk/examples/examples/Database/Database/.project 2.0/trunk/examples/examples/Database/Database/FMain.class 2.0/trunk/examples/examples/Database/Database/FMain.form 2.0/trunk/gb.gtk/src/gframe.cpp 2.0/trunk/main/gbc/gbc_read.c 2.0/trunk/main/gbc/gbc_trans_tree.c 2.0/trunk/main/lib/eval/eval_read.c 2.0/trunk/main/lib/eval/eval_trans_tree.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-16 01:45:06
|
Revision: 632 http://gambas.svn.sourceforge.net/gambas/?rev=632&view=rev Author: gambas Date: 2007-09-15 18:45:10 -0700 (Sat, 15 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The project property dialog component list was redesigned. [GB.QT] * NEW: ColumnView last columns has always the maximum size. * BUG: ScrollView with Arrangement property set now resizes correctly when the size of one of its children changes. [GB.FORM] * BUG: ListContainer does not watch its children too often anymore. 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/.project 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/app/src/gambas2/FPropertyProject.form 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.chart/.component 2.0/trunk/comp/src/gb.chart/.project 2.0/trunk/comp/src/gb.db.form/.component 2.0/trunk/comp/src/gb.db.form/.project 2.0/trunk/comp/src/gb.form/.info 2.0/trunk/comp/src/gb.form/ListContainer.class 2.0/trunk/comp/src/gb.form.dialog/.component 2.0/trunk/comp/src/gb.form.dialog/.project 2.0/trunk/comp/src/gb.form.mdi/.component 2.0/trunk/comp/src/gb.form.mdi/.project 2.0/trunk/comp/src/gb.info/.component 2.0/trunk/comp/src/gb.info/.project 2.0/trunk/comp/src/gb.report/.component 2.0/trunk/comp/src/gb.report/.project 2.0/trunk/comp/src/gb.settings/.component 2.0/trunk/comp/src/gb.settings/.project 2.0/trunk/comp/src/gb.web/.component 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/examples/examples/Database/Database/.project 2.0/trunk/gb.qt/src/CContainer.cpp 2.0/trunk/gb.qt/src/CLabel.cpp 2.0/trunk/gb.qt/src/CLabel.h 2.0/trunk/gb.qt/src/CScrollView.cpp 2.0/trunk/gb.qt/src/CScrollView.h 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/main/lib/db/gb.db.component Added Paths: ----------- 2.0/trunk/app/src/gambas2/CComponentBox.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-16 23:49:35
|
Revision: 633 http://gambas.svn.sourceforge.net/gambas/?rev=633&view=rev Author: gambas Date: 2007-09-16 16:49:35 -0700 (Sun, 16 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Some fixes and enhancements in the component list of the project property dialog. [GB.QT] * BUG: GridView in single selection mode should not show two selected lines anymore. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas2/CComponentBox.class 2.0/trunk/comp/src/gb.web/.component 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/gb.crypt/src/gb.crypt.component 2.0/trunk/gb.gtk.svg/src/gb.gtk.svg.component 2.0/trunk/gb.image/src/gb.image.component 2.0/trunk/gb.net.curl/src/gb.net.curl.component 2.0/trunk/gb.net.smtp/src/gb.net.smtp.component 2.0/trunk/gb.pdf/src/gb.pdf.component 2.0/trunk/gb.qt/src/CGridView.cpp 2.0/trunk/gb.qt/src/CScrollView.cpp 2.0/trunk/gb.qt.kde/src/html/gb.qt.kde.html.component This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-18 16:43:18
|
Revision: 639 http://gambas.svn.sourceforge.net/gambas/?rev=639&view=rev Author: gambas Date: 2007-09-18 09:43:15 -0700 (Tue, 18 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Property sheet now always display only one line of the property value. [INTERPRETER] * BUG: The debugger now can evaluate expressions that executes project code without making the IDE raise its error message box. [GB.EVAL] * BUG: '!' operator works again. [GB.GTK] * NEW: Label.Adjust and TextLabel.Adjust were implemented. * BUG: Label.AutoResize and TextLabel.AutoResize properties were fixed. * BUG: GridView selection behaviour has been fixed. * OPT: GridView selection does not become slow anymore when a lot of rows are selected. * BUG: Pie slice border is drawn like in gb.qt now. [GB.FORM] * NEW: Do not display the "close other tabs" menu item when there is only one window in a Workspace. [GB.QT] * BUG: The GridView single selection should work correctly now. * BUG: Fix the stretching behaviour of the last column of a GridView. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/CComponentBox.class 2.0/trunk/app/src/gambas2/FProperty.class 2.0/trunk/app/src/gambas2/FPropertyProject.class 2.0/trunk/comp/src/gb.chart/.project 2.0/trunk/comp/src/gb.db.form/.info 2.0/trunk/comp/src/gb.db.form/.lang/.pot 2.0/trunk/comp/src/gb.db.form/.project 2.0/trunk/comp/src/gb.db.form/DataControl.class 2.0/trunk/comp/src/gb.db.form/DataSource.class 2.0/trunk/comp/src/gb.db.form/FMain.form 2.0/trunk/comp/src/gb.db.form/Main.module 2.0/trunk/comp/src/gb.form/ListContainer.class 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/src/CFont.cpp 2.0/trunk/gb.gtk/src/CLabel.cpp 2.0/trunk/gb.gtk/src/CLabel.h 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.gtk/src/gdraw.h 2.0/trunk/gb.gtk/src/ggridview.cpp 2.0/trunk/gb.gtk/src/ggridview.h 2.0/trunk/gb.gtk/src/glabel.cpp 2.0/trunk/gb.gtk/src/glabel.h 2.0/trunk/gb.gtk/src/tablerender.cpp 2.0/trunk/gb.qt/src/CGridView.cpp 2.0/trunk/gb.qt/src/CGridView.h 2.0/trunk/main/gbc/gbc_trans_tree.c 2.0/trunk/main/gbx/gbx_eval.c 2.0/trunk/main/lib/debug/debug.c 2.0/trunk/main/lib/eval/eval_trans_tree.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Fabien B. <gam...@gm...> - 2007-09-18 16:50:28
|
And what about the difference between gtk /qt font rate ? On Tuesday 18 September 2007 18:43:19 ga...@us... wrote: > Revision: 639 > http://gambas.svn.sourceforge.net/gambas/?rev=639&view=rev > Author: gambas > Date: 2007-09-18 09:43:15 -0700 (Tue, 18 Sep 2007) > > Log Message: > ----------- > [DEVELOPMENT ENVIRONMENT] > * BUG: Property sheet now always display only one line of the property > value. > > [INTERPRETER] > * BUG: The debugger now can evaluate expressions that executes project code > without making the IDE raise its error message box. > > [GB.EVAL] > * BUG: '!' operator works again. > > [GB.GTK] > * NEW: Label.Adjust and TextLabel.Adjust were implemented. > * BUG: Label.AutoResize and TextLabel.AutoResize properties were fixed. > * BUG: GridView selection behaviour has been fixed. > * OPT: GridView selection does not become slow anymore when a lot of rows > are selected. > * BUG: Pie slice border is drawn like in gb.qt now. > > [GB.FORM] > * NEW: Do not display the "close other tabs" menu item when there is only > one window in a Workspace. > > [GB.QT] > * BUG: The GridView single selection should work correctly now. > * BUG: Fix the stretching behaviour of the last column of a GridView. > > Modified Paths: > -------------- > 2.0/trunk/app/src/gambas2/.lang/.pot > 2.0/trunk/app/src/gambas2/.project > 2.0/trunk/app/src/gambas2/CComponentBox.class > 2.0/trunk/app/src/gambas2/FProperty.class > 2.0/trunk/app/src/gambas2/FPropertyProject.class > 2.0/trunk/comp/src/gb.chart/.project > 2.0/trunk/comp/src/gb.db.form/.info > 2.0/trunk/comp/src/gb.db.form/.lang/.pot > 2.0/trunk/comp/src/gb.db.form/.project > 2.0/trunk/comp/src/gb.db.form/DataControl.class > 2.0/trunk/comp/src/gb.db.form/DataSource.class > 2.0/trunk/comp/src/gb.db.form/FMain.form > 2.0/trunk/comp/src/gb.db.form/Main.module > 2.0/trunk/comp/src/gb.form/ListContainer.class > 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class > 2.0/trunk/gb.gtk/TODO > 2.0/trunk/gb.gtk/src/CFont.cpp > 2.0/trunk/gb.gtk/src/CLabel.cpp > 2.0/trunk/gb.gtk/src/CLabel.h > 2.0/trunk/gb.gtk/src/gdraw.cpp > 2.0/trunk/gb.gtk/src/gdraw.h > 2.0/trunk/gb.gtk/src/ggridview.cpp > 2.0/trunk/gb.gtk/src/ggridview.h > 2.0/trunk/gb.gtk/src/glabel.cpp > 2.0/trunk/gb.gtk/src/glabel.h > 2.0/trunk/gb.gtk/src/tablerender.cpp > 2.0/trunk/gb.qt/src/CGridView.cpp > 2.0/trunk/gb.qt/src/CGridView.h > 2.0/trunk/main/gbc/gbc_trans_tree.c > 2.0/trunk/main/gbx/gbx_eval.c > 2.0/trunk/main/lib/debug/debug.c > 2.0/trunk/main/lib/eval/eval_trans_tree.c > > > This was sent by the SourceForge.net collaborative development platform, > the world's largest Open Source development site. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-devel-svn mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gambas-devel-svn |
From: <ga...@us...> - 2007-09-18 19:13:57
|
Revision: 640 http://gambas.svn.sourceforge.net/gambas/?rev=640&view=rev Author: gambas Date: 2007-09-18 12:13:54 -0700 (Tue, 18 Sep 2007) Log Message: ----------- [GB.GTK] * BUG: Font objects created with NEW do not share the same internal gFont instance anymore. * NEW: GridView last column is now automatically stretched to fit the GridView visible width. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/comp/src/gb.form/.lang/.pot 2.0/trunk/comp/src/gb.form/FInputBox.class 2.0/trunk/comp/src/gb.form/FMain.class 2.0/trunk/comp/src/gb.form/FMain.form 2.0/trunk/gb.gtk/TODO 2.0/trunk/gb.gtk/src/ggridview.cpp 2.0/trunk/gb.gtk/src/ggridview.h 2.0/trunk/gb.gtk/src/tablerender.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-18 21:30:56
|
Revision: 642 http://gambas.svn.sourceforge.net/gambas/?rev=642&view=rev Author: gambas Date: 2007-09-18 14:31:00 -0700 (Tue, 18 Sep 2007) Log Message: ----------- [CONFIGURATION] * NEW: Version number is now 1.9.51. [DEVELOPMENT ENVIRONMENT] * BUG: The project property component list layout is now correct when the font is too wide. Modified Paths: -------------- 2.0/trunk/ChangeLog 2.0/trunk/acinclude.m4 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/CComponentBox.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-18 22:15:00
|
Revision: 644 http://gambas.svn.sourceforge.net/gambas/?rev=644&view=rev Author: gambas Date: 2007-09-18 15:14:55 -0700 (Tue, 18 Sep 2007) Log Message: ----------- ChangeLog for 1.9.51 Modified Paths: -------------- 2.0/trunk/ChangeLog 2.0/trunk/app/src/gambas2/VersionControl.module 2.0/trunk/comp/src/gb.form/.component This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-18 23:35:59
|
Revision: 646 http://gambas.svn.sourceforge.net/gambas/?rev=646&view=rev Author: gambas Date: 2007-09-18 16:36:02 -0700 (Tue, 18 Sep 2007) Log Message: ----------- [GB.FORM] * BUG: Strange, gb.form got false requirements again... Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/comp/src/gb.form/.component This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-20 17:33:30
|
Revision: 656 http://gambas.svn.sourceforge.net/gambas/?rev=656&view=rev Author: gambas Date: 2007-09-20 10:33:33 -0700 (Thu, 20 Sep 2007) Log Message: ----------- [GB.QT] * NEW: gb.qt and gb.gtk now share the same picture loading algorithm. [GB.GTK] * BUG: Desktop.Scale now returns the same value as gb.qt for the same desktop font size. * NEW: gb.qt and gb.gtk now share the same picture loading algorithm. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/FDebugInfo.form 2.0/trunk/app/src/gambas2/FToolBox.form 2.0/trunk/comp/src/gb.chart/.project 2.0/trunk/comp/src/gb.chart/FTest.class 2.0/trunk/comp/src/gb.form/.project 2.0/trunk/comp/src/gb.form/Stock.class 2.0/trunk/gb.gtk/src/CPicture.cpp 2.0/trunk/gb.gtk/src/CScreen.h 2.0/trunk/gb.gtk/src/gdesktop.cpp 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/gpicture.h 2.0/trunk/gb.qt/src/CImage.cpp 2.0/trunk/gb.qt/src/CImage.h 2.0/trunk/gb.qt/src/CPicture.cpp 2.0/trunk/gb.qt/src/CPicture.h Added Paths: ----------- 2.0/trunk/gb.qt/share/gb.form.picture.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-21 14:33:14
|
Revision: 659 http://gambas.svn.sourceforge.net/gambas/?rev=659&view=rev Author: gambas Date: 2007-09-21 07:33:17 -0700 (Fri, 21 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The 'Find' menu entry was moved to the 'Tool' menu. * BUG: Auto-completion popup is hidden when the edited file is saved. [INTERPRETER] * NEW: Timer.Trigger is a new method that triggers the timer once at the next event loop. [GB.QT] * NEW: If a top-level window is shown and no title was set, when the application title is used instead. [GB.FORM.MDI] * BUG: Workspace should close correctly all its windows now. [GB.SETTINGS] * NEW: Settings.Reload() is a new method that cancels all modifications of a setting file. 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/.lang/sv.mo 2.0/trunk/app/src/gambas2/.lang/sv.po 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.form.mdi/.project 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.form 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 2.0/trunk/gb.db.sqlite3/src/main.cpp 2.0/trunk/gb.qt/src/CWindow.cpp 2.0/trunk/gb.qt/src/CWindow.h 2.0/trunk/main/gbx/gbx_c_timer.c 2.0/trunk/main/share/gb_limit.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-09-24 00:05:19
|
Revision: 660 http://gambas.svn.sourceforge.net/gambas/?rev=660&view=rev Author: gambas Date: 2007-09-23 17:05:23 -0700 (Sun, 23 Sep 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: A new option for using or not the release version number when creating an installation package. * BUG: Fix the RPM package naming in the packager. * BUG: Autotools are correctly detected now in the packager. * BUG: The packager menu list is correctly refreshed. * BUG: Chhecking autotools package does not prevent from making other kinds of package anymore. * NEW: The global "find" menu entry always open the find tool. * BUG: Fix the editor procedure combo-box that sometimes displayed an incorrect procedure name. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas-database-manager/.project 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/FEditor.class 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/Package.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/app/src/gambas2/install/group/mandriva This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |