Jorge Carrión Molpeceres
2c6944c285
Update FWorkspace.class
2019-03-11 18:34:11 +00:00
Jorge Carrión Molpeceres
523effc9fe
Update Workspace.class
2019-03-11 18:30:59 +00:00
gambas
eb8c871740
Don't try to abort JIT compilation if the JIT component is not loaded.
...
[INTERPRETER]
* BUG: Don't try to abort JIT compilation if the JIT component is not loaded.
2019-03-11 17:53:18 +01:00
gambas
3f7095bbd9
Run JIT compilation in the background to make programs start faster.
...
[INTERPRETER]
* OPT: JIT compilation is run in two steps.
[GB.JIT]
* OPT: Run JIT compilation in the background.
* NEW: JIT.Debug is a new property that allows to enable JIT debugging messages at runtime.
2019-03-11 16:34:50 +01:00
gambas
209a8faacf
Fix SortUsing() methods public declaration.
...
[INTERPRETER]
* BUG: Fix SortUsing() methods public declaration.
2019-03-08 21:51:27 +01:00
gambas
f38f1b1657
Variant[].Sort() and Variant[].SortUsing() methods have been added and SortUsing() methods now take an optional sort mode as second argument.
...
[INTERPRETER]
* NEW: Variant[].Sort() and Variant[].SortUsing() methods have been added.
* NEW: SortUsing() methods now take an optional sort mode as second argument.
2019-03-08 21:42:33 +01:00
gambas
cfd5d3bce1
Help browser: Opening the help browser from the welcome dialog does not crash anymore if the left panel is visible.
...
[DEVELOPMENT ENVIRONMENT]
* BUG: Help browser: Opening the help browser from the welcome dialog does not crash anymore if the left panel is visible.
* BUG: Help browser: Fix the left panel contents.
* NEW: Search dialog: Make it larger for long checkbox labels.
2019-03-08 12:48:30 +01:00
gambas
7a5f7701ce
SerialPort: Support for any port speed on Linux.
...
[GB.NET]
* NEW: SerialPort: Open() method now raises more detailed errors.
* NEW: SerialPort: Support for any port speed on Linux.
2019-03-08 12:32:22 +01:00
gambas
c7d6ddd31f
String.Right() does not crash anymore on invalid UTF-8 strings.
...
[INTERPRETER]
* BUG: String.Right() does not crash anymore on invalid UTF-8 strings.
2019-03-08 12:28:41 +01:00
gambas
463bc16b47
Merge branch 'master' of gitlab.com:gambas/gambas
2019-03-07 14:59:25 +01:00
gambas
15641c109a
Code formatting now ignores void files, fixes in javascript compression.
...
[DEVELOPMENT ENVIRONMENT]
* BUG: Code formatting now ignores void files.
* NEW: Connection editor: Display the duration of custom requests is the request editor.
* NEW: Connection editor: The request editor now wraps its contents.
* BUG: Text editor: Some fixes in javascript compression.
2019-03-07 14:56:03 +01:00
Tobias Boege
76da51ce70
gb.inotify: Fix Watch.Events[] accessor
...
[GB.INOTIFY]
* BUG: Watch.Events._put incorrectly reset events outside the given event set and ignored the assigned value.
2019-03-07 08:24:08 +01:00
gambas
0614a25525
Merge branch 'master' of gitlab.com:gambas/gambas
2019-03-06 03:56:52 +01:00
gambas
d668dadcf5
Array.SortUsing() is a new method that sorts an array according to the sort order defined by another array.
...
[INTERPRETER]
* NEW: Array.SortUsing() is a new method that sorts an array according to the sort order defined by another array.
2019-03-06 03:55:48 +01:00
gambix
f585889987
[GB.GUI.BASE]
...
* OPT: Set the ScrollArea Shade more smooth.
2019-03-05 19:11:25 +01:00
gambas
f2de1bc271
Fix some icons.
...
[GB.FORM.STOCK]
* NEW: Fix some icons.
2019-03-04 01:38:57 +01:00
gambas
b8af5cf289
Merge branch 'master' of gitlab.com:gambas/gambas
2019-03-04 01:36:35 +01:00
gambas
b257119380
String.Code() now returns -1 on incorrect UTF-8 string.
...
[INTERPRETER]
* BUG: String.Code() now returns -1 on incorrect UTF-8 string.
2019-03-04 01:35:33 +01:00
gambas
a0302b7f77
Optimize division, thanks to Cedron Dawg.
...
[GB.COMPLEX]
* OPT: Optimize division, thanks to Cedron Dawg.
2019-03-02 12:50:33 +01:00
gambas
6eedf18811
FileView: Sometimes the contents was not correctly refreshed.
...
[GB.FORM]
* BUG: FileView: Sometimes the contents was not correctly refreshed.
2019-02-28 17:46:53 +01:00
gambas
2d11bf54ef
Image editor: Do not crash when using the erase tool while pressing SHIFT key.
...
[DEVELOPMENT ENVIRONMENT]
* NEW: Update financial support.
* BUG: Image editor: Do not crash when using the erase tool while pressing SHIFT key.
2019-02-28 17:45:26 +01:00
gambas
4840818e04
The page title now starts with the page path.
...
[WIKI]
* NEW: The page title now starts with the page path.
2019-02-28 17:41:55 +01:00
gambas
fd7ae28ac9
File.RealPath() is a new statis method that returns the the canonicalized absolute pathname of path, with no symbolic links inside.
...
[INTERPRETER]
* NEW: File.RealPath() is a new statis method that returns the the canonicalized absolute pathname of path, with no symbolic links inside.
2019-02-28 02:57:25 +01:00
gambas
7c808bbba3
Define a new limit constant, that is the maximum length of the System.Language variable. It is 16 bytes.
...
[INTERPRETER]
* NEW: Define a new limit constant, that is the maximum length of the System.Language variable. It is 16 bytes.
2019-02-26 21:01:18 +01:00
gambas
3cd80f118d
Allocate custom language environment variables statically, because environment is accessed by shared library exit routines, after the interpreter memory allocations have been freed.
...
[INTERPRETER]
* BUG: Allocate custom language environment variables statically, because environment is accessed by shared library exit routines, after the interpreter memory allocations have been freed.
2019-02-26 20:59:03 +01:00
gambas
1f73946947
Put 'gbh3' back into the git repository.
...
[CONFIGURATION]
* BUG: Don't put main/tools in .gitignore.
[HELPER]
* BUG: Put 'gbh3' back into the git repository.
2019-02-25 00:20:43 +01:00
gambas
aa66e9bcd5
Windows without any active child control correctly catch keyboard events now.
...
[GB.GTK]
* BUG: Windows without any active child control correctly catch keyboard events now.
[GB.GTK3]
* BUG: Windows without any active child control correctly catch keyboard events now.
2019-02-23 00:15:35 +01:00
gambas
b4a8adf222
Fix string to floating point conversion routine.
...
[INTERPRETER]
* BUG: Fix string to floating point conversion routine.
2019-02-16 02:00:17 +01:00
Benoît Minisini
b7a9af45c6
Merge branch 'flags' into 'master'
...
Do not reset CFLAGS or CXXFLAGS
See merge request gambas/gambas!50
2019-02-15 15:07:14 +00:00
Benoît Minisini
905e7c5160
Merge branch 'poppler' into 'master'
...
Make 'gb.pdf' compile with poppler-0.72
See merge request gambas/gambas!73
2019-02-14 22:27:01 +00:00
Benoît Minisini
40798a7918
Merge branch 'master' into 'master'
...
Added HTTP Proxy support.
See merge request gambas/gambas!72
2019-02-14 22:26:05 +00:00
Gen Braga
757af8c19c
Map.Proxy is a new property that allows to define the proxy used by all HTTP requests made to retrieve the map tiles.
...
[GB.MAP]
* NEW: Map.Proxy is a new property that allows to define the proxy used by all HTTP requests made to retrieve the map tiles.
2019-02-14 22:26:05 +00:00
gambas
315eb81d0f
TextEditor: The inner shadow now covers the margin.
...
[GB.FORM.EDITOR]
* BUG: TextEditor: The inner shadow now covers the margin.
2019-02-14 23:21:18 +01:00
gambas
a4fb029fbf
Curl.DefaultProxy is a new property that allows to define the default proxy of all newly created HttpClient objects.
...
[GB.NET.CURL]
* NEW: Curl.DefaultProxy is a new property that allows to define the default proxy of all newly created HttpClient objects.
2019-02-14 18:10:34 +01:00
gambas
98c6018e18
Merge branch 'master' of gitlab.com:gambas/gambas
2019-02-14 18:10:09 +01:00
gambas
2522691508
Support for integrated playground.
...
[WIKI]
* NEW: Support for integrated playground.
2019-02-14 18:09:41 +01:00
gambas
1bf58ddd35
WebTextArea: The Text property works correctly again.
...
[GB.WEB.FORM]
* BUG: WebTextArea: The Text property works correctly again.
2019-02-14 18:08:31 +01:00
Bernhard M. Wiedemann
a03ffa0c04
Make 'gb.pdf' compile with poppler-0.72
...
completes commit a576b687db
Without this change, it would complain about missing getCString
because the POPPLER_VERSION_0_72 was not there.
2019-02-14 10:32:37 +01:00
Benoît Minisini
2457440701
Update .gitlab-ci.yml
2019-02-11 13:54:58 +00:00
Benoît Minisini
a761404ac9
Merge branch 'undefined' into 'master'
...
Replace pt_BR.po, updated translation.
See merge request gambas/gambas!68
2019-02-11 13:47:58 +00:00
Benoît Minisini
8b82545269
Merge branch 'italian-translations' into 'master'
...
Update Italian translation.
See merge request gambas/gambas!67
2019-02-11 13:47:16 +00:00
Gen Braga
b565ce8734
Replace pt_BR.po, updated translation.
2019-02-11 13:16:24 +00:00
gambas
5318c1db60
Option dialog: Add new snippets and display custom snippets in bold.
...
[DEVELOPMENT ENVIRONMENT]
* NEW: Option dialog: Add new snippets.
* NEW: Option dialog: Display custom snippets in bold.
2019-02-11 01:21:44 +01:00
GianluigiOr
f3d0e3590e
Contains new Italian translations
...
[DEVELOPMENT ENVIRONMENT]
* NEW: The IDE translation is now complete.
2019-02-09 16:51:51 +01:00
gambas
8ab745c21a
Fix corrupted test form.
...
[GB.FORM]
* BUG: Fix corrupted test form.
2019-02-09 16:07:17 +01:00
gambas
a5660d9ba8
Fix how format on load & save option is taken into account.
...
[DEVELOPMENT ENVIRONMENT]
* BUG: Format on load & save option now mark the files as modified, so that search does not become silly.
* BUG: Format on load & save option is now taken into account by the text editor, not just by code editor.
* NEW: URLLabel.Padding now works correctly in form editor.
2019-02-09 14:27:31 +01:00
gambas
24c2f184f0
URLLabel: Rewrite the control as a child of Label.
...
[GB.FORM]
* NEW: URLLabel: Rewrite the control as a child of Label.
2019-02-09 14:26:47 +01:00
gambas
66253171fd
Merge branch 'master' of gitlab.com:gambas/gambas
2019-02-08 23:08:34 +01:00
gambas
4f72989680
Unused function warnings now point at the beginning of the function.
...
[COMPILER]
* BUG: Unused function warnings now point at the beginning of the function.
2019-02-08 23:07:47 +01:00
Benoît Minisini
66b357dcf3
Merge branch 'italian-translations' into 'master'
...
Contains fix and new Italian translations
See merge request gambas/gambas!66
2019-02-08 00:07:21 +00:00