Thread: [Gambas-devel-svn] SF.net SVN: gambas:[1456] gambas/trunk/app/src/gambas3
Brought to you by:
gambas
From: <ga...@us...> - 2008-07-17 10:35:55
|
Revision: 1456 http://gambas.svn.sourceforge.net/gambas/?rev=1456&view=rev Author: gambas Date: 2008-07-17 10:35:49 +0000 (Thu, 17 Jul 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Display subversion revision in the About dialog. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FAbout.form gambas/trunk/app/src/gambas3/FWelcome.class gambas/trunk/app/src/gambas3/FWelcome.form gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/VersionControl.module Modified: gambas/trunk/app/src/gambas3/FAbout.form =================================================================== --- gambas/trunk/app/src/gambas3/FAbout.form 2008-07-17 10:34:09 UTC (rev 1455) +++ gambas/trunk/app/src/gambas3/FAbout.form 2008-07-17 10:35:49 UTC (rev 1456) @@ -103,7 +103,7 @@ Alignment = Align.TopNormal } { lblVersion Label - MoveScaled(32,0,14,7) + MoveScaled(32,0,25,7) Font = Font["Bold,+6"] Background = Color.SelectedBackground Foreground = &H9FCFFF& Modified: gambas/trunk/app/src/gambas3/FWelcome.class =================================================================== --- gambas/trunk/app/src/gambas3/FWelcome.class 2008-07-17 10:34:09 UTC (rev 1455) +++ gambas/trunk/app/src/gambas3/FWelcome.class 2008-07-17 10:35:49 UTC (rev 1456) @@ -56,7 +56,7 @@ chkSortRecent.Value = Settings["/FWelcome/SortRecent", False] FillRecent - lblVersion.Text = Project.Version 'Subst(("version &1"), Project.Version) + lblVersion.Text = Project.Version lblVersion.Move(lblGambas.X + lblGambas.Font.Width(lblGambas.Text) + 4, lblGambas.Y) If Project.GetRecentFiles().Count Then Modified: gambas/trunk/app/src/gambas3/FWelcome.form =================================================================== --- gambas/trunk/app/src/gambas3/FWelcome.form 2008-07-17 10:34:09 UTC (rev 1455) +++ gambas/trunk/app/src/gambas3/FWelcome.form 2008-07-17 10:35:49 UTC (rev 1456) @@ -1,7 +1,7 @@ # Gambas Form File 3.0 { Form Form - MoveScaled(0,2,69,66) + MoveScaled(0,2,76,69) Background = Color.TextBackground Foreground = Color.TextForeground Text = ("Welcome to Gambas 3") @@ -28,7 +28,7 @@ Alignment = Align.TopNormal } { lblVersion Label - MoveScaled(29,1,13,5) + MoveScaled(29,1,27,5) Font = Font["Bold,+6"] Background = Color.SelectedBackground Foreground = &H9FCFFF& Modified: gambas/trunk/app/src/gambas3/Project.module =================================================================== --- gambas/trunk/app/src/gambas3/Project.module 2008-07-17 10:34:09 UTC (rev 1455) +++ gambas/trunk/app/src/gambas3/Project.module 2008-07-17 10:35:49 UTC (rev 1456) @@ -214,6 +214,9 @@ aVer.Remove(aVer.Max) Version = aVer.Join(".") + sVer = VersionControl.GetVersion(Application.Path) + If sVer Then Version &= " (r" & sVer & ")" + Catch Version = "?" Modified: gambas/trunk/app/src/gambas3/VersionControl.module =================================================================== --- gambas/trunk/app/src/gambas3/VersionControl.module 2008-07-17 10:34:09 UTC (rev 1455) +++ gambas/trunk/app/src/gambas3/VersionControl.module 2008-07-17 10:35:49 UTC (rev 1456) @@ -254,3 +254,16 @@ Endif End + + +Public Sub GetVersion(sDir As String) As String + + Dim sRes As String + + If Exist(sDir &/ ".svn") Then + Shell "cd " & Quote.Shell(sDir) & "; LC_ALL=C svn info" To sRes + Try sRes = Scan(sRes, "*\nRevision: *\n*")[1] + Return sRes + Endif + +End This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-07-17 11:22:01
|
Revision: 1458 http://gambas.svn.sourceforge.net/gambas/?rev=1458&view=rev Author: gambas Date: 2008-07-17 11:21:48 +0000 (Thu, 17 Jul 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Support for macedonian and albanian translations. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/Language.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-07-19 14:01:29
|
Revision: 1470 http://gambas.svn.sourceforge.net/gambas/?rev=1470&view=rev Author: gambas Date: 2008-07-19 14:01:22 +0000 (Sat, 19 Jul 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The signature deals correctly with methods having a variable number of arguments. Modified Paths: -------------- gambas/trunk/app/src/gambas3/CComponent.class gambas/trunk/app/src/gambas3/CSymbolInfo.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-07-19 23:09:17
|
Revision: 1476 http://gambas.svn.sourceforge.net/gambas/?rev=1476&view=rev Author: gambas Date: 2008-07-19 23:08:00 +0000 (Sat, 19 Jul 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Replace the old Border property by the new Resizable property in the forms created by the file creation dialog. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FCreateFile.class gambas/trunk/app/src/gambas3/support.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-08-19 11:20:29
|
Revision: 1504 http://gambas.svn.sourceforge.net/gambas/?rev=1504&view=rev Author: gambas Date: 2008-08-19 11:20:37 +0000 (Tue, 19 Aug 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The property grid edit field is not displayed outside of the grid anymore. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FProperty.form gambas/trunk/app/src/gambas3/support.txt This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2008-08-28 00:26:06
|
Revision: 1520 http://gambas.svn.sourceforge.net/gambas/?rev=1520&view=rev Author: lordheavy Date: 2008-08-28 00:26:15 +0000 (Thu, 28 Aug 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Add preliminary support for extra test during configure with Autotools packages. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/FMakeInstall.class gambas/trunk/app/src/gambas3/FMakeInstall.form gambas/trunk/app/src/gambas3/Package.module gambas/trunk/app/src/gambas3/install/acinclude.m4 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dvi...@us...> - 2008-09-18 13:30:13
|
Revision: 1567 http://gambas.svn.sourceforge.net/gambas/?rev=1567&view=rev Author: dvillalobos Date: 2008-09-18 20:30:14 +0000 (Thu, 18 Sep 2008) Log Message: ----------- [DEVELOPMENT ENVIROMENT] * BUG: Corecction in the translation of FMakeInstall. * BUG: Set the width of CheckBox2 in FMakeInstall to 182 (like all). Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/es.mo gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/FMakeInstall.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ld...@us...> - 2008-09-25 09:22:57
|
Revision: 1597 http://gambas.svn.sourceforge.net/gambas/?rev=1597&view=rev Author: ldnp Date: 2008-09-25 09:20:14 +0000 (Thu, 25 Sep 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Update of Swedish translations Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/sv.mo gambas/trunk/app/src/gambas3/.lang/sv.po gambas/trunk/app/src/gambas3/tips/tips.sv This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2008-11-10 16:45:01
|
Revision: 1691 http://gambas.svn.sourceforge.net/gambas/?rev=1691&view=rev Author: gambas Date: 2008-11-10 16:44:56 +0000 (Mon, 10 Nov 2008) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Popup menu entries in code editor and form editor to define the current class as startup class. Modified Paths: -------------- gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FEditor.form gambas/trunk/app/src/gambas3/FForm.class gambas/trunk/app/src/gambas3/FForm.form gambas/trunk/app/src/gambas3/Project.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dvi...@us...> - 2008-11-20 23:31:49
|
Revision: 1707 http://gambas.svn.sourceforge.net/gambas/?rev=1707&view=rev Author: dvillalobos Date: 2008-11-20 23:31:44 +0000 (Thu, 20 Nov 2008) Log Message: ----------- [DEVELOPMENT ENVIROMENT] * NEW: Spanish translation updated. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/es.mo gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.project This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-01-04 12:33:13
|
Revision: 1781 http://gambas.svn.sourceforge.net/gambas/?rev=1781&view=rev Author: gambas Date: 2009-01-04 12:33:07 +0000 (Sun, 04 Jan 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Really fix the translation string quoting in *.po files. * NEW: Translation strings are now sorted by source file in *.po files. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fa.po gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/FTranslate.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dvi...@us...> - 2009-02-03 15:56:22
|
Revision: 1855 http://gambas.svn.sourceforge.net/gambas/?rev=1855&view=rev Author: dvillalobos Date: 2009-02-03 15:56:14 +0000 (Tue, 03 Feb 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Spanish translation updated. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/es.mo gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.project This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-04-11 23:20:59
|
Revision: 1928 http://gambas.svn.sourceforge.net/gambas/?rev=1928&view=rev Author: gambas Date: 2009-04-11 23:20:57 +0000 (Sat, 11 Apr 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Make better module icons. Modified Paths: -------------- gambas/trunk/app/src/gambas3/Project.module Added Paths: ----------- gambas/trunk/app/src/gambas3/img/module/class.png gambas/trunk/app/src/gambas3/img/module/form.png gambas/trunk/app/src/gambas3/img/module/module.png gambas/trunk/app/src/gambas3/img/module/webpage.png Removed Paths: ------------- gambas/trunk/app/src/gambas3/img/module/class-16.png gambas/trunk/app/src/gambas3/img/module/class.png gambas/trunk/app/src/gambas3/img/module/form-16.png gambas/trunk/app/src/gambas3/img/module/form.png gambas/trunk/app/src/gambas3/img/module/module-16.png gambas/trunk/app/src/gambas3/img/module/module.png gambas/trunk/app/src/gambas3/img/module/webpage-16.png gambas/trunk/app/src/gambas3/img/module/webpage.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dvi...@us...> - 2009-04-13 14:42:02
|
Revision: 1929 http://gambas.svn.sourceforge.net/gambas/?rev=1929&view=rev Author: dvillalobos Date: 2009-04-13 14:42:00 +0000 (Mon, 13 Apr 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Spanish translation updated Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/es.mo gambas/trunk/app/src/gambas3/.lang/es.po Added Paths: ----------- gambas/trunk/app/src/gambas3/.hidden/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-04-26 12:09:43
|
Revision: 1935 http://gambas.svn.sourceforge.net/gambas/?rev=1935&view=rev Author: gambas Date: 2009-04-26 12:09:34 +0000 (Sun, 26 Apr 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Support for "Report" modules. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/CModule.class gambas/trunk/app/src/gambas3/FCreateFile.class gambas/trunk/app/src/gambas3/FCreateFile.form gambas/trunk/app/src/gambas3/FMain.form gambas/trunk/app/src/gambas3/Project.module gambas/trunk/app/src/gambas3/support.txt Added Paths: ----------- gambas/trunk/app/src/gambas3/img/16/report.png gambas/trunk/app/src/gambas3/img/16/webpage.png gambas/trunk/app/src/gambas3/img/module/report.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-04-26 21:49:17
|
Revision: 1937 http://gambas.svn.sourceforge.net/gambas/?rev=1937&view=rev Author: gambas Date: 2009-04-26 21:49:07 +0000 (Sun, 26 Apr 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The work on "module" support continues. Modified Paths: -------------- gambas/trunk/app/src/gambas3/CModule.class gambas/trunk/app/src/gambas3/FCreateFile.class gambas/trunk/app/src/gambas3/FEditor.class gambas/trunk/app/src/gambas3/FEditor.form gambas/trunk/app/src/gambas3/FForm.form gambas/trunk/app/src/gambas3/FMain.class gambas/trunk/app/src/gambas3/FMain.form gambas/trunk/app/src/gambas3/FTextEditor.class gambas/trunk/app/src/gambas3/FTextEditor.form gambas/trunk/app/src/gambas3/Project.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-06-15 11:39:30
|
Revision: 2018 http://gambas.svn.sourceforge.net/gambas/?rev=2018&view=rev Author: gambas Date: 2009-06-15 11:38:29 +0000 (Mon, 15 Jun 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Project versioning buttons are visible again! Modified Paths: -------------- gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/FPropertyProject.form gambas/trunk/app/src/gambas3/FToolBox.class gambas/trunk/app/src/gambas3/Project.module Added Paths: ----------- gambas/trunk/app/src/gambas3/FToolPanel.class gambas/trunk/app/src/gambas3/FToolPanel.form Removed Paths: ------------- gambas/trunk/app/src/gambas3/FToolBar.class gambas/trunk/app/src/gambas3/FToolBar.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <se...@us...> - 2009-06-25 14:53:09
|
Revision: 2042 http://gambas.svn.sourceforge.net/gambas/?rev=2042&view=rev Author: seraf56 Date: 2009-06-25 14:52:05 +0000 (Thu, 25 Jun 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Add ExtraFiles Tab in BuildPackage Wizard Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/FMakeInstall.class gambas/trunk/app/src/gambas3/FMakeInstall.form gambas/trunk/app/src/gambas3/Package.module gambas/trunk/app/src/gambas3/Project.module Added Paths: ----------- gambas/trunk/app/src/gambas3/.hidden/CHANGELOG This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <se...@us...> - 2009-06-26 09:06:25
|
Revision: 2045 http://gambas.svn.sourceforge.net/gambas/?rev=2045&view=rev Author: seraf56 Date: 2009-06-26 09:06:23 +0000 (Fri, 26 Jun 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: fix bug in tab ExtraFiles in BuildPackageWizard Modified Paths: -------------- gambas/trunk/app/src/gambas3/.hidden/CHANGELOG gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/FMakeInstall.class gambas/trunk/app/src/gambas3/Package.module Added Paths: ----------- gambas/trunk/app/src/gambas3/FSelectExtraFile.class gambas/trunk/app/src/gambas3/FSelectExtraFile.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-04 19:03:43
|
Revision: 2072 http://gambas.svn.sourceforge.net/gambas/?rev=2072&view=rev Author: gambas Date: 2009-07-04 19:03:34 +0000 (Sat, 04 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fix a possible crash in packager wizard. * BUG: Moving source directories is reliable now. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/.src/FMakeInstall.class gambas/trunk/app/src/gambas3/.src/FMakeInstall.form gambas/trunk/app/src/gambas3/.src/Project.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-10 19:40:24
|
Revision: 2105 http://gambas.svn.sourceforge.net/gambas/?rev=2105&view=rev Author: gambas Date: 2009-07-10 19:40:20 +0000 (Fri, 10 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: In the code editor, Ctrl+Click has the same effect as F2. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/ar.po gambas/trunk/app/src/gambas3/.lang/es.po gambas/trunk/app/src/gambas3/.lang/hr.po gambas/trunk/app/src/gambas3/.lang/zh_TW.po gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class~ gambas/trunk/app/src/gambas3/.src/Translation/FTranslate.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-23 15:45:34
|
Revision: 2149 http://gambas.svn.sourceforge.net/gambas/?rev=2149&view=rev Author: gambix Date: 2009-07-23 15:45:31 +0000 (Thu, 23 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Now the help on a keyword and some symbol is showed on the bottom of the interface when you do a shift dblclick on a word. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/.src/Component/CComponent.class gambas/trunk/app/src/gambas3/.src/Debug/FDebugInfo.class gambas/trunk/app/src/gambas3/.src/Debug/FDebugInfo.form gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class Added Paths: ----------- gambas/trunk/app/src/gambas3/.src/Debug/FHelp.class gambas/trunk/app/src/gambas3/.src/Debug/FHelp.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-23 21:33:54
|
Revision: 2152 http://gambas.svn.sourceforge.net/gambas/?rev=2152&view=rev Author: gambix Date: 2009-07-23 21:33:41 +0000 (Thu, 23 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Correct an error, and work on all the help Modified Paths: -------------- gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/.src/Debug/FHelp.class gambas/trunk/app/src/gambas3/.src/Editor/Code/FEditor.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-23 23:51:45
|
Revision: 2156 http://gambas.svn.sourceforge.net/gambas/?rev=2156&view=rev Author: gambas Date: 2009-07-23 23:51:34 +0000 (Thu, 23 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Database passwords are now stored in memory if they are not saved to the desktop password database. Modified Paths: -------------- gambas/trunk/app/src/gambas3/.lang/fr.mo gambas/trunk/app/src/gambas3/.lang/fr.po gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/.src/Connection/FNewConnection.class gambas/trunk/app/src/gambas3/.src/Connection/MConnection.module gambas/trunk/app/src/gambas3/.src/Editor/Connection/FConnectionEditor.class gambas/trunk/app/src/gambas3/.src/FMain.class gambas/trunk/app/src/gambas3/.src/Project.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-07-24 15:50:50
|
Revision: 2162 http://gambas.svn.sourceforge.net/gambas/?rev=2162&view=rev Author: gambix Date: 2009-07-24 15:50:38 +0000 (Fri, 24 Jul 2009) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Local symbol help begin to work Modified Paths: -------------- gambas/trunk/app/src/gambas3/.project gambas/trunk/app/src/gambas3/.src/Component/CComponent.class gambas/trunk/app/src/gambas3/.src/Debug/FHelp.class This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |