From gitlab at mg.gitlab.com Sun May 3 13:37:38 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Sun, 03 May 2020 11:37:38 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 51 commits: Move gb.test.tap into gb.test Message-ID: <5eaead03c54c9_1c2f3faaad9e6a781726d6@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: a4e233d4 by Tobias Boege at 2020-04-07T12:32:48+02:00 Move gb.test.tap into gb.test [GB.TEST] * NEW: Merge gb.test.tap classes. [DEVELOPMENT ENVIRONMENT] * NEW: Remove mention of gb.test.tap. [CONFIGURATION] * NEW: Remove gb.test.tap. - - - - - 2489001c by Tobias Boege at 2020-04-07T15:08:46+02:00 gb.test: restore failing self-tests [GB.TEST] * NEW: Errors in tests are caught again. * OPT: Shorten StringEquals diagnostics. - - - - - 71b5ca12 by Tobias Boege at 2020-04-07T15:08:54+02:00 gbt3: use TestHarness [TESTER] * NEW: Use gb.test's TestHarness to parse TAP. * BUG: Do not overwrite existing classes when generating temporary startup class. * OPT: Prefer Exec over Shell. - - - - - 6144a788 by Tobias Boege at 2020-04-07T15:08:54+02:00 gb.test: fix Assert.ErrorCode and Teardown spelling [GB.TEST] * BUG: Forward Description in Assert.ErrorCode. * BUG: Fix spelling of TearDown -> Teardown special test method. * OPT: Use Assert.Note() instead of Print in tests. - - - - - 84e97920 by Tobias Boege at 2020-04-07T15:08:54+02:00 gb.test: remove self-test concept [GB.TEST] * OPT: Remove the concept of self-tests. Since ".../.test" exists there is no need to distinguish their tests and ours anymore. - - - - - 728194b3 by Christof Thalhofer at 2020-04-07T16:48:46+02:00 Rename Unittest to Test - - - - - 33641cac by Christof Thalhofer at 2020-04-08T00:40:14+02:00 TestCommand Parser Parses the string that containes testmodules and -methods. The parser is tested in TestInternals. - - - - - ce56c1dd by Christof Thalhofer at 2020-04-08T00:46:09+02:00 New signature of Test.Main(), not really functional I'm goin to bed, just to backup my work to Gitlab - - - - - 815a1ddc by Christof Thalhofer at 2020-04-08T12:39:55+02:00 TestCommand parsing done, but system still buggy Without "Debug oTest.Name" in TestSuite.class:39 it would silently crash anywhere after TestNoMessage is done without printing any single character. Reason is "Assert.BailOut" in TestSuite:51 which miraculously does nothing. If the testsystem itself crashes, ist must print "BailOut ..." But here also can be seen, why the system has to print every assertion immediately. Any buffer?ng is bad because if the testsystem crashes the buffered results are gone. So we must get rid of the buffered stream thing and go back to Print scattered all over ;-) - - - - - dfcfac61 by Christof Thalhofer at 2020-04-09T08:09:53+02:00 Assert.ReverseNext Turns the result of the following assertion the other way round - - - - - 72c2c1e1 by Christof Thalhofer at 2020-04-09T08:13:09+02:00 TestFailures report ok now, new TestCrashes Tests in TestCrashes fail and must be reported as failed - - - - - 254251b2 by Christof Thalhofer at 2020-04-10T11:15:17+02:00 refact - - - - - dcce00e6 by Christof Thalhofer at 2020-04-10T13:51:48+02:00 gbt3: updated to new name and behavior of Test-Main() - - - - - 29419455 by Christof Thalhofer at 2020-04-10T13:52:56+02:00 gbtest.Test FIXME comment - - - - - 2e9e9490 by Christof Thalhofer at 2020-04-10T15:43:46+02:00 unittesthelloworld update neue tests - - - - - 25fbe40e by Christof Thalhofer at 2020-04-12T10:38:02+02:00 Taskell Kanboard Taskell is a somewhat bulky kanboard for the commandline, but for me seems to be sufficient to organize the few things we have to do until 3.15. - - - - - b0534ada by Tobias Boege at 2020-04-14T20:40:59+02:00 Merge remote-tracking branch 'christof/testing-system-tof1' into testing-system - - - - - 35cac905 by Tobias Boege at 2020-04-25T05:45:42+02:00 Refactor TapPrinter and Assert This is a big refactor of the TapPrinter and Assert interaction with the goal of enabling gb.test to print a self-summary after a TAP session (without storing the TAP we printed and parsing it afterwards). The main feature addition is a new class representing an assertion (together with its subtests). Objects of this type are now produced by TapPrinter when it prints an assertion and by TapParser alike when it parses TAP. This allows more uniform and more detailed reporting of failures, too. For organizational reasons, subtest support was moved into the printer. [GB.TEST] * NEW: Expose the TapContext class which holds the current TAP session's state. * NEW: Represent assertions (and entire subtests) by TestAssertion objects in both TapPrinter and TapParser. * NEW: Coalesce the four TapParser events for assertions into one. * OPT: Move subtest support into TapPrinter, removing the need to create multiple TapPrinter objects. * OPT: Remove the need for buffering the TAP to print a self-summary. * BUG: Fix the buffering issue that would lose TAP when the process crashes. - - - - - acc8f110 by Tobias Boege at 2020-04-25T05:48:28+02:00 gb.test: Rename ReverseNext to IntendedFailure IMHO a more descriptive name. One can "reverse" so many things. - - - - - 12d39c87 by Tobias Boege at 2020-04-25T11:42:19+02:00 Refactor TapPrinter and Assert This is a big refactor of the TapPrinter and Assert interaction with the goal of enabling gb.test to print a self-summary after a TAP session (without storing the TAP we printed and parsing it afterwards). The main feature addition is a new class representing an assertion (together with its subtests). Objects of this type are now produced by TapPrinter when it prints an assertion and by TapParser alike when it parses TAP. This allows more uniform and more detailed reporting of failures, too. For organizational reasons, subtest support was moved into the printer. [GB.TEST] * NEW: Expose the TapContext class which holds the current TAP session's state. * NEW: Represent assertions (and entire subtests) by TestAssertion objects in both TapPrinter and TapParser. * NEW: Coalesce the four TapParser events for assertions into one. * OPT: Move subtest support into TapPrinter, removing the need to create multiple TapPrinter objects. * OPT: Remove the need for buffering the TAP to print a self-summary. * BUG: Fix the buffering issue that would lose TAP when the process crashes. - - - - - aeef68ee by Tobias Boege at 2020-04-25T11:42:19+02:00 gb.test: Rename ReverseNext to IntendedFailure IMHO a more descriptive name. One can "reverse" so many things. - - - - - 8ff76cb2 by Christof Thalhofer at 2020-04-25T11:42:19+02:00 gb.test and gbt3 some refactoring and future tasks - - - - - 9870741d by Christof Thalhofer at 2020-04-25T20:19:53+02:00 Tasks to do until gb.test is done so far - - - - - e5c9b3c1 by Christof Thalhofer at 2020-04-25T21:28:51+02:00 gb.test and gbt3 some refactoring and future tasks - - - - - b640e511 by Christof Thalhofer at 2020-04-25T21:28:51+02:00 Tasks to do until gb.test is done so far - - - - - 470cdf7c by Christof Thalhofer at 2020-04-25T21:29:49+02:00 Merge branch 'testing-system' of ssh://gitlab.com/christhal/gambas into testing-system - - - - - 24ef4c8c by Christof Thalhofer at 2020-04-26T10:41:35+02:00 Fix: BailOut stops all tests - - - - - 7d554993 by Christof Thalhofer at 2020-04-26T10:44:59+02:00 Better readability of TAP output for humans ... I mean elder humans, like me - - - - - f36f6561 by Christof Thalhofer at 2020-04-26T10:48:30+02:00 selftests: get rid of old plans - - - - - d02c023e by Christof Thalhofer at 2020-04-26T11:03:53+02:00 TestFailures and TestSummary updated - - - - - d7a478cc by Christof Thalhofer at 2020-04-26T11:23:01+02:00 Fix: Test bails out if testmodule doesn't exist - - - - - 127eb073 by Christof Thalhofer at 2020-04-26T12:07:56+02:00 Merge remote-tracking branch 'upstream/master' into testing-system - - - - - 750a6057 by Christof Thalhofer at 2020-04-26T12:49:06+02:00 Taskell next task todo and skip Both are not implemented well but necessary for summary - - - - - 7712c62e by Christof Thalhofer at 2020-04-26T13:07:31+02:00 taskell better explanation - - - - - c306e9a5 by Christof Thalhofer at 2020-04-27T12:01:47+02:00 Fix: Free Assert from non-assertions Assert free from non-assertions. Also Assert and Test now are modules. - - - - - 0943f349 by Christof Thalhofer at 2020-04-28T09:36:44+02:00 taskell updated: Todo exists - - - - - 098c5915 by Christof Thalhofer at 2020-04-28T12:17:02+02:00 New Bug: Directives are never stored. This must be fixed before Summary can be created. - - - - - 7d480229 by Christof Thalhofer at 2020-05-01T10:42:29+02:00 Rewrite TestSummary and TestMe TestSummary.DoSomeAsserts, DoTodo and DoSkip succeed - - - - - 4c2a4f47 by Tobias Boege at 2020-05-01T15:57:53+02:00 Show TODOs and SKIPs in summary [GB.TEST] * BUG: Do not trim whitespace from diagnostic lines. * NEW: Show TODOs (failed and bonus) and SKIPs in summary. Previously, TapPrinter.Diagnostic would Trim$ its argument before splitting it by line. This would remove any indentation that may be useful for formatted diagnostics output, so it has to go. Additionally I special-case Null and gb.Lf to print exactly "#\n", which is a common use case as a visual separator. - - - - - 3cf670ef by Christof Thalhofer at 2020-05-01T18:59:20+02:00 Test.PrintSummary: Result in the last line - - - - - 91c4ce26 by Christof Thalhofer at 2020-05-02T11:53:30+02:00 started documentation and task hide symbols - - - - - 6b2f8ec1 by Christof Thalhofer at 2020-05-02T15:27:35+02:00 delete redundant TestSetupTeardown.test - - - - - 178ce9c2 by Christof Thalhofer at 2020-05-02T15:28:30+02:00 Remove TestSetupTeardown in TestMe also - - - - - 2c111a14 by Christof Thalhofer at 2020-05-02T17:20:42+02:00 Assert documentation ? not fully done Left descrition of Approximate and RelativeApproximate to a mathematician.. ;-) - - - - - 36b2e39e by Christof Thalhofer at 2020-05-02T17:22:58+02:00 Test Assert.Like - - - - - 08d798c1 by Christof Thalhofer at 2020-05-02T18:35:48+02:00 hide Test.Finish and documentation - - - - - 645f972b by Christof Thalhofer at 2020-05-03T07:36:31+02:00 README and tasks updated - - - - - fc2ad345 by Christof Thalhofer at 2020-05-03T07:42:45+02:00 README small fix - - - - - ed8f5b73 by Christof Thalhofer at 2020-05-03T10:35:29+02:00 gbt3: some fixes and tasks done Returns exit code. Doesn't print a summary any more as this is provided by gb.test. Doesn't print blank line at the beginning any more. Plan has to be in the first line. Works fine with tappy (python TAP consumer) Kills temporary startup file - - - - - c733083a by Christof Thalhofer at 2020-05-03T11:26:05+02:00 gbt3 install and task - - - - - f5dbf407 by Christof Thalhofer at 2020-05-03T11:42:47+02:00 gbt3: Fix. Raise error when path = Null, no sparse - - - - - 30 changed files: - app/src/INSTALL - app/src/gambas3/.src/Component/CDocumentation.class - app/src/gbt3/.project - app/src/gbt3/.src/Main.module - ? comp/src/gb.test.tap/.component - ? comp/src/gb.test.tap/.directory - ? comp/src/gb.test.tap/.icon.png - ? comp/src/gb.test.tap/.project - ? comp/src/gb.test.tap/.src/Main.module - ? comp/src/gb.test.tap/.src/SampleTest.module - ? comp/src/gb.test.tap/.src/Tap/TapPrinter.class - comp/src/gb.test/.component - + comp/src/gb.test/.hidden/summary-example.txt - comp/src/gb.test/.icon.png - comp/src/gb.test/.project - comp/src/gb.test.tap/.src/Tap/Tap.module ? comp/src/gb.test/.src/Tap/Tap.module - + comp/src/gb.test/.src/Tap/TapContext.class - comp/src/gb.test.tap/.src/Tap/TapParser.class ? comp/src/gb.test/.src/Tap/TapParser.class - + comp/src/gb.test/.src/Tap/TapPrinter.class - + comp/src/gb.test/.src/TestAssertion.class - comp/src/gb.test.tap/.src/TestHarness.class ? comp/src/gb.test/.src/TestHarness.class - comp/src/gb.test/.src/TestMe.module - comp/src/gb.test/.src/TestMyself/TestAllAsserts.test - comp/src/gb.test/.src/TestMyself/TestBailout.test - + comp/src/gb.test/.src/TestMyself/TestCrashes.test - comp/src/gb.test/.src/TestMyself/TestElse.test - comp/src/gb.test/.src/TestMyself/TestEmpty.test - comp/src/gb.test/.src/TestMyself/TestError.test - comp/src/gb.test/.src/TestMyself/TestFailures.test - + comp/src/gb.test/.src/TestMyself/TestInternals.test View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/c4433379731c79c7812b2bb47e4e1b020f528fcb...f5dbf4074e326a3af508684995ca81ae0fc07f76 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/c4433379731c79c7812b2bb47e4e1b020f528fcb...f5dbf4074e326a3af508684995ca81ae0fc07f76 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 May 4 02:14:12 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 04 May 2020 00:14:12 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] WebListBox: Fix behaviour in multiple selection mode. Message-ID: <5eaf5e54c1ed4_1c2f3faaaca289b0262352@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 56758537 by gambas at 2020-05-04T02:14:04+02:00 WebListBox: Fix behaviour in multiple selection mode. [GB.WEB.GUI] * BUG: WebListBox: Fix behaviour in multiple selection mode. * BUG: Fix how the executable path is forged. - - - - - 4 changed files: - comp/src/gb.web.gui/.src/CSelection.class - comp/src/gb.web.gui/.src/WebForm.class - comp/src/gb.web.gui/.src/WebListBox.class - comp/src/gb.web.gui/lib.js View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5675853767cefc997507bf2e5da22ccc394f5b64 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5675853767cefc997507bf2e5da22ccc394f5b64 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 May 4 12:51:34 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Mon, 04 May 2020 10:51:34 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: gb.test README documentation Message-ID: <5eaff3b864aa_348f3f88ffa317a072880@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: de4fc3c4 by Christof Thalhofer at 2020-05-04T12:47:03+02:00 gb.test README documentation [GB.TEST] * NEW: Update documentation in README - - - - - f36281a6 by Christof Thalhofer at 2020-05-04T12:51:03+02:00 Merge branch 'master' of https://gitlab.com/gambas/gambas - - - - - 1 changed file: - comp/src/gb.test/README.md View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5675853767cefc997507bf2e5da22ccc394f5b64...f36281a6940b29288de9254b6bd385ae07269cac -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5675853767cefc997507bf2e5da22ccc394f5b64...f36281a6940b29288de9254b6bd385ae07269cac 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 May 4 21:31:15 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 04 May 2020 19:31:15 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 4 commits: WebListBox: Fix read of Index property. Message-ID: <5eb06d8383ff8_6c0c3fd754a017c8678fc@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 5cfd01f3 by gambas at 2020-05-04T21:26:03+02:00 WebListBox: Fix read of Index property. [GB.WEB.GUI] * BUG: WebListBox: Fix read of Index property. - - - - - 7612fb02 by gambas at 2020-05-04T21:27:23+02:00 Stock: Better support of some icon themes. Add 'share' stock icon.. [GB.FORM] * BUG: Stock: Better support of some icon themes. * NEW: New stock icon 'share'. [GB.FORM.STOCK] * NEW: New stock icon 'share'. - - - - - e6726369 by gambas at 2020-05-04T21:29:22+02:00 Search dialog: Support for browsing compressed files. [DEVELOPMENT ENVIRONMENT] * BUG: Search dialog: Support for browsing compressed files. * NEW: Use global constants for IDE blue and orange colors. - - - - - 3c510ed6 by gambas at 2020-05-04T21:31:04+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 16 changed files: - ? app/src/gambas3/.hidden/Uncompressed/help/class-help.html - ? app/src/gambas3/.hidden/Uncompressed/help/wiki/style.css - app/src/gambas3/.src/Editor/Code/FTextEditor.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/Farm/FSoftwareFarm.class - app/src/gambas3/.src/Project/Farm/Publish/CTag.class - app/src/gambas3/.src/Project/Farm/SoftwareBox.class - app/src/gambas3/.src/Search/CSearchTask.class - app/src/gambas3/.src/Welcome/CCoolButton.class - app/src/gambas3/.src/Welcome/CWelcome.class - app/src/gambas3/.src/Welcome/FWelcome.class - + comp/src/gb.form.stock/gambas-mono/32/share.png - + comp/src/gb.form.stock/gambas/32/share.png - comp/src/gb.form/.src/Stock.class - comp/src/gb.form/map/icon.map - comp/src/gb.web.gui/.src/CSelection.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f36281a6940b29288de9254b6bd385ae07269cac...3c510ed644bcc4389cc725307d56aaebbebd7b30 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f36281a6940b29288de9254b6bd385ae07269cac...3c510ed644bcc4389cc725307d56aaebbebd7b30 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 May 4 21:42:26 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 04 May 2020 19:42:26 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Add 'ubuntu-eoan', update 'ubuntu-latest'. Message-ID: <5eb0702258901_231b3fc66f49e0d844451@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: ab67621c by Beno?t Minisini at 2020-05-04T19:42:23+00:00 Add 'ubuntu-eoan', update 'ubuntu-latest'. - - - - - 1 changed file: - .gitlab-ci.yml View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/ab67621cc5b31fab3cffa1f3be4e9b48bba1a241 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/ab67621cc5b31fab3cffa1f3be4e9b48bba1a241 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 May 4 21:44:58 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 04 May 2020 19:44:58 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Update 'debian-testing' with 'libgime-3.0-dev'. Message-ID: <5eb070bbf27ce_7c703fd765c4b14480269@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 61b59054 by Beno?t Minisini at 2020-05-04T19:44:51+00:00 Update 'debian-testing' with 'libgime-3.0-dev'. - - - - - 1 changed file: - .gitlab-ci.yml View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/61b5905489fa52d5f1e4066aafa2129d4a473268 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/61b5905489fa52d5f1e4066aafa2129d4a473268 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 May 4 21:53:37 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 04 May 2020 19:53:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Update .gitlab-ci.yml Message-ID: <5eb072c237d49_6c0c3fd73a20d8246852a@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: dc784772 by Beno?t Minisini at 2020-05-04T19:53:36+00:00 Update .gitlab-ci.yml - - - - - 1 changed file: - .gitlab-ci.yml View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/dc784772817905b23dcd14b153fd551d7f62c11e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/dc784772817905b23dcd14b153fd551d7f62c11e 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 May 7 08:19:35 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 07 May 2020 06:19:35 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Add '-T' option to run test modules. Message-ID: <5eb3a878f25a_419a3fb1ecd6bb447366b@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 368165ff by gambas at 2020-05-07T08:18:48+02:00 Add '-T' option to run test modules. [INTERPRETER] * NEW: Add '-T' option to run test modules. * NEW: Update help message and display options in alphabetic order. * BUG: Use '-r' option now to redirect standard error output. No conflict anymore with '-t'. - - - - - 3 changed files: - main/gbx/gbx.c - main/gbx/gbx_project.c - main/gbx/gbx_project.h View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/368165ff2f0d608e11f62c052a5890e1009619a5 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/368165ff2f0d608e11f62c052a5890e1009619a5 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 May 7 08:20:33 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 07 May 2020 06:20:33 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Use '-r' interpreter option to redirect standard error output. Message-ID: <5eb3a8b2f3b53_16d93f953740fdc410302e@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 931ecc6c by gambas at 2020-05-07T08:19:59+02:00 Use '-r' interpreter option to redirect standard error output. [DEVELOPMENT ENVIRONMENT] * BUG: Use '-r' interpreter option to redirect standard error output. - - - - - 1 changed file: - app/src/gambas3/.src/Debug/Design.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/931ecc6c6195c08dbab3f389e0822901b8f596b3 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/931ecc6c6195c08dbab3f389e0822901b8f596b3 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 May 7 10:19:20 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 07 May 2020 08:19:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Interpreter options now accept a void argument. Message-ID: <5eb3c4891ab0_6c6a3f8e407a4a8c539c5@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 1cd23bb5 by gambas at 2020-05-07T10:18:33+02:00 Interpreter options now accept a void argument. [INTERPRETER] * BUG: Interpreter options now accept a void argument. - - - - - 1 changed file: - main/gbx/gbx.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1cd23bb578c610ad7d4862e45c19b5974a3920b6 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/1cd23bb578c610ad7d4862e45c19b5974a3920b6 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 May 7 13:11:33 2020 From: gitlab at mg.gitlab.com (Tobias Boege) Date: Thu, 07 May 2020 11:11:33 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: gb.test: Hide more classes and symbols Message-ID: <5eb3ece58bb85_30103f8f63d429206012b@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Tobias Boege pushed to branch master at Gambas / gambas Commits: a965afa0 by Tobias Boege at 2020-05-07T12:57:55+02:00 gb.test: Hide more classes and symbols [GB.TEST] * OPT: Hide more classes and symbols. TapPrinter, TapParser and TapContext are not exported anymore. The Tap constants are moved into other classes. Some public methods/properties that expose printer, parser or context are hidden. - - - - - e3a9ac58 by Tobias Boege at 2020-05-07T13:15:54+02:00 gb.test: Exit with appropriate status code [GB.TEST] * BUG: Test.Main() now `Quit`s with 0 or 1 indicating whether tests passed or failed. - - - - - fa27ff82 by Tobias Boege at 2020-05-07T13:15:57+02:00 gb.test: Tidy up TestHarness [GB.TEST] * OPT: Remove cruft from TestHarness. Use the new `gbx3 -T` mode. Make it a module. - - - - - 9 changed files: - ? comp/src/gb.test/.src/Tap/Tap.module - comp/src/gb.test/.src/Tap/TapContext.class - comp/src/gb.test/.src/Tap/TapParser.class - comp/src/gb.test/.src/Tap/TapPrinter.class - comp/src/gb.test/.src/TestAssertion.class - comp/src/gb.test/.src/TestHarness.class ? comp/src/gb.test/.src/TestHarness.module - comp/src/gb.test/.src/TestSuite/Assert.module - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/1cd23bb578c610ad7d4862e45c19b5974a3920b6...fa27ff82044af26869afb2fdf1a227cfab0e1770 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/1cd23bb578c610ad7d4862e45c19b5974a3920b6...fa27ff82044af26869afb2fdf1a227cfab0e1770 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 May 7 15:25:07 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 07 May 2020 13:25:07 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: Automatically load 'gb.test' component when the '-T' option is used. Message-ID: <5eb40c355dc4_13bf3fcb9d2b466845535@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 986ca05f by gambas at 2020-05-07T15:15:13+02:00 Automatically load 'gb.test' component when the '-T' option is used. [INTERPRETER] * NEW: Automatically load 'gb.test' component when the '-T' option is used. - - - - - db95af0c by gambas at 2020-05-07T15:15:57+02:00 Make 'gb.test' component hidden, as it is now loaded automatically. [GB.TEST] * NEW: Raise the component to the 'Stable but not finished' state.. * NEW: Make the component hidden, as it is now loaded automatically. - - - - - 44bacade by gambas at 2020-05-07T15:23:14+02:00 Suport for unit tests in the IDE. [DEVELOPMENT ENVIRONMENT] * NEW: Update french translation. * NEW: Add a 'test' button, that run the project in test mode, using the debugger. * NEW: Add a specific output tab for the unit tests result. * BUG: Selection of menu icons now allows stock icons again. - - - - - 15 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FDebugButton.class - app/src/gambas3/.src/Debug/FDebugButton.form - app/src/gambas3/.src/Debug/FDebugInfo.class - app/src/gambas3/.src/Debug/FDebugInfo.form - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/Family/Form/CFamilyForm.class - app/src/gambas3/.src/Project.module - + app/src/gambas3/.src/Project/FTest.class - + app/src/gambas3/.src/Project/FTest.form - comp/src/gb.test/.component - comp/src/gb.test/.icon.png - main/gbx/gbx_component.c View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/fa27ff82044af26869afb2fdf1a227cfab0e1770...44bacadedade90f6b7c11d37509d82c113267313 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/fa27ff82044af26869afb2fdf1a227cfab0e1770...44bacadedade90f6b7c11d37509d82c113267313 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 May 9 20:56:23 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 09 May 2020 18:56:23 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Automatically add 'gb.test' component information when a project includes a test module. Message-ID: <5eb6fcd843438_29e33f9c897ecec0379b9@sidekiq-low-urgency-cpu-bound-09-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: ac5068e9 by gambas at 2020-05-09T20:55:04+02:00 Automatically add 'gb.test' component information when a project includes a test module. [COMPILER] * BUG: Automatically add 'gb.test' component information when a project includes a test module. - - - - - f319132d by gambas at 2020-05-09T20:55:56+02:00 Ignore hidden components specified in the project file. [DEVELOPMENT ENVIRONMENT] * BUG: Ignore hidden components specified in the project file. - - - - - 11 changed files: - app/src/gambas3/.src/Project.module - main/gbc/gbc.c - main/gbc/gbc_class.c - main/gbc/gbc_compile.c - main/gbc/gbc_compile.h - main/gbc/gbc_dump.c - main/gbc/gbc_form.c - main/gbc/gbc_header.c - main/gbc/gbc_output.c - main/gbc/gbc_read.c - main/gbc/gbc_trans_code.c View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/44bacadedade90f6b7c11d37509d82c113267313...f319132dfc1f7e3443146e154e4af680db567e5d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/44bacadedade90f6b7c11d37509d82c113267313...f319132dfc1f7e3443146e154e4af680db567e5d 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 May 10 09:11:10 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Sun, 10 May 2020 07:11:10 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test updated unittesthelloworld Message-ID: <5eb7a910ae29_7e313ff5aa610b90964a2@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 31b519d7 by Christof Thalhofer at 2020-05-10T09:06:43+02:00 gb.test updated unittesthelloworld [GB.TEST] * NEW: example unittesthelloworld does not load component gb.test - - - - - 2 changed files: - ? comp/src/gb.test/unittesthelloworld-0.0.8.tar.gz - + comp/src/gb.test/unittesthelloworld-0.0.9.tar.gz View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/31b519d733f7d1924d52de555882dc6177c43a03 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/31b519d733f7d1924d52de555882dc6177c43a03 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 May 10 14:52:25 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 10 May 2020 12:52:25 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Automatically load 'gb.test' information. Message-ID: <5eb7f90a5b2bd_65d83f9a76297fd49035d@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 9a9d347c by gambas at 2020-05-10T14:51:53+02:00 Automatically load 'gb.test' information. [DEVELOPMENT ENVIRONMENT] * BUG: Automatically load 'gb.test' information. - - - - - e5adb0ef by gambas at 2020-05-10T14:52:10+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 1 changed file: - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/31b519d733f7d1924d52de555882dc6177c43a03...e5adb0eff72f6dd643f454478d9991d8ca806e43 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/31b519d733f7d1924d52de555882dc6177c43a03...e5adb0eff72f6dd643f454478d9991d8ca806e43 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 May 10 15:58:42 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 10 May 2020 13:58:42 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Automatically load 'gb.test' for automatic completion. Message-ID: <5eb808935f1af_584a3f8884ae26d4189bf@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 833178b0 by gambas at 2020-05-10T15:58:37+02:00 Automatically load 'gb.test' for automatic completion. [DEVELOPMENT ENVIRONMENT] * BUG: Automatically load 'gb.test' for automatic completion. - - - - - 3 changed files: - app/src/gambas3/.src/Component/CDocumentation.class - app/src/gambas3/.src/Editor/Code/FCompletion.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/833178b0f982f0f6b444fbc21f17b9406d890e28 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/833178b0f982f0f6b444fbc21f17b9406d890e28 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 May 11 18:38:17 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 16:38:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] System tray now works with QT5. Drawing on a cached DrawingArea does not... Message-ID: <5eb97f7996fd5_8543fc4ab17049416794@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 4ffe0775 by gambas at 2020-05-11T18:37:21+02:00 System tray now works with QT5. Drawing on a cached DrawingArea does not display a warning message anymore. [GB.DESKTOP.X11] * BUG: System tray now works with QT5. A display glitch remains. [GB.QT4] * BUG: Drawing on a cached DrawingArea does not display a warning message anymore. [GB.QT5] * BUG: Drawing on a cached DrawingArea does not display a warning message anymore. * BUG: X11 event filter correctly handle ClientMessage events now. - - - - - 7 changed files: - gb.desktop.x11/src/systray/debug.h - gb.desktop.x11/src/systray/systray.c - gb.desktop.x11/src/systray/systray.h - gb.desktop.x11/src/x11.c - gb.desktop.x11/src/x11.h - gb.qt4/src/cpaint_impl.cpp - gb.qt4/src/main.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4ffe07752918a3111f4d660636391b8e5a11cb5b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4ffe07752918a3111f4d660636391b8e5a11cb5b 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 May 11 21:01:03 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 19:01:03 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Display a warning message when running tests, if there is no test modules. Message-ID: <5eb9a0f126210_4ada3fec0d13575c59484@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 06cd374e by gambas at 2020-05-11T21:00:55+02:00 Display a warning message when running tests, if there is no test modules.. [DEVELOPMENT ENVIRONMENT] * NEW: Update Gambas 13 fonts. * NEW: Update french translation. * NEW: Reorder debug panel buttons. * NEW: Display a warning message when running tests, if there is no test modules. - - - - - 10 changed files: - app/src/gambas3/.hidden/font/GambasBold-13.sfd - app/src/gambas3/.hidden/font/GambasMedium-13.sfd - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FDebugButton.form - app/src/gambas3/.src/Debug/FDebugInfo.class - app/src/gambas3/.src/Debug/FDebugInfo.form - app/src/gambas3/.src/Project/CProjectTree.class - app/src/gambas3/font/GambasBold-13.bdf - app/src/gambas3/font/GambasMedium-13.bdf View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/06cd374e526a7efb7926c13d6c14b552f0c00e74 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/06cd374e526a7efb7926c13d6c14b552f0c00e74 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 May 11 21:02:46 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 19:02:46 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Make the component visible again. Message-ID: <5eb9a156e92d8_4b83ff4b6753498132e5@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 492dccc2 by gambas at 2020-05-11T21:02:39+02:00 Make the component visible again. [GB.TEST] * NEW: Make the component visible again. * BUG: Fix two typos in comments. - - - - - 2 changed files: - comp/src/gb.test/.component - comp/src/gb.test/.src/TestSuite/Test.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/492dccc28f189d4efc40823ec834cb8f0fef32eb -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/492dccc28f189d4efc40823ec834cb8f0fef32eb 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 May 11 23:32:47 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Mon, 11 May 2020 21:32:47 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: gb.test Setup and Teardown methods hidden Message-ID: <5eb9c47f747d4_25b53f858fbda6744160@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 77436fd0 by Christof Thalhofer at 2020-05-11T22:26:08+02:00 gb.test Setup and Teardown methods hidden - - - - - 2d2c5455 by Christof Thalhofer at 2020-05-11T22:31:08+02:00 gb.test: Assert documentation [GB.TEST] * New: Assert is an instruction which is extended by gb.test. It's original functionality is now documented in the Assert.module. - - - - - e3c8df55 by Christof Thalhofer at 2020-05-11T23:28:42+02:00 gb.test: new function Test.GetAllTests [GB.TEST] * New: Test.GetAllTests returns a collection of all testmodules and their testmethods - - - - - 7 changed files: - comp/src/gb.test/.src/TestMyself/TestAllAsserts.test - comp/src/gb.test/.src/TestMyself/TestInternals.test - comp/src/gb.test/.src/TestMyself/TestSetup.test - comp/src/gb.test/.src/TestSuite/Assert.module - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestCase.class - comp/src/gb.test/.src/TestSuite/TestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/492dccc28f189d4efc40823ec834cb8f0fef32eb...e3c8df556814435335a3e067940762051c0bed73 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/492dccc28f189d4efc40823ec834cb8f0fef32eb...e3c8df556814435335a3e067940762051c0bed73 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 May 11 23:44:52 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Mon, 11 May 2020 21:44:52 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Remove gbt3 Message-ID: <5eb9c755f409a_25b53f85a95ae4205492@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: daf5b7d9 by Christof Thalhofer at 2020-05-11T23:39:24+02:00 Remove gbt3 gbt3 is obsolete as gbx3 -T now does the same - - - - - 11 changed files: - app/src/INSTALL - ? app/src/gbt3/.directory - ? app/src/gbt3/.icon.png - ? app/src/gbt3/.project - ? app/src/gbt3/.src/Main.module - ? app/src/gbt3/testexample/.directory - ? app/src/gbt3/testexample/.icon.png - ? app/src/gbt3/testexample/.project - ? app/src/gbt3/testexample/.src/Main.module - ? app/src/gbt3/testexample/.src/TestMain.test - ? app/src/gbt3/testexample/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/daf5b7d9f145fffe539f512c25e4d42674e6299e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/daf5b7d9f145fffe539f512c25e4d42674e6299e 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 May 12 00:14:33 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 22:14:33 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: CI Build Failure Message-ID: <5eb9ce4aea945_3a753fe64459e5605198c@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 27a6f2a5 by Andy at 2020-05-11T03:49:49-07:00 CI Build Failure [GITLAB] * BUG: CI build fails on Eoan due to Timezone * BUG: CI build fails on Eoan due to Keyboard * BUG: CI build fails on Eoan due to Keyring * BUG: CI build fails on Latest due to Timezone * BUG: CI build fails on Latest due to Keyboard * BUG: CI build fails on Latest due to Keyring * BUG: CI Build fails on Latest due to Qt4 - - - - - 861de3a5 by Beno?t Minisini at 2020-05-11T22:14:32+00:00 Fix build of 'ubuntu eoan' and 'ubuntu latest'. See merge request gambas/gambas!144 - - - - - 1 changed file: - .gitlab-ci.yml View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/daf5b7d9f145fffe539f512c25e4d42674e6299e...861de3a55af79552fa0693106b8f057e3eb2ffae -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/daf5b7d9f145fffe539f512c25e4d42674e6299e...861de3a55af79552fa0693106b8f057e3eb2ffae 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 May 12 00:15:53 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 22:15:53 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Remove two untranslated gettext srings Message-ID: <5eb9ce9a81577_5c7d3fa8343c41ac77079@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: b08346d8 by Bastian Germann at 2020-03-18T20:18:06+01:00 Remove two untranslated gettext srings The two translation files give fatal errors on `msgfmt -c`: gettext: app/examples/Games/GNUBoxWorld/.lang/cs.po:108: 'msgid' and 'msgstr' entries do not both begin with '\n' msgfmt: found 1 fatal error gettext: app/examples/Games/GNUBoxWorld/.lang/es_AR.po:97: 'msgid' and 'msgstr' entries do not both begin with '\n' msgfmt: found 1 fatal error - - - - - e2a411a3 by Beno?t Minisini at 2020-05-11T22:15:51+00:00 Merge branch 'i18n' into 'master' Remove two untranslated gettext strings See merge request gambas/gambas!142 - - - - - 2 changed files: - app/examples/Games/GNUBoxWorld/.lang/cs.po - app/examples/Games/GNUBoxWorld/.lang/es_AR.po View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/861de3a55af79552fa0693106b8f057e3eb2ffae...e2a411a369e0604dc321bd34fafb6459384cd2f6 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/861de3a55af79552fa0693106b8f057e3eb2ffae...e2a411a369e0604dc321bd34fafb6459384cd2f6 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 May 12 00:53:42 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Mon, 11 May 2020 22:53:42 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Refactoring and further tasks to do Message-ID: <5eb9d777e121b_3a753fe64459e6dc5451b@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: afd35b45 by Christof Thalhofer at 2020-05-12T00:49:33+02:00 Refactoring and further tasks to do Rename container and testcase to the more gambassy names testmodule and testmethod. started plan selftests. - - - - - af5edf2d by Christof Thalhofer at 2020-05-12T00:52:42+02:00 Merge branch 'master' of https://gitlab.com/gambas/gambas - - - - - 8 changed files: - comp/src/gb.test/.src/TestMyself/TestAllAsserts.test - comp/src/gb.test/.src/TestMyself/TestInternals.test - comp/src/gb.test/.src/TestSuite/Assert.module - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestCase.class - comp/src/gb.test/.src/TestSuite/TestSuite.class - comp/src/gb.test/README.md - comp/src/gb.test/taskell.md View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e2a411a369e0604dc321bd34fafb6459384cd2f6...af5edf2d2582e08ed7ba8da04d8ff37878eaf34f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e2a411a369e0604dc321bd34fafb6459384cd2f6...af5edf2d2582e08ed7ba8da04d8ff37878eaf34f 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 May 12 01:14:40 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 11 May 2020 23:14:40 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Make READ and INPUT return void strings instead of NULL, otherwise JIT compiler fails. Message-ID: <5eb9dc6254a24_3a753fe64459eab0553d5@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 8395b972 by gambas at 2020-05-12T01:13:43+02:00 Make READ and INPUT return void strings instead of NULL, otherwise JIT compiler fails. [INTERPRETER] * BUG: Make READ and INPUT return void strings instead of NULL, otherwise JIT compiler fails. - - - - - bfb35973 by gambas at 2020-05-12T01:14:29+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 1 changed file: - main/gbx/gbx_subr_file.c View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/af5edf2d2582e08ed7ba8da04d8ff37878eaf34f...bfb3597358bbe882635f774d421ce1d1d8443d8b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/af5edf2d2582e08ed7ba8da04d8ff37878eaf34f...bfb3597358bbe882635f774d421ce1d1d8443d8b 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 May 12 09:47:29 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 12 May 2020 07:47:29 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: Use the Unity protocol on all desktops. Message-ID: <5eba5491e218c_60973fca6a6eee3810784d@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: c681983e by gambas at 2020-05-12T09:41:46+02:00 Use the Unity protocol on all desktops. [GB.DBUS.TRAYICON] * BUG: Use the Unity protocol on all desktops. - - - - - fc79447b by gambas at 2020-05-12T09:42:39+02:00 Update a few icons. [GB.FORM.STOCK] * NEW: Update a few icons. - - - - - 78a969ea by gambas at 2020-05-12T09:43:47+02:00 X11Systray.Show() now takes the icon background color as second optional argument. [GB.DESKTOP.X11] * NEW: X11Systray.Show() now takes the icon background color as second optional argument. The default color is black. - - - - - 14 changed files: - comp/src/gb.dbus.trayicon/.component - comp/src/gb.dbus.trayicon/.project - comp/src/gb.dbus.trayicon/.src/TrayIcon.class - comp/src/gb.form.stock/gambas-mono/32/view-detail.png - comp/src/gb.form.stock/gambas-mono/32/view-icon.png - comp/src/gb.form.stock/gambas-mono/32/view-tree.png - comp/src/gb.form.stock/gambas/32/view-detail.png - comp/src/gb.form.stock/gambas/32/view-icon.png - comp/src/gb.form.stock/gambas/32/view-tree.png - gb.desktop.x11/src/c_x11systray.c - gb.desktop.x11/src/systray/embed.c - gb.desktop.x11/src/systray/systray.c - gb.desktop.x11/src/systray/systray.h - gb.desktop.x11/src/systray/tray.h View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/bfb3597358bbe882635f774d421ce1d1d8443d8b...78a969ea0c97e21901f12d5603e6be53fbbb0355 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/bfb3597358bbe882635f774d421ce1d1d8443d8b...78a969ea0c97e21901f12d5603e6be53fbbb0355 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 May 13 11:17:31 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Wed, 13 May 2020 09:17:31 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test: new function Test.AllTestsJson Message-ID: <5ebbbb2c76ad3_5aba3fd2f5ade820567a3@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: cbefcd76 by Christof Thalhofer at 2020-05-13T11:14:19+02:00 gb.test: new function Test.AllTestsJson [GB.TEST] * NEW: New function Test.AllTestsJson - - - - - 2 changed files: - comp/src/gb.test/.src/TestMyself/TestInternals.test - comp/src/gb.test/.src/TestSuite/Test.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/cbefcd766066d9faa6ccce4ad703512cbdd6ef14 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/cbefcd766066d9faa6ccce4ad703512cbdd6ef14 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 May 13 14:23:16 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Wed, 13 May 2020 12:23:16 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test: Rename TestHarness to TestRunner, TestRunner.List Message-ID: <5ebbe6b53c475_5aba3fd2f08e2fbc693e@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 427ed14d by Christof Thalhofer at 2020-05-13T14:20:57+02:00 gb.test: Rename TestHarness to TestRunner, TestRunner.List - - - - - 3 changed files: - comp/src/gb.test/.src/TestHarness.module ? comp/src/gb.test/.src/TestRunner.module - comp/src/gb.test/.src/TestSuite/TestCommand.class - comp/src/gb.test/.src/TestSuite/TestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/427ed14d2e6cdf7a4a0a3446750f38d0c3e1dd2c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/427ed14d2e6cdf7a4a0a3446750f38d0c3e1dd2c 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 May 14 09:39:22 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 14 May 2020 07:39:22 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Add a project icon. Message-ID: <5ebcf5abbb408_3aac3fa94376ed4c34543@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 7b30f81a by gambas at 2020-05-14T09:38:23+02:00 Add a project icon. [GB.TEST] * NEW: Add a project icon. * BUG: Fix an english word in 'README.md'. - - - - - ef32c2e7 by gambas at 2020-05-14T09:39:11+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 4 changed files: - + comp/src/gb.test/.hidden/gb.test.png - comp/src/gb.test/.icon.png - comp/src/gb.test/.project - comp/src/gb.test/README.md View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/427ed14d2e6cdf7a4a0a3446750f38d0c3e1dd2c...ef32c2e7a2968ec10841d6507bb25486dd1044be -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/427ed14d2e6cdf7a4a0a3446750f38d0c3e1dd2c...ef32c2e7a2968ec10841d6507bb25486dd1044be 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 May 14 12:49:09 2020 From: gitlab at mg.gitlab.com (Tobias Boege) Date: Thu, 14 May 2020 10:49:09 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Make TestRunner.Run return its result Message-ID: <5ebd2225de54f_ba73fd021a347e879251@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Tobias Boege pushed to branch master at Gambas / gambas Commits: 05d9fdf8 by Tobias Boege at 2020-05-14T12:53:17+02:00 Make TestRunner.Run return its result [GB.TEST] * BUG: TestRunner.Run returns its result TestStats now. - - - - - 1 changed file: - comp/src/gb.test/.src/TestRunner.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/05d9fdf865fe592abe35053d5bff6005b0ed4c1d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/05d9fdf865fe592abe35053d5bff6005b0ed4c1d 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 May 14 20:35:17 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 14 May 2020 18:35:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: WebButton: Don't react to click when disabled. Message-ID: <5ebd8f664550e_a293fb83ab38710629b@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 4bda6391 by gambas at 2020-05-14T20:34:03+02:00 WebButton: Don't react to click when disabled. [GB.WEB.GUI] * BUG: WebButton: Don't react to click when disabled. - - - - - a06a6485 by gambas at 2020-05-14T20:34:51+02:00 Update many icons. [GB.FORM.STOCK] * NEW: Update many icons. - - - - - aa46af36 by gambas at 2020-05-14T20:35:01+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 14 changed files: - comp/src/gb.form.stock/gambas-mono/32/bookmark.png - comp/src/gb.form.stock/gambas-mono/32/new-dir.png - comp/src/gb.form.stock/gambas-mono/32/new-tab.png - comp/src/gb.form.stock/gambas-mono/32/new-window.png - comp/src/gb.form.stock/gambas-mono/32/select-all.png - comp/src/gb.form.stock/gambas-mono/32/shortcut.png - + comp/src/gb.form.stock/gambas-mono/32/unselect.png - comp/src/gb.form.stock/gambas/32/new-dir.png - comp/src/gb.form.stock/gambas/32/new-tab.png - comp/src/gb.form.stock/gambas/32/new-window.png - comp/src/gb.form.stock/gambas/32/select-all.png - comp/src/gb.form.stock/gambas/32/shortcut.png - + comp/src/gb.form.stock/gambas/32/unselect.png - comp/src/gb.web.gui/.src/WebButton.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/05d9fdf865fe592abe35053d5bff6005b0ed4c1d...aa46af368164d9a4efba6908f02e5c395344b604 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/05d9fdf865fe592abe35053d5bff6005b0ed4c1d...aa46af368164d9a4efba6908f02e5c395344b604 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 May 16 01:42:56 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Fri, 15 May 2020 23:42:56 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] FileChooser & DirChooser: Custom bookmarks are now correctly refreshed when they change. Message-ID: <5ebf290056adb_13063f88c38cc6084085@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: a04fa2a2 by gambas at 2020-05-16T01:41:58+02:00 FileChooser & DirChooser: Custom bookmarks are now correctly refreshed when they change. [GB.FORM] * BUG: FileChooser & DirChooser: Custom bookmarks are now correctly refreshed when they change. * NEW: Add 'unselect' stock icon. - - - - - 4 changed files: - comp/src/gb.form/.src/File/Bookmark/CBookmarkList.class - comp/src/gb.form/.src/File/Bookmarks.class - comp/src/gb.form/.src/File/Chooser/FDirChooser.class - comp/src/gb.form/map/icon.map View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a04fa2a24bca999d47ed8c14e5ba97cb90320d9c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a04fa2a24bca999d47ed8c14e5ba97cb90320d9c 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 May 16 10:15:42 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 16 May 2020 08:15:42 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] TreeView: ShowCheck is a new property that uses checkboxes to handle selection mode. Message-ID: <5ebfa12ecfc39_29993fce32bf34e4877b4@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 849a3485 by gambas at 2020-05-16T10:15:34+02:00 TreeView: ShowCheck is a new property that uses checkboxes to handle selection mode. [GB.GUI.BASE] * BUG: TreeView: Take padding into account when interpreting mouse events.. * BUG: TreeView: Fix right-to-left layout management. * NEW: TreeView: ShowCheck is a new property that uses checkboxes to handle selection mode. * NEW: Paint.Check() is a new method that draws a check mark. - - - - - 7 changed files: - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/Paint.class - comp/src/gb.gui.base/.src/Test/FTreeView.form - comp/src/gb.gui.base/.src/TreeView/ColumnView.class - comp/src/gb.gui.base/.src/TreeView/ListView.class - comp/src/gb.gui.base/.src/TreeView/TreeView.class - comp/src/gb.gui.base/.src/TreeView/_TreeView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/849a34857fc0c7446a4b0390945b770c1eace331 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/849a34857fc0c7446a4b0390945b770c1eace331 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 May 16 11:29:51 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 16 May 2020 09:29:51 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Add menu entries for toggling most of the debugging environment variables. Message-ID: <5ebfb2904ff64_49053fe2f07ed7dc56572@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: bd36dc9d by gambas at 2020-05-16T11:29:46+02:00 Add menu entries for toggling most of the debugging environment variables.. [DEVELOPMENT ENVIRONMENT] * BUG: Display an appropriate message when project testing fails. * NEW: Update french translation. * NEW: Make the IDE depend on the 'gb.test' component. * NEW: Code editor: error messages now use the same background as the editor, to ensure they are always readable. * NEW: Add menu entries for toggling most of the debugging environment variables. - - - - - 9 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.project - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FDebugInfo.form - app/src/gambas3/.src/Editor/Image/FImageEditor.form - app/src/gambas3/.src/Exported/ProjectChooser/FProjectChooser.class - app/src/gambas3/.src/Exported/TextEditor.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/bd36dc9d74fcff2cfb568ad8b5ac1657a734a013 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/bd36dc9d74fcff2cfb568ad8b5ac1657a734a013 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 May 16 17:51:55 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 16 May 2020 15:51:55 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] TreeView: Fix selection and keyboard management when ShowCheck property is set. Message-ID: <5ec00c1bb7ff1_56cb3f81a669e0d0938b1@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f4acc840 by gambas at 2020-05-16T17:51:49+02:00 TreeView: Fix selection and keyboard management when ShowCheck property is set. [GB.GUI.BASE] * BUG: TreeView: Fix selection and keyboard management when ShowCheck property is set. - - - - - 5 changed files: - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/Test/FTreeView.class - comp/src/gb.gui.base/.src/Test/FTreeView.form - comp/src/gb.gui.base/.src/TreeView/_TreeView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f4acc8407ba53e792ea8655e823081ad24d1e49c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f4acc8407ba53e792ea8655e823081ad24d1e49c 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 May 16 19:43:23 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 16 May 2020 17:43:23 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: URL.UnQuote() takes a new optional argument that prevent unquoting "+" into space. Message-ID: <5ec0263cc89eb_78e3fc6ceea6fd0923cc@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 93077403 by gambas at 2020-05-16T19:36:27+02:00 URL.UnQuote() takes a new optional argument that prevent unquoting "+" into space. [GB.UTIL.WEB] * BUG: Fix query encoding & decoding in URLQuery class. * NEW: URL.UnQuote() takes a new optional argument that prevent unquoting "+" into space. * NEW: URL.Quote() now quotes spaces as "%20" and not "+" anymore. - - - - - da8182ac by gambas at 2020-05-16T19:42:33+02:00 Do not unquote "+" into space in query strings. [GB.WEB] * BUG: Do not unquote "+" into space in query strings. - - - - - 3 changed files: - comp/src/gb.util.web/.src/URL.class - comp/src/gb.util.web/.src/URLQuery.class - comp/src/gb.web/.src/Main.module View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f4acc8407ba53e792ea8655e823081ad24d1e49c...da8182acbcb3147e5d8649449a6996b2278c66a3 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f4acc8407ba53e792ea8655e823081ad24d1e49c...da8182acbcb3147e5d8649449a6996b2278c66a3 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 May 17 02:57:31 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 17 May 2020 00:57:31 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Redesign verbose messages. Message-ID: <5ec08bfbc8beb_49033fd2e7b34cec920db@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 524f65cd by gambas at 2020-05-17T01:25:13+02:00 Redesign verbose messages. [INFORMER] * NEW: Redesign verbose messages. Do not print anything if verbose mode is off, except warning messages. - - - - - 7e7f6d5c by gambas at 2020-05-17T02:57:25+02:00 Hide testing menus, buttons and panel if the project has no test modules. [DEVELOPMENT ENVIRONMENT] * NEW: Hide testing menus, buttons and panel if the project has no test modules. - - - - - 10 changed files: - app/src/gambas3/.src/Component/CDocumentation.class - app/src/gambas3/.src/Debug/FDebugButton.class - app/src/gambas3/.src/Editor/Code/FEditor.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FImportFile.class - app/src/gambas3/.src/Project/FProjectProperty.class - app/src/gambas3/.src/Project/FProjectProperty.form - app/src/gambas3/.src/Welcome/FSystemInfo.form - main/gbc/gbi.c View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/da8182acbcb3147e5d8649449a6996b2278c66a3...7e7f6d5c296c402214ab1983bed5cab3d97af97b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/da8182acbcb3147e5d8649449a6996b2278c66a3...7e7f6d5c296c402214ab1983bed5cab3d97af97b 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 May 17 08:31:35 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 17 May 2020 06:31:35 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 6 commits: Order options in displayed help. Message-ID: <5ec0da4796cf5_338b3fc64130585835411@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: fffa4e5b by gambas at 2020-05-17T08:24:58+02:00 Order options in displayed help. [COMPILER] * NEW: Order options in displayed help. [ARCHIVER] * NEW: Order options in displayed help. [INFORMER] * NEW: Order options in displayed help. - - - - - 7c7029ae by gambas at 2020-05-17T08:26:14+02:00 Make a public function static. [INTERPRETER] * BUG: Make a public function static. - - - - - 56b33853 by gambas at 2020-05-17T08:27:20+02:00 Update AUTHORS file. [CONFIGURATION] * NEW: Update AUTHORS file. - - - - - ac0a41b8 by gambas at 2020-05-17T08:27:41+02:00 Order options in displayed help. [SCRIPTER] * NEW: Order options in displayed help. - - - - - 3754b37c by gambas at 2020-05-17T08:28:17+02:00 Update some icons. [GB.FORM.STOCK] * NEW: Update some icons. - - - - - 8f5d7b32 by gambas at 2020-05-17T08:31:28+02:00 Project properties: Add more project statistics. [DEVELOPMENT ENVIRONMENT] * NEW: Update french translation. * NEW: Project properties: Add more project statistics. * NEW: Project properties: The first column of environment table has now a minimum width. - - - - - 19 changed files: - AUTHORS - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Component/CModule.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FProjectProperty.class - app/src/gambas3/.src/Project/FProjectProperty.form - app/src/gbs3/usage-gbs - app/src/gbs3/usage-gbw - comp/src/gb.form.stock/gambas-mono/32/apply.png - comp/src/gb.form.stock/gambas-mono/32/clock.png - comp/src/gb.form.stock/gambas-mono/32/scanner.png - comp/src/gb.form.stock/gambas/32/clock.png - comp/src/gb.form.stock/gambas/32/printer.png - comp/src/gb.form.stock/gambas/32/scanner.png - main/gbc/gba.c - main/gbc/gbc.c - main/gbc/gbi.c - main/gbx/gbx_string.c - main/gbx/gbx_string.h View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/7e7f6d5c296c402214ab1983bed5cab3d97af97b...8f5d7b321970f07a7fabb2a562815dec9e4b604b -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/7e7f6d5c296c402214ab1983bed5cab3d97af97b...8f5d7b321970f07a7fabb2a562815dec9e4b604b 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 May 18 09:00:54 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 18 May 2020 07:00:54 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 4 commits: Add new stock icons Message-ID: <5ec232a7a4c92_25383ff576d3a99013242@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: cb505b85 by gambas at 2020-05-18T08:41:46+02:00 Add new stock icons [GB.FORM.STOCK] * NEW: Add new stock icons - - - - - f549fd2e by gambas at 2020-05-18T08:57:36+02:00 New stock icons. Add a Picture property to SliderBox. [GB.FORM] * NEW: ColorChooser: Use icons instead of labels for color components. * NEW: SliderBox: Add a Picture property. * NEW: SliderBox: The default value is now applied when double-clicking on the spinbox, not the slider. * NEW: Add new stock icons. - - - - - faa59619 by gambas at 2020-05-18T08:59:41+02:00 Option dialog: Add a slider for defining the brightness of the background.. [DEVELOPMENT ENVIRONMENT] * NEW: Option dialog: Add a slider for defining the brightness of the background. * BUG: Fix GUI component selector. * NEW: Image editor: Use the new stock icons in the property panel. - - - - - a0aa9f18 by gambas at 2020-05-18T09:00:01+02:00 Use the stock scanner icon as project icon. [GB.SCANNER] * NEW: Use the stock scanner icon as project icon. - - - - - 30 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Editor/Image/FImageProperty.form - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/Options/FOption.class - app/src/gambas3/.src/Options/FOption.form - app/src/gambas3/.src/Project.module - + comp/src/gb.form.stock/gambas-mono/32/blue.png - + comp/src/gb.form.stock/gambas-mono/32/blur.png - + comp/src/gb.form.stock/gambas-mono/32/brightness.png - + comp/src/gb.form.stock/gambas-mono/32/contrast.png - + comp/src/gb.form.stock/gambas-mono/32/gamma.png - + comp/src/gb.form.stock/gambas-mono/32/green.png - + comp/src/gb.form.stock/gambas-mono/32/hue.png - + comp/src/gb.form.stock/gambas-mono/32/lightness.png - + comp/src/gb.form.stock/gambas-mono/32/opacity.png - + comp/src/gb.form.stock/gambas-mono/32/red.png - + comp/src/gb.form.stock/gambas-mono/32/saturation.png - + comp/src/gb.form.stock/gambas-mono/32/transparency.png - + comp/src/gb.form.stock/gambas/32/blue.png - + comp/src/gb.form.stock/gambas/32/blur.png - + comp/src/gb.form.stock/gambas/32/brightness.png - + comp/src/gb.form.stock/gambas/32/contrast.png - + comp/src/gb.form.stock/gambas/32/gamma.png - + comp/src/gb.form.stock/gambas/32/green.png - + comp/src/gb.form.stock/gambas/32/hue.png - + comp/src/gb.form.stock/gambas/32/lightness.png - + comp/src/gb.form.stock/gambas/32/opacity.png - + comp/src/gb.form.stock/gambas/32/red.png - + comp/src/gb.form.stock/gambas/32/saturation.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/8f5d7b321970f07a7fabb2a562815dec9e4b604b...a0aa9f18bfdad6a924385b13e71ef74d3de50a69 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/8f5d7b321970f07a7fabb2a562815dec9e4b604b...a0aa9f18bfdad6a924385b13e71ef74d3de50a69 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 May 18 13:27:13 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 18 May 2020 11:27:13 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 6 commits: Add an API to get the luminance of a color. Message-ID: <5ec27111bd684_3bee3fde739918f888522@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: c99df6c0 by gambas at 2020-05-18T13:22:34+02:00 Add an API to get the luminance of a color. [GB.IMAGE] * NEW: Add an API to get the luminance of a color. [GB.JIT] * NEW: Cosmetic changes. - - - - - a520d12e by gambas at 2020-05-18T13:23:27+02:00 Application.DarkTheme is a new property that returns if the current color scheme is dark. [GB.GTK] * NEW: Application.DarkTheme is a new property that returns if the current color scheme is dark. [GB.GTK3] * NEW: Application.DarkTheme is a new property that returns if the current color scheme is dark. [GB.QT4] * NEW: Application.DarkTheme is a new property that returns if the current color scheme is dark. [GB.QT5] * NEW: Application.DarkTheme is a new property that returns if the current color scheme is dark. - - - - - 0b78bb4f by gambas at 2020-05-18T13:24:16+02:00 New icons and update existing ones. [GB.FORM.STOCK] * NEW: New icons and update existing ones. - - - - - 363b4d37 by gambas at 2020-05-18T13:25:11+02:00 New stock icons. [GB.FORM] * NEW: New stock icons. - - - - - 078a1ab6 by gambas at 2020-05-18T13:25:42+02:00 Use the new Application.DarkTheme property. [GB.GUI.BASE] * NEW: Use the new Application.DarkTheme property. - - - - - b3a79e17 by gambas at 2020-05-18T13:26:25+02:00 Adapt the background image to dark themes automatically. [DEVELOPMENT ENVIRONMENT] * NEW: Use the new stock icons. * NEW: Adapt the background image to dark themes automatically. - - - - - 30 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Editor/Image/FImageEditor.form - app/src/gambas3/.src/Options/CBackground.class - app/src/gambas3/.src/Options/FOption.class - app/src/gambas3/.src/Project.module - app/src/gambas3/img/background/list - + comp/src/gb.form.stock/.hidden/goutte.png - comp/src/gb.form.stock/.src/_DefaultStock.class - comp/src/gb.form.stock/gambas-mono/32/blue.png - comp/src/gb.form.stock/gambas-mono/32/blur.png - comp/src/gb.form.stock/gambas-mono/32/brightness.png - comp/src/gb.form.stock/gambas-mono/32/contrast.png - + comp/src/gb.form.stock/gambas-mono/32/difference.png - + comp/src/gb.form.stock/gambas-mono/32/draw-circle.png - + comp/src/gb.form.stock/gambas-mono/32/draw-line.png - + comp/src/gb.form.stock/gambas-mono/32/draw-path.png - + comp/src/gb.form.stock/gambas-mono/32/draw-rectangle.png - + comp/src/gb.form.stock/gambas-mono/32/draw-text.png - + comp/src/gb.form.stock/gambas-mono/32/exclusive.png - comp/src/gb.form.stock/gambas-mono/32/gamma.png - comp/src/gb.form.stock/gambas-mono/32/green.png - comp/src/gb.form.stock/gambas-mono/32/hue.png - + comp/src/gb.form.stock/gambas-mono/32/intersection.png - comp/src/gb.form.stock/gambas-mono/32/lightness.png - comp/src/gb.form.stock/gambas-mono/32/opacity.png - comp/src/gb.form.stock/gambas-mono/32/red.png - comp/src/gb.form.stock/gambas-mono/32/saturation.png - comp/src/gb.form.stock/gambas-mono/32/transparency.png - + comp/src/gb.form.stock/gambas-mono/32/union.png - comp/src/gb.form.stock/gambas/32/blue.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a0aa9f18bfdad6a924385b13e71ef74d3de50a69...b3a79e176ba8ce6624b9a07ddd70374b8e175073 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a0aa9f18bfdad6a924385b13e71ef74d3de50a69...b3a79e176ba8ce6624b9a07ddd70374b8e175073 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 May 18 15:36:05 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 18 May 2020 13:36:05 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: ListEditor: Add Unique property and Activate event. Message-ID: <5ec28f4629757_201b3fe66855fc60800da@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: cc8ff4fd by gambas at 2020-05-18T15:32:53+02:00 ListEditor: Add Unique property and Activate event. [GB.FORM] * NEW: ListEditor: Unique is a new property that ensures that all ListEditor elements are unique. * NEW: ListEditor: Activate event is now emitted if the user clicks twice on the list. - - - - - 87dc14ee by gambas at 2020-05-18T15:35:28+02:00 The program arguments are now defined through a specific dialog displayed when running the project. [DEVELOPMENT ENVIRONMENT] * NEW: The program arguments are now defined through a specific dialog displayed when running the project. * NEW: Project properties dialog: Remove the 'arguments' tab. - - - - - 15 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.project - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - + app/src/gambas3/.src/Project/FArguments.class - + app/src/gambas3/.src/Project/FArguments.form - app/src/gambas3/.src/Project/FProjectProperty.class - app/src/gambas3/.src/Project/FProjectProperty.form - app/src/gambas3/usage - comp/src/gb.form/.lang/fr.po - comp/src/gb.form/.project - comp/src/gb.form/.src/ListEditor/FListEditor.class - 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/b3a79e176ba8ce6624b9a07ddd70374b8e175073...87dc14eed3f9a2bd0e198ebcf2fc8a18a1c19a9c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/b3a79e176ba8ce6624b9a07ddd70374b8e175073...87dc14eed3f9a2bd0e198ebcf2fc8a18a1c19a9c 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 May 18 17:56:36 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 18 May 2020 15:56:36 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Compile 'gb.form.stock' before 'gb.form' now that is it checked in the... Message-ID: <5ec2b03537abf_76733fae26d01ccc435d9@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2176a507 by gambas at 2020-05-18T17:55:32+02:00 Compile 'gb.form.stock' before 'gb.form' now that is it checked in the 'gb.form' project components. [CONFIGURATION] * BUG: Compile 'gb.form.stock' before 'gb.form' now that is it checked in the 'gb.form' project components. - - - - - 1 changed file: - comp/src/order View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2176a507b1050584823276598ab9daae6b3086e0 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2176a507b1050584823276598ab9daae6b3086e0 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 May 19 10:04:40 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 19 May 2020 08:04:40 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 14 commits: gb.test some changes for integration to IDE et al Message-ID: <5ec39319e46a7_61203ff9712d7bd494719@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 769b6113 by Christof Thalhofer at 2020-05-14T13:08:03+02:00 gb.test some changes for integration to IDE et al [GB.TEST] * NEW: TestRunner.List returns all tests as TestCommand[] * NEW: Test.Main can be triggered to report all tests as string * NEW: TestCommand FromString and ToString to convert TestCopmmands into objects and vice versa - - - - - b445a7e8 by Christof Thalhofer at 2020-05-14T13:15:54+02:00 gb.test integration to the IDE. TestSuites [DEVELOPMENT ENVIRONMENT] * NEW: FTestSuite to configure testsuites and store in project in .tests [GB.TEST] * NEW: testsuites - - - - - fa933ee8 by Christof Thalhofer at 2020-05-14T14:12:10+02:00 small changes FTestSuite Gambas3 did not compile, tests did not occur if not compiled - - - - - 81f17d71 by Christof Thalhofer at 2020-05-14T14:20:08+02:00 gb.test executes all tests with "*" - - - - - 761b3d64 by gambas at 2020-05-17T13:19:24+02:00 Add a project icon. [GB.TEST] * NEW: Add a project icon. * BUG: Fix an english word in 'README.md'. - - - - - 0264dd17 by gambas at 2020-05-17T13:19:24+02:00 WebButton: Don't react to click when disabled. [GB.WEB.GUI] * BUG: WebButton: Don't react to click when disabled. - - - - - 886a403e by gambas at 2020-05-17T13:19:24+02:00 Update many icons. [GB.FORM.STOCK] * NEW: Update many icons. - - - - - ea1c0d2f by Tobias Boege at 2020-05-17T13:19:24+02:00 Make TestRunner.Run return its result [GB.TEST] * BUG: TestRunner.Run returns its result TestStats now. - - - - - d0ee8dd9 by gambas at 2020-05-17T13:19:24+02:00 FileChooser & DirChooser: Custom bookmarks are now correctly refreshed when they change. [GB.FORM] * BUG: FileChooser & DirChooser: Custom bookmarks are now correctly refreshed when they change. * NEW: Add 'unselect' stock icon. - - - - - 608e5f80 by Christof Thalhofer at 2020-05-17T13:19:24+02:00 FTestSuite to organize test [DEVELOPMENT ENVIRONMENT] * NEW: Form FTestSuite to organize test suites [GB.TEST] * OPT: Prints all tests as string with Test.Main(_TRIG_GETTESTS) - - - - - d75f30a1 by Christof Thalhofer at 2020-05-17T13:23:20+02:00 Merge branch 'master' of https://gitlab.com/gambas/gambas into testing-system - - - - - 59beb3ff by Christof Thalhofer at 2020-05-17T13:52:27+02:00 FmMain Debug Testsuites [DEVELOPMENT ENVIRONMENT] * NEW: Menu entry Debug->Testsuites - - - - - b1b0d0a1 by Christof Thalhofer at 2020-05-17T13:54:58+02:00 gb.test testsuites [GB.TEST] * NEW: testsuites in .test - - - - - f1c9ef9a by Beno?t Minisini at 2020-05-19T08:04:38+00:00 Merge branch 'testing-system' into 'master' gb.test integration to the IDE 2nd attempt See merge request gambas/gambas!146 - - - - - 11 changed files: - app/src/gambas3/.project - + app/src/gambas3/.src/Debug/FTestSuite.class - + app/src/gambas3/.src/Debug/FTestSuite.form - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - comp/src/gb.test/.src/TestMe.module - comp/src/gb.test/.src/TestMyself/TestInternals.test - comp/src/gb.test/.src/TestRunner.module - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestCommand.class - + comp/src/gb.test/.tests View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a854c1cc5c379900dd397d12ac2e0bd1d0d8b31a...f1c9ef9a77f7bd818ac61cb239e513df10e13479 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a854c1cc5c379900dd397d12ac2e0bd1d0d8b31a...f1c9ef9a77f7bd818ac61cb239e513df10e13479 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 May 19 10:04:17 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 19 May 2020 08:04:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Update many stock icons, and add new ones. Message-ID: <5ec3930210ddc_4b333fb80bc3d20c562b2@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: af8326ca by gambas at 2020-05-19T10:01:53+02:00 Update many stock icons, and add new ones. [GB.FORM] * NEW: Add new stock icons. [GB.FORM.STOCK] * NEW: Update many stock icons, and add new ones. - - - - - a854c1cc by gambas at 2020-05-19T10:03:42+02:00 Use the new stock icons and remove a debugging message. [DEVELOPMENT ENVIRONMENT] * NEW: Use the new stock icons. * BUG: Remove a debugging message. - - - - - 30 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Editor/Image/FImageEditor.form - app/src/gambas3/.src/Project/FArguments.class - comp/src/gb.form.stock/gambas-mono/32/computer.png - + comp/src/gb.form.stock/gambas-mono/32/crop.png - comp/src/gb.form.stock/gambas-mono/32/font.png - comp/src/gb.form.stock/gambas-mono/32/fullscreen.png - comp/src/gb.form.stock/gambas-mono/32/help.png - comp/src/gb.form.stock/gambas-mono/32/keyboard.png - comp/src/gb.form.stock/gambas-mono/32/opacity.png - comp/src/gb.form.stock/gambas-mono/32/pda.png - comp/src/gb.form.stock/gambas-mono/32/phone.png - + comp/src/gb.form.stock/gambas-mono/32/resize.png - + comp/src/gb.form.stock/gambas-mono/32/rotate.png - comp/src/gb.form.stock/gambas-mono/32/screen.png - comp/src/gb.form.stock/gambas-mono/32/shortcut.png - comp/src/gb.form.stock/gambas-mono/32/spell-check.png - comp/src/gb.form.stock/gambas-mono/32/system.png - comp/src/gb.form.stock/gambas-mono/32/transparency.png - comp/src/gb.form.stock/gambas-mono/32/wizard.png - comp/src/gb.form.stock/gambas/128/font.png - comp/src/gb.form.stock/gambas/32/computer.png - comp/src/gb.form.stock/gambas/32/copy.png - + comp/src/gb.form.stock/gambas/32/crop.png - comp/src/gb.form.stock/gambas/32/cut.png - comp/src/gb.form.stock/gambas/32/font.png - comp/src/gb.form.stock/gambas/32/fullscreen.png - comp/src/gb.form.stock/gambas/32/keyboard.png - comp/src/gb.form.stock/gambas/32/opacity.png - comp/src/gb.form.stock/gambas/32/pda.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2176a507b1050584823276598ab9daae6b3086e0...a854c1cc5c379900dd397d12ac2e0bd1d0d8b31a -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2176a507b1050584823276598ab9daae6b3086e0...a854c1cc5c379900dd397d12ac2e0bd1d0d8b31a 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 May 19 10:54:51 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 19 May 2020 08:54:51 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: ide small fix test suites Message-ID: <5ec39edb98522_553b3fb562c7b968103356@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 29d2e962 by Christof Thalhofer at 2020-05-19T10:49:44+02:00 ide small fix test suites - - - - - cc57058d by Christof Thalhofer at 2020-05-19T10:52:05+02:00 IDE: FTestSuite uses Showcheck - - - - - 3 changed files: - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Debug/FTestSuite.form - app/src/gambas3/.src/FMain.form View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f1c9ef9a77f7bd818ac61cb239e513df10e13479...cc57058d03598560fbf55b2cc8bb7c9c11341ad0 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f1c9ef9a77f7bd818ac61cb239e513df10e13479...cc57058d03598560fbf55b2cc8bb7c9c11341ad0 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 May 19 11:34:14 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 19 May 2020 09:34:14 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] FTestSuite small fix selecttion of tests Message-ID: <5ec3a81729c8b_e9c3fe2afa0c838110220@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 5327e17b by Christof Thalhofer at 2020-05-19T11:30:42+02:00 FTestSuite small fix selecttion of tests - - - - - 1 changed file: - app/src/gambas3/.src/Debug/FTestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5327e17b5e862e2b38640a5736c183ac4f97e402 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5327e17b5e862e2b38640a5736c183ac4f97e402 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 May 19 11:56:56 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 19 May 2020 09:56:56 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] ide: FTestSuite margin Message-ID: <5ec3ad69db5fc_61203ff957df4054103927@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: c47597d7 by Christof Thalhofer at 2020-05-19T11:55:46+02:00 ide: FTestSuite margin - - - - - 2 changed files: - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Debug/FTestSuite.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c47597d7e747093d9afb346211aac188379794da -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c47597d7e747093d9afb346211aac188379794da 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 May 19 22:37:28 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 19 May 2020 20:37:28 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 5 commits: Add Mouse.Click property and fix gb.gtk3 style methods. Message-ID: <5ec44389c0067_34f73fab346a02c463360@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 517fd52b by gambas at 2020-05-19T22:23:02+02:00 Add Mouse.Click property and fix gb.gtk3 style methods. [GB.GTK] * NEW: Mouse.Click is a new property that returns the click index in a multi-click event. * NEW: Style.Name is now lowercase. [GB.GTK3] * NEW: Mouse.Click is a new property that returns the click index in a multi-click event. * NEW: Style.Name is now lowercase. * BUG: Fix Style.PaintCheck() and Style.PaintArrow() for GTK+ >= 3.14. - - - - - 535469a2 by gambas at 2020-05-19T22:25:31+02:00 Add Mouse.Click property. [GB.QT4] * NEW: Mouse.Click is a new property that returns the click index in a multi-click event. * NEW: Style.Name is now lowercase. * BUG: Some theme-specific workarounds for Style paint methods. [GB.QT5] * NEW: Mouse.Click is a new property that returns the click index in a multi-click event. * NEW: Style.Name is now lowercase. * BUG: Some theme-specific workarounds for Style paint methods. - - - - - abac1743 by gambas at 2020-05-19T22:31:14+02:00 TreeView: Enhance behaviour when ShowCheck is set. Use radio buttons in single selection mode. [GB.GUI.BASE] * NEW: TreeView: Use radio buttons when ShowCheck property is set with single selection mode. * NEW: TreeView: Clicking anywhere in the row from the check now toggles it when ShowCheck property is set. - - - - - 9ddc9886 by gambas at 2020-05-19T22:31:51+02:00 ToolBar: Draw a selected border in design mode. [GB.FORM.MDI] * NEW: ToolBar: Draw a selected border in design mode. - - - - - 6a8055cc by gambas at 2020-05-19T22:37:15+02:00 Make some combo-box a bit larger for some widget themes where their contents is cropped. [DEVELOPMENT ENVIRONMENT] * BUG: Option dialog: Make some combo-box a bit larger for some widget themes where their contents is cropped. * NEW: Project properties dialog: Make some combo-box a bit larger for some widget themes where their contents is cropped. - - - - - 21 changed files: - app/src/gambas3/.project - app/src/gambas3/.src/Editor/Image/FImageEditor.form - app/src/gambas3/.src/Options/FOption.form - comp/src/gb.form.mdi/.src/ToolBar/FToolBar.class - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/Test/FScrollArea.class - comp/src/gb.gui.base/.src/Test/FTreeView.class - comp/src/gb.gui.base/.src/Test/FTreeView.form - comp/src/gb.gui.base/.src/TreeView/_TreeView.class - gb.gtk/src/CMouse.cpp - gb.gtk/src/CStyle.cpp - gb.gtk/src/gapplication.cpp - gb.gtk/src/gapplication.h - gb.gtk/src/gmouse.cpp - gb.gtk/src/gmouse.h - gb.gtk/src/widgets.h - gb.qt4/src/CMouse.cpp - gb.qt4/src/CMouse.h - gb.qt4/src/CStyle.cpp - gb.qt4/src/CWidget.cpp View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/c47597d7e747093d9afb346211aac188379794da...6a8055ccc41a196f31bb04d02c6367d69eb4c4d4 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/c47597d7e747093d9afb346211aac188379794da...6a8055ccc41a196f31bb04d02c6367d69eb4c4d4 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 May 20 08:02:59 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Wed, 20 May 2020 06:02:59 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] FTestSuite start with Shift-F4 and rename and del Message-ID: <5ec4c81430af9_2f133ff52b4e40e810567c@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: f072b326 by Christof Thalhofer at 2020-05-20T07:58:46+02:00 FTestSuite start with Shift-F4 and rename and del [DEVELOPMENT ENVIRONMENT] * NEW: Shortcut Shift-F4 to open FTestSuite. * NEW: FTestSuite buttons to delete and rename a test suite. - - - - - 3 changed files: - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Debug/FTestSuite.form - app/src/gambas3/.src/FMain.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f072b32673a6060fbd9ef6ff6cce5a45d3a22c50 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f072b32673a6060fbd9ef6ff6cce5a45d3a22c50 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 May 20 12:01:38 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 20 May 2020 10:01:38 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: TreeView: Fix selection and scrolling behaviour when ShowCheck property is set. Message-ID: <5ec5000466f30_1d413f90c33f70a854914@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: ff5ec088 by gambas at 2020-05-20T11:40:27+02:00 TreeView: Fix selection and scrolling behaviour when ShowCheck property is set. [GB.GUI.BASE] * BUG: TreeView: Fix selection and scrolling behaviour when ShowCheck property is set. - - - - - 8a03cd87 by gambas at 2020-05-20T11:59:56+02:00 Update some icons and add 128 pixels version of some icons. [GB.FORM.STOCK] * NEW: Add 128 pixels version of some icons. * NEW: Update some icons. - - - - - 57db6fa5 by gambas at 2020-05-20T12:00:03+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 30 changed files: - + comp/src/gb.form.stock/.hidden/earth.png - comp/src/gb.form.stock/gambas-mono/32/book.png - comp/src/gb.form.stock/gambas-mono/32/game.png - comp/src/gb.form.stock/gambas-mono/32/harddisk.png - comp/src/gb.form.stock/gambas-mono/32/linux.png - comp/src/gb.form.stock/gambas-mono/32/menu.png - comp/src/gb.form.stock/gambas-mono/32/network.png - comp/src/gb.form.stock/gambas-mono/32/plugin.png - comp/src/gb.form.stock/gambas-mono/32/tools.png - + comp/src/gb.form.stock/gambas/128/book.png - + comp/src/gb.form.stock/gambas/128/camera.png - + comp/src/gb.form.stock/gambas/128/color.png - + comp/src/gb.form.stock/gambas/128/computer.png - + comp/src/gb.form.stock/gambas/128/development.png - + comp/src/gb.form.stock/gambas/128/earth.png - + comp/src/gb.form.stock/gambas/128/game.png - + comp/src/gb.form.stock/gambas/128/help.png - + comp/src/gb.form.stock/gambas/128/internet.png - + comp/src/gb.form.stock/gambas/128/office.png - + comp/src/gb.form.stock/gambas/128/plugin.png - + comp/src/gb.form.stock/gambas/128/science.png - + comp/src/gb.form.stock/gambas/128/server.png - + comp/src/gb.form.stock/gambas/128/tools.png - comp/src/gb.form.stock/gambas/32/book.png - comp/src/gb.form.stock/gambas/32/copy.png - comp/src/gb.form.stock/gambas/32/game.png - comp/src/gb.form.stock/gambas/32/harddisk.png - comp/src/gb.form.stock/gambas/32/linux.png - comp/src/gb.form.stock/gambas/32/menu.png - comp/src/gb.form.stock/gambas/32/mouse.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f072b32673a6060fbd9ef6ff6cce5a45d3a22c50...57db6fa51c270c6215c0ad5b5b86577f3f17fa5f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f072b32673a6060fbd9ef6ff6cce5a45d3a22c50...57db6fa51c270c6215c0ad5b5b86577f3f17fa5f 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 May 20 12:35:17 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Wed, 20 May 2020 10:35:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Get rid of big orange panels. Message-ID: <5ec507e625c97_17063fd3b8a405581983@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 034542f2 by gambas at 2020-05-20T12:35:11+02:00 Get rid of big orange panels. [DEVELOPMENT ENVIRONMENT] * NEW: Get rid of big orange panels. - - - - - 7 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Options/FOption.form - app/src/gambas3/.src/Project/Farm/FSoftwareFarm.class - app/src/gambas3/.src/Project/Farm/FSoftwareFarm.form - app/src/gambas3/.src/Welcome/CCoolButton.class - app/src/gambas3/.src/Welcome/FWelcome.class - app/src/gambas3/.src/Welcome/FWelcome.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/034542f2b8301d02aa52f94d651b309823048c5d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/034542f2b8301d02aa52f94d651b309823048c5d 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 May 21 10:07:17 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 21 May 2020 08:07:17 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Store tests without spaces Message-ID: <5ec636b626f34_23cd3faec68251b84567a@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 7fd9766d by Christof Thalhofer at 2020-05-21T10:04:54+02:00 Store tests without spaces [DEVELOPMENT ENVIRONMENT] * BUG: Store tests as string without spaces in .tests. - - - - - 1 changed file: - app/src/gambas3/.src/Debug/FTestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7fd9766d02a399f44c5e47b79727445092dc5c18 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7fd9766d02a399f44c5e47b79727445092dc5c18 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 May 22 00:28:10 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Thu, 21 May 2020 22:28:10 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 5 commits: MediaPipeline: Play() now takes an extra optional argument that allows not to... Message-ID: <5ec7007a935af_55163fc775309ce874970@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 875fcafa by gambas at 2020-05-21T20:37:44+02:00 MediaPipeline: Play() now takes an extra optional argument that allows not to wait for the command completion. [GB.MEDIA] * NEW: 'GB_MEDIA_DEBUG' is a new environmental variable that toggles warning messages. * NEW: MediaPipeline: Play() now takes an extra optional argument that allows not to wait for the command completion. - - - - - 2e3ffaa8 by gambas at 2020-05-21T20:43:15+02:00 FileProperties: Fix an error triggered by the preview. [GB.FORM] * BUG: FileProperties: Fix an error triggered by the preview. - - - - - 84b2f1bc by gambas at 2020-05-21T20:53:21+02:00 Update many icons and add 128 pixels version of some other ones. [GB.FORM.STOCK] * NEW: Add 128 pixels version of some other icons. * NEW: Update many icons. - - - - - 7295d38d by gambas at 2020-05-22T00:25:24+02:00 Some fixes in image editor and little design changes. [DEVELOPMENT ENVIRONMENT] * NEW: Image editor: Grid configuration is now specific to each editor. * NEW: Image editor: The grid configuration gets a sane default the first time it is toggled. * BUG: Image editor: Resize the information tooltip for large coordinate values. * NEW: Image editor: Draw the grid lines with foreground color. * NEW: Welcome dialog: Use a lighter version of the blue color. * NEW: Welcome dialog: Sound and animation on a few specific dates. :-) * NEW: File creation dialog: Remember the size of new images. * - - - - - 3388dab7 by gambas at 2020-05-22T00:27:49+02:00 Fix how mandatory fields are highlighted by the SetFocus(True) method. [GB.WEB.GUI] * NEW: Store the error log in '/tmp/gambas.XXX/gb.web.gui' directory now. * BUG: Fix how mandatory fields are highlighted by the SetFocus(True) method. - - - - - 30 changed files: - app/src/gambas3/.src/Editor/Image/FImageEditor.class - app/src/gambas3/.src/Editor/Image/FImageProperty.class - app/src/gambas3/.src/Editor/Image/FImageProperty.form - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/CProjectList.class - app/src/gambas3/.src/Project/FCreateFile.class - app/src/gambas3/.src/Project/Farm/FSoftwareFarm.class - + app/src/gambas3/.src/Welcome/CTear.class - app/src/gambas3/.src/Welcome/CWelcome.class - app/src/gambas3/.src/Welcome/FAbout.class - app/src/gambas3/.src/Welcome/FWelcome.class - app/src/gambas3/.src/Welcome/FWelcome.form - + app/src/gambas3/welcome/bells.mp3 - app/src/gambas3/img/welcome/border.png ? app/src/gambas3/welcome/border.png - app/src/gambas3/img/welcome/corner.png ? app/src/gambas3/welcome/corner.png - app/src/gambas3/img/fir.png ? app/src/gambas3/welcome/fir.png - app/src/gambas3/img/snowflake.png ? app/src/gambas3/welcome/snowflake.png - + app/src/gambas3/welcome/spiritus.mp3 - comp/src/gb.form.stock/gambas-mono/32/access.png - comp/src/gb.form.stock/gambas-mono/32/archive.png - comp/src/gb.form.stock/gambas-mono/32/calculator.png - comp/src/gb.form.stock/gambas-mono/32/print.png - comp/src/gb.form.stock/gambas-mono/32/printer.png - comp/src/gb.form.stock/gambas-mono/32/resize.png - comp/src/gb.form.stock/gambas-mono/32/tablet.png - + comp/src/gb.form.stock/gambas/128/access.png - comp/src/gb.form.stock/gambas/128/archive.png - + comp/src/gb.form.stock/gambas/128/calculator.png - + comp/src/gb.form.stock/gambas/128/calendar.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/7fd9766d02a399f44c5e47b79727445092dc5c18...3388dab780d049c48c65694f620f67f7327c3b4e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/7fd9766d02a399f44c5e47b79727445092dc5c18...3388dab780d049c48c65694f620f67f7327c3b4e 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 May 22 10:04:36 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Fri, 22 May 2020 08:04:36 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Testrunner.List throw error on Bail out! Message-ID: <5ec787959bc9a_61493fd95919b370637b6@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 36bb66ec by Christof Thalhofer at 2020-05-22T09:59:14+02:00 Testrunner.List throw error on Bail out! [GB.TEST] * BUG: Testrunner.List throw error when gb.test reported Bail out! - - - - - f706e0e2 by Christof Thalhofer at 2020-05-22T10:02:17+02:00 FTestSuite catch error on start [DEVELOPMENT ENVIRONMENT] * BUG: FTestSuite catch error on start - - - - - 3 changed files: - app/src/gambas3/.src/Debug/FTestSuite.class - comp/src/gb.test/.src/Tap/TapPrinter.class - comp/src/gb.test/.src/TestRunner.module View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/3388dab780d049c48c65694f620f67f7327c3b4e...f706e0e2505fa8da775ae1268c151842877e3977 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/3388dab780d049c48c65694f620f67f7327c3b4e...f706e0e2505fa8da775ae1268c151842877e3977 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 May 22 16:08:19 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Fri, 22 May 2020 14:08:19 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 5 commits: Output a class flag for test modules. Do not generate the '.test' file anymore. Message-ID: <5ec7dcd493027_796a3fc1b942260069714@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 90226032 by gambas at 2020-05-22T16:00:40+02:00 Output a class flag for test modules. Do not generate the '.test' file anymore. [COMPILER] * NEW: Do not generate the '.test' file anymore. * NEW: Output a class flag for test modules. - - - - - f55faede by gambas at 2020-05-22T16:02:12+02:00 ClassStat: Add the flag for test modules. [GB.UTIL] * NEW: ClassStat: Add the flag for test modules. - - - - - d8f4c5a7 by gambas at 2020-05-22T16:02:48+02:00 Redesign the interface between the interpreter and 'gb.test' component. [INTERPRETER] * NEW: Now '-T' option with no argument calls Test._List() method.. * NEW: If '-T' gets an argument, the Test._Run() method is used. * NEW: If '-T' argument is '*', then the Test._RunAll() method is called. - - - - - 7fc56e89 by gambas at 2020-05-22T16:07:50+02:00 Implement the Test._List() method. [GB.TEST] * NEW: Implement the Test._List() method. - - - - - 029cb82e by gambas at 2020-05-22T16:08:07+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 13 changed files: - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.tests - comp/src/gb.util/.src/Class.class - comp/src/gb.util/.src/ClassStat.class - comp/src/gb.util/.src/MMain.module - main/gbc/gbc.c - main/gbc/gbc_compile.h - main/gbc/gbc_header.c - main/gbc/gbc_output.c - main/gbx/Makefile.am - main/gbx/gbx.c - + main/gbx/gbx_test.c - + main/gbx/gbx_test.h View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f706e0e2505fa8da775ae1268c151842877e3977...029cb82ece09139d496b5c86d5ea9236a6f1cad3 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f706e0e2505fa8da775ae1268c151842877e3977...029cb82ece09139d496b5c86d5ea9236a6f1cad3 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 May 22 18:38:31 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Fri, 22 May 2020 16:38:31 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Update some icons and add 128 pixels version of some other ones. Message-ID: <5ec80008e612a_614b3fabb8285f5c8886e@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 367c9b48 by gambas at 2020-05-22T18:38:26+02:00 Update some icons and add 128 pixels version of some other ones. [GB.FORM.STOCK] * NEW: Update some icons. * NEW: Add 128 pixels version of some other icons. - - - - - 16 changed files: - comp/src/gb.form.stock/gambas-mono/32/attach.png - comp/src/gb.form.stock/gambas-mono/32/resize.png - + comp/src/gb.form.stock/gambas/128/bookmark.png - + comp/src/gb.form.stock/gambas/128/download.png - + comp/src/gb.form.stock/gambas/128/edit.png - + comp/src/gb.form.stock/gambas/128/hardware.png - + comp/src/gb.form.stock/gambas/128/new.png - + comp/src/gb.form.stock/gambas/128/open-recent.png - + comp/src/gb.form.stock/gambas/128/open.png - + comp/src/gb.form.stock/gambas/128/phone.png - + comp/src/gb.form.stock/gambas/128/tag.png - + comp/src/gb.form.stock/gambas/128/upload.png - comp/src/gb.form.stock/gambas/32/attach.png - comp/src/gb.form.stock/gambas/32/hardware.png - comp/src/gb.form.stock/gambas/32/phone.png - comp/src/gb.form.stock/gambas/32/resize.png View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/367c9b48c6d8f68a4136230a304dacfd1c0b750f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/367c9b48c6d8f68a4136230a304dacfd1c0b750f 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 May 23 04:32:13 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 23 May 2020 02:32:13 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Redesign the interface between the interpreter and 'gb.test'. Message-ID: <5ec88b2fc5fb_1fd03fbd4198daa81435c@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: f3850aad by gambas at 2020-05-23T04:31:33+02:00 Redesign the interface between the interpreter and 'gb.test'. [INTERPRETER] * NEW: Redesign the interface between the interpreter and 'gb.test'. - - - - - 2 changed files: - main/gbx/gbx.c - main/gbx/gbx_test.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f3850aad1b8f9a48beaea40f27929356bdabbda7 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/f3850aad1b8f9a48beaea40f27929356bdabbda7 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 May 23 12:12:11 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Sat, 23 May 2020 10:12:11 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: gb.test can run tests called by the interpreter Message-ID: <5ec8f6fbc3a44_d633fd03f6791d09736c@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: beb88b48 by Christof Thalhofer at 2020-05-23T08:10:33+02:00 gb.test can run tests called by the interpreter [GB.TEST] * NEW: gb.test can run tests called by the interpreter New methods Test._Add and Test._Run - - - - - 21500e16 by Christof Thalhofer at 2020-05-23T11:52:32+02:00 gb.test plan TestAllAsserts - - - - - ae5dff66 by Christof Thalhofer at 2020-05-23T12:09:34+02:00 gb.test now compatible with the new interpreter calls [GB.TEST] * OPT: Test.Main restored * NEW: Test.Main eats testsuite string * OPT: TestSuite runs TestCases sorted * NEW: Summary Ran: prints normalized testsuite string * NEW: TestCommand compatible with new testsuite string * NEW: Tests for introspection of all tests - - - - - 8 changed files: - comp/src/gb.test/.src/TestMe.module - comp/src/gb.test/.src/TestMyself/TestAllAsserts.test - comp/src/gb.test/.src/TestMyself/TestInternals.test - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestCase.class - comp/src/gb.test/.src/TestSuite/TestCommand.class - comp/src/gb.test/.src/TestSuite/TestSuite.class - ? comp/src/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f3850aad1b8f9a48beaea40f27929356bdabbda7...ae5dff6681f6f0cdcc2c6b2f1c0b3239487354e6 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f3850aad1b8f9a48beaea40f27929356bdabbda7...ae5dff6681f6f0cdcc2c6b2f1c0b3239487354e6 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 May 23 12:24:12 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Sat, 23 May 2020 10:24:12 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test minor fix load component gb.util Message-ID: <5ec8f9cd5f36c_a343f88d92564347876@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: a79bd9d2 by Christof Thalhofer at 2020-05-23T12:22:12+02:00 gb.test minor fix load component gb.util - - - - - 2 changed files: - comp/src/gb.test/.src/TestSuite/Test.module - comp/src/gb.test/.src/TestSuite/TestCommand.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a79bd9d258dbf80f7d2d1e4367b708e275d38f6a -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/a79bd9d258dbf80f7d2d1e4367b708e275d38f6a 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 May 23 14:00:04 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 23 May 2020 12:00:04 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 9 commits: Better default colors. Message-ID: <5ec9104617dda_6d13f7e29dfc384136b9@sidekiq-low-urgency-cpu-bound-09-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 7b4b6b31 by gambas at 2020-05-23T09:36:37+02:00 Better default colors. [GB.FORM.TERMINAL] * NEW: Better default colors. - - - - - c5ff52f6 by gambas at 2020-05-23T10:02:02+02:00 Modal windows are now actually modal before entering their Open event. [GB.QT4] * BUG: Modal windows are now actually modal before entering their Open event. [GB.QT5] * BUG: Modal windows are now actually modal before entering their Open event. - - - - - 4739ef78 by gambas at 2020-05-23T12:28:45+02:00 New dark theme color inversion algorithm and new Color.Invert() method. [GB.IMAGE] * NEW: New dark theme color inversion algorithm. * NEW: Color.Invert() is a new method to invert a color. - - - - - 5feb51a7 by gambas at 2020-05-23T12:44:38+02:00 Picture[] now automatically inverts the image for dark themes. [GB.GUI.BASE] * NEW: Picture[] now automatically inverts the image for dark themes. - - - - - 87439726 by gambas at 2020-05-23T12:45:36+02:00 Bold text is made bolder when the background is dark. [GB.FORM.EDITOR] * NEW: Bold text is made bolder when the background is dark. - - - - - fc115b03 by gambas at 2020-05-23T12:46:29+02:00 Redraw the 'halt' icon. [GB.FORM.STOCK] * NEW: Redraw the 'halt' icon. - - - - - 68453b4b by gambas at 2020-05-23T13:59:21+02:00 A few bug fixes and dark theme support enhancements. [DEVELOPMENT ENVIRONMENT] * NEW: Code editor: when inserting a color, the color dialog is now initialized with the hexadecimal value under the cursor if any. * BUG: File properties dialog: the revert changes button is now only visible when the change tabs is displayed. * BUG: The "Show just-in-time compiler debugging messages" menu in now correctly checked when needed. * NEW: The background image now adapts better to dark themes. * NEW: Run tests with '-T *' now. - - - - - 5bc620c5 by gambas at 2020-05-23T13:59:37+02:00 Redraw 'halt' icon again. [GB.FORM.STOCK] * NEW: Redraw 'halt' icon again. - - - - - b37f67dd by gambas at 2020-05-23T13:59:54+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 29 changed files: - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Dialog/FColorChooser.class - app/src/gambas3/.src/Dialog/FFileProperty.class - app/src/gambas3/.src/Editor/CInsertColor.class - app/src/gambas3/.src/Editor/Code/FEditor.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/Options/FOption.class - app/src/gambas3/.src/Options/FOption.form - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FOpenProject.class - app/src/gambas3/.src/Project/ProjectBox.class - app/src/gambas3/.src/Welcome/FWelcome.class - comp/src/gb.form.editor/.src/TextEditor.class - comp/src/gb.form.editor/.src/_TextEditor_Styles.class - comp/src/gb.form.stock/gambas-mono/32/halt.png - comp/src/gb.form.stock/gambas/32/halt.png - ? comp/src/gb.form.terminal/.mc.menu - comp/src/gb.form.terminal/.src/TerminalView/TerminalFilter_VT100.class - comp/src/gb.form.terminal/.src/TerminalView/TerminalScreen.class - comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class - comp/src/gb.form.terminal/.src/TerminalView/test/FTestTerminalView.class - comp/src/gb.form.terminal/.src/TerminalView/test/FTestTerminalView.form - comp/src/gb.gui.base/.src/Picture.class - gb.qt4/src/CWindow.cpp - gb.qt4/src/CWindow.h - main/lib/image/CImage.c - main/lib/image/c_color.c - main/lib/image/c_color.h - main/lib/image/image.c View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a79bd9d258dbf80f7d2d1e4367b708e275d38f6a...b37f67dd29714dc7957aa515ad81e13c5adb9ec8 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/a79bd9d258dbf80f7d2d1e4367b708e275d38f6a...b37f67dd29714dc7957aa515ad81e13c5adb9ec8 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 May 24 23:36:33 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 24 May 2020 21:36:33 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] TreeView: Fix multiple selection. Message-ID: <5ecae8e2cbdd6_a323fdd31a4122888928@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 7ae7d405 by gambas at 2020-05-24T23:36:27+02:00 TreeView: Fix multiple selection. [GB.GUI.BASE] * BUG: TreeView: Fix multiple selection. * BUG: TreeView: Calling Add() or Remove() now automatically cancels the current renaming. - - - - - 8 changed files: - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/GridView/GridViewSelection.class - comp/src/gb.gui.base/.src/GridView/_GridView_Rows.class - comp/src/gb.gui.base/.src/Test/FListBox.class - comp/src/gb.gui.base/.src/Test/FTreeView.class - comp/src/gb.gui.base/.src/Test/FTreeView.form - + comp/src/gb.gui.base/.src/TreeView/TreeViewSelection.class - comp/src/gb.gui.base/.src/TreeView/_TreeView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7ae7d405e61ea2a9fad500974581580dcc2d773a -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7ae7d405e61ea2a9fad500974581580dcc2d773a 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 May 24 23:53:11 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sun, 24 May 2020 21:53:11 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] ButtonBox: Filter icons are now a little darker. Message-ID: <5ecaeccb38c53_36ae3fe427a1afcc97240@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: cd6a30b0 by gambas at 2020-05-24T23:53:05+02:00 ButtonBox: Filter icons are now a little darker. [GB.FORM] * NEW: ButtonBox: Filter icons are now a little darker. - - - - - 3 changed files: - comp/src/gb.form/.src/Test/FTestFileChooser.class - comp/src/gb.form/img/32/filter-menu.png - comp/src/gb.form/img/32/filter.png View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/cd6a30b0150582de55902e0cd7b9a5c11ea8630e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/cd6a30b0150582de55902e0cd7b9a5c11ea8630e 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 May 25 11:02:50 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 09:02:50 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Redesign the test suites configuration dialog. Message-ID: <5ecb89bb420f1_2bf73f8b6a1322f43372c@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 277c8492 by gambas at 2020-05-24T23:56:43+02:00 Redesign the test suites configuration dialog. [DEVELOPMENT ENVIRONMENT] * NEW: Redesign the test suites configuration dialog. Not fully finished yet. * NEW: Test suites are now stored in the '.test' file instead of '.tests'. * NEW: Redraw the class symbols icons, and make them adapt to the desktop font size. * NEW: Options dialog: The invert colors option is now active only on dark themes. - - - - - 234b28c2 by gambas at 2020-05-25T11:02:44+02:00 Selecting while moving the mouse cursor now raises the Select event only when the mouse button is depressed. [GB.GUI.BASE] * NEW: GridView: Selecting while moving the mouse cursor now raises the Select event only when the mouse button is depressed. * BUG: TreeView: Setting the Key value with an unknown key now unselects the current key. - - - - - 30 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.project - app/src/gambas3/.src/Component/CSymbolInfo.class - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FDebugInfo.class - + app/src/gambas3/.src/Debug/FTestSuite2.class - + app/src/gambas3/.src/Debug/FTestSuite2.form - app/src/gambas3/.src/Editor/Code/FCompletion.class - app/src/gambas3/.src/Editor/Code/FProcedureList.class - app/src/gambas3/.src/FMain.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/MTheme.module - app/src/gambas3/.src/Options/FOption.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/CProjectTree.class - ? app/src/gambas3/.src/Project/FTest.class - ? app/src/gambas3/.src/Project/FTest.form - app/src/gambas3/img/symbol/constant.png - app/src/gambas3/img/symbol/control.png - app/src/gambas3/img/symbol/event.png - app/src/gambas3/img/symbol/method.png - app/src/gambas3/img/symbol/property-ro.png - app/src/gambas3/img/symbol/property.png - app/src/gambas3/img/symbol/s-method.png - app/src/gambas3/img/symbol/s-property-ro.png - app/src/gambas3/img/symbol/s-property.png - + app/src/gambas3/img/symbol/s-special.png - app/src/gambas3/img/symbol/s-variable.png - app/src/gambas3/img/symbol/special.png - app/src/gambas3/img/symbol/symbol.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/cd6a30b0150582de55902e0cd7b9a5c11ea8630e...234b28c236946ae1b05baabf328933e702993dc2 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/cd6a30b0150582de55902e0cd7b9a5c11ea8630e...234b28c236946ae1b05baabf328933e702993dc2 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 May 25 11:08:57 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 09:08:57 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Test._List() now returns a comma-separated list. Message-ID: <5ecb8b295b9aa_73c03fc426873c089577c@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 5e5bf82f by gambas at 2020-05-25T11:08:21+02:00 Test._List() now returns a comma-separated list. [GB.TEST] * NEW: Test._List() now returns a comma-separated list. - - - - - 1 changed file: - comp/src/gb.test/.src/TestSuite/Test.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5e5bf82f7bd1e49aeddf57970667ffd670aef0ae -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5e5bf82f7bd1e49aeddf57970667ffd670aef0ae 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 May 25 11:10:04 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 09:10:04 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Finish the redesign of the test suites configuration dialog. Message-ID: <5ecb8b6d5d5bc_73c03fc40d244698962a7@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: bed5d518 by gambas at 2020-05-25T11:09:56+02:00 Finish the redesign of the test suites configuration dialog. [DEVELOPMENT ENVIRONMENT] * NEW: Finish the redesign of the test suites configuration dialog. * NEW: The test suite selected in the configuration dialog is now used for running the tests. - - - - - 9 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Debug/FTestSuite.form - ? app/src/gambas3/.src/Debug/FTestSuite2.class - ? app/src/gambas3/.src/Debug/FTestSuite2.form - + app/src/gambas3/.src/Debug/FTestSuiteOld.class - + app/src/gambas3/.src/Debug/FTestSuiteOld.form - app/src/gambas3/.src/FMain.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/bed5d518f5032f2966993911f900f6620b0bd69d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/bed5d518f5032f2966993911f900f6620b0bd69d 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 May 25 11:49:46 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 09:49:46 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Less intrusive message when the tests have failed. Message-ID: <5ecb94bb1898f_34c73fadfb7349f057366@sidekiq-low-urgency-cpu-bound-06-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 9077d63f by gambas at 2020-05-25T11:49:43+02:00 Less intrusive message when the tests have failed. [DEVELOPMENT ENVIRONMENT] * BUG: Less intrusive message when the tests have failed. - - - - - 5 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.project - app/src/gambas3/.src/Debug/Design.module - app/src/gambas3/.src/Debug/FDebugButton.class - app/src/gambas3/.src/Project.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9077d63f833739b33a2991504eb29d0ab506646f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9077d63f833739b33a2991504eb29d0ab506646f 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 May 25 11:51:20 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 09:51:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Classes passed to 'gbx3 -T' that are not test modules are silently ignored. Message-ID: <5ecb951932b0b_2bf03fa96c2415e47522c@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 3737b089 by gambas at 2020-05-25T11:50:12+02:00 Classes passed to 'gbx3 -T' that are not test modules are silently ignored. [INTERPRETER] * NEW: Classes passed to 'gbx3 -T' that are not test modules are silently ignored. - - - - - 3 changed files: - main/gbx/gbx_class.h - main/gbx/gbx_class_load.c - main/gbx/gbx_test.c View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/3737b08904f6501b54487f4ecfc2504f131f48a8 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/3737b08904f6501b54487f4ecfc2504f131f48a8 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 May 25 19:21:53 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 17:21:53 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Test suites dialog: Add keyboard shortcuts and fix some bugs. Message-ID: <5ecbfeb2ddc07_5c7a3fe68e3a68bc75581@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 4bad4bb2 by gambas at 2020-05-25T19:21:48+02:00 Test suites dialog: Add keyboard shortcuts and fix some bugs. [DEVELOPMENT ENVIRONMENT] * NEW: Test suites dialog: Add keyboard shortcuts and fix some bugs. - - - - - 3 changed files: - app/src/gambas3/.lang/fr.po - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Debug/FTestSuite.form View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4bad4bb26e4d9ca9f7a7cc3ea44f8054626bd715 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/4bad4bb26e4d9ca9f7a7cc3ea44f8054626bd715 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 May 25 21:24:54 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Mon, 25 May 2020 19:24:54 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] Move 'gb.test' sources in '/main/lib'. Message-ID: <5ecc1b882628f_51933ff755ab403c337e2@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 5004f206 by gambas at 2020-05-25T21:24:28+02:00 Move 'gb.test' sources in '/main/lib'. [INTERPRETER] * NEW: Remove the now useless testing specific code. * NEW: 'gbx3 -T' now just loads the 'gb.test' component and calls Test.Main() passing it the '-T' option argument. [GB.TEST] * NEW: Move 'gb.test' sources in '/main/lib'. * NEW: 'gb.test' has now a part written in C that allows him to load project classes on demand. - - - - - 30 changed files: - comp/src/order - main/configure.ac - main/gbx/Makefile.am - main/gbx/gbx.c - main/lib/Makefile.am - + main/lib/test/Makefile.am - + main/lib/test/gb.test.component - comp/src/gb.test/.component ? main/lib/test/gb.test/.component - comp/src/gb.test/.directory ? main/lib/test/gb.test/.directory - comp/src/gb.test/.hidden/CHANGELOG ? main/lib/test/gb.test/.hidden/CHANGELOG - comp/src/gb.test/.hidden/flowchart.fodg ? main/lib/test/gb.test/.hidden/flowchart.fodg - comp/src/gb.test/.hidden/flowchart.svg ? main/lib/test/gb.test/.hidden/flowchart.svg - comp/src/gb.test/.hidden/gb.test.png ? main/lib/test/gb.test/.hidden/gb.test.png - comp/src/gb.test/.hidden/summary-example.txt ? main/lib/test/gb.test/.hidden/summary-example.txt - comp/src/gb.test/.icon.png ? main/lib/test/gb.test/.icon.png - comp/src/gb.test/.lang/de.po ? main/lib/test/gb.test/.lang/de.po - comp/src/gb.test/.lang/it.po ? main/lib/test/gb.test/.lang/it.po - comp/src/gb.test/.project ? main/lib/test/gb.test/.project - comp/src/gb.test/.src/Tap/TapContext.class ? main/lib/test/gb.test/.src/Tap/TapContext.class - comp/src/gb.test/.src/Tap/TapParser.class ? main/lib/test/gb.test/.src/Tap/TapParser.class - comp/src/gb.test/.src/Tap/TapPrinter.class ? main/lib/test/gb.test/.src/Tap/TapPrinter.class - comp/src/gb.test/.src/TestAssertion.class ? main/lib/test/gb.test/.src/TestAssertion.class - comp/src/gb.test/.src/TestMe.module ? main/lib/test/gb.test/.src/TestMe.module - comp/src/gb.test/.src/TestMyself/TestAllAsserts.test ? main/lib/test/gb.test/.src/TestMyself/TestAllAsserts.test - comp/src/gb.test/.src/TestMyself/TestBailout.test ? main/lib/test/gb.test/.src/TestMyself/TestBailout.test - comp/src/gb.test/.src/TestMyself/TestCrashes.test ? main/lib/test/gb.test/.src/TestMyself/TestCrashes.test - comp/src/gb.test/.src/TestMyself/TestElse.test ? main/lib/test/gb.test/.src/TestMyself/TestElse.test - comp/src/gb.test/.src/TestMyself/TestEmpty.test ? main/lib/test/gb.test/.src/TestMyself/TestEmpty.test - comp/src/gb.test/.src/TestMyself/TestError.test ? main/lib/test/gb.test/.src/TestMyself/TestError.test - comp/src/gb.test/.src/TestMyself/TestFailures.test ? main/lib/test/gb.test/.src/TestMyself/TestFailures.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5004f20609818a280420ac8c208b01e176f78b85 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/5004f20609818a280420ac8c208b01e176f78b85 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 May 26 09:58:53 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 07:58:53 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: gb.test cleanup Message-ID: <5ecccc40bd0c5_7ef43fe4667af4c4693d4@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 76419e21 by Christof Thalhofer at 2020-05-26T09:54:43+02:00 gb.test cleanup - - - - - fd319869 by Christof Thalhofer at 2020-05-26T09:55:56+02:00 gb.test further tasks to be done - - - - - 5 changed files: - + main/lib/test/gb.test/.src/TestMyself/TestWrongPlan.test - main/lib/test/gb.test/.src/TestSuite/Test.module - main/lib/test/gb.test/.src/TestSuite/TestCase.class - main/lib/test/gb.test/.test - main/lib/test/gb.test/taskell.md View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5004f20609818a280420ac8c208b01e176f78b85...fd319869428ecee457b35f0f865233ba8dca8ad2 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/5004f20609818a280420ac8c208b01e176f78b85...fd319869428ecee457b35f0f865233ba8dca8ad2 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 May 26 11:42:37 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 09:42:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test fixed selftest Message-ID: <5ecce48f1d74d_11673f8076c7901c160250@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: b0f6c7d4 by Christof Thalhofer at 2020-05-26T11:41:32+02:00 gb.test fixed selftest - - - - - 2 changed files: - main/lib/test/gb.test/.src/TestMyself/TestInternals.test - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/b0f6c7d475e493c65356f76ac3d61a0a45c62aa4 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/b0f6c7d475e493c65356f76ac3d61a0a45c62aa4 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 May 26 13:17:59 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 26 May 2020 11:17:59 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 3 commits: Add 'text-lower' and 'text-upper' stock icons. Message-ID: <5eccfae7a00a8_43a33fc15ab504cc795dc@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: fcf85dd1 by gambas at 2020-05-26T13:16:46+02:00 Add 'text-lower' and 'text-upper' stock icons. [GB.FORM.STOCK] * NEW: Add 'text-lower' and 'text-upper' stock icons. - - - - - 11f450f8 by gambas at 2020-05-26T13:17:13+02:00 Add 'text-lower' and 'text-upper' stock icons. [GB.FORM] * NEW: Add 'text-lower' and 'text-upper' stock icons. - - - - - 8c962c9b by gambas at 2020-05-26T13:17:54+02:00 Remove the old test suite configuration dialog. [DEVELOPMENT ENVIRONMENT] * BUG: Remove the old test suite configuration dialog. - - - - - 10 changed files: - app/src/gambas3/.src/Debug/FDebugButton.class - ? app/src/gambas3/.src/Debug/FTestSuiteOld.class - ? app/src/gambas3/.src/Debug/FTestSuiteOld.form - app/src/gambas3/.src/Editor/Code/FEditor.form - app/src/gambas3/.src/Editor/Code/FTextEditor.form - + comp/src/gb.form.stock/gambas-mono/32/text-lower.png - + comp/src/gb.form.stock/gambas-mono/32/text-upper.png - + comp/src/gb.form.stock/gambas/32/text-lower.png - + comp/src/gb.form.stock/gambas/32/text-upper.png - comp/src/gb.form/map/icon.map View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/b0f6c7d475e493c65356f76ac3d61a0a45c62aa4...8c962c9b89d95b55b8d2ec8afc538c5186cda83d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/b0f6c7d475e493c65356f76ac3d61a0a45c62aa4...8c962c9b89d95b55b8d2ec8afc538c5186cda83d 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 May 26 13:19:37 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 26 May 2020 11:19:37 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] GridView: Click event works again. Message-ID: <5eccfb4aa7603_609a3ff5e74274cc9966a@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 2f8fccb4 by gambas at 2020-05-26T13:18:46+02:00 GridView: Click event works again. [GB.GUI.BASE] * BUG: GridView: Click event works again. - - - - - 3 changed files: - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/Test/FGridView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2f8fccb48ba1d39ebbfc39bd1b6d8a7445914155 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/2f8fccb48ba1d39ebbfc39bd1b6d8a7445914155 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 May 26 15:32:25 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 13:32:25 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: gbtest refactoring Message-ID: <5ecd1a6b115cc_61983fb878a64a6c723c6@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 9ad850e9 by Christof Thalhofer at 2020-05-26T15:25:39+02:00 gbtest refactoring [GB.TEST] * OPT: Reduce the number of occurences of '__Test.Load(TestModule)' from 4 to 2 - - - - - 449c2772 by Christof Thalhofer at 2020-05-26T15:31:33+02:00 Merge branch 'refactorgbtest' - - - - - 2 changed files: - main/lib/test/gb.test/.src/TestMe.module - main/lib/test/gb.test/.src/TestSuite/Test.module View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2f8fccb48ba1d39ebbfc39bd1b6d8a7445914155...449c2772cfe50686fee9d8f70b9f5920b3d7e478 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/2f8fccb48ba1d39ebbfc39bd1b6d8a7445914155...449c2772cfe50686fee9d8f70b9f5920b3d7e478 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 May 26 20:51:45 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 18:51:45 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: gb.test print all testcases Message-ID: <5ecd65431cf86_6403ff5aaea0080575dd@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 1130e4aa by Christof Thalhofer at 2020-05-26T20:07:58+02:00 gb.test print all testcases [GB.TEST] * NEW: Print all tests as test suite string - - - - - fc452570 by Christof Thalhofer at 2020-05-26T20:45:18+02:00 gb.test rename test modules [GB.TEST] * OPT: rename testmodules and methods in them, get rid of such a lot "Test" - - - - - 15 changed files: - main/lib/test/gb.test/.src/TestMe.module - main/lib/test/gb.test/.src/TestMyself/TestAllAsserts.test ? main/lib/test/gb.test/.src/TestMyself/TAllAsserts.test - main/lib/test/gb.test/.src/TestMyself/TestBailout.test ? main/lib/test/gb.test/.src/TestMyself/TBailout.test - main/lib/test/gb.test/.src/TestMyself/TestCrashes.test ? main/lib/test/gb.test/.src/TestMyself/TCrashes.test - main/lib/test/gb.test/.src/TestMyself/TestElse.test ? main/lib/test/gb.test/.src/TestMyself/TElse.test - main/lib/test/gb.test/.src/TestMyself/TestEmpty.test ? main/lib/test/gb.test/.src/TestMyself/TEmpty.test - main/lib/test/gb.test/.src/TestMyself/TestError.test ? main/lib/test/gb.test/.src/TestMyself/TError.test - main/lib/test/gb.test/.src/TestMyself/TestFailures.test ? main/lib/test/gb.test/.src/TestMyself/TFailures.test - main/lib/test/gb.test/.src/TestMyself/TestInternals.test ? main/lib/test/gb.test/.src/TestMyself/TInternals.test - main/lib/test/gb.test/.src/TestMyself/TestSetup.test ? main/lib/test/gb.test/.src/TestMyself/TSetup.test - main/lib/test/gb.test/.src/TestMyself/TestSummary.test ? main/lib/test/gb.test/.src/TestMyself/TSummary.test - main/lib/test/gb.test/.src/TestMyself/TestWrongPlan.test ? main/lib/test/gb.test/.src/TestMyself/TWrongPlan.test - main/lib/test/gb.test/.src/TestSuite/Test.module - main/lib/test/gb.test/.src/TestSuite/TestSuite.class - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/449c2772cfe50686fee9d8f70b9f5920b3d7e478...fc4525708ab3c3aea41a63450fb71deafbff9017 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/449c2772cfe50686fee9d8f70b9f5920b3d7e478...fc4525708ab3c3aea41a63450fb71deafbff9017 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 May 26 21:45:43 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 19:45:43 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test: unittesthelloworld-1.0.0.tar.gz example Message-ID: <5ecd71ef1c2bb_3d6f3f8c2c3ca65c90621@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 9906661c by Christof Thalhofer at 2020-05-26T21:41:29+02:00 gb.test: unittesthelloworld-1.0.0.tar.gz example [GB.TEST] * OPT: unittesthelloworld example * OPT: Class TestMe just to be used for dev - - - - - 3 changed files: - main/lib/test/gb.test/.src/TestMe.module - ? main/lib/test/gb.test/unittesthelloworld-0.0.9.tar.gz - + main/lib/test/gb.test/unittesthelloworld-1.0.0.tar.gz View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9906661c7efc2362ba2ec1a49978799847a21853 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/9906661c7efc2362ba2ec1a49978799847a21853 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 May 26 21:50:08 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 19:50:08 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] FTestSuite rename with doubleclick Message-ID: <5ecd72f0b76d4_5f613ff120aafb303307@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 56ea4ae6 by Christof Thalhofer at 2020-05-26T21:49:13+02:00 FTestSuite rename with doubleclick - - - - - 1 changed file: - app/src/gambas3/.src/Debug/FTestSuite.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/56ea4ae6ddd291ee83fec7dcc42a9e952178e9d4 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/56ea4ae6ddd291ee83fec7dcc42a9e952178e9d4 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 May 26 22:21:16 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 26 May 2020 20:21:16 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 7 commits: Settings.Clear() now takes an extra optional boolean argument that tells to... Message-ID: <5ecd7a3d34bf_3d6f3f8c1c575b1092080@sidekiq-low-urgency-cpu-bound-03-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 8502e055 by gambas at 2020-05-26T20:37:29+02:00 Settings.Clear() now takes an extra optional boolean argument that tells to remove slots recursively. [GB.SETTINGS] * NEW: Settings.Clear() now takes an extra optional boolean argument that tells to remove slots recursively. - - - - - 2132e389 by gambas at 2020-05-26T21:17:40+02:00 Better default colors. [GB.FORM.TERMINAL] * NEW: Better default colors. - - - - - ab17229e by gambas at 2020-05-26T21:19:53+02:00 Test suites configuratino file is correctly cleaned up on save. [DEVELOPMENT ENVIRONMENT] * BUG: Test suites configuratino file is correctly cleaned up on save. * NEW: Toolbox controls icons now adapt to dark themes. * NEW: Start to clean up the image directory. - - - - - 348e587c by gambas at 2020-05-26T22:11:41+02:00 Add 'key' stock icon. [GB.FORM] * NEW: Add 'key' stock icon. [GB.FORM.STOCK] * NEW: Add 'key' stock icon. * NEW: Fix a few icons. - - - - - f91f8dc1 by gambas at 2020-05-26T22:12:41+02:00 Remove some useless icons and use the new 'key' stock icon. [DEVELOPMENT ENVIRONMENT] * NEW: Remove some useless icons. * NEW: Use the new 'key' stock icon. - - - - - ac91967c by gambas at 2020-05-26T22:14:01+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - e3a7d385 by gambas at 2020-05-26T22:20:37+02:00 Fix a crash in toolbox control icons generation. [DEVELOPMENT ENVIRONMENT] * BUG: Fix a crash in toolbox control icons generation. - - - - - 30 changed files: - app/src/gambas3/.src/Debug/FTestSuite.class - app/src/gambas3/.src/Editor/Connection/FConnectionEditor.class - app/src/gambas3/.src/Editor/Form/CControl.class - app/src/gambas3/.src/FMain.form - app/src/gambas3/.src/Help/HelpView.class - app/src/gambas3/.src/Project.module - app/src/gambas3/.src/Project/FArguments.form - ? app/src/gambas3/img/16/arrange-h-dark.png - ? app/src/gambas3/img/16/arrange-hcenter-dark.png - ? app/src/gambas3/img/16/arrange-lr-dark.png - ? app/src/gambas3/img/16/arrange-tb-dark.png - ? app/src/gambas3/img/16/arrange-v-dark.png - ? app/src/gambas3/img/16/arrange-vcenter-dark.png - ? app/src/gambas3/img/16/average-dark.png - app/src/gambas3/img/16/average.png - ? app/src/gambas3/img/16/checked-dark.png - ? app/src/gambas3/img/16/checked-gray-dark.png - ? app/src/gambas3/img/16/checked-lock-dark.png - app/src/gambas3/img/16/checked-lock.png - app/src/gambas3/img/16/checked.png - ? app/src/gambas3/img/16/delete-container-dark.png - ? app/src/gambas3/img/16/do-not-translate.png - ? app/src/gambas3/img/16/embed-container-dark.png - ? app/src/gambas3/img/16/key.png - ? app/src/gambas3/img/16/lcase-dark.png - ? app/src/gambas3/img/16/lcase.png - ? app/src/gambas3/img/16/percent-dark.png - app/src/gambas3/img/16/percent.png - ? app/src/gambas3/img/16/stack-dark.png - ? app/src/gambas3/img/16/toggle-container-dark.png View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/56ea4ae6ddd291ee83fec7dcc42a9e952178e9d4...e3a7d385970b4c9c917cf3e911bc6725175a56b5 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/56ea4ae6ddd291ee83fec7dcc42a9e952178e9d4...e3a7d385970b4c9c917cf3e911bc6725175a56b5 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 May 26 22:32:23 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Tue, 26 May 2020 20:32:23 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: authors file email of christof Message-ID: <5ecd7cd9453a9_301c3fa6d1462bf442868@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 65fdca24 by Christof Thalhofer at 2020-05-26T22:28:48+02:00 authors file email of christof - - - - - adf0a1ff by Christof Thalhofer at 2020-05-26T22:29:53+02:00 Merge branch 'master' of https://gitlab.com/gambas/gambas - - - - - 1 changed file: - AUTHORS View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e3a7d385970b4c9c917cf3e911bc6725175a56b5...adf0a1ff1a41a7713664fc644920b3b453fea2dd -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/e3a7d385970b4c9c917cf3e911bc6725175a56b5...adf0a1ff1a41a7713664fc644920b3b453fea2dd 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 May 26 22:58:32 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 26 May 2020 20:58:32 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 2 commits: Fix TreeView MouseDown event and GridView Select event. Message-ID: <5ecd82f8bc005_34ec3fb10f646900417d2@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: ed27b8cd by gambas at 2020-05-26T22:57:17+02:00 Fix TreeView MouseDown event and GridView Select event. [GB.GUI.BASE] * BUG: TreeView: MouseDown event is raised again. * BUG: GridView: Select event is not raised twice on click anymore. - - - - - d3e36e78 by gambas at 2020-05-26T22:58:21+02:00 Merge branch 'master' of gitlab.com:gambas/gambas - - - - - 5 changed files: - comp/src/gb.gui.base/.project - comp/src/gb.gui.base/.src/GridView/GridView.class - comp/src/gb.gui.base/.src/Test/FGridView.class - comp/src/gb.gui.base/.src/Test/FGridView.form - comp/src/gb.gui.base/.src/Test/FTreeView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/adf0a1ff1a41a7713664fc644920b3b453fea2dd...d3e36e78c16c161850333eb237a23dfc44265b00 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/adf0a1ff1a41a7713664fc644920b3b453fea2dd...d3e36e78c16c161850333eb237a23dfc44265b00 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 May 26 23:05:26 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Tue, 26 May 2020 21:05:26 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] TreeView: The Selection property now handle single selection mode correctly. Message-ID: <5ecd8498fb9b_6e103fe2d09852048198@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: e447aa17 by gambas at 2020-05-26T23:04:03+02:00 TreeView: The Selection property now handle single selection mode correctly. [GB.GUI.BASE] * BUG: TreeView: The Selection property now handle single selection mode correctly. - - - - - 1 changed file: - comp/src/gb.gui.base/.src/TreeView/_TreeView.class View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/e447aa178dd3663812b8384562cd4b55d81e980c -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/e447aa178dd3663812b8384562cd4b55d81e980c 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 May 27 14:29:35 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Wed, 27 May 2020 12:29:35 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test: Run test suite by name Message-ID: <5ece5d2fbc775_503a3fa2d1ae8a7c2835d@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 024417bc by Christof Thalhofer at 2020-05-27T14:27:38+02:00 gb.test: Run test suite by name [GB.TEST] * new: Run test suite by name - - - - - 5 changed files: - main/lib/test/gb.test/.src/TestMyself/TInternals.test - + main/lib/test/gb.test/.src/TestSuite/MTest.module - main/lib/test/gb.test/.src/TestSuite/Test.module - main/lib/test/gb.test/.src/TestSuite/TestCommand.class - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/024417bcffc870b11ac4dac6fb8341c4e41c437e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/024417bcffc870b11ac4dac6fb8341c4e41c437e 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 May 27 20:58:40 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Wed, 27 May 2020 18:58:40 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test run testsuite by name from settings Message-ID: <5eceb8607a416_503c3f938d0af55482016@sidekiq-low-urgency-cpu-bound-04-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 315c383a by Christof Thalhofer at 2020-05-27T20:56:33+02:00 gb.test run testsuite by name from settings [GB.TEST] * OPT: gb.test: Run test suite by name from settings - - - - - 3 changed files: - main/lib/test/gb.test/.project - main/lib/test/gb.test/.src/TestSuite/MTest.module - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/315c383a4d2a7b21a93c0f7373b966573b3d8158 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/315c383a4d2a7b21a93c0f7373b966573b3d8158 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 May 28 09:32:15 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 28 May 2020 07:32:15 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test Skip and Todo from Assert to Test Message-ID: <5ecf69009d284_3a493fe32ab92d9427927@sidekiq-low-urgency-cpu-bound-01-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: c0b7e7db by Christof Thalhofer at 2020-05-28T09:30:15+02:00 gb.test Skip and Todo from Assert to Test [GB.TEST] * NEW: Skip and Todo from Assert to Test - - - - - 6 changed files: - main/lib/test/gb.test/.src/TestMyself/TAllAsserts.test - main/lib/test/gb.test/.src/TestMyself/TSummary.test - main/lib/test/gb.test/.src/TestSuite/Assert.module - main/lib/test/gb.test/.src/TestSuite/Test.module - main/lib/test/gb.test/.test - main/lib/test/gb.test/taskell.md View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c0b7e7db82cf2d29a349321cc0a891446a92ff1e -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c0b7e7db82cf2d29a349321cc0a891446a92ff1e 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 May 28 11:19:03 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 28 May 2020 09:19:03 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test test all assertions Message-ID: <5ecf8207d6838_74763fbcf5d6cb34880e8@sidekiq-low-urgency-cpu-bound-02-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 6f4c24c3 by Christof Thalhofer at 2020-05-28T11:14:58+02:00 gb.test test all assertions [GB.TEST] * NEW: Assert.IntendedFailure move to Test.IntendedFailure * NEW: TAllAsserts tests all assertions (3 todo left) - - - - - 14 changed files: - main/lib/test/gb.test/.project - ? main/lib/test/gb.test/.src/TestMe.module - main/lib/test/gb.test/.src/TestMyself/TAllAsserts.test - main/lib/test/gb.test/.src/TestMyself/TElse.test - ? main/lib/test/gb.test/.src/TestMyself/TError.test - main/lib/test/gb.test/.src/TestMyself/TFailures.test - main/lib/test/gb.test/.src/TestMyself/TInternals.test - main/lib/test/gb.test/.src/TestMyself/TSetup.test - + main/lib/test/gb.test/.src/TestMyself/TSkipAll.test - main/lib/test/gb.test/.src/TestMyself/TSummary.test - main/lib/test/gb.test/.src/TestSuite/Assert.module - main/lib/test/gb.test/.src/TestSuite/Test.module - + main/lib/test/gb.test/.src/ZzzDoSth.module - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/6f4c24c3e1c92522281d30263137392401014cfd -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/6f4c24c3e1c92522281d30263137392401014cfd 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 May 28 11:22:20 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 28 May 2020 09:22:20 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test taskell update Message-ID: <5ecf82dc9da3c_145e3f8426995a9011584e@sidekiq-low-urgency-cpu-bound-07-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 65a0205d by Christof Thalhofer at 2020-05-28T11:21:43+02:00 gb.test taskell update - - - - - 1 changed file: - main/lib/test/gb.test/taskell.md View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/65a0205d023976e7b24961f5e73e28458753a31d -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/65a0205d023976e7b24961f5e73e28458753a31d 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 May 28 18:10:14 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 28 May 2020 16:10:14 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test refactoring and finetuning Assert Notes Message-ID: <5ecfe270bbadb_4833f913a0f3b14747a4@sidekiq-low-urgency-cpu-bound-08-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: c816814e by Christof Thalhofer at 2020-05-28T18:07:55+02:00 gb.test refactoring and finetuning Assert Notes [GB.TEST] * NEW: refactoring and finetuning Assert Notes - - - - - 4 changed files: - main/lib/test/gb.test/.src/TestMyself/TElse.test - main/lib/test/gb.test/.src/TestMyself/TInternals.test - main/lib/test/gb.test/.src/TestSuite/Assert.module - main/lib/test/gb.test/.test View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c816814ed4570a98779a1ac8a0961d5db235803f -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/c816814ed4570a98779a1ac8a0961d5db235803f 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 May 28 18:24:40 2020 From: gitlab at mg.gitlab.com (Christof Thalhofer) Date: Thu, 28 May 2020 16:24:40 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] gb.test German translation Message-ID: <5ecfe5ca609cc_b273f9feb4f6d8c866e1@sidekiq-low-urgency-cpu-bound-10-sv-gprd.mail> Christof Thalhofer pushed to branch master at Gambas / gambas Commits: 0447fc17 by Christof Thalhofer at 2020-05-28T18:22:22+02:00 gb.test German translation [GB.TEST] * NEW: German translation - - - - - 1 changed file: - main/lib/test/gb.test/.lang/de.po View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/0447fc173d6d965c6ed9a7b350c1f47691d0d442 -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/0447fc173d6d965c6ed9a7b350c1f47691d0d442 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 May 31 01:02:53 2020 From: gitlab at mg.gitlab.com (=?UTF-8?B?QmVub8OudCBNaW5pc2luaQ==?=) Date: Sat, 30 May 2020 23:02:53 +0000 Subject: [Gambas-Notification] [Git][gambas/gambas][master] 'gb.util' and 'gb.settings' are not required anymore. Message-ID: <5ed2e61db7520_15c43fa5b637e45c12820@sidekiq-low-urgency-cpu-bound-05-sv-gprd.mail> Beno?t Minisini pushed to branch master at Gambas / gambas Commits: 7395093f by gambas at 2020-05-31T00:58:50+02:00 'gb.util' and 'gb.settings' are not required anymore. [GB.TEST] * NEW: 'gb.util' and 'gb.settings' are not required anymore. * NEW: Add an Helper module that implements the functions replacing what was used in 'gb.util' and 'gb.settings'. * BUG: Rewrite the GetTestSuiteByName() method without 'gb.settings', and fix it. It was completely broken. - - - - - 5 changed files: - main/lib/test/gb.test/.project - + main/lib/test/gb.test/.src/Helper.module - main/lib/test/gb.test/.src/TestMyself/TInternals.test - ? main/lib/test/gb.test/.src/TestSuite/MTest.module - main/lib/test/gb.test/.src/TestSuite/Test.module View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7395093fea553741e25df45cda7a33a63e4032dc -- View it on GitLab: https://gitlab.com/gambas/gambas/-/commit/7395093fea553741e25df45cda7a33a63e4032dc You're receiving this email because of your account on gitlab.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: