Gambas Documentation
Aperçu du Langage
À traduire
Code Snippets
Comment faire ...
Compilation et installation
Composants
Controls pictures
Derniers changements
Dépôt d'applications
Documentation de l'Environnement de développement
Documentation des développeurs
Documents
À propos de ma formule préférée
Captures d'écrans
Comportement interne de DrawingArea
Convention de Nommage des Variables
Conventions de nommage
Database Datatype Mapping
DBus et Gambas
Démarrer avec Gambas
Détails de l'architecture
Différences avec Visual Basic
Différences entre Shell et Exec
Distributions et systèmes d'exploitation
Drag & Drop
Gambas, c'est quoi ?
Introduction
Le modèle objet de Gambas
Le programme s'est arrêté de façon inattendue en levant le signal #11
Licence
LIENS RELATIFS à Gambas
Listes de diffusion et Forums
Livres
Localisation et Internationalisation
Network Programming
News
Notes de version
Gambas 2.23.0
Gambas 2.23.1
Gambas 2.24.0
Gambas 3.1.0
Gambas 3 RC1
Gambas 3 RC2
Gambas 3 RC3
Gambas 3 RC4
Gambas 3 RC5
Gambas 3 RC6
ODBC Component Documentation
Pages serveur Gambas
Passer Un Argument Par Référence
PCRE Pattern Syntax
Portage de Gambas 2 en Gambas 3
Questions fréquemment posées (FAQ)
Rich Text Syntax
Signaler un problème, un bogue ou un plantage
Tests de performance (benchmarks)
Window Activation & Deactivation
Indenter
Index de tous les Documents
Index du langage
Lexique
LISEZ-MOI
Manuel du wiki
Messages d'erreur
Tutoriels
Wiki License

Gambas 3.18.1

What's new?

This release includes important bug fixes made since the 3.18.0 release.

Compilation and installation

Read the instructions there.

If everything was fine, type "gambas3" to run the development environment.

Enjoy it !

Changelog

DEVELOPMENT ENVIRONMENT

  • Farm software: Fix software download. HTTP headers are not case-sensitive.

  • Gambas fonts: Make period, comma, colon and semi-colon characters bolder in 16 px size.

  • Gambas fonts: Some fixes.

  • Menu editor: Do not draw the picture of top-level menus.

  • Project property dialog: The "Properties" tab information is correctly saved and restore now.

  • Snippets: Add newline at the end of snippets where it makes sense.

  • System information dialog: Add more informations, and change the order.

  • Test suites: Fix the behaviour of the test suites interface when a test suite has no test.

  • Translation dialog: Import translation now takes the # gb-ignore comment into account.

INTERPRETER

  • WAIT with no argument now behaves as before when no component specific WAIT handler is defined.

  • Delete temporary files when the QUIT instruction is used.

SCRIPTER

  • Do not return -2 when quitting, it causes overflow. Return 127 instead.

WIKI

  • Update style sheet so that it handles highlighted code using <tt> instead of <pre>.

SELF-TEST

  • Test System.IgnoreOverflow.

  • Refactor a bit and remove some duplicated code.

GB.DEBUG

  • Fix quoting when displaying a string value.

GB.DBUS

  • Update project icon.

  • Update documentation.

  • Fix a possible memory leak in DBus introspection.

GB.DBUS.TRAYICON

  • Raise the LayoutUpdated D-Bus signal when the current desktop is Mate.

GB.EVAL

  • Correctly rewrite lines using the ERROR keyword in a one-line IF expression.

GB.EVAL.HIGHLIGHT

  • TextHighlighter: The Tag property is actually a Short.

  • TextHighlighter: The State property is now a Short too.

  • TextHighlighter: Fix possible overflows.

  • TextHighlighter: ToHTML() method correctly handles multiple lines again.

  • Move old code to project files.

  • Fix unit tests.

  • CSS highlighting: Add accent-color CSS property.

GB.FORM

  • FileChooser & DirChooser: Setting the Root property works again as before.

  • SidePanel: Prevent the panel size from being lower than the minimum size after being hidden.

  • Stock: Fix support for KDE desktop.

GB.FORM.EDITOR

  • TextEditor: The highlight state can be a Short.

  • TextEditor: Add documentation.

GB.FORM.STOCK

  • Redraw replace icon.

  • Redraw bus and truck icons.

GB.GTK

  • Let Pango take the target device resolution into account when drawing text.

GB.GTK3

  • Let Pango take the target device resolution into account when drawing text.

GB.GUI.BASE

  • Desktop.Type does not crash anymore if XDG_CURRENT_DESKTOP is not defined.

  • ColumnView: Extra columns are automatically resized too when AutoResize is True.

  • ComboBox: The Selection property now works correctly.

  • ComboBox: The popup now uses the same font as the ComboBox.

  • Drag & Drop: Temporary hack that correctly raises DragMove events in all cases when the mouse cursor is on the DnD frame.

  • GridView: Take Columns.Padding property into account when computing the preferred width of a column.

  • TreeView, ListView, ColumnView: Fix the rename control management, and so a possible infinite loop.

  • SpinBox: Support for right-to-left written languages.

GB.IMAGE

  • Color: ToHTML() is a new method that converts a Gambas color as integer value to an HTML color representation. Make the component compatible with gb.web.gui.

GB.JIT

  • Fix arithmetic overflow detection on datatype conversion.

  • Fix JIT compilation on old compilers that do not support arithmetic overflow check.

GB.MARKDOWN

  • Replace </hr> by <hr>.

GB.NET.CURL

  • DownloadManager: Follow HTTP redirections automatically.

GB.QT4

  • Popup windows are now correctly parented, so that imbricated popups do not close all at once on mouse button press.

GB.QT5

  • Popup windows are now correctly parented, so that imbricated popups do not close all at once on mouse button press.

GB.WEB

  • Content-Disposition HTTP header is not case sensitive.

GB.WEB.GUI

  • WebTabPanel: Fix container management.

  • WebContainer: If the _Container internal property is used, then we suppose that only one child is visible at the same time.

  • WebDrawingArea: Fix Refresh() method.