[Gambas-Notification] [Git][gambas/gambas][stable] 10 commits: New tooltip design in the form editor, and many fixes in the image editor.

Benoît Minisini gitlab at mg.gitlab.com
Tue Mar 20 19:06:29 CET 2018


Benoît Minisini pushed to branch stable at Gambas / gambas


Commits:
a3fa96be by gambas at 2018-03-17T20:00:05Z
New tooltip design in the form editor, and many fixes in the image editor.

[DEVELOPMENT ENVIRONMENT]
* NEW: Don't open console when an external command emits a message.
* NEW: Form editor: Display tooltip on the top left corner, like the image editor does.
* NEW: Use system tooltip colors for form and image editor tooltips.
* BUG: Image editor: Fix rectangle selection with SHIFT key.
* NEW: Image editor: Double-click now hides the selection, and single click never hides it.
* BUG: Image editor: Fix zero width line drawing.
* NEW: Image editor: Display fractional coordinates in the tooltip.
* NEW: Image editor: The ALT key is now used for rotating or drawing a line with an angle that is a multiple of 15 degrees.
* NEW: Image editor: Highlight the last point with the "draw" and "erase" tool.

- - - - -
f47d6310 by gambas at 2018-03-17T22:33:02Z
Raise an error if a object being freed has been referenced by its '_free' special method.

[INTERPRETER]
* NEW: Add a new message error for free object being referenced.
* NEW: Raise an error if a object being freed has been referenced by its '_free' special method.
* OPT: Add a boolean flag in the class structure not to try to call the '_free' special method if there is not.

- - - - -
cf70b1e3 by gambas at 2018-03-17T22:35:27Z
Support for the new interpreter error message "Free object referenced".

[DEVELOPMENT ENVIRONMENT]
* NEW: Support for the new interpreter error message "Free object referenced".
* NEW: Update french translation.

- - - - -
b9389e5d by gambas at 2018-03-17T22:36:54Z
Update French translation.

[GB.FORM.MDI]
* NEW: Update French translation.

- - - - -
76ac4ee2 by gambas at 2018-03-18T19:39:05Z
Redesign form and image editors tooltips, and using SHIFT with the draw tool allows to pick a color from the current image.

[DEVELOPMENT ENVIRONMENT]
* NEW: Form editor: Redesign the tooltip.
* NEW: Image editor: Redesign the tooltip.
* NEW: Image editor: Using SHIFT with the draw tool allows to pick a color from the current image.

- - - - -
e07ac2e4 by gambas at 2018-03-20T15:05:33Z
Connection.LastInsertId is a new property that returns the value of the serial field used in the last inserted row.

[GB.DB]
* NEW: Connection.LastInsertId is a new property that returns the value of the serial field used in the last inserted row. It is supported on MySQL, PostgreSQL and SQLite3 only.
* BUG: Connection.Handle is correctly declared now.

[GB.DB.MYSQL]
* NEW: Support for Connection.LastInsertId.

[GB.DB.ODBC]
* NEW: Raise an error if Connection.LastInsertId is used.

[GB.DB.POSTGRESQL]
* NEW: Support for Connection.LastInsertId.

[GB.DB.SQLITE2]
* NEW: Raise an error if Connection.LastInsertId is used.

[GB.DB.SQLITE3]
* NEW: Support for Connection.LastInsertId.

- - - - -
3ec7e51b by gambas at 2018-03-20T17:14:47Z
TerminalView: Add AutoResize, ScreenWidth, CharWidth and LineHeight properties.

[GB.FORM.TERMINAL]
* NEW: Redraw the control icon.
* NEW: TerminalView: AutoResize is a new property that defines if the screen width automatically fits the view.
* NEW: TerminalView: ScreenWidth is a new property that allows to define the screen width in the case AutoResize is FALSE.
* NEW: TerminalView: CharWidth is a new property that returns the screen character width.
* NEW: TerminalView: LineHeight is a new property that returns the screen lien height.
* BUG: TerminalView: The scrollbar should now be correctly hidden in all cases.

- - - - -
c772e744 by gambas at 2018-03-20T17:19:44Z
Support for stock icons of any size, with automatic stretching.

[GB.FORM]
* NEW: Support for stock icons of any size, with automatic stretching.

[GB.FORM.STOCK]
* NEW: Add a 128 pixel version of the Gambas logo to the 'gambas' stock theme.

- - - - -
6eae56c3 by gambas at 2018-03-20T17:21:22Z
Add a toolbar button that toggles the tooltip visibility, with the F6 key as shortcut.

[DEVELOPMENT ENVIRONMENT]
* BUG: Output console: Ensure that the terminal screen width is accurate even if the output console has not been shown yet.
* NEW: Form editor: Add a toolbar button that toggles the tooltip visibility, with the F6 key as shortcut.
* NEW: Image editor: Add a toolbar button that toggles the tooltip visibility, with the F6 key as shortcut.
* NEW: Use text colors inverted for form and image editor tooltips.

- - - - -
4ae7a61b by gambas at 2018-03-20T18:06:08Z
Merge branch 'master' into stable

- - - - -


30 changed files:

- app/src/gambas3/.lang/fr.mo
- app/src/gambas3/.lang/fr.po
- app/src/gambas3/.src/Debug/FDebugButton.class
- app/src/gambas3/.src/Debug/FDebugInfo.class
- app/src/gambas3/.src/Debug/FDebugInfo.form
- app/src/gambas3/.src/Debug/FOutput.class
- app/src/gambas3/.src/Debug/FOutput.form
- app/src/gambas3/.src/Editor/Form/CControl.class
- app/src/gambas3/.src/Editor/Form/FForm.class
- app/src/gambas3/.src/Editor/Form/FForm.form
- app/src/gambas3/.src/Editor/Image/CImageShape.class
- app/src/gambas3/.src/Editor/Image/FImageEditor.class
- app/src/gambas3/.src/Editor/Image/FImageEditor.form
- app/src/gambas3/.src/Editor/Image/FImageProperty.class
- app/src/gambas3/.src/FMain.form
- app/src/gambas3/.src/Project.module
- app/src/gambas3/.src/Util/MErrorMessage.module
- comp/src/gb.form.mdi/.lang/fr.mo
- comp/src/gb.form.mdi/.lang/fr.po
- comp/src/gb.form.mdi/.src/Tests/FMain1.form
- comp/src/gb.form.stock/.src/_DefaultStock.class
- + comp/src/gb.form.stock/gambas/128/gambas.png
- comp/src/gb.form.terminal/.hidden/control/terminalview.png
- comp/src/gb.form.terminal/.icon.png
- comp/src/gb.form.terminal/.project
- comp/src/gb.form.terminal/.src/TerminalView/FTestTerminalView.form
- comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class
- − comp/src/gb.form.terminal/terminalview.png
- comp/src/gb.form/.src/Stock.class
- gb.db.mysql/src/main.c


View it on GitLab: https://gitlab.com/gambas/gambas/compare/312a91fd34b230dda189a5d3cc3b4e46061fbb1d...4ae7a61ba908640a4da66733c9d77cd7317bd076

---
View it on GitLab: https://gitlab.com/gambas/gambas/compare/312a91fd34b230dda189a5d3cc3b4e46061fbb1d...4ae7a61ba908640a4da66733c9d77cd7317bd076
You're receiving this email because of your account on gitlab.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gambas-basic.org/pipermail/notification/attachments/20180320/a47acf16/attachment-0001.html>


More information about the Notification mailing list