From gitlab at mg.gitlab.com Wed Sep 1 01:12:37 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 31 Aug 2021 23:12:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] WebTree: Initial implementation of a tree control. Not finished yet! Message-ID: <612eb7663a90_2379dab046881@gitlab-sidekiq-low-urgency-cpu-bound-v1-5df7f8bcc-2h2fp.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 4a5e740b by gambas at 2021-09-01T01:12:27+02:00 WebTree: Initial implementation of a tree control. Not finished yet! [GB.WEB.GUI] * NEW: WebTree: Initial implementation of a tree control. Not finished yet! * BUG: WebTable: Fix table layout. * BUG: Ensure that the pipe for writing the response is in blocking mode. - - - - - 14 changed files: - + comp/src/gb.web.gui/.hidden/control/webtree.png - comp/src/gb.web.gui/.src/Table/WebTable.class - comp/src/gb.web.gui/.src/Table/_WebTableColumn.class - comp/src/gb.web.gui/.src/Test/Webform1.class - comp/src/gb.web.gui/.src/Test/Webform1.webform - + comp/src/gb.web.gui/.src/Tree/WebTree.class - + comp/src/gb.web.gui/.src/Tree/WebTreeSelection.class - + comp/src/gb.web.gui/.src/Tree/_WebTreeColumn.class - + comp/src/gb.web.gui/.src/Tree/_WebTreeColumns.class - + comp/src/gb.web.gui/.src/Tree/_WebTreeItem.class - comp/src/gb.web.gui/.src/WebForm.class - comp/src/gb.web.gui/.src/WebScrollView.class - comp/src/gb.web.gui/lib.js - comp/src/gb.web.gui/style.css View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4a5e740b581e6ed5eeec1ed69a8a40cd06f196af -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4a5e740b581e6ed5eeec1ed69a8a40cd06f196af You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Wed Sep 1 17:30:15 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Wed, 01 Sep 2021 15:30:15 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 'zlib' inflate function sometimes returns an incorrect error code that lead to a crash. Message-ID: <612f9c87dfa9d_2428f28104232@gitlab-sidekiq-low-urgency-cpu-bound-v1-6655f6b5bc-bst4n.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f68e2fe6 by gambas at 2021-09-01T17:29:00+02:00 'zlib' inflate function sometimes returns an incorrect error code that lead to a crash. [GB.COMPRESS.ZLIB] * BUG: 'zlib' inflate function sometimes returns an incorrect error code that lead to a crash. - - - - - 1 changed file: - gb.compress.zlib/src/main.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f68e2fe668caf73c8cdff8dfa045fd2750c0ea51 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f68e2fe668caf73c8cdff8dfa045fd2750c0ea51 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Wed Sep 1 21:17:20 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Wed, 01 Sep 2021 19:17:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Don't use 'qApp->sync()', it calls the event loop. Message-ID: <612fd1c0dd26f_2228ed880293@gitlab-sidekiq-low-urgency-cpu-bound-v1-6655f6b5bc-vpsqk.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 423b02fc by gambas at 2021-09-01T21:16:51+02:00 Don't use 'qApp->sync()', it calls the event loop. [GB.QT5.X11] * BUG: Don't use 'qApp->sync()', it calls the event loop. - - - - - 1 changed file: - gb.qt5/src/x11/main.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/423b02fcd6409283b970e92bc5c9c4515f094b1f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/423b02fcd6409283b970e92bc5c9c4515f094b1f You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 3 01:33:44 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Thu, 02 Sep 2021 23:33:44 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Continue WebTree implementation. Replace 'ShowHeader' and 'ShowRowNumber' by a... Message-ID: <61315f58f33de_221676bb89091@gitlab-sidekiq-low-urgency-cpu-bound-v1-669cb4fb6d-ql527.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: b96b6980 by gambas at 2021-09-03T01:33:37+02:00 Continue WebTree implementation. Replace 'ShowHeader' and 'ShowRowNumber' by a 'Header' property in WebTable. [GB.WEB.GUI] * NEW: WebTable: Replace the 'ShowHeader' and 'ShowRowNumber' properties by a 'Header' property. * NEW: WebTable: Draw the vertical header the same way as the horizontal header, and make it sticky. * NEW: WebTable: Replace the 'DblClick' event by the 'Activate' event. * NEW: WebTree: Implement the 'Activate' event. * BUG: WebTree: The "select all" checkbox now works as expected.. * - - - - - 8 changed files: - comp/src/gb.web.gui/.src/Table/WebTable.class - comp/src/gb.web.gui/.src/Table/_WebTableColumns.class - comp/src/gb.web.gui/.src/Test/Webform1.class - comp/src/gb.web.gui/.src/Test/Webform1.webform - comp/src/gb.web.gui/.src/Tree/WebTree.class - comp/src/gb.web.gui/.src/Tree/WebTreeSelection.class - comp/src/gb.web.gui/.src/Tree/_WebTreeColumns.class - comp/src/gb.web.gui/style.css View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/b96b69806606de2ae11d0f1fc8c67f3c4929e8e0 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/b96b69806606de2ae11d0f1fc8c67f3c4929e8e0 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 3 01:36:14 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Thu, 02 Sep 2021 23:36:14 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] WebTable: The 'ShowHeader' property is deprecated but works as expected now. Message-ID: <61315fee5face_232902c154ea@gitlab-sidekiq-low-urgency-cpu-bound-v1-669cb4fb6d-g5rm2.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: acc85e32 by gambas at 2021-09-03T01:36:10+02:00 WebTable: The 'ShowHeader' property is deprecated but works as expected now. [GB.WEB.GUI] * BUG: WebTable: The 'ShowHeader' property is deprecated but works as expected now. * - - - - - 1 changed file: - comp/src/gb.web.gui/.src/Table/WebTable.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/acc85e3268092c39a301cad1424a6c759fc6939b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/acc85e3268092c39a301cad1424a6c759fc6939b You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sun Sep 5 17:54:25 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sun, 05 Sep 2021 15:54:25 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] TextEditor: Correctly reset the Alternate flag before starting highlighting text. Message-ID: <6134e8325a6b6_2231bd20089447@gitlab-sidekiq-low-urgency-cpu-bound-v1-74c7d48c74-v98hp.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 425cd63b by gambas at 2021-09-05T17:54:20+02:00 TextEditor: Correctly reset the Alternate flag before starting highlighting text. [GB.FORM.EDITOR] * BUG: TextEditor: Correctly reset the Alternate flag before starting highlighting text. - - - - - 1 changed file: - comp/src/gb.form.editor/.src/CDocument.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/425cd63b56c221268454998be9f65bd09c8a9f88 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/425cd63b56c221268454998be9f65bd09c8a9f88 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 01:04:19 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Mon, 06 Sep 2021 23:04:19 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Menu shortcuts are now taken into account even if they are defined in an embedded form. Message-ID: <61369e737b57e_22292485107b@gitlab-sidekiq-low-urgency-cpu-bound-v1-5c44749566-dbt2m.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f2ed7726 by gambas at 2021-09-05T21:51:16+02:00 Menu shortcuts are now taken into account even if they are defined in an embedded form. [GB.WEB.GUI] * BUG: Menu shortcuts are now taken into account even if they are defined in an embedded form. * - - - - - 6ec0f690 by gambas at 2021-09-07T01:04:12+02:00 WebButton: Implement the 'Default' and 'Cancel' buttons. [GB.WEB.GUI] * NEW: Preload framework images and icons. * NEW: WebButton: Implement the 'Default' and 'Cancel' buttons. They work only in the main form and in modal dialogs. * NEW: WebTree: Clicking twice toggles the item expanded state. - - - - - 12 changed files: - comp/src/gb.web.gui/.src/Menu/WebMenu.class - comp/src/gb.web.gui/.src/Message/FMessage.class - comp/src/gb.web.gui/.src/Test/Webform1.class - comp/src/gb.web.gui/.src/Test/Webform1.webform - comp/src/gb.web.gui/.src/Test/Webform2.webform - comp/src/gb.web.gui/.src/Test/Webform3.class - comp/src/gb.web.gui/.src/Tree/WebTree.class - comp/src/gb.web.gui/.src/WebButton.class - comp/src/gb.web.gui/.src/WebControl.class - comp/src/gb.web.gui/.src/WebForm.class - comp/src/gb.web.gui/lib.js - comp/src/gb.web.gui/style.css View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/425cd63b56c221268454998be9f65bd09c8a9f88...6ec0f69060be7c3d9e5e62b9c36c5d56da22856f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/425cd63b56c221268454998be9f65bd09c8a9f88...6ec0f69060be7c3d9e5e62b9c36c5d56da22856f You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 01:25:55 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Mon, 06 Sep 2021 23:25:55 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Report editor: Fix CoordBox control for GTK+3. Message-ID: <6136a383b3dec_22290a41012f@gitlab-sidekiq-low-urgency-cpu-bound-v1-5c44749566-spwg5.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 9b9cd35a by gambas at 2021-09-07T01:25:51+02:00 Report editor: Fix CoordBox control for GTK+3. [DEVELOPMENT ENVIRONMENT] * BUG: Report editor: Use Style.FrameWidth for the padding of CoordBox, so that the control is usable with GTK+3. * BUG: Report editor: Fix drawing of CoordBox background. - - - - - 6 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Editor/Form/FMenu.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/Family/Report/CoordBox.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9b9cd35a42871e0fdeff8420e6d62cb2866fe503 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9b9cd35a42871e0fdeff8420e6d62cb2866fe503 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 03:55:05 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 01:55:05 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] 25 commits: Adapt GetRecordCount() to the SQLite ODBC database driver. Message-ID: <6136c6799a8d9_242902c46071@gitlab-sidekiq-low-urgency-cpu-bound-v1-5c44749566-bhtst.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 5735d32a by gambas at 2021-09-07T03:29:34+02:00 Adapt GetRecordCount() to the SQLite ODBC database driver. [GB.DB.ODBC] * BUG: Adapt GetRecordCount() to the SQLite ODBC database driver. - - - - - 51f538b8 by gambas at 2021-09-07T03:31:03+02:00 MaskBox: Make cursor moves more clever. [GB.FORM] * NEW: MaskBox: Make cursor moves more clever. - - - - - 19af62f0 by gambas at 2021-09-07T03:31:21+02:00 Don't crash when hitting Backspace at the beginning of the editable text. [GB.FORM] * BUG: MaskBox: Don't crash when hitting Backspace at the beginning of the editable text. - - - - - e989b0a7 by gambas at 2021-09-07T03:31:33+02:00 Rich text support for '<pre>' markup. Fix rich text paragraph and title line breaks. [GB.GTK] * NEW: Rich text support for '<pre>' markup. * BUG: Fix rich text paragraph and title line breaks. [GB.GTK3] * NEW: Rich text support for '<pre>' markup. * BUG: Fix rich text paragraph and title line breaks. - - - - - 96510c63 by gambas at 2021-09-07T03:31:42+02:00 Fix startup initialization. [GB.GTK3] * BUG: Fix startup initialization. - - - - - 7b2a11fa by gambas at 2021-09-07T03:32:00+02:00 TrayIcon: Change the icon name each time the Picture property changes, to force the system tray to reload it. [GB.DBUS.TRAYICON] * BUG: TrayIcon: Change the icon name each time the Picture property changes, to force the system tray to reload it. - - - - - 5d2d9844 by gambas at 2021-09-07T03:32:10+02:00 Fix desktop standard paths computation when there is no explicit configuration file. [GB.DESKTOP] * BUG: Fix desktop standard paths computation when there is no explicit configuration file. - - - - - 21ac0250 by gambas at 2021-09-07T03:32:20+02:00 MaskBox: Handle space separators correctly when setting the Text property.. [GB.FORM] * BUG: MaskBox: Handle space separators correctly when setting the Text property. - - - - - 0e10f73e by gambas at 2021-09-07T03:32:28+02:00 Fix Font.RichTextSize(). [GB.GTK] * BUG: Fix Font.RichTextSize(). [GB.GTK3] * BUG: Fix Font.RichTextSize(). - - - - - b43f5389 by gambas at 2021-09-07T03:33:02+02:00 Form editor: Image properties can be set without error. [DEVELOPMENT ENVIRONMENT] * BUG: Form editor: Image properties can be set without error. - - - - - 4e97cdb7 by gambas at 2021-09-07T03:33:12+02:00 Workspace: Activating an unknown window is nw silently ignored. [GB.FORM.MDI] * BUG: Workspace: The Add() method now can safely move a window from a workspace to another workspace. * BUG: Workspace: Activating an unknown window is nw silently ignored. - - - - - 9b538e7d by gambas at 2021-09-07T03:33:22+02:00 MaskBox: Fix cursor move when inserting a character in a filled mask pattern. [GB.FORM] * NEW: ButtonBox: Raise the Validate event. * BUG: MaskBox: Fix cursor move when inserting a character in a filled mask pattern. * BUG: MaskBox: Handle space separators correctly when setting the Text property. - - - - - fea9c3b4 by gambas at 2021-09-07T03:33:39+02:00 Fix popup menu behaviour. [GB.GTK] * BUG: Make popup menu event behave the same way as in Qt components. * BUG: Menu.Popup() now works correctly the opened menu is not defined in the window of the click event. [GB.GTK3] * BUG: Make popup menu event behave the same way as in Qt components. * BUG: Menu.Popup() now works correctly the opened menu is not defined in the window of the click event. - - - - - dec2d7af by gambas at 2021-09-07T03:33:50+02:00 Splitter: Fix how the panels follow the mouse on resize. [GB.GUI.BASE] * BUG: Splitter: Fix how the panels follow the mouse on resize. - - - - - 4bdcacd8 by gambas at 2021-09-07T03:33:57+02:00 Fix mouse cursor management. [GB.GTK] * BUG: Fix mouse cursor management. [GB.GTK3] * BUG: Fix mouse cursor management. - - - - - b5b323c3 by gambas at 2021-09-07T03:34:05+02:00 Message: Correctly define the message title for standard message box style. [GB.GUI.BASE] * BUG: Message: Correctly define the message title for standard message box style. - - - - - 59542a61 by gambas at 2021-09-07T03:34:13+02:00 Modal windows are now centered before being shown. [GB.GTK] * BUG: Modal windows are now centered before being shown. [GB.GTK3] * BUG: Modal windows are now centered before being shown. - - - - - 24e95b89 by gambas at 2021-09-07T03:34:22+02:00 Realize the window widget before trying to center it, as we need the monitor it is displayed on. [GB.GTK] * BUG: Realize the window widget before trying to center it, as we need the monitor it is displayed on. [GB.GTK3] * BUG: Realize the window widget before trying to center it, as we need the monitor it is displayed on. - - - - - 5ed1d908 by gambas at 2021-09-07T03:34:31+02:00 Creating a numeric field with a default value works correctly now. [GB.DB.MYSQL] * BUG: Creating a numeric field with a default value works correctly now. - - - - - 5b3374ea by gambas at 2021-09-07T03:34:41+02:00 All UTF-8 charsets variants are now returned as "utf8". [GB.DB.MYSQL] * BUG: All UTF-8 charsets variants are now returned as "utf8". - - - - - 70d52cb9 by gambas at 2021-09-07T03:34:52+02:00 DirBox: Correctly raise the Change event each time the contents actually changes. [GB.FORM] * BUG: DirBox: Correctly raise the Change event each time the contents actually changes. - - - - - 375cb1dc by gambas at 2021-09-07T03:34:59+02:00 SliderBox: Always set both the SpinBox and the Slider, so that they keep being synchronized when the SliderBox has been locked. [GB.FORM] * BUG: SliderBox: Always set both the SpinBox and the Slider, so that they keep being synchronized when the SliderBox has been locked. - - - - - f2ff6587 by gambas at 2021-09-07T03:35:09+02:00 'zlib' inflate function sometimes returns an incorrect error code that lead to a crash. [GB.COMPRESS.ZLIB] * BUG: 'zlib' inflate function sometimes returns an incorrect error code that lead to a crash. - - - - - c4fcedd4 by gambas at 2021-09-07T03:35:16+02:00 TextEditor: Correctly reset the Alternate flag before starting highlighting text. [GB.FORM.EDITOR] * BUG: TextEditor: Correctly reset the Alternate flag before starting highlighting text. - - - - - 9284dae5 by gambas at 2021-09-07T03:49:30+02:00 Help browser: Hide the print button, as printing is not yet implemented in the new Qt/GTK+ WebView controls. [DEVELOPMENT ENVIRONMENT] * BUG: Fix some tips rich text syntax. * BUG: Help browser: Hide the print button, as printing is not yet implemented in the new Qt/GTK+ WebView controls. - - - - - 30 changed files: - app/src/gambas3/.src/Editor/Form/CControl.class - app/src/gambas3/.src/Help/FHelpBrowser.class - app/src/gambas3/.src/Help/FHelpBrowser.form - app/src/gambas3/.src/Help/FTips.class - app/src/gambas3/tips/tips.ca ? app/src/gambas3/tips/tips.ca.txt - app/src/gambas3/tips/tips.cs ? app/src/gambas3/tips/tips.cs.txt - app/src/gambas3/tips/tips.de ? app/src/gambas3/tips/tips.de.txt - app/src/gambas3/tips/tips.en ? app/src/gambas3/tips/tips.en.txt - app/src/gambas3/tips/tips.es ? app/src/gambas3/tips/tips.es.txt - app/src/gambas3/tips/tips.fr ? app/src/gambas3/tips/tips.fr.txt - app/src/gambas3/tips/tips.it ? app/src/gambas3/tips/tips.it.txt - app/src/gambas3/tips/tips.nl ? app/src/gambas3/tips/tips.nl.txt - app/src/gambas3/tips/tips.pl ? app/src/gambas3/tips/tips.pl.txt - app/src/gambas3/tips/tips.ru ? app/src/gambas3/tips/tips.ru.txt - app/src/gambas3/tips/tips.sl ? app/src/gambas3/tips/tips.sl.txt - app/src/gambas3/tips/tips.sv ? app/src/gambas3/tips/tips.sv.txt - app/src/gambas3/tips/tips.tr ? app/src/gambas3/tips/tips.tr.txt - app/src/gambas3/tips/tips.zh ? app/src/gambas3/tips/tips.zh.txt - app/src/gambas3/tips/tips.zh_TW ? app/src/gambas3/tips/tips.zh_TW.txt - comp/src/gb.dbus.trayicon/.src/TrayIcon.class - comp/src/gb.desktop/.src/Main.module - comp/src/gb.form.editor/.src/CDocument.class - comp/src/gb.form.mdi/.component - comp/src/gb.form.mdi/.project - comp/src/gb.form.mdi/.src/Workspace/FWorkspace.class - comp/src/gb.form/.project - comp/src/gb.form/.src/Button/ButtonBox.class - comp/src/gb.form/.src/File/DirBox.class - comp/src/gb.form/.src/MaskBox.class - + comp/src/gb.form/.src/MaskBox2.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5ed2472225dfb2c66e15e87e7c696bdc0b2ae7e4...9284dae5ca24649e59697f8d4d4ecffc27894c56 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5ed2472225dfb2c66e15e87e7c696bdc0b2ae7e4...9284dae5ca24649e59697f8d4d4ecffc27894c56 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 03:55:55 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 01:55:55 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] [CONFIGURATION] Message-ID: <6136c6ac4b960_22503917021959@gitlab-sidekiq-low-urgency-cpu-bound-v1-5c44749566-vw4ml.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 19b65af7 by gambas at 2021-09-07T03:55:35+02:00 [CONFIGURATION] * NEW: Switch to 3.16.3 version. - - - - - 2 changed files: - VERSION - version.m4 View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/19b65af707fb70a54391a8bb01b8f4b19e3f01f1 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/19b65af707fb70a54391a8bb01b8f4b19e3f01f1 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 23:15:42 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 21:15:42 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] Report editor: Fix CoordBox control for GTK+3. Message-ID: <6137d67f17721_232520e9855517@gitlab-sidekiq-low-urgency-cpu-bound-v1-5df6fc69b4-m8pqg.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 0181c187 by gambas at 2021-09-07T04:09:23+02:00 Report editor: Fix CoordBox control for GTK+3. [DEVELOPMENT ENVIRONMENT] * BUG: Report editor: Use Style.FrameWidth for the padding of CoordBox, so that the control is usable with GTK+3. * BUG: Report editor: Fix drawing of CoordBox background. - - - - - 6 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Editor/Form/FMenu.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/Family/Report/CoordBox.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/0181c187ed24af11edfee6715cd587e8a2d407b1 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/0181c187ed24af11edfee6715cd587e8a2d407b1 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 23:16:47 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 21:16:47 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] 2 commits: New release of Debian. Message-ID: <6137d6c14300e_2329144135a9@gitlab-sidekiq-low-urgency-cpu-bound-v1-5df6fc69b4-7hchd.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: a51b99cc by gambas at 2021-09-07T23:16:28+02:00 New release of Debian. - - - - - 88410ec7 by gambas at 2021-09-07T23:16:40+02:00 New release of Debian (2). - - - - - 1 changed file: - .gitlab-ci.yml View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/0181c187ed24af11edfee6715cd587e8a2d407b1...88410ec7a35e07fcd1bf62ad2527431735168f4a -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/0181c187ed24af11edfee6715cd587e8a2d407b1...88410ec7a35e07fcd1bf62ad2527431735168f4a You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 7 23:39:26 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 21:39:26 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Pushed new tag 3.16.3 Message-ID: <6137dc0f6c625_2314cd15477677@gitlab-sidekiq-low-urgency-cpu-bound-v1-5df6fc69b4-g8szw.mail> Beno?t Minisini pushed new tag 3.16.3 at Gambas / gambas -- View it on GitLab: https://gitlab.com/gambas/gambas/-/tree/3.16.3 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Wed Sep 8 01:55:24 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 07 Sep 2021 23:55:24 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Updates to fix issues with --convert-project Message-ID: <6137fbeca632e_2438c18d0151d9@gitlab-sidekiq-low-urgency-cpu-bound-v1-5df6fc69b4-g4sjx.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: c136b4d4 by Brian G at 2021-08-08T10:49:45-07:00 Updates to fix issues with --convert-project [Scripter] * BUG: Fix error when trailing / in project name Script end up with no BaseName * NEW: Add some verbose output from conversion from project to script - - - - - e9907991 by Beno?t Minisini at 2021-09-07T23:55:22+00:00 Merge branch 'ScripterBackPortBugFixes' into 'master' Updates to fix issues with --convert-project See merge request gambas/gambas!248 - - - - - 3 changed files: - app/src/gbs3/.hidden/CHANGELOG - app/src/gbs3/.project - app/src/gbs3/.src/ConvertProject.module View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/9b9cd35a42871e0fdeff8420e6d62cb2866fe503...e99079913cb69ff04c96863e3b46fdac75333aac -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/9b9cd35a42871e0fdeff8420e6d62cb2866fe503...e99079913cb69ff04c96863e3b46fdac75333aac You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Wed Sep 8 23:57:37 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Wed, 08 Sep 2021 21:57:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Deleting a control now correctly disables its associated shortcut. Message-ID: <613931d27f1cc_234ff6e9c3727c@gitlab-sidekiq-low-urgency-cpu-bound-v1-94c598b65-jbptq.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: fe227d50 by gambas at 2021-09-08T23:57:00+02:00 Deleting a control now correctly disables its associated shortcut. [GB.WEB.GUI] * BUG: Deleting a control now correctly disables its associated shortcut. - - - - - 0c0c658a by gambas at 2021-09-08T23:57:11+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 1 changed file: - comp/src/gb.web.gui/.src/WebForm.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e99079913cb69ff04c96863e3b46fdac75333aac...0c0c658ad3d5882b373d44159d08d21e8437f9c6 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e99079913cb69ff04c96863e3b46fdac75333aac...0c0c658ad3d5882b373d44159d08d21e8437f9c6 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Mon Sep 13 19:53:00 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Mon, 13 Sep 2021 17:53:00 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Buffered streams read and write methods now correctly handle errors. Message-ID: <613f8ffcecfa5_233ac9808960db@gitlab-sidekiq-low-urgency-cpu-bound-v1-846684cf7d-vbnx6.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 8ee4db62 by gambas at 2021-09-13T19:52:24+02:00 Buffered streams read and write methods now correctly handle errors. [INTERPRETER] * BUG: Buffered streams read and write methods now correctly handle errors. - - - - - 1 changed file: - main/gbx/gbx_stream_buffer.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/8ee4db628dcb937feebc84d1d15ebd1dc481cca5 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/8ee4db628dcb937feebc84d1d15ebd1dc481cca5 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 09:51:37 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 07:51:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Mark the component as stable. Message-ID: <6140548a54565_222916c1006ce@gitlab-sidekiq-low-urgency-cpu-bound-v1-5d85c7dd4d-7lp5n.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2a751fcd by gambas at 2021-09-14T09:51:31+02:00 Mark the component as stable. [GB.FORM.TERMINAL] * NEW: Mark the component as stable. - - - - - 3 changed files: - comp/src/gb.form.terminal/.component - comp/src/gb.form.terminal/.icon.png - comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2a751fcd4636ae033171a84238a9867d7b0dc71b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2a751fcd4636ae033171a84238a9867d7b0dc71b You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 10:02:17 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 08:02:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Additional project references using relative paths are correctly handled now. Message-ID: <6140570a595b8_22b0feb41729a@gitlab-sidekiq-low-urgency-cpu-bound-v1-5d85c7dd4d-nkkfl.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: a33b3121 by gambas at 2021-09-14T10:02:07+02:00 Additional project references using relative paths are correctly handled now. [DEVELOPMENT ENVIRONMENT] * BUG: Additional project references using relative paths are correctly handled now. - - - - - 2 changed files: - app/src/gambas3/.src/Component/CComponent.class - app/src/gambas3/.src/Project/Library/CLibraryInfo.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a33b312136119084168291e28980352804bb13f5 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a33b312136119084168291e28980352804bb13f5 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 10:07:38 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 08:07:38 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Deleted tag 3.16.3 Message-ID: <6140584b107dd_22292708048b@gitlab-sidekiq-low-urgency-cpu-bound-v1-5d85c7dd4d-nr7l8.mail> Beno?t Minisini deleted tag 3.16.3 at Gambas / gambas -- You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 10:08:29 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 08:08:29 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] Additional project references using relative paths are correctly handled now. Message-ID: <6140587e3d556_2329248132e2@gitlab-sidekiq-low-urgency-cpu-bound-v1-5d85c7dd4d-d9v4m.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 1f499a13 by gambas at 2021-09-14T10:08:13+02:00 Additional project references using relative paths are correctly handled now. [DEVELOPMENT ENVIRONMENT] * BUG: Additional project references using relative paths are correctly handled now. - - - - - 2 changed files: - app/src/gambas3/.src/Component/CComponent.class - app/src/gambas3/.src/Project/Library/CLibraryInfo.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1f499a13567bd86218d2581dd943dba19d3e7e05 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1f499a13567bd86218d2581dd943dba19d3e7e05 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 17:24:04 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 15:24:04 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Fix csd size computation. Message-ID: <6140be94afc1f_221215fb0351af@gitlab-sidekiq-low-urgency-cpu-bound-v1-84fb84f7f8-drlck.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 1a3b36a3 by gambas at 2021-09-14T17:23:13+02:00 Fix csd size computation. [GB.GTK] * BUG: Fix csd size computation. [GB.GTK3] * BUG: Fix csd size computation. - - - - - 2 changed files: - gb.gtk/src/gcontrol.cpp - gb.gtk/src/gmainwindow.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1a3b36a3ef6302c5f0a2351ee9f3ec9e61522da8 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1a3b36a3ef6302c5f0a2351ee9f3ec9e61522da8 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 17:25:50 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 15:25:50 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] Fix csd size computation. Message-ID: <6140beff43700_2329194506e5@gitlab-sidekiq-low-urgency-cpu-bound-v1-84fb84f7f8-gpll4.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: c344770a by gambas at 2021-09-14T17:24:43+02:00 Fix csd size computation. [GB.GTK] * BUG: Fix csd size computation. [GB.GTK3] * BUG: Fix csd size computation. - - - - - 2 changed files: - gb.gtk/src/gcontrol.cpp - gb.gtk/src/gmainwindow.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c344770a5038996c1de78e7b754c6f0e5cc00129 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c344770a5038996c1de78e7b754c6f0e5cc00129 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 17:44:12 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 15:44:12 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Pushed new tag 3.16.3 Message-ID: <6140c34cbfb7a_221b26140523f2@gitlab-sidekiq-low-urgency-cpu-bound-v1-84fb84f7f8-46qwg.mail> Beno?t Minisini pushed new tag 3.16.3 at Gambas / gambas -- View it on GitLab: https://gitlab.com/gambas/gambas/-/tree/3.16.3 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 20:10:47 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 18:10:47 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 13 commits: Update Desktop.class, add pkexec as gksu no longer exists Message-ID: <6140e5a7c4807_2325122872624@gitlab-sidekiq-low-urgency-cpu-bound-v1-76b694bd94-b2dhg.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: bc12c706 by Bruce Steers at 2021-08-29T03:16:18+00:00 Update Desktop.class, add pkexec as gksu no longer exists [GB.DESKTOP] * NEW: add pkexec to Desktop.RunAsRoot() command as gksu and gksudo no longer exist - - - - - 37d0c123 by Bruce Steers at 2021-08-29T04:25:47+01:00 Update Desktop.RunAsRoot() [GB.DESKTOP] * OPT: move test for pkexec to outside of kde/gnome check as it is independant so will be checked regardless if no other graphical sudo is found. - - - - - e2e40c69 by Bruce Steers at 2021-08-29T16:38:06+00:00 Update Desktop.class, fix pkexec not working on some programs [GB.DESKTOP] * BUG: Using Exec With [envs] was not working, used pkexec env method to pass DISPLAY and XAUTHORITY envs instead as it works. * OPT: Also Split "Command" string for Exec or it fails if command has more than one arg. Notes. I found the prior method worked on pluma but not on any gambas applications. (they all reported unable to open display) Using this "pkexec env" method fixes that and makes it work on gambas applications and supports multiple arguments. - - - - - db19b20f by Bruce Steers at 2021-08-29T16:40:44+00:00 Update Desktop.class, fix typo [GB.DESKTOP] * BUG: fix typo - - - - - 01e08677 by Bruce Steers at 2021-08-29T17:43:25+01:00 gb.desktop Final edit, remove unneeded variable declaration [GB.DESKTOP] * OPT: remove no longer needed variable declaration - - - - - 891c1b2e by Bruce Steers at 2021-08-31T00:28:26+01:00 Desktop.RunAsRoot(), Add pkexec to list of gui sudoers [GB.DESKTOP] * NEW: add pkexec as primary gui sudoer to RunAsRoot * NEW: RunAsRoot has "Wait" argument (default is False) * NEW: RunAsRoot has Username argument (default is root) * OPT: Split Command if pkexec is used - - - - - 2b72588a by Bruce Steers at 2021-08-31T00:47:36+01:00 Merge branch 'master' of https://gitlab.com/gambas/gambas into desktop-runasroot-pkexec - - - - - c9f52183 by Bruce Steers at 2021-08-31T11:02:38+01:00 Tweak Desktop.RunAsRoot(), remove an if condition for speed [GB.DESKTOP] * OPT: rearrange RunAsRoot code to remove an If(Condition,True,False) statement - - - - - 2a68ec66 by Bruce Steers at 2021-08-31T16:45:51+01:00 Pedantic but Wait was wait... - - - - - acc409a7 by Bruce Steers at 2021-09-01T15:10:29+01:00 Merge branch 'master' of https://gitlab.com/gambas/gambas into desktop-runasroot-pkexec - - - - - fabaee07 by Bruce Steers at 2021-09-09T13:13:55+01:00 Merge branch 'master' of https://gitlab.com/gambas/gambas into desktop-runasroot-pkexec - - - - - d8c8ada4 by Bruce Steers at 2021-09-14T17:34:37+01:00 Merge branch 'master' of https://gitlab.com/gambas/gambas into desktop-runasroot-pkexec - - - - - 4cb88fd5 by Beno?t Minisini at 2021-09-14T18:10:46+00:00 Merge branch 'desktop-runasroot-pkexec' into 'master' Update Desktop.class, add pkexec to Desktop.RunAsRoot() as gksu/kdesu/etc no longer exist See merge request gambas/gambas!246 - - - - - 1 changed file: - comp/src/gb.desktop/.src/Desktop.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/1a3b36a3ef6302c5f0a2351ee9f3ec9e61522da8...4cb88fd57b503d2b86a8e7441c4e45e677c66962 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/1a3b36a3ef6302c5f0a2351ee9f3ec9e61522da8...4cb88fd57b503d2b86a8e7441c4e45e677c66962 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 14 20:53:09 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 14 Sep 2021 18:53:09 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Desktop.RunAsRoot() now uses 'pkexec' by default. Desktop.RunAs() is a new... Message-ID: <6140ef96cf9f8_24beff3c1866a@gitlab-sidekiq-low-urgency-cpu-bound-v1-76b694bd94-9955m.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2906f041 by gambas at 2021-09-14T20:53:02+02:00 Desktop.RunAsRoot() now uses 'pkexec' by default. Desktop.RunAs() is a new method that allows to specify the username used for running a program. [GB.DESKTOP] * NEW: Desktop.RunAsRoot() now takes an optional argument to wait for the program ends, and now uses 'pkexec' by default. * NEW: Desktop.RunAs() is a method similar as RunAsRoot() that takes the username used for running the program. - - - - - 1 changed file: - comp/src/gb.desktop/.src/Desktop.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2906f0412110b777474da645db0b293bcd1840cc -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2906f0412110b777474da645db0b293bcd1840cc You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 17 10:31:20 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Fri, 17 Sep 2021 08:31:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Rework the position history to fix some problems. Compiling the prpoject now... Message-ID: <61445258e17a8_2212628241031fc@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-ntz7q.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 1ced6157 by gambas at 2021-09-17T10:31:15+02:00 Rework the position history to fix some problems. Compiling the prpoject now automatically hides the error message tooltip. [DEVELOPMENT ENVIRONMENT] * BUG: Rework the position history to fix some problems. * NEW: Compiling the prpoject now automatically hides the error message tooltip. - - - - - 6 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Editor/CPosition.class - app/src/gambas3/.src/Editor/Code/FConflictEditor.class - app/src/gambas3/.src/Editor/Code/FEditor.class - app/src/gambas3/.src/Editor/Code/FTextEditor.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1ced61570a13c686201b350ee73a0c88829681da -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1ced61570a13c686201b350ee73a0c88829681da You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 17 22:49:50 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Fri, 17 Sep 2021 20:49:50 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] The 'Run' button now always run the project without arguments. To run the... Message-ID: <6144ff6f41eb6_23d11e03886569@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-4t9vj.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: afdf99b1 by gambas at 2021-09-17T22:49:46+02:00 The 'Run' button now always run the project without arguments. To run the project with arguments, you have to use the 'Run with' dialog now. [DEVELOPMENT ENVIRONMENT] * NEW: The 'Run' button now always run the project without arguments. To run the project with arguments, you have to use the 'Run with' dialog now. - - - - - 8 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Editor/Code/FEditor.class - app/src/gambas3/.src/Editor/Form/FForm.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FArguments.class - app/src/gambas3/.src/Project/FArguments.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/afdf99b14174e1d73e2d78e7fc730d13338260e4 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/afdf99b14174e1d73e2d78e7fc730d13338260e4 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sat Sep 18 01:11:26 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Fri, 17 Sep 2021 23:11:26 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Class overriding is not retroactive anymore when the class already has instances. Message-ID: <6145209f6414a_239358ba48557@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-s8qz5.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: a62007de by gambas at 2021-09-18T01:09:05+02:00 Class overriding is not retroactive anymore when the class already has instances. [INTERPRETER] * BUG: Class overriding is not retroactive anymore when the class already has instances. * NEW: In tracing mode, indent the interpreter output according to the current stack depth. - - - - - 7 changed files: - main/gbx/gbx_archive.c - main/gbx/gbx_class.c - main/gbx/gbx_class.h - main/gbx/gbx_class_init.c - main/gbx/gbx_exec_loop.c - main/gbx/gbx_local.h - main/gbx/gbx_subr_file.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a62007de37bc6cd187def313b55b6c12bd4dd5c7 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a62007de37bc6cd187def313b55b6c12bd4dd5c7 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sat Sep 18 14:51:25 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sat, 18 Sep 2021 12:51:25 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Standard stream objects (File.In, File.Out, File.Err) are now created on demand. Message-ID: <6145e0ce1ed37_22115aa210105374@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-48z6r.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 34b543e5 by gambas at 2021-09-18T14:50:39+02:00 Standard stream objects (File.In, File.Out, File.Err) are now created on demand. [INTERPRETER] * NEW: Standard stream objects (File.In, File.Out, File.Err) are now created on demand. - - - - - 8 changed files: - main/gbx/gbx.c - main/gbx/gbx_c_file.c - main/gbx/gbx_c_file.h - main/gbx/gbx_c_task.c - main/gbx/gbx_subr_file.c - main/gbx/gbx_subr_misc.c - main/lib/db/gb.db/.component - main/lib/db/gb.db/.project View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/34b543e555d07794ab3301cb2ea47c7dc5a1bd1c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/34b543e555d07794ab3301cb2ea47c7dc5a1bd1c You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sat Sep 18 19:57:32 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sat, 18 Sep 2021 17:57:32 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] A few fixes. Message-ID: <6146288d5fc72_232940063836@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-wkgrr.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: fa74c6de by gambas at 2021-09-18T19:57:27+02:00 A few fixes. [GB.EVAL.HIGHLIGHT] * BUG: TextHighlighter: Fix Paint() method signature. * OPT: TextHighlighter: Add the FAST keyword to the Add() method. * BUG: '<<' operator was defined twice in 'Sh' highlighting. - - - - - 3 changed files: - comp/src/gb.eval.highlight/.src/TextHighlighter.class - comp/src/gb.eval.highlight/.src/TextHighlighter_Diff.class - comp/src/gb.eval.highlight/.src/TextHighlighter_Sh.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/fa74c6de33168457378380318b8fb6ac516f66ba -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/fa74c6de33168457378380318b8fb6ac516f66ba You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sat Sep 18 19:59:59 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sat, 18 Sep 2021 17:59:59 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] FAST keyword is now correctly taken into account when looking for class... Message-ID: <61462920f2fbd_23385a90103860@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-8ghx5.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: abd5fd36 by gambas at 2021-09-18T19:59:55+02:00 FAST keyword is now correctly taken into account when looking for class inheritance or exported classes. [DEVELOPMENT ENVIRONMENT] * OPT: Version control: Use FAST for history highlighting. * BUG: FAST keyword is now correctly taken into account when looking for class inheritance or exported classes. - - - - - 3 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/VersionControl/CVersionControlGit.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/abd5fd366e58ee941e9ac7dc7ad708e723f7a5ff -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/abd5fd366e58ee941e9ac7dc7ad708e723f7a5ff You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sat Sep 18 23:42:47 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sat, 18 Sep 2021 21:42:47 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] JIT implementation of Left$(), Mid$() and Right$(). They are now twice faster. Message-ID: <61465d585a657_23293c47079f@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-wkgrr.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 4729b9e6 by gambas at 2021-09-18T23:41:47+02:00 JIT implementation of Left$(), Mid$() and Right$(). They are now twice faster. [GB.JIT] * NEW: JIT implementation of Left$(), Mid$() and Right$(). They are now twice faster. - - - - - 2 changed files: - main/lib/jit/gb.jit/jit.h - main/lib/jit/jit_body.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4729b9e60b907c784a2fc3dea90471e2247a9145 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4729b9e60b907c784a2fc3dea90471e2247a9145 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Sun Sep 19 21:33:24 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Sun, 19 Sep 2021 19:33:24 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Style.PaintOption() correctly draws an option button in all cases now. Message-ID: <61479085909ae_23577169096645@gitlab-sidekiq-low-urgency-cpu-bound-v1-567884bfd-ntz7q.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 18e56048 by gambas at 2021-09-19T21:32:06+02:00 Style.PaintOption() correctly draws an option button in all cases now. [GB.GTK3] * BUG: Style.PaintOption() correctly draws an option button in all cases now. - - - - - 1 changed file: - gb.gtk/src/CStyle.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/18e56048c2e74171357070fecd8f4a5fa1cb39fe -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/18e56048c2e74171357070fecd8f4a5fa1cb39fe You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Mon Sep 20 13:55:39 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Mon, 20 Sep 2021 11:55:39 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Dont' try to fill cursor history when switching project, it crashes. Message-ID: <614876bb2cdbd_22294502053c@gitlab-sidekiq-low-urgency-cpu-bound-v1-6b464bcb7b-v9v77.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 08f8c4d6 by gambas at 2021-09-20T13:55:30+02:00 Dont' try to fill cursor history when switching project, it crashes. [DEVELOPMENT ENVIRONMENT] * BUG: Dont' try to fill cursor history when switching project, it crashes. - - - - - 3 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Family/CFamily.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/08f8c4d6a392696fadf35b6187601a5cb959f3ae -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/08f8c4d6a392696fadf35b6187601a5cb959f3ae You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Mon Sep 20 19:55:17 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Mon, 20 Sep 2021 17:55:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Image editor: Correctly initially disable the popup menu so that shortcuts are not eaten. Message-ID: <6148cb0566a13_22294dc565a@gitlab-sidekiq-low-urgency-cpu-bound-v1-797d86f644-7wptc.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 21f891d4 by gambas at 2021-09-20T19:55:13+02:00 Image editor: Correctly initially disable the popup menu so that shortcuts are not eaten. [DEVELOPMENT ENVIRONMENT] * BUG: Image editor: Correctly initially disable the popup menu so that shortcuts are not eaten. - - - - - 1 changed file: - app/src/gambas3/.src/Editor/Image/FImageEditor.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/21f891d443d430bba48966dfc3fbb8e7b5097a15 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/21f891d443d430bba48966dfc3fbb8e7b5097a15 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 21 21:36:50 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 21 Sep 2021 19:36:50 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Some fixes in cursor history management. Message-ID: <614a3453a6f33_2243b9328673fa@gitlab-sidekiq-low-urgency-cpu-bound-v1-858d7c7d84-pg9lc.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 23da4db6 by gambas at 2021-09-21T21:36:45+02:00 Some fixes in cursor history management. [DEVELOPMENT ENVIRONMENT] * BUG: Some fixes in cursor history management. - - - - - 2 changed files: - app/src/gambas3/.src/Editor/CPosition.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/23da4db632adf04bf60615c2e85d66fb4e5d2b29 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/23da4db632adf04bf60615c2e85d66fb4e5d2b29 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 24 17:25:43 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Fri, 24 Sep 2021 15:25:43 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: ComboBox: Close() is a new method that closes the ComboBox popup. Message-ID: <614dedf930fb8_23293c4101999@gitlab-sidekiq-low-urgency-cpu-bound-v1-c57c6596b-lqvwx.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 05a261b9 by gambas at 2021-09-24T17:23:37+02:00 ComboBox: Close() is a new method that closes the ComboBox popup. [GB.GTK] * NEW: ComboBox: Close() is a new method that closes the ComboBox popup. [GB.GTK3] * NEW: ComboBox: Close() is a new method that closes the ComboBox popup. - - - - - 9d08d137 by gambas at 2021-09-24T17:25:09+02:00 ComboBox: Close() is a new method that closes the ComboBox popup. [GB.QT4] * NEW: ComboBox: Close() is a new method that closes the ComboBox popup. [GB.QT5] * NEW: ComboBox: Close() is a new method that closes the ComboBox popup. - - - - - 4 changed files: - gb.gtk/src/CTextBox.cpp - gb.gtk/src/gcombobox.cpp - gb.gtk/src/gcombobox.h - gb.qt4/src/CTextBox.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/23da4db632adf04bf60615c2e85d66fb4e5d2b29...9d08d1371982221fe876fb29ea12d020d2dd264b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/23da4db632adf04bf60615c2e85d66fb4e5d2b29...9d08d1371982221fe876fb29ea12d020d2dd264b You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Fri Sep 24 17:27:39 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Fri, 24 Sep 2021 15:27:39 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Fix how keyboard events are propagated to the parent windows. Message-ID: <614dee6b7fe78_232937452239@gitlab-sidekiq-low-urgency-cpu-bound-v1-c57c6596b-dnvz8.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2b625adc by gambas at 2021-09-24T17:26:49+02:00 Fix how keyboard events are propagated to the parent windows. [GB.QT4] * BUG: Fix how keyboard events are propagated to the parent windows. * NEW: DrawingArea: Remove some now useless code. [GB.QT5] * BUG: Fix how keyboard events are propagated to the parent windows. * NEW: DrawingArea: Remove some now useless code. - - - - - 3 changed files: - gb.qt4/src/CDrawingArea.cpp - gb.qt4/src/CDrawingArea.h - gb.qt4/src/CWidget.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2b625adcd0e886f3266c34c2887556362eacecc9 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2b625adcd0e886f3266c34c2887556362eacecc9 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Tue Sep 28 02:42:58 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Tue, 28 Sep 2021 00:42:58 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Update file icons. Add 'json' and 'bluetooth' icon. Message-ID: <615265131b7dd_231086708244a@gitlab-sidekiq-low-urgency-cpu-bound-v1-555545db4-g5dh9.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 721552a2 by gambas at 2021-09-28T02:36:40+02:00 Update file icons. Add 'json' and 'bluetooth' icon. [GB.FORM.STOCK] * NEW: Update file icons. * NEW: Add 'json' and 'bluetooth' icon. - - - - - 167cf312 by gambas at 2021-09-28T02:42:54+02:00 MenuButton: Try to not take the focus on click, like a ToolButton. Add 'bluetooth' and 'json' stock icons. [GB.FORM] * NEW: Add 'bluetooth' and 'json' stock icons. * NEW: MessageView: Remove text from buttons. Use less vertical space. * BUG: MenuButton: Try to not take the focus on click, like a ToolButton. - - - - - 30 changed files: - + comp/src/gb.form.stock/gambas-mono/128/file.png - comp/src/gb.form.stock/gambas-mono/32/archive.png - + comp/src/gb.form.stock/gambas-mono/32/bluetooth.png - comp/src/gb.form.stock/gambas-mono/32/bottom.png - comp/src/gb.form.stock/gambas-mono/32/c.png - comp/src/gb.form.stock/gambas-mono/32/cpp.png - comp/src/gb.form.stock/gambas-mono/32/css.png - comp/src/gb.form.stock/gambas-mono/32/exec.png - comp/src/gb.form.stock/gambas-mono/32/file.png - comp/src/gb.form.stock/gambas-mono/32/first.png - comp/src/gb.form.stock/gambas-mono/32/font.png - comp/src/gb.form.stock/gambas-mono/32/h.png - comp/src/gb.form.stock/gambas-mono/32/html.png - comp/src/gb.form.stock/gambas-mono/32/js.png - + comp/src/gb.form.stock/gambas-mono/32/json.png - comp/src/gb.form.stock/gambas-mono/32/last.png - comp/src/gb.form.stock/gambas-mono/32/md.png - comp/src/gb.form.stock/gambas-mono/32/select-all.png - comp/src/gb.form.stock/gambas-mono/32/text.png - comp/src/gb.form.stock/gambas-mono/32/top.png - comp/src/gb.form.stock/gambas-mono/32/vector.png - comp/src/gb.form.stock/gambas-mono/32/xml.png - comp/src/gb.form.stock/gambas/128/archive.png - + comp/src/gb.form.stock/gambas/128/bluetooth.png - comp/src/gb.form.stock/gambas/128/c.png - comp/src/gb.form.stock/gambas/128/cpp.png - comp/src/gb.form.stock/gambas/128/css.png - comp/src/gb.form.stock/gambas/128/exec.png - comp/src/gb.form.stock/gambas/128/file.png - comp/src/gb.form.stock/gambas/128/font.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2b625adcd0e886f3266c34c2887556362eacecc9...167cf31239d77c091cebcf4d664bee5cbeb877f7 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2b625adcd0e886f3266c34c2887556362eacecc9...167cf31239d77c091cebcf4d664bee5cbeb877f7 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Thu Sep 30 10:46:17 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Thu, 30 Sep 2021 08:46:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Add a new "GambasRound" font. Detect all version of "fckgmail" archive formats. Message-ID: <6155795a14bb6_22729363010469c@gitlab-sidekiq-low-urgency-cpu-bound-v1-5996b88dc6-7b59x.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: a6980f0b by gambas at 2021-09-30T10:43:35+02:00 Add a new "GambasRound" font. Detect all version of "fckgmail" archive formats. [DEVELOPMENT ENVIRONMENT] * NEW: Add a new "GambasRound" font. It's a rounder version of the regular Gambas font. * NEW: Updated Italian translation by Gianluigi. * BUG: Option dialog: Fix installation of Gambas fonts. * BUG: Project open dialog: detect all version of "fckgmail" archive formats. - - - - - 13 changed files: - app/src/gambas3/.hidden/font/GambasRegular.sfd - + app/src/gambas3/.hidden/font/GambasRoundRegular.sfd - app/src/gambas3/.hidden/font/gambasr16.otb - + app/src/gambas3/.hidden/font/groundr16.otb - app/src/gambas3/.lang/fr.po - app/src/gambas3/.lang/it.po - app/src/gambas3/.project - app/src/gambas3/.src/Exported/ProjectChooser/FProjectChooser.class - app/src/gambas3/.src/Options/FOption.class - app/src/gambas3/.src/Options/FOption.form - app/src/gambas3/.src/Project/CProjectTree.class - app/src/gambas3/font/font.allow - + app/src/gambas3/font/groundr16.otb View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a6980f0be589ec3ffd7d7d72c8160a85147275c9 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a6980f0be589ec3ffd7d7d72c8160a85147275c9 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at mg.gitlab.com Thu Sep 30 23:39:43 2021 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaSAoQGJtaW5pc2luaSk=?=) Date: Thu, 30 Sep 2021 21:39:43 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Don't crash with an unclear error message when assigning an object to a key. Message-ID: <61562ea0168a4_236ce4be4932f9@gitlab-sidekiq-low-urgency-cpu-bound-v1-5996b88dc6-9tf2j.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: ff7b5a27 by gambas at 2021-09-30T23:39:37+02:00 Don't crash with an unclear error message when assigning an object to a key. [GB.SETTINGS] * BUG: Don't crash with an unclear error message when assigning an object to a key. - - - - - 3 changed files: - comp/src/gb.settings/.component - comp/src/gb.settings/.project - comp/src/gb.settings/.src/Settings.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/ff7b5a273677fbd727a32cadbe1d80740a7dcc7c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/ff7b5a273677fbd727a32cadbe1d80740a7dcc7c You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: