gambas-devel-svn Mailing List for Gambas (Page 56)
Brought to you by:
gambas
This list is closed, nobody may subscribe to it.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(20) |
Oct
(61) |
Nov
(35) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(27) |
Feb
(24) |
Mar
(13) |
Apr
(95) |
May
(58) |
Jun
(27) |
Jul
(52) |
Aug
(60) |
Sep
(134) |
Oct
(118) |
Nov
(55) |
Dec
(52) |
2008 |
Jan
(149) |
Feb
(73) |
Mar
(152) |
Apr
(68) |
May
(51) |
Jun
(44) |
Jul
(47) |
Aug
(44) |
Sep
(82) |
Oct
(48) |
Nov
(54) |
Dec
(41) |
2009 |
Jan
(82) |
Feb
(48) |
Mar
(30) |
Apr
(21) |
May
(51) |
Jun
(68) |
Jul
(142) |
Aug
(96) |
Sep
(76) |
Oct
(29) |
Nov
(52) |
Dec
(126) |
2010 |
Jan
(73) |
Feb
(77) |
Mar
(120) |
Apr
(79) |
May
(58) |
Jun
(39) |
Jul
(58) |
Aug
(91) |
Sep
(74) |
Oct
(26) |
Nov
(67) |
Dec
(77) |
2011 |
Jan
(110) |
Feb
(100) |
Mar
(85) |
Apr
(107) |
May
(48) |
Jun
(43) |
Jul
(47) |
Aug
(112) |
Sep
(96) |
Oct
(62) |
Nov
(36) |
Dec
(125) |
2012 |
Jan
(54) |
Feb
(75) |
Mar
(65) |
Apr
(117) |
May
(95) |
Jun
(82) |
Jul
(128) |
Aug
(104) |
Sep
(111) |
Oct
(48) |
Nov
(141) |
Dec
(72) |
2013 |
Jan
(50) |
Feb
(36) |
Mar
(40) |
Apr
(23) |
May
(59) |
Jun
(30) |
Jul
(50) |
Aug
(55) |
Sep
(41) |
Oct
(56) |
Nov
(55) |
Dec
(70) |
2014 |
Jan
(72) |
Feb
(71) |
Mar
(31) |
Apr
(31) |
May
(47) |
Jun
(59) |
Jul
(51) |
Aug
(33) |
Sep
(76) |
Oct
(85) |
Nov
(91) |
Dec
(91) |
2015 |
Jan
(88) |
Feb
(42) |
Mar
(97) |
Apr
(31) |
May
(60) |
Jun
(52) |
Jul
(45) |
Aug
(54) |
Sep
(116) |
Oct
(65) |
Nov
(56) |
Dec
(46) |
2016 |
Jan
(48) |
Feb
(25) |
Mar
(87) |
Apr
(47) |
May
(46) |
Jun
(12) |
Jul
(24) |
Aug
(53) |
Sep
(35) |
Oct
(32) |
Nov
(55) |
Dec
(29) |
2017 |
Jan
(41) |
Feb
(13) |
Mar
(7) |
Apr
(17) |
May
(10) |
Jun
(7) |
Jul
(23) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <ga...@us...> - 2014-12-29 21:49:10
|
Revision: 6776 http://sourceforge.net/p/gambas/code/6776 Author: gambas Date: 2014-12-29 21:49:05 +0000 (Mon, 29 Dec 2014) Log Message: ----------- [GB.SDL2] * NEW: Implement Font.TextWidth() and Font.TextHeight(). * NEW: Add the default Gambas font. * NEW: Add a texture cache in each Font object, that can store the last 128 drawn texts. When the cache is full, it is completely erased. * BUG: Many fixes. Modified Paths: -------------- gambas/trunk/gb.sdl2/src/Makefile.am gambas/trunk/gb.sdl2/src/c_draw.c gambas/trunk/gb.sdl2/src/c_draw.h gambas/trunk/gb.sdl2/src/c_font.c gambas/trunk/gb.sdl2/src/c_font.h gambas/trunk/gb.sdl2/src/c_image.c gambas/trunk/gb.sdl2/src/c_image.h gambas/trunk/gb.sdl2/src/c_window.c gambas/trunk/gb.sdl2/src/default_font.h gambas/trunk/gb.sdl2/src/main.h Added Paths: ----------- gambas/trunk/gb.sdl2/src/default_font.c gambas/trunk/gb.sdl2/src/default_font_data.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <se...@us...> - 2014-12-29 03:38:48
|
Revision: 6774 http://sourceforge.net/p/gambas/code/6774 Author: sebikul Date: 2014-12-29 03:38:46 +0000 (Mon, 29 Dec 2014) Log Message: ----------- [GB.LOGGING] * NEW: Use handlers so that each logger can output to multiple locations, and several loggers can share a handler. Modified Paths: -------------- gambas/trunk/comp/src/gb.logging/.component gambas/trunk/comp/src/gb.logging/.info gambas/trunk/comp/src/gb.logging/.list gambas/trunk/comp/src/gb.logging/.project gambas/trunk/comp/src/gb.logging/.src/Formatter.module gambas/trunk/comp/src/gb.logging/.src/Logger.class gambas/trunk/comp/src/gb.logging/.src/MTest.module Added Paths: ----------- gambas/trunk/comp/src/gb.logging/.src/ConsoleHandler.class gambas/trunk/comp/src/gb.logging/.src/FileHandler.class gambas/trunk/comp/src/gb.logging/.src/LogHandler.class gambas/trunk/comp/src/gb.logging/.src/LogLevel.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-29 01:39:55
|
Revision: 6773 http://sourceforge.net/p/gambas/code/6773 Author: gambas Date: 2014-12-29 01:39:45 +0000 (Mon, 29 Dec 2014) Log Message: ----------- [GB.SDL2] * NEW: Mouse and keyboard support. * NEW: TTF fonts support. Modified Paths: -------------- gambas/trunk/gb.sdl2/src/Makefile.am gambas/trunk/gb.sdl2/src/c_draw.c gambas/trunk/gb.sdl2/src/c_draw.h gambas/trunk/gb.sdl2/src/c_image.c gambas/trunk/gb.sdl2/src/c_image.h gambas/trunk/gb.sdl2/src/c_window.c gambas/trunk/gb.sdl2/src/c_window.h gambas/trunk/gb.sdl2/src/main.c gambas/trunk/gb.sdl2/src/main.h Added Paths: ----------- gambas/trunk/gb.sdl2/src/c_font.c gambas/trunk/gb.sdl2/src/c_font.h gambas/trunk/gb.sdl2/src/c_key.c gambas/trunk/gb.sdl2/src/c_key.h gambas/trunk/gb.sdl2/src/c_mouse.c gambas/trunk/gb.sdl2/src/c_mouse.h gambas/trunk/gb.sdl2/src/default_font.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-27 19:06:29
|
Revision: 6772 http://sourceforge.net/p/gambas/code/6772 Author: gambas Date: 2014-12-27 19:05:42 +0000 (Sat, 27 Dec 2014) Log Message: ----------- [GB.SDL2] * BUG: Forget some files. Modified Paths: -------------- gambas/trunk/gb.sdl2/AUTHORS Added Paths: ----------- gambas/trunk/gb.sdl2/gb.geom.h gambas/trunk/gb.sdl2/src/c_image.c gambas/trunk/gb.sdl2/src/c_image.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-27 08:34:06
|
Revision: 6770 http://sourceforge.net/p/gambas/code/6770 Author: gambas Date: 2014-12-27 08:33:25 +0000 (Sat, 27 Dec 2014) Log Message: ----------- [GB.SDL2] * NEW: Add the event loop, the framerate limitation, the Draw class. * NEW: 'SDL2_image' will be used for image I/O instead of 'gb.image.io'. Modified Paths: -------------- gambas/trunk/gb.sdl2/configure.ac gambas/trunk/gb.sdl2/src/Makefile.am gambas/trunk/gb.sdl2/src/c_window.c gambas/trunk/gb.sdl2/src/c_window.h gambas/trunk/gb.sdl2/src/gb.sdl2.component gambas/trunk/gb.sdl2/src/main.c gambas/trunk/gb.sdl2/src/main.h Added Paths: ----------- gambas/trunk/gb.sdl2/src/c_draw.c gambas/trunk/gb.sdl2/src/c_draw.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 21:57:06
|
Revision: 6768 http://sourceforge.net/p/gambas/code/6768 Author: gambix Date: 2014-12-22 21:57:04 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: Do not set type on model. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.settings gambas/trunk/comp/src/gb.scanner/.src/Module2.module gambas/trunk/comp/src/gb.scanner/.src/Scanner.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 21:15:03
|
Revision: 6767 http://sourceforge.net/p/gambas/code/6767 Author: gambix Date: 2014-12-22 21:15:02 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: Test if the scanner exist just on an option call. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.settings This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 21:11:43
|
Revision: 6766 http://sourceforge.net/p/gambas/code/6766 Author: gambix Date: 2014-12-22 21:11:05 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: Test if the scanner exist just on an option call. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.project gambas/trunk/comp/src/gb.scanner/.src/Module2.module gambas/trunk/comp/src/gb.scanner/.src/Scanner.class gambas/trunk/comp/src/gb.scanner/.src/Scanners.class gambas/trunk/comp/src/gb.scanner/.startup This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 20:49:34
|
Revision: 6765 http://sourceforge.net/p/gambas/code/6765 Author: gambix Date: 2014-12-22 20:49:08 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [GB.REPORT] * BUG: The parsing of options now work as expected Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.settings This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 20:46:05
|
Revision: 6764 http://sourceforge.net/p/gambas/code/6764 Author: gambix Date: 2014-12-22 20:45:31 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: The parsing of options now work as expected. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.project gambas/trunk/comp/src/gb.scanner/.settings gambas/trunk/comp/src/gb.scanner/.src/Scanner.class gambas/trunk/comp/src/gb.scanner/.startup Added Paths: ----------- gambas/trunk/comp/src/gb.scanner/.src/Module2.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 17:46:28
|
Revision: 6763 http://sourceforge.net/p/gambas/code/6763 Author: gambas Date: 2014-12-22 17:46:26 +0000 (Mon, 22 Dec 2014) Log Message: ----------- * Merge from r6762. Revision Links: -------------- http://sourceforge.net/p/gambas/code/6762 Modified Paths: -------------- gambas/branches/3.6/main/gbc/gbc_trans_tree.c gambas/branches/3.6/main/lib/eval/eval_trans_tree.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-22 17:41:46
|
Revision: 6762 http://sourceforge.net/p/gambas/code/6762 Author: gambas Date: 2014-12-22 17:41:16 +0000 (Mon, 22 Dec 2014) Log Message: ----------- [COMPILER] * BUG: Fix a badly initialized variable in syntax tree analyze, that could lead to spurious "Expression too complex" errors. [GB.EVAL] * BUG: Fix a badly initialized variable in syntax tree analyze, that could lead to spurious "Expression too complex" errors. Modified Paths: -------------- gambas/trunk/main/gbc/gbc_trans_tree.c gambas/trunk/main/lib/eval/eval_trans_tree.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-21 22:17:58
|
Revision: 6761 http://sourceforge.net/p/gambas/code/6761 Author: gambas Date: 2014-12-21 22:17:51 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fix object control properties edition. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.src/Editor/Form/FProperty.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-21 21:26:06
|
Revision: 6760 http://sourceforge.net/p/gambas/code/6760 Author: gambix Date: 2014-12-21 21:26:04 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: All parameters sended to scanimage are quoted now, if they are text. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.src/MTest.module gambas/trunk/comp/src/gb.scanner/.src/Scanner.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-21 18:06:26
|
Revision: 6759 http://sourceforge.net/p/gambas/code/6759 Author: gambas Date: 2014-12-21 18:06:18 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Softwares now can be installed or just downloaded. When they are downloaded, only the source project is copied. It is not compiled, and no desktop file is installed. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.src/Project/Farm/CSoftware.class gambas/trunk/app/src/gambas3/.src/Project/Farm/FSoftwareFarm.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2014-12-21 16:42:55
|
Revision: 6758 http://sourceforge.net/p/gambas/code/6758 Author: tobiasboe Date: 2014-12-21 16:42:46 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [GBH3] * NEW: Moved c2help to a Gambas project, gbh3. * NEW: Understand -h, --help, -V and --version options. * OPT: Use the RegExp.Replace() fix from #6756. Added Paths: ----------- gambas/trunk/app/src/gbh3/ gambas/trunk/app/src/gbh3/.project gambas/trunk/app/src/gbh3/.src/ gambas/trunk/app/src/gbh3/.src/MMain.module gambas/trunk/app/src/gbh3/README Removed Paths: ------------- gambas/trunk/app/src/c2help/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-21 16:34:57
|
Revision: 6757 http://sourceforge.net/p/gambas/code/6757 Author: gambix Date: 2014-12-21 16:34:55 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [GB.SCANNER] * BUG: Do not crash if the temporary image is not loaded. * NEW: The options are now more verbose and try to correct automatically theire values. For example a MinMax value is automagicaly set to the near limit value. An d for list value a search is done in the list and the value is set to the first occurence. Modified Paths: -------------- gambas/trunk/comp/src/gb.scanner/.project gambas/trunk/comp/src/gb.scanner/.settings gambas/trunk/comp/src/gb.scanner/.src/MTest.module gambas/trunk/comp/src/gb.scanner/.src/Module1.module gambas/trunk/comp/src/gb.scanner/.src/Scanner.class gambas/trunk/comp/src/gb.scanner/.src/_Option.class gambas/trunk/comp/src/gb.scanner/.startup Added Paths: ----------- gambas/trunk/comp/src/gb.scanner/.src/MTest2.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-21 14:47:50
|
Revision: 6756 http://sourceforge.net/p/gambas/code/6756 Author: gambas Date: 2014-12-21 14:47:47 +0000 (Sun, 21 Dec 2014) Log Message: ----------- [GB.PCRE] * BUG: RegExp.Replace() now replaces once if the pattern starts with "^". Modified Paths: -------------- gambas/trunk/gb.pcre/src/regexp.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-20 21:08:47
|
Revision: 6755 http://sourceforge.net/p/gambas/code/6755 Author: gambix Date: 2014-12-20 21:08:45 +0000 (Sat, 20 Dec 2014) Log Message: ----------- [GB.REPORT2] * OPT: Move to gb.report2 Modified Paths: -------------- gambas/trunk/comp/src/gb.form/.src/DocumentView/DocumentView.class gambas/trunk/comp/src/gb.form/.src/Test/FDocumentView.class gambas/trunk/comp/src/gb.form/.src/Test/FDocumentView.form gambas/trunk/comp/src/gb.form.dialog/.component gambas/trunk/comp/src/gb.gui.base/.project gambas/trunk/comp/src/gb.gui.base/.src/Test/FTreeView.class gambas/trunk/comp/src/gb.gui.base/.startup gambas/trunk/comp/src/gb.logging/.startup gambas/trunk/comp/src/gb.mysql/.startup gambas/trunk/comp/src/gb.report2/.info gambas/trunk/comp/src/gb.report2/.list gambas/trunk/comp/src/gb.report2/.settings gambas/trunk/comp/src/gb.report2/.src/Report.class gambas/trunk/comp/src/gb.report2/.src/ReportContainer.class gambas/trunk/comp/src/gb.report2/.src/ReportControl.class gambas/trunk/comp/src/gb.report2/.src/ReportSection.class gambas/trunk/comp/src/gb.report2/.src/ReportVBox.class gambas/trunk/comp/src/gb.report2/.src/Tests/Module1.module gambas/trunk/comp/src/gb.scanner/.component gambas/trunk/comp/src/gb.scanner/.project gambas/trunk/comp/src/gb.scanner/.settings gambas/trunk/comp/src/gb.scanner/.src/Module1.module gambas/trunk/comp/src/gb.scanner/.startup Added Paths: ----------- gambas/trunk/comp/src/gb.eval.highlight/.startup gambas/trunk/comp/src/gb.report2/ gambas/trunk/comp/src/gb.report2/.src/ReportHBox.class Removed Paths: ------------- gambas/trunk/comp/src/Reports2/ gambas/trunk/comp/src/gb.form.stock/.info gambas/trunk/comp/src/gb.form.stock/.list This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-20 15:24:03
|
Revision: 6754 http://sourceforge.net/p/gambas/code/6754 Author: gambas Date: 2014-12-20 15:24:00 +0000 (Sat, 20 Dec 2014) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fix initial focus of welcome dialog. [INTERPRETER] * BUG: Release standard i/o File objects before cleaning up the classes, to avoid an incorrect "circular reference" message. [GB.GTK] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.GTK3] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.UTIL] * NEW: Date.EasterDay returns the Easter day of a specific year. [GB.QT4] * NEW: Link to the pthread library explicitly. * NEW: WAIT inside a keybord handler does not raise an error anymore. It just print a warning message and does nothing. [GB.QT4.EXT] * NEW: Editor.Font property now can take any font in the IDE. Modified Paths: -------------- gambas/trunk/acinclude.m4 gambas/trunk/app/examples/Control/HighlightEditor/.icon.png gambas/trunk/app/examples/Control/HighlightEditor/.project gambas/trunk/app/examples/Control/HighlightEditor/.src/FEditor.class gambas/trunk/app/examples/Control/HighlightEditor/.src/FEditor.form gambas/trunk/app/examples/Control/HighlightEditor/download.html gambas/trunk/app/examples/Control/MapView/.icon.png gambas/trunk/app/examples/Control/MapView/.project gambas/trunk/app/examples/Printing/ReportExample/.project gambas/trunk/app/examples/Printing/ReportExample/.settings gambas/trunk/app/examples/Printing/ReportExample/.startup gambas/trunk/app/src/gambas3/.src/Project.module gambas/trunk/app/src/gambas3/.src/Welcome/FWelcome.class gambas/trunk/comp/src/gb.form/.src/Color/FColorChooser.class gambas/trunk/comp/src/gb.form/.src/Font/FFontChooser.class gambas/trunk/comp/src/gb.report/.project gambas/trunk/comp/src/gb.util/.info gambas/trunk/comp/src/gb.util/.src/Date.module gambas/trunk/comp/src/gb.util/.src/MMain.module gambas/trunk/gb.gtk/src/Makefile.am gambas/trunk/gb.gtk/src/main.cpp gambas/trunk/gb.net.curl/src/CCurl.c gambas/trunk/gb.net.curl/src/Makefile.am gambas/trunk/gb.qt4/share/gb.form.properties.h gambas/trunk/gb.qt4/src/CWidget.cpp gambas/trunk/gb.qt4/src/Makefile.am gambas/trunk/gb.qt4/src/main.cpp gambas/trunk/main/gbx/gbx.c Added Paths: ----------- gambas/trunk/app/examples/Control/HighlightEditor/.hidden/screenshots/ gambas/trunk/app/examples/Control/HighlightEditor/.hidden/screenshots/2014-12-17.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2014-12-20 10:38:37
|
Revision: 6753 http://sourceforge.net/p/gambas/code/6753 Author: tobiasboe Date: 2014-12-20 10:38:25 +0000 (Sat, 20 Dec 2014) Log Message: ----------- [C2HELP] * NEW: Rewrite as a single standalone Gambas script. * OPT: Move into app/src/c2help. Added Paths: ----------- gambas/trunk/app/src/c2help/ gambas/trunk/app/src/c2help/README gambas/trunk/app/src/c2help/c2help.gbs3 Removed Paths: ------------- gambas/trunk/c2help/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2014-12-19 17:57:25
|
Revision: 6752 http://sourceforge.net/p/gambas/code/6752 Author: tobiasboe Date: 2014-12-19 17:57:18 +0000 (Fri, 19 Dec 2014) Log Message: ----------- [GB.DATA] * BUG: GraphMatrix.Add() does not add identical vertices multiple times anymore. Modified Paths: -------------- gambas/trunk/main/lib/data/c_graphmatrix.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-18 16:21:48
|
Revision: 6751 http://sourceforge.net/p/gambas/code/6751 Author: gambix Date: 2014-12-18 16:21:40 +0000 (Thu, 18 Dec 2014) Log Message: ----------- [GB.MAP] * OPT: Upgrade the gb.map status to Not Terminated but stable. * NEW: New property ClearCache(Optional Days) that remove files from cache according to the distance time in day. Or all files if they're is no days given in parameters. Modified Paths: -------------- gambas/trunk/comp/src/gb.map/.component gambas/trunk/comp/src/gb.map/.icon.png gambas/trunk/comp/src/gb.map/.info gambas/trunk/comp/src/gb.map/.project gambas/trunk/comp/src/gb.map/.src/Map.class gambas/trunk/comp/src/gb.map/.src/MapView.class gambas/trunk/comp/src/gb.map/.src/Tests/FMain.class gambas/trunk/comp/src/gb.map/.src/Tests/Form2.class gambas/trunk/comp/src/gb.map/.src/Tests/MMain.module gambas/trunk/comp/src/gb.map/.src/Types/_Tile.class gambas/trunk/comp/src/gb.map/.src/_MapLayer.class gambas/trunk/comp/src/gb.map/.src/_MapTile.class gambas/trunk/comp/src/gb.map/.src/_ViewLayer.class gambas/trunk/comp/src/gb.map/.startup This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-17 20:21:39
|
Revision: 6750 http://sourceforge.net/p/gambas/code/6750 Author: gambix Date: 2014-12-17 20:06:48 +0000 (Wed, 17 Dec 2014) Log Message: ----------- [EXAMPLES] * OPT: Change the version number on the GG map Modified Paths: -------------- gambas/trunk/app/examples/Control/MapView/.project gambas/trunk/app/examples/Control/MapView/.src/FMain.class gambas/trunk/app/examples/Control/MapView/.startup This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-12-17 16:43:40
|
Revision: 6749 http://sourceforge.net/p/gambas/code/6749 Author: gambix Date: 2014-12-17 16:43:37 +0000 (Wed, 17 Dec 2014) Log Message: ----------- [GB.REPORTS2] * New: This is the beginning of the full rewritting of gb.report Added Paths: ----------- gambas/trunk/comp/src/Reports2/ gambas/trunk/comp/src/Reports2/.action/ gambas/trunk/comp/src/Reports2/.directory gambas/trunk/comp/src/Reports2/.gitignore gambas/trunk/comp/src/Reports2/.hidden/ gambas/trunk/comp/src/Reports2/.icon.png gambas/trunk/comp/src/Reports2/.info gambas/trunk/comp/src/Reports2/.lang/ gambas/trunk/comp/src/Reports2/.list gambas/trunk/comp/src/Reports2/.project gambas/trunk/comp/src/Reports2/.settings gambas/trunk/comp/src/Reports2/.src/ gambas/trunk/comp/src/Reports2/.src/Forms/ gambas/trunk/comp/src/Reports2/.src/Optional/ gambas/trunk/comp/src/Reports2/.src/Optional/Align.class gambas/trunk/comp/src/Reports2/.src/Optional/Arrange.class gambas/trunk/comp/src/Reports2/.src/Optional/Line.class gambas/trunk/comp/src/Reports2/.src/Report.class gambas/trunk/comp/src/Reports2/.src/ReportContainer.class gambas/trunk/comp/src/Reports2/.src/ReportControl.class gambas/trunk/comp/src/Reports2/.src/ReportSection.class gambas/trunk/comp/src/Reports2/.src/ReportVBox.class gambas/trunk/comp/src/Reports2/.src/Tests/ gambas/trunk/comp/src/Reports2/.src/Tests/FMain.class gambas/trunk/comp/src/Reports2/.src/Tests/FMain.form gambas/trunk/comp/src/Reports2/.src/Tests/Module1.module gambas/trunk/comp/src/Reports2/.src/Tools/ gambas/trunk/comp/src/Reports2/.src/Tools/ReportUnits.module gambas/trunk/comp/src/Reports2/.src/Types/ gambas/trunk/comp/src/Reports2/.src/Types/ReportPadding.class gambas/trunk/comp/src/Reports2/.src/Types/TControl.class gambas/trunk/comp/src/Reports2/.src/Types/TSizeHint.class gambas/trunk/comp/src/Reports2/.src/Types/TSizeParse.class gambas/trunk/comp/src/Reports2/.startup gambas/trunk/comp/src/Reports2/Structure This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |