From gitlab at mg.gitlab.com Thu Apr 4 23:04:35 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 04 Apr 2019 21:04:35 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Fix the JIT compiler: '_init' method, Lock instruction, Object datatype, and... Message-ID: <5ca67164bbccf_10693f9a1770cc182075e7@sidekiq-asap-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 3dd1fd49 by gambas at 2019-04-04T20:58:06Z Fix the JIT compiler: '_init' method, Lock instruction, Object datatype, and DO / REPEAT loops at the beginning of a function now work correctly. [INTERPRETER] * BUG: JIT compiler does not run static initializers anymore when loading a class. Otherwise bytecode can be modified before being compiled, leading to a JIT compiler crash. [COMPILER] * BUG: Fix LOCK subroutine meta-information. [GB.JIT] * NEW: Don't display abortion debugging message if there is no compilation to abort. * BUG: Object variables are correctly managed now. * BUG: DO...LOOP and REPEAT...UNTIL at the beginning of the function now is correctly compiled in all cases. - - - - - 11 changed files: - main/gbx/gbx_archive.h - main/gbx/gbx_class.c - main/gbx/gbx_class_load.c - main/gbx/gbx_jit.c - main/gbx/gbx_jit.h - main/lib/jit/gb.jit/.src/CCompilation.class - main/lib/jit/gb.jit/.src/Jit.module - main/lib/jit/gb.jit/jit.h - main/lib/jit/jit.c - main/lib/jit/jit_body.c - main/share/gb_reserved_keyword.h View it on GitLab: https://gitlab.com/gambas/gambas/commit/3dd1fd493e41a63496899822f92b9cb8d50f1e4b -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/3dd1fd493e41a63496899822f92b9cb8d50f1e4b 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 Apr 4 23:08:04 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 04 Apr 2019 21:08:04 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Some unary operator syntax rewrite in source code. Message-ID: <5ca67234409a4_57863f9d0714dc6c2800d2@sidekiq-asap-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: c1db77f3 by gambas at 2019-04-04T21:04:51Z Some unary operator syntax rewrite in source code. - - - - - 0b1afd4d by gambas at 2019-04-04T21:06:41Z Code editor: The method popup font is sized according to the number of methods to display. [DEVELOPMENT ENVIRONMENT] * NEW: Code editor: The method popup font is sized according to the number of methods to display. * NEW: Update financial support. - - - - - 4 changed files: - app/src/gambas3/.src/Editor/Code/FProcedureList.class - app/src/gambas3/.src/Editor/Code/FTextEditor.class - app/src/gambas3/support.txt - comp/src/gb.form.editor/.src/TextEditor.class View it on GitLab: https://gitlab.com/gambas/gambas/compare/3dd1fd493e41a63496899822f92b9cb8d50f1e4b...0b1afd4d526e203397a888b121d8e9a915a21377 -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/3dd1fd493e41a63496899822f92b9cb8d50f1e4b...0b1afd4d526e203397a888b121d8e9a915a21377 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 Apr 4 23:12:48 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 04 Apr 2019 21:12:48 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Fix Url$() escaping characters. Message-ID: <5ca673519ff2d_6b693fa0755a41b418398c@sidekiq-asap-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f2322863 by gambas at 2019-04-04T21:12:07Z Fix Url$() escaping characters. [INTERPRETER] * BUG: Fix Url$() escaping characters. - - - - - 1 changed file: - main/gbx/gbx_subr_string.c View it on GitLab: https://gitlab.com/gambas/gambas/commit/f23228638b1c28567fb5de9b8102ad863a4ebc8e -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/f23228638b1c28567fb5de9b8102ad863a4ebc8e 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 Apr 11 00:01:41 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:01:41 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] 9 commits: Support for playing speed rate and step-by-step forward. Message-ID: <5cae67c6d7ee7_73da3fe167a544ec817b9@sidekiq-asap-05-sv-gprd.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 3d688792 by gambas at 2019-03-25T02:57:02Z Support for playing speed rate and step-by-step forward. [GB.MEDIA] * NEW: MediaPipeline: Pos is a new synonymous for the Position property. * NEW: MediaPipeline: Position is a new event that is raised when the media position has changed. * NEW: MediaPipeline: Seek() is a new method that allows to move the media to a specific position while specifying GStreamer seek flags. * NEW: MediaPipeline: Speed is a new property that allows to define the media playing speed rate. A negative speed will play backward. * NEW: MediaPipeline: Forward() is a new method that allows to move forward a specific amount of frames. Moving backward does not work at the moment. * NEW: Media: Add MediaPipeline.Seek() seek constants. - - - - - 663e0a43 by gambas at 2019-03-25T02:58:35Z Speed is a new property that allows to define the media playing speed. A negative speed moves backward. [GB.MEDIA.FORM] * NEW: MediaView: Speed is a new property that allows to define the media playing speed. A negative speed moves backward. * NEW: MediaView: Resizing the control while the media is paused correctly resizes the displayed frame. - - - - - a247c14d by gambas at 2019-03-27T23:07:05Z Compile with GStreamer < 1.16. [GB.MEDIA] * BUG: Compile with GStreamer < 1.16. - - - - - 3dd1fd49 by gambas at 2019-04-04T20:58:06Z Fix the JIT compiler: '_init' method, Lock instruction, Object datatype, and DO / REPEAT loops at the beginning of a function now work correctly. [INTERPRETER] * BUG: JIT compiler does not run static initializers anymore when loading a class. Otherwise bytecode can be modified before being compiled, leading to a JIT compiler crash. [COMPILER] * BUG: Fix LOCK subroutine meta-information. [GB.JIT] * NEW: Don't display abortion debugging message if there is no compilation to abort. * BUG: Object variables are correctly managed now. * BUG: DO...LOOP and REPEAT...UNTIL at the beginning of the function now is correctly compiled in all cases. - - - - - c1db77f3 by gambas at 2019-04-04T21:04:51Z Some unary operator syntax rewrite in source code. - - - - - 0b1afd4d by gambas at 2019-04-04T21:06:41Z Code editor: The method popup font is sized according to the number of methods to display. [DEVELOPMENT ENVIRONMENT] * NEW: Code editor: The method popup font is sized according to the number of methods to display. * NEW: Update financial support. - - - - - f2322863 by gambas at 2019-04-04T21:12:07Z Fix Url$() escaping characters. [INTERPRETER] * BUG: Fix Url$() escaping characters. - - - - - 63834d96 by gambas at 2019-04-10T22:00:39Z Merge branch 'master' into stable - - - - - f31dafa7 by gambas at 2019-04-10T22:01:11Z Merge branch 'stable' of gitlab.com:gambas/gambas into stable - - - - - 23 changed files: - app/src/gambas3/.src/Editor/Code/FProcedureList.class - app/src/gambas3/.src/Editor/Code/FTextEditor.class - app/src/gambas3/support.txt - comp/src/gb.form.editor/.src/TextEditor.class - comp/src/gb.media.form/.icon.png - comp/src/gb.media.form/.src/FMediaPlayer.class - comp/src/gb.media.form/.src/FMediaPlayer.form - comp/src/gb.media.form/.src/FTest.form - comp/src/gb.media.form/.src/MediaView.class - gb.media/src/c_media.c - gb.media/src/c_media.h - main/gbx/gbx_archive.h - main/gbx/gbx_class.c - main/gbx/gbx_class_load.c - main/gbx/gbx_jit.c - main/gbx/gbx_jit.h - main/gbx/gbx_subr_string.c - main/lib/jit/gb.jit/.src/CCompilation.class - main/lib/jit/gb.jit/.src/Jit.module - main/lib/jit/gb.jit/jit.h - main/lib/jit/jit.c - main/lib/jit/jit_body.c - main/share/gb_reserved_keyword.h View it on GitLab: https://gitlab.com/gambas/gambas/compare/3c688831947d3dcaf2ff2d477af2402b7789dece...f31dafa73227f88e8e9df8bd42c423d4739d377d -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/3c688831947d3dcaf2ff2d477af2402b7789dece...f31dafa73227f88e8e9df8bd42c423d4739d377d 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 Apr 11 00:44:53 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:44:53 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Pushed new tag 3.13.0 Message-ID: <5cae71e7aba1_a3a3ff8042c425047861@sidekiq-asap-04-sv-gprd.mail> Beno?t Minisini pushed new tag 3.13.0 at Gambas / gambas -- View it on GitLab: https://gitlab.com/gambas/gambas/tree/3.13.0 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 Apr 11 00:52:09 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:52:09 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Updated all Dutch translations and dutch translator e-mail address Message-ID: <5cae739ace043_49713fcee53b54e014339@sidekiq-asap-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 01d21cb0 by W. Raets at 2019-04-10T22:52:07Z Updated all Dutch translations and dutch translator e-mail address [DEVELOPMENT ENVIRONMENT] * NEW: Updated Dutch translations [WIKI CGI SCRIPT] * NEW: Updated Dutch translations [WEB SITE MAKER] * NEW: Updated Dutch translations [GB.ARGS] * NEW: Updated Dutch translations [GB.DB.FORM] * NEW: Updated Dutch translations [GB.FORM] * NEW: Updated Dutch translations [GB.FORM.DIALOG] * NEW: Updated Dutch translations [GB.FORM.MIDI] * NEW: Updated Dutch translations [GB.NET.POP3] * NEW: Updated Dutch translations [GB.REPORT] * NEW: Updated Dutch translations [GB.REPORT2] * NEW: Updated Dutch translations [GB.TERM.FORM] * NEW: Updated Dutch translator e-mail [GB.WEB.FEED] * NEW: Updated Dutch translator e-mail [GB.WEB.FORM] * NEW: Updated Dutch translator e-mail - - - - - b2e90b6a by Beno?t Minisini at 2019-04-10T22:52:07Z Merge branch 'master' into 'master' Dutch translation update See merge request gambas/gambas!85 - - - - - 30 changed files: - + app/src/gambas-wiki/.lang/nl.mo - app/src/gambas-wiki/.lang/nl.po - + app/src/gambas3/.lang/nl.mo - app/src/gambas3/.lang/nl.po - + app/src/gambas3/authors.txt - + app/src/gb.wiki/.lang/nl.mo - app/src/gb.wiki/.lang/nl.po - app/src/gb.wiki/.project - comp/src/gb.args/.component - + comp/src/gb.args/.lang/nl.mo - comp/src/gb.args/.project - comp/src/gb.db.form/.component - + comp/src/gb.db.form/.lang/nl.mo - comp/src/gb.db.form/.lang/nl.po - comp/src/gb.db.form/.project - comp/src/gb.form.dialog/.component - + comp/src/gb.form.dialog/.lang/nl.mo - comp/src/gb.form.dialog/.lang/nl.po - comp/src/gb.form.dialog/.project - comp/src/gb.form.mdi/.component - + comp/src/gb.form.mdi/.lang/nl.mo - comp/src/gb.form.mdi/.lang/nl.po - comp/src/gb.form.mdi/.project - + comp/src/gb.form/.lang/nl.mo - comp/src/gb.form/.lang/nl.po - comp/src/gb.mysql/.component - comp/src/gb.mysql/.project - comp/src/gb.net.pop3/.component - + comp/src/gb.net.pop3/.lang/nl.mo - comp/src/gb.net.pop3/.lang/nl.po View it on GitLab: https://gitlab.com/gambas/gambas/compare/f23228638b1c28567fb5de9b8102ad863a4ebc8e...b2e90b6ae534afd34e8bdb1a42f6f7def411253c -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/f23228638b1c28567fb5de9b8102ad863a4ebc8e...b2e90b6ae534afd34e8bdb1a42f6f7def411253c 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 Apr 11 00:53:05 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:53:05 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: [GP.MAP] Message-ID: <5cae73d23242a_a3a3ff8042ed970545c7@sidekiq-asap-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 1b673334 by Gen Braga at 2019-04-10T22:53:02Z [GP.MAP] * BUG: Small bug fixes. - - - - - 0b30eeb0 by Beno?t Minisini at 2019-04-10T22:53:03Z Merge branch 'master' into 'master' Fixed a bug when setting color on a Point. See merge request gambas/gambas!83 - - - - - 8 changed files: - comp/src/gb.map/.project - comp/src/gb.map/.src/Shapes/_ShapeItem.class - comp/src/gb.map/.src/Tests/Form4.class - comp/src/gb.map/.src/Tools/Geo.module - comp/src/gb.map/.src/Tools/MyPaint.class - comp/src/gb.map/.src/Tools/Proj.class - comp/src/gb.map/.src/_MapShape.class - comp/src/gb.map/.src/_MapTile.class View it on GitLab: https://gitlab.com/gambas/gambas/compare/b2e90b6ae534afd34e8bdb1a42f6f7def411253c...0b30eeb011253477f8acf8b37d731ae5d5f75fcc -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/b2e90b6ae534afd34e8bdb1a42f6f7def411253c...0b30eeb011253477f8acf8b37d731ae5d5f75fcc 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 Apr 11 00:53:52 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:53:52 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Update es.po Message-ID: <5cae740046861_81c3ff6bafa1c8448166@sidekiq-asap-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 10c86b76 by Mart?n Belmonte at 2019-03-28T18:55:56Z Update es.po - - - - - c918543d by Beno?t Minisini at 2019-04-10T22:53:29Z Merge branch 'patch-1' into 'master' Update es.po See merge request gambas/gambas!84 - - - - - 1 changed file: - app/src/gambas3/.lang/es.po View it on GitLab: https://gitlab.com/gambas/gambas/compare/0b30eeb011253477f8acf8b37d731ae5d5f75fcc...c918543d07d206a10685fa3c7a3d2995b37affe4 -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/0b30eeb011253477f8acf8b37d731ae5d5f75fcc...c918543d07d206a10685fa3c7a3d2995b37affe4 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 Apr 11 00:55:22 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:55:22 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Deleted tag 3.13.0 Message-ID: <5cae745c26b6d_7f813fd12b7b1b28573cd@sidekiq-asap-03-sv-gprd.mail> Beno?t Minisini deleted tag 3.13.0 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 Thu Apr 11 00:56:20 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:56:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] Switch to version 3.13.0. Message-ID: <5cae749594ce4_210c3fbd9ab13270464fa@sidekiq-asap-02-sv-gprd.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: ea708277 by gambas at 2019-04-10T22:40:44Z Switch to version 3.13.0. - - - - - 2 changed files: - VERSION - version.m4 View it on GitLab: https://gitlab.com/gambas/gambas/commit/ea708277f99f375266af9b3f3b982982ccfc1b32 -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/ea708277f99f375266af9b3f3b982982ccfc1b32 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 Apr 11 00:59:10 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:59:10 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] 7 commits: Update es.po Message-ID: <5cae753ee691a_24b23fefd229a9e49918e@sidekiq-asap-05-sv-gprd.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: 10c86b76 by Mart?n Belmonte at 2019-03-28T18:55:56Z Update es.po - - - - - 01d21cb0 by W. Raets at 2019-04-10T22:52:07Z Updated all Dutch translations and dutch translator e-mail address [DEVELOPMENT ENVIRONMENT] * NEW: Updated Dutch translations [WIKI CGI SCRIPT] * NEW: Updated Dutch translations [WEB SITE MAKER] * NEW: Updated Dutch translations [GB.ARGS] * NEW: Updated Dutch translations [GB.DB.FORM] * NEW: Updated Dutch translations [GB.FORM] * NEW: Updated Dutch translations [GB.FORM.DIALOG] * NEW: Updated Dutch translations [GB.FORM.MIDI] * NEW: Updated Dutch translations [GB.NET.POP3] * NEW: Updated Dutch translations [GB.REPORT] * NEW: Updated Dutch translations [GB.REPORT2] * NEW: Updated Dutch translations [GB.TERM.FORM] * NEW: Updated Dutch translator e-mail [GB.WEB.FEED] * NEW: Updated Dutch translator e-mail [GB.WEB.FORM] * NEW: Updated Dutch translator e-mail - - - - - b2e90b6a by Beno?t Minisini at 2019-04-10T22:52:07Z Merge branch 'master' into 'master' Dutch translation update See merge request gambas/gambas!85 - - - - - 1b673334 by Gen Braga at 2019-04-10T22:53:02Z [GP.MAP] * BUG: Small bug fixes. - - - - - 0b30eeb0 by Beno?t Minisini at 2019-04-10T22:53:03Z Merge branch 'master' into 'master' Fixed a bug when setting color on a Point. See merge request gambas/gambas!83 - - - - - c918543d by Beno?t Minisini at 2019-04-10T22:53:29Z Merge branch 'patch-1' into 'master' Update es.po See merge request gambas/gambas!84 - - - - - 9582c326 by gambas at 2019-04-10T22:58:05Z Merge branch 'master' into stable - - - - - 30 changed files: - + app/src/gambas-wiki/.lang/nl.mo - app/src/gambas-wiki/.lang/nl.po - app/src/gambas3/.lang/es.po - + app/src/gambas3/.lang/nl.mo - app/src/gambas3/.lang/nl.po - + app/src/gambas3/authors.txt - + app/src/gb.wiki/.lang/nl.mo - app/src/gb.wiki/.lang/nl.po - app/src/gb.wiki/.project - comp/src/gb.args/.component - + comp/src/gb.args/.lang/nl.mo - comp/src/gb.args/.project - comp/src/gb.db.form/.component - + comp/src/gb.db.form/.lang/nl.mo - comp/src/gb.db.form/.lang/nl.po - comp/src/gb.db.form/.project - comp/src/gb.form.dialog/.component - + comp/src/gb.form.dialog/.lang/nl.mo - comp/src/gb.form.dialog/.lang/nl.po - comp/src/gb.form.dialog/.project - comp/src/gb.form.mdi/.component - + comp/src/gb.form.mdi/.lang/nl.mo - comp/src/gb.form.mdi/.lang/nl.po - comp/src/gb.form.mdi/.project - + comp/src/gb.form/.lang/nl.mo - comp/src/gb.form/.lang/nl.po - comp/src/gb.map/.project - comp/src/gb.map/.src/Shapes/_ShapeItem.class - comp/src/gb.map/.src/Tests/Form4.class - comp/src/gb.map/.src/Tools/Geo.module View it on GitLab: https://gitlab.com/gambas/gambas/compare/ea708277f99f375266af9b3f3b982982ccfc1b32...9582c3267c18e00edf24bb7b25ed2ad59710cc75 -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/ea708277f99f375266af9b3f3b982982ccfc1b32...9582c3267c18e00edf24bb7b25ed2ad59710cc75 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 Apr 11 00:59:21 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 10 Apr 2019 22:59:21 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas] Pushed new tag 3.13.0 Message-ID: <5cae75498447d_a3a3ff8042edf4c60078@sidekiq-asap-04-sv-gprd.mail> Beno?t Minisini pushed new tag 3.13.0 at Gambas / gambas -- View it on GitLab: https://gitlab.com/gambas/gambas/tree/3.13.0 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 Apr 11 12:21:14 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 11 Apr 2019 10:21:14 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Fix Dutch translation file which had conflict markers inside. Message-ID: <5caf151c23744_25763ffafcba944c5519c1@sidekiq-asap-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f282b868 by gambas at 2019-04-11T10:20:20Z Fix Dutch translation file which had conflict markers inside. [GB.TERM.FORM] * BUG: Fix Dutch translation file which had conflict markers inside. - - - - - 1 changed file: - comp/src/gb.term.form/.lang/nl.po View it on GitLab: https://gitlab.com/gambas/gambas/commit/f282b868d6f72afc81ba74e3d02e75e33d102bba -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/f282b868d6f72afc81ba74e3d02e75e33d102bba 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 Apr 11 12:22:14 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 11 Apr 2019 10:22:14 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][stable] 2 commits: Fix Dutch translation file which had conflict markers inside. Message-ID: <5caf1556bc0f8_25763ffafc7470d455772@sidekiq-asap-02-sv-gprd.mail> Beno?t Minisini pushed to branch stable at Gambas / gambas Commits: f282b868 by gambas at 2019-04-11T10:20:20Z Fix Dutch translation file which had conflict markers inside. [GB.TERM.FORM] * BUG: Fix Dutch translation file which had conflict markers inside. - - - - - 99ce6086 by gambas at 2019-04-11T10:22:01Z Merge branch 'master' into stable - - - - - 1 changed file: - comp/src/gb.term.form/.lang/nl.po View it on GitLab: https://gitlab.com/gambas/gambas/compare/9582c3267c18e00edf24bb7b25ed2ad59710cc75...99ce6086b7f6679c0a95172f1a5b2df095ebf099 -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/9582c3267c18e00edf24bb7b25ed2ad59710cc75...99ce6086b7f6679c0a95172f1a5b2df095ebf099 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 Apr 20 15:35:49 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 20 Apr 2019 13:35:49 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Image editor: Selection drawing tool now works correctly when sanpping lines... Message-ID: <5cbb2036e98a0_53ae3fd26b9dcf604895b9@sidekiq-asap-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 21b06e89 by gambas at 2019-04-20T13:34:35Z Image editor: Selection drawing tool now works correctly when sanpping lines to 15? angles by pressing the ALT key. [DEVELOPMENT ENVIRONMENT] * BUG: Image editor: Selection drawing tool now works correctly when sanpping lines to 15? angles by pressing the ALT key. - - - - - 3 changed files: - app/src/gambas3/.src/Debug/FDebugInfo.class - app/src/gambas3/.src/Editor/Image/CImageSelection.class - app/src/gambas3/.src/Editor/Image/FImageEditor.class View it on GitLab: https://gitlab.com/gambas/gambas/commit/21b06e89b361b07bfa8b15a5abf172f31a64574f -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/21b06e89b361b07bfa8b15a5abf172f31a64574f 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 Apr 21 13:32:12 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 21 Apr 2019 11:32:12 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Add support for extra references, i.e. external executables that add their... Message-ID: <5cbc54bd26408_7faa3fd19f0a81501625621@sidekiq-asap-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 1ef5252a by gambas at 2019-04-21T11:30:15Z Add support for extra references, i.e. external executables that add their symbol information to the automatic completion. [DEVELOPMENT ENVIRONMENT] * NEW: Add support for extra references, i.e. external executables that add their symbol information to the automatic completion. This is useful if your project is a library loaded by the extra reference that uses its exported classes. - - - - - 4 changed files: - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FProjectProperty.class - app/src/gambas3/.src/Project/FProjectProperty.form - app/src/gambas3/.src/Project/Library/CLibraryInfo.class View it on GitLab: https://gitlab.com/gambas/gambas/commit/1ef5252a1078e445d28a2f4ea8f6607f43202988 -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/1ef5252a1078e445d28a2f4ea8f6607f43202988 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 Apr 22 03:28:18 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 22 Apr 2019 01:28:18 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Enhance ListEditor control. Message-ID: <5cbd18b3a131d_18973f82617cf18c1775582@sidekiq-asap-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2f409592 by gambas at 2019-04-22T01:25:56Z Enhance ListEditor control. [GB.FORM] * NEW: ListEditor: ReadOnly is a new property that makes ListEditor enter read-only mode. * NEW: ListEditor: Add is new event that is raised when the add button is clicked. * NEW: ListEditor: Add() is a new method that insert a new element in the list. * NEW: ListEditor: Exist() is a new method that returns if an item exists in the list. * NEW: Update some translations. - - - - - 516de91f by gambas at 2019-04-22T01:27:46Z Update French translation. [DEVELOPMENT ENVIRONMENT] * NEW: Update French translation. - - - - - 17 changed files: - app/src/gambas3/.lang/fr.po - comp/src/gb.form/.lang/cs.po - comp/src/gb.form/.lang/de.po - comp/src/gb.form/.lang/es.po - comp/src/gb.form/.lang/es_ES.po - comp/src/gb.form/.lang/fr.po - comp/src/gb.form/.lang/it.po - comp/src/gb.form/.lang/nl.mo - comp/src/gb.form/.lang/nl.po - comp/src/gb.form/.lang/sv.po - comp/src/gb.form/.lang/zh.po - comp/src/gb.form/.project - comp/src/gb.form/.src/ImageView/ImageView.class - comp/src/gb.form/.src/ListEditor/FListEditor.class - comp/src/gb.form/.src/ListEditor/FListEditor.form - comp/src/gb.form/.src/ListEditor/ListEditor.class - comp/src/gb.form/.src/Test/FTestListEditor.form View it on GitLab: https://gitlab.com/gambas/gambas/compare/1ef5252a1078e445d28a2f4ea8f6607f43202988...516de91f93e5f5cc478c56b12b5a0670636e4564 -- View it on GitLab: https://gitlab.com/gambas/gambas/compare/1ef5252a1078e445d28a2f4ea8f6607f43202988...516de91f93e5f5cc478c56b12b5a0670636e4564 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 Apr 23 12:33:26 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 23 Apr 2019 10:33:26 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Complete support for project extra references. Message-ID: <5cbee9f7f1d3c_47a23fe1b54de5dc3602466@sidekiq-asap-03-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 7c0a6730 by gambas at 2019-04-23T10:31:10Z Complete support for project extra references. [CONFIGURATION] * NEW: Update version to 3.13.90. [DEVELOPMENT ENVIRONMENT] * NEW: Redone extra references support. [COMPILER] * NEW: Take project extra references into account. [GB.TERM.FORM] * BUG: Fix project description. - - - - - 9 changed files: - VERSION - app/src/gambas3/.src/Project.module - comp/src/gb.term.form/.icon.png - comp/src/gb.term.form/.lang/it.po - comp/src/gb.term.form/.lang/nl.po - comp/src/gb.term.form/.project - main/gbc/gbc.c - main/gbc/gbc_compile.c - version.m4 View it on GitLab: https://gitlab.com/gambas/gambas/commit/7c0a6730cd7fbc6c794539df0785621d950c14ca -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/7c0a6730cd7fbc6c794539df0785621d950c14ca 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 Apr 29 18:38:44 2019 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 29 Apr 2019 16:38:44 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] SpinBox: Forgot to implement the ReadOnly property. Message-ID: <5cc72895204b1_67f13fa6aed184881248719@sidekiq-asap-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 92a54677 by gambas at 2019-04-29T16:37:49Z SpinBox: Forgot to implement the ReadOnly property. [GB.GUI.BASE] * BUG: SpinBox: Forgot to implement the ReadOnly property. - - - - - 5 changed files: - comp/src/gb.gui.base/.component - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/ScrollArea.class - comp/src/gb.gui.base/.src/SpinBox.class View it on GitLab: https://gitlab.com/gambas/gambas/commit/92a54677b5138ef7cabf3beee90a46de2c663560 -- View it on GitLab: https://gitlab.com/gambas/gambas/commit/92a54677b5138ef7cabf3beee90a46de2c663560 You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: