From commit-watcher at mono-cvs.ximian.com Tue Jun 1 10:14:26 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Tue, 1 Jun 2004 10:14:26 -0400 (EDT) Subject: [Monodevelop-patches-list] r1679 - in trunk/MonoDevelop: . src/AddIns/prj2make-sharp-lib Message-ID: <20040601141426.EA04E9474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-01 10:14:26 -0400 (Tue, 01 Jun 2004) New Revision: 1679 Modified: trunk/MonoDevelop/ChangeLog trunk/MonoDevelop/configure.in trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/ChangeLog Log: move a changelog entry, and trust gtksourceview-sharp to do the gsv check. Modified: trunk/MonoDevelop/ChangeLog =================================================================== --- trunk/MonoDevelop/ChangeLog 2004-05-31 22:01:48 UTC (rev 1678) +++ trunk/MonoDevelop/ChangeLog 2004-06-01 14:14:26 UTC (rev 1679) @@ -1,7 +1,6 @@ -2004-05-31 Francisco "Paco" Martinez +2004-06-01 Todd Berman - * src/Addin/prj2make-sharp-lib/MsPrjHelper.cs -- corrects problems with the - import of items flag as content so it will not try to build those + * configure.in: trust gtksourceview-sharp to check for gtksourceview. 2004-05-30 Fawad Halim * help/: Imported initial docbook docs skeleton Modified: trunk/MonoDevelop/configure.in =================================================================== --- trunk/MonoDevelop/configure.in 2004-05-31 22:01:48 UTC (rev 1678) +++ trunk/MonoDevelop/configure.in 2004-06-01 14:14:26 UTC (rev 1679) @@ -29,11 +29,9 @@ dnl unmanaged hard dependencies MONO_REQUIRED_VERSION=0.95 -GTKSOURCEVIEW_REQUIRED_VERSION=0.7 GNOMEVFS_REQUIRED_VERSION=2.0 PKG_CHECK_MODULES(UNMANAGED_DEPENDENCIES, mono >= $MONO_REQUIRED_VERSION -gtksourceview-1.0 >= $GTKSOURCEVIEW_REQUIRED_VERSION gnome-vfs-2.0 >= $GNOMEVFS_REQUIRED_VERSION ) Modified: trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/ChangeLog =================================================================== --- trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/ChangeLog 2004-05-31 22:01:48 UTC (rev 1678) +++ trunk/MonoDevelop/src/AddIns/prj2make-sharp-lib/ChangeLog 2004-06-01 14:14:26 UTC (rev 1679) @@ -1,3 +1,8 @@ +2004-05-31 Francisco "Paco" Martinez + + * src/Addin/prj2make-sharp-lib/MsPrjHelper.cs: corrects problems with + the import of items flag as content so it will not try to build those + 2004-05-17 Todd Berman * prj2make-sharp-lib-Commands.cs: use HOME instead of Personal From commit-watcher at mono-cvs.ximian.com Tue Jun 1 15:26:16 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Tue, 1 Jun 2004 15:26:16 -0400 (EDT) Subject: [Monodevelop-patches-list] r1680 - trunk/MonoDevelop Message-ID: <20040601192616.7BA389474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-01 15:26:16 -0400 (Tue, 01 Jun 2004) New Revision: 1680 Modified: trunk/MonoDevelop/ChangeLog trunk/MonoDevelop/monodevelop.in Log: fixy fixy Modified: trunk/MonoDevelop/ChangeLog =================================================================== --- trunk/MonoDevelop/ChangeLog 2004-06-01 14:14:26 UTC (rev 1679) +++ trunk/MonoDevelop/ChangeLog 2004-06-01 19:26:16 UTC (rev 1680) @@ -1,5 +1,9 @@ 2004-06-01 Todd Berman + * monodevelop.in: patch from cmeadors to fix weird startup issue. + +2004-06-01 Todd Berman + * configure.in: trust gtksourceview-sharp to check for gtksourceview. 2004-05-30 Fawad Halim Modified: trunk/MonoDevelop/monodevelop.in =================================================================== --- trunk/MonoDevelop/monodevelop.in 2004-06-01 14:14:26 UTC (rev 1679) +++ trunk/MonoDevelop/monodevelop.in 2004-06-01 19:26:16 UTC (rev 1680) @@ -4,7 +4,7 @@ MOZILLA_HOME=$MOZILLA_FIVE_HOME elif [ -f @MOZILLA_HOME@/chrome/comm.jar ]; then MOZILLA_HOME=@MOZILLA_HOME@ -elif $(which mozilla) && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then +elif [ $(which mozilla) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2) else echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory" From commit-watcher at mono-cvs.ximian.com Tue Jun 1 16:39:12 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Tue, 1 Jun 2004 16:39:12 -0400 (EDT) Subject: [Monodevelop-patches-list] r1681 - in branches/MonoDevelop-0.4: . po src/Libraries/MonoDevelop.Gui.Utils Message-ID: <20040601203912.464899474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-01 16:39:12 -0400 (Tue, 01 Jun 2004) New Revision: 1681 Added: branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config Modified: branches/MonoDevelop-0.4/monodevelop.in branches/MonoDevelop-0.4/po/da.po branches/MonoDevelop-0.4/po/es.po branches/MonoDevelop-0.4/po/fr.po branches/MonoDevelop-0.4/po/ja_JP.po branches/MonoDevelop-0.4/po/pt_BR.po branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am Log: some small fixes. Modified: branches/MonoDevelop-0.4/monodevelop.in =================================================================== --- branches/MonoDevelop-0.4/monodevelop.in 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/monodevelop.in 2004-06-01 20:39:12 UTC (rev 1681) @@ -4,7 +4,7 @@ MOZILLA_HOME=$MOZILLA_FIVE_HOME elif [ -f @MOZILLA_HOME@/chrome/comm.jar ]; then MOZILLA_HOME=@MOZILLA_HOME@ -elif $(which mozilla) && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then +elif [ $(which mozilla) ] && grep MOZILLA_FIVE_HOME= "$(which mozilla)" > /dev/null ; then MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f 2) else echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory" Modified: branches/MonoDevelop-0.4/po/da.po =================================================================== --- branches/MonoDevelop-0.4/po/da.po 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/po/da.po 2004-06-01 20:39:12 UTC (rev 1681) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-27 15:21+0200\n" "Last-Translator: Martin Willemoes Hansen \n" "Language-Team: Martin Willemoes Hansen \n" Modified: branches/MonoDevelop-0.4/po/es.po =================================================================== --- branches/MonoDevelop-0.4/po/es.po 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/po/es.po 2004-06-01 20:39:12 UTC (rev 1681) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: MonoDevelop\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-23 10:30-0500\n" "Last-Translator: Antonio Ognio \n" "Language-Team: Spanish \n" Modified: branches/MonoDevelop-0.4/po/fr.po =================================================================== --- branches/MonoDevelop-0.4/po/fr.po 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/po/fr.po 2004-06-01 20:39:12 UTC (rev 1681) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: fr_FR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-04-18 20:52-0400\n" "Last-Translator: Vincent Daron \n" "Language-Team: Fran?cais \n" Modified: branches/MonoDevelop-0.4/po/ja_JP.po =================================================================== --- branches/MonoDevelop-0.4/po/ja_JP.po 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/po/ja_JP.po 2004-06-01 20:39:12 UTC (rev 1681) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-04-02 03:31-0500\n" "Last-Translator: Atsushi Enomoto \n" "Language-Team: Atsushi Enomoto \n" Modified: branches/MonoDevelop-0.4/po/pt_BR.po =================================================================== --- branches/MonoDevelop-0.4/po/pt_BR.po 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/po/pt_BR.po 2004-06-01 20:39:12 UTC (rev 1681) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-31 16:26-0300\n" "Last-Translator: Maur?cio de Lemos Rodrigues Collares Neto \n" Modified: branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am =================================================================== --- branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am 2004-06-01 20:39:12 UTC (rev 1681) @@ -21,12 +21,12 @@ $(DLL): $(build_sources) mcs /debug /out:$(DLL) /target:library $(REFERENCES) $(build_sources) \ - && cp $(DLL) ../../../build/bin/. + && cp $(DLL) ../../../build/bin/. && cp $(srcdir)/$(DLL).config ../../../build/bin assemblydir = $(libdir)/monodevelop/bin -assembly_DATA = $(DLL) +assembly_DATA = $(DLL) $(DLL).config CLEANFILES=$(DLL) -EXTRA_DIST = $(FILES) +EXTRA_DIST = $(FILES) $(DLL).config Added: branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config =================================================================== --- branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config 2004-06-01 19:26:16 UTC (rev 1680) +++ branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config 2004-06-01 20:39:12 UTC (rev 1681) @@ -0,0 +1,3 @@ + + + From commit-watcher at mono-cvs.ximian.com Tue Jun 1 16:41:24 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Tue, 1 Jun 2004 16:41:24 -0400 (EDT) Subject: [Monodevelop-patches-list] r1682 - in trunk/MonoDevelop: po src/Libraries/MonoDevelop.Gui.Utils Message-ID: <20040601204124.4537D9474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-01 16:41:23 -0400 (Tue, 01 Jun 2004) New Revision: 1682 Added: trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config Modified: trunk/MonoDevelop/po/da.po trunk/MonoDevelop/po/es.po trunk/MonoDevelop/po/fr.po trunk/MonoDevelop/po/ja_JP.po trunk/MonoDevelop/po/pt_BR.po trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am Log: merge from branch to trunk Modified: trunk/MonoDevelop/po/da.po =================================================================== --- trunk/MonoDevelop/po/da.po 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/po/da.po 2004-06-01 20:41:23 UTC (rev 1682) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-27 15:21+0200\n" "Last-Translator: Martin Willemoes Hansen \n" "Language-Team: Martin Willemoes Hansen \n" Modified: trunk/MonoDevelop/po/es.po =================================================================== --- trunk/MonoDevelop/po/es.po 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/po/es.po 2004-06-01 20:41:23 UTC (rev 1682) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: MonoDevelop\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-23 10:30-0500\n" "Last-Translator: Antonio Ognio \n" "Language-Team: Spanish \n" Modified: trunk/MonoDevelop/po/fr.po =================================================================== --- trunk/MonoDevelop/po/fr.po 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/po/fr.po 2004-06-01 20:41:23 UTC (rev 1682) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: fr_FR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-04-18 20:52-0400\n" "Last-Translator: Vincent Daron \n" "Language-Team: Fran?cais \n" Modified: trunk/MonoDevelop/po/ja_JP.po =================================================================== --- trunk/MonoDevelop/po/ja_JP.po 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/po/ja_JP.po 2004-06-01 20:41:23 UTC (rev 1682) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-04-02 03:31-0500\n" "Last-Translator: Atsushi Enomoto \n" "Language-Team: Atsushi Enomoto \n" Modified: trunk/MonoDevelop/po/pt_BR.po =================================================================== --- trunk/MonoDevelop/po/pt_BR.po 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/po/pt_BR.po 2004-06-01 20:41:23 UTC (rev 1682) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: MonoDevelop 0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-05-31 17:50-0400\n" +"POT-Creation-Date: 2004-06-01 17:07-0400\n" "PO-Revision-Date: 2004-05-31 16:26-0300\n" "Last-Translator: Maur?cio de Lemos Rodrigues Collares Neto \n" Modified: trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am =================================================================== --- trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am 2004-06-01 20:39:12 UTC (rev 1681) +++ trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am 2004-06-01 20:41:23 UTC (rev 1682) @@ -21,12 +21,12 @@ $(DLL): $(build_sources) mcs /debug /out:$(DLL) /target:library $(REFERENCES) $(build_sources) \ - && cp $(DLL) ../../../build/bin/. + && cp $(DLL) ../../../build/bin/. && cp $(srcdir)/$(DLL).config ../../../build/bin assemblydir = $(libdir)/monodevelop/bin -assembly_DATA = $(DLL) +assembly_DATA = $(DLL) $(DLL).config CLEANFILES=$(DLL) -EXTRA_DIST = $(FILES) +EXTRA_DIST = $(FILES) $(DLL).config Copied: trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config (from rev 1681, branches/MonoDevelop-0.4/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config) From commit-watcher at mono-cvs.ximian.com Tue Jun 1 23:36:56 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Tue, 1 Jun 2004 23:36:56 -0400 (EDT) Subject: [Monodevelop-patches-list] r1683 - in trunk/md-website: . release_notes tutorials Message-ID: <20040602033656.268D69474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-01 23:36:55 -0400 (Tue, 01 Jun 2004) New Revision: 1683 Modified: trunk/md-website/news.aspx trunk/md-website/release.aspx trunk/md-website/release_notes/0.4.html trunk/md-website/tutorials/package_install.aspx Log: pushing some 0.4 release stuff Modified: trunk/md-website/news.aspx =================================================================== --- trunk/md-website/news.aspx 2004-06-01 20:41:23 UTC (rev 1682) +++ trunk/md-website/news.aspx 2004-06-02 03:36:55 UTC (rev 1683) @@ -5,6 +5,11 @@
News
+
June 1, 2004: MonoDevelop 0.4 Released
+

MonoDevelop 0.4 released. Release notes available + here. Packages are available in the + mono redcarpet channel.

+
May 4, 2004: MonoDevelop 0.3 Released

MonoDevelop 0.3 is released. Read about it and download it from the releases page and the 0.3 release notes.

Modified: trunk/md-website/release.aspx =================================================================== --- trunk/md-website/release.aspx 2004-06-01 20:41:23 UTC (rev 1682) +++ trunk/md-website/release.aspx 2004-06-02 03:36:55 UTC (rev 1683) @@ -7,6 +7,12 @@

Milestone releases can be found here as tarballs. We will also post any binary packages contributed by users.


+

MonoDevelop 0.4

+ +

MonoDevelop 0.3

  • Release notes
  • Modified: trunk/md-website/release_notes/0.4.html =================================================================== --- trunk/md-website/release_notes/0.4.html 2004-06-01 20:41:23 UTC (rev 1682) +++ trunk/md-website/release_notes/0.4.html 2004-06-02 03:36:55 UTC (rev 1683) @@ -103,7 +103,8 @@

    You can get detailed instructions on how to build MonoDevelop 0.4 from here.

    -

    You can download MonoDevelop 0.4 source from here. The go-mono site may contain packages for your distro.

    +

    You can download MonoDevelop 0.4 source from here. The go-mono site contains packages for everything for + many popular distros. You can also check the mono redcarpet channel.

    New Features

    Modified: trunk/md-website/tutorials/package_install.aspx =================================================================== --- trunk/md-website/tutorials/package_install.aspx 2004-06-01 20:41:23 UTC (rev 1682) +++ trunk/md-website/tutorials/package_install.aspx 2004-06-02 03:36:55 UTC (rev 1683) @@ -5,7 +5,15 @@
    Installation Tutorial
    -

    This tutorial is your guide to installing MonoDevelop releases using official packages. If you would like to build MonoDevelop from snapshots, please see the +

    Before reading any further, please consider installing MonoDevelop + from binary pacakges. This is most likely far easier for you in the + short term, and better for you in the long term. MonoDevelop packages + are available from the redcarpet mono channel, or from + go-mono.com.

    + +

    Most likely, this is the path you want to take.

    + +

    This tutorial is your guide to installing MonoDevelop releases using official tarball packages. If you would like to build MonoDevelop from snapshots, please see the snapshot tutorial.

    Unless specified otherwise, build and install all tarball packages using:

    @@ -57,32 +65,33 @@
           

    MonoDevelop will require the following mono packages to be installed, in this order:

    When building from the source provided above, always use a prefix of `/usr'.

    Some packages are also available as prebuild binary packages (RPMs and DEBs). Binary packages can be found at mono download page for RedHat, Fedora, Suse, and Debian. They are also available through Ximian's -Red Carpet, in the `mono' channel. Currently, -binary packages only exist for these modules: +Red Carpet, in the `mono' channel. Currently, binary packages exist for these modules for most distros:

    • mono
    • ICU (`icu' and `libicu26')
    • gtk-sharp
    • monodoc
    • +
    • gecko-sharp
    • +
    • gtksourceview-sharp
    • +
    • monodevelop
    -Other binary packages are under development, and will be available soon.




    Installing MonoDevelop

    The final step in this process is to build MonoDevelop itself. Download the -MonoDevelop 0.3 package.

    +MonoDevelop 0.3 package.

     export PKG_CONFIG_PATH="/usr/lib/pkgconfig"
    
    
    
    From commit-watcher at mono-cvs.ximian.com  Tue Jun  1 23:40:47 2004
    From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com)
    Date: Tue,  1 Jun 2004 23:40:47 -0400 (EDT)
    Subject: [Monodevelop-patches-list] r1684 - trunk/md-website/tutorials
    Message-ID: <20040602034047.F3E8D9474F@mono-cvs.ximian.com>
    
    Author: tberman
    Date: 2004-06-01 23:40:47 -0400 (Tue, 01 Jun 2004)
    New Revision: 1684
    
    Modified:
       trunk/md-website/tutorials/package_install.aspx
    Log:
    yes, at least the link worked
    
    
    Modified: trunk/md-website/tutorials/package_install.aspx
    ===================================================================
    --- trunk/md-website/tutorials/package_install.aspx	2004-06-02 03:36:55 UTC (rev 1683)
    +++ trunk/md-website/tutorials/package_install.aspx	2004-06-02 03:40:47 UTC (rev 1684)
    @@ -91,7 +91,7 @@
           


    Installing MonoDevelop

    The final step in this process is to build MonoDevelop itself. Download the -MonoDevelop 0.3 package.

    +MonoDevelop 0.4 package.

     export PKG_CONFIG_PATH="/usr/lib/pkgconfig"
    
    
    
    From commit-watcher at mono-cvs.ximian.com  Wed Jun  2 11:44:19 2004
    From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com)
    Date: Wed,  2 Jun 2004 11:44:19 -0400 (EDT)
    Subject: [Monodevelop-patches-list] r1685 - trunk/md-website/release_notes
    Message-ID: <20040602154419.BCFDA9474F@mono-cvs.ximian.com>
    
    Author: tberman
    Date: 2004-06-02 11:44:19 -0400 (Wed, 02 Jun 2004)
    New Revision: 1685
    
    Modified:
       trunk/md-website/release_notes/0.4.html
    Log:
    small update
    
    
    Modified: trunk/md-website/release_notes/0.4.html
    ===================================================================
    --- trunk/md-website/release_notes/0.4.html	2004-06-02 03:40:47 UTC (rev 1684)
    +++ trunk/md-website/release_notes/0.4.html	2004-06-02 15:44:19 UTC (rev 1685)
    @@ -168,7 +168,10 @@
         
         

    This list is not complete, it is missing some contributions sent in to the list and via our bugzilla. Your work is still greatly - appreciated.

    + appreciated. If your name was left off the list, it was not + intentional, please send an email to the + list + and it will be corrected as soon as possible.

    Translators

    From commit-watcher at mono-cvs.ximian.com Wed Jun 2 13:58:34 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Wed, 2 Jun 2004 13:58:34 -0400 (EDT) Subject: [Monodevelop-patches-list] r1686 - in trunk/MonoDevelop: . src/AddIns/DisplayBindings/SourceEditor/Gui src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs src/Main/Base/Commands/ProjectBrowserCommands src/Main/Base/Gui/CompletionDatabaseWizard src/Main/Base/Gui/Dialogs src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions src/Main/Base/Gui/Workbench/Layouts Message-ID: <20040602175834.7878A9474F@mono-cvs.ximian.com> Author: jzwart Date: 2004-06-02 13:58:34 -0400 (Wed, 02 Jun 2004) New Revision: 1686 Modified: trunk/MonoDevelop/ChangeLog trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ExportProjectToHtmlDialog.cs trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SplashScreen.cs trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/WordCountDialog.cs trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs Log: 2004-06-02 Jeroen Zwartepoorte * src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ ExportProjectToHtmlDialog.cs: * src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs: * src/Main/Base/Commands/ProjectBrowserCommands/ ResourceFolderNodeCommands.cs: * src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs: * src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs: * src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs: * src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs: * src/Main/Base/Gui/Dialogs/SplashScreen.cs: * src/Main/Base/Gui/Dialogs/NewProjectDialog.cs: * src/Main/Base/Gui/Dialogs/WordCountDialog.cs: * src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/ DeployFileOptions.cs: s/File/System.IO.File/ to make MD compile with the jeroen-gtk-2-4 branch of gtk-sharp (in GTK+-2.4, there's a Gtk.File class now). Modified: trunk/MonoDevelop/ChangeLog =================================================================== --- trunk/MonoDevelop/ChangeLog 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/ChangeLog 2004-06-02 17:58:34 UTC (rev 1686) @@ -1,3 +1,23 @@ +2004-06-02 Jeroen Zwartepoorte + + * src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ + ExportProjectToHtmlDialog.cs: + * src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs: + * src/Main/Base/Commands/ProjectBrowserCommands/ + ResourceFolderNodeCommands.cs: + * src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs: + * src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs: + * src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs: + * src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs: + * src/Main/Base/Gui/Dialogs/SplashScreen.cs: + * src/Main/Base/Gui/Dialogs/NewProjectDialog.cs: + * src/Main/Base/Gui/Dialogs/WordCountDialog.cs: + * src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/ + DeployFileOptions.cs: + + s/File/System.IO.File/ to make MD compile with the jeroen-gtk-2-4 + branch of gtk-sharp (in GTK+-2.4, there's a Gtk.File class now). + 2004-06-01 Todd Berman * monodevelop.in: patch from cmeadors to fix weird startup issue. Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ExportProjectToHtmlDialog.cs =================================================================== --- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ExportProjectToHtmlDialog.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/Dialogs/ExportProjectToHtmlDialog.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -155,11 +155,11 @@ //IDocument document = new DocumentFactory ().CreateDocument (); //document.HighlightingStrategy = HighlightingStrategyFactory.CreateHighlightingStrategyForFile (fileName); - StreamReader stream = File.OpenText (fileName); + StreamReader stream = System.IO.File.OpenText (fileName); //document.TextContent = stream.ReadToEnd (); stream.Close (); - curFileStream = File.CreateText (System.IO.Path.Combine (targetPath, targetFile)); + curFileStream = System.IO.File.CreateText (System.IO.Path.Combine (targetPath, targetFile)); curFileStream.Write ("\r\n"); curFileStream.Write ("\r\n"); curFileStream.Write ("\r\n"); @@ -264,7 +264,7 @@ void WriteIndexTable (string fileName, string name, ArrayList nameList, Hashtable table) { - curIndexStreamStack.Push (File.CreateText(fileName)); + curIndexStreamStack.Push (System.IO.File.CreateText(fileName)); StreamWriter curIndexStream = (StreamWriter) curIndexStreamStack.Peek(); curIndexStream.Write ("\r\n"); @@ -310,7 +310,7 @@ } else if (entry.Value is ProjectFile) { ProjectFile fInfo = (ProjectFile) entry.Value; DateTime time = Directory.GetLastAccessTime (fInfo.Name); - FileStream reader = File.OpenRead (fInfo.Name); + FileStream reader = System.IO.File.OpenRead (fInfo.Name); long size = reader.Length; reader.Close (); @@ -383,7 +383,7 @@ void CreateCSS (string targetPath) { //lock (this) { - StreamWriter sw = File.CreateText (System.IO.Path.Combine (targetPath, "sdcss.css")); + StreamWriter sw = System.IO.File.CreateText (System.IO.Path.Combine (targetPath, "sdcss.css")); sw.Write ("div.code\r\n"); sw.Write ("{\r\n"); sw.Write (" background-color: rgb(255,255,255);\r\n"); Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs =================================================================== --- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -193,7 +193,7 @@ public void LoadFile (string file, string mime) { - StreamReader sr = File.OpenText (file); + StreamReader sr = System.IO.File.OpenText (file); LoadText (sr.ReadToEnd (), mime); sr.Close (); Modified = false; @@ -202,7 +202,7 @@ public void LoadFile (string file) { using (NoUndo n = new NoUndo (this)) { - StreamReader sr = File.OpenText (file); + StreamReader sr = System.IO.File.OpenText (file); Text = sr.ReadToEnd (); sr.Close (); } Modified: trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -122,7 +122,7 @@ // if it is already in the project, or it does exists we try to get a name that is // untitledName + Numer + extension - while (node.Project.IsFileInProject(fileName) || File.Exists(fileName)) { + while (node.Project.IsFileInProject(fileName) || System.IO.File.Exists(fileName)) { fileName = fileUtilityService.GetDirectoryNameWithSeparator(baseFolderPath) + baseName + count.ToString() + extension; ++count; } Modified: trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/ResourceFolderNodeCommands.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -55,7 +55,7 @@ return; foreach (string file in files) { - if (! File.Exists (file)) { + if (!System.IO.File.Exists (file)) { IMessageService messageService = (IMessageService) ServiceManager.Services.GetService (typeof (IMessageService)); messageService.ShowError (String.Format (GettextCatalog.GetString ("Resource file '{0}' does not exist"), file)); goto show_dialog; Modified: trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/DownloadGenerator.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -66,7 +66,7 @@ Stream s = null; try { - s = File.OpenRead(compressedFile); + s = System.IO.File.OpenRead(compressedFile); ProgressHolder ph = new ProgressHolder(); ph.currentProgress = maxAmount / 2; @@ -76,7 +76,7 @@ ph.s = s; Decompressor archive = Decompressor.Load(SourceUri.ToString()); archive.Extract(new ReportingStream(s, new ReadNotification(updateProgress), ph), completionDir); - File.Delete(compressedFile); + System.IO.File.Delete(compressedFile); } catch (Exception e) { throw new Exception("Could not extract archive " + compressedFile + " of type " + Decompressor.GetTypeFromString(SourceUri.ToString()), e); } finally { Modified: trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/UseExistingGenerator.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -25,7 +25,7 @@ throw new PathNotCodeCompletionDatabaseException(Path + " is not a valid file name\n"); if (!Directory.Exists(Path)) throw new PathNotCodeCompletionDatabaseException("Directory " + Path + " does not exist"); - if (!File.Exists(fileUtilityService.GetDirectoryNameWithSeparator(Path) + "CodeCompletionProxyDataV02.bin")) + if (!System.IO.File.Exists(fileUtilityService.GetDirectoryNameWithSeparator(Path) + "CodeCompletionProxyDataV02.bin")) throw new PathNotCodeCompletionDatabaseException(Path + " does not contain valid code completion data"); PropertyService propertyService = (PropertyService)ServiceManager.Services.GetService(typeof(PropertyService)); Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/NewProjectDialog.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -172,7 +172,7 @@ { project.ProjectFiles.Add (new ProjectFile(filename)); - StreamWriter sr = File.CreateText (filename); + StreamWriter sr = System.IO.File.CreateText (filename); sr.Write(stringParserService.Parse(content, new string[,] { {"PROJECT", txt_name.Text}, {"FILE", System.IO.Path.GetFileName(filename)}})); sr.Close(); Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -163,7 +163,7 @@ } } - if (!File.Exists(deployScriptEntry.Text)) { + if (!System.IO.File.Exists(deployScriptEntry.Text)) { MessageDialog dialog = new MessageDialog ((Window) WorkbenchSingleton.Workbench, DialogFlags.DestroyWithParent, MessageType.Error, Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SplashScreen.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SplashScreen.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SplashScreen.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -60,7 +60,7 @@ a = System.IO.Path.Combine (Environment.GetEnvironmentVariable ("HOME"), a.Substring (1)); } - if (File.Exists (a)) + if (System.IO.File.Exists (a)) { requestedFileList.Add (a); return; Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/WordCountDialog.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/WordCountDialog.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/WordCountDialog.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -70,7 +70,7 @@ long numWords = 0; long numChars = 0; - if (!File.Exists(filename)) return null; + if (!System.IO.File.Exists(filename)) return null; FileStream istream = new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.Read); StreamReader sr = new StreamReader(istream); Modified: trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs =================================================================== --- trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs 2004-06-02 15:44:19 UTC (rev 1685) +++ trunk/MonoDevelop/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs 2004-06-02 17:58:34 UTC (rev 1686) @@ -314,7 +314,7 @@ //Console.WriteLine(" Default Layout created."); dockLayout = new DockLayout (dock); - if (File.Exists (configFile)) { + if (System.IO.File.Exists (configFile)) { dockLayout.LoadFromFile (configFile); } else { dockLayout.LoadFromFile ("../data/options/DefaultEditingLayout.xml"); From commit-watcher at mono-cvs.ximian.com Wed Jun 2 16:20:18 2004 From: commit-watcher at mono-cvs.ximian.com (commit-watcher at mono-cvs.ximian.com) Date: Wed, 2 Jun 2004 16:20:18 -0400 (EDT) Subject: [Monodevelop-patches-list] r1687 - in trunk/MonoDevelop: build/AddIns data/resources/glade src/Libraries/MonoDevelop.Gui.Utils src/Main/Base src/Main/Base/Gui/Dialogs/CombineConfiguration src/Main/Base/Internal/Project/Combine Message-ID: <20040602202018.E6C409474F@mono-cvs.ximian.com> Author: tberman Date: 2004-06-02 16:20:18 -0400 (Wed, 02 Jun 2004) New Revision: 1687 Added: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CombineConfiguration/CombineBuildOptions.cs Modified: trunk/MonoDevelop/build/AddIns/SharpDevelopCore.addin.xml trunk/MonoDevelop/data/resources/glade/Base.glade trunk/MonoDevelop/src/Libraries/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.prjx trunk/MonoDevelop/src/Main/Base/ChangeLog trunk/MonoDevelop/src/Main/Base/Internal/Project/Combine/Combine.cs trunk/MonoDevelop/src/Main/Base/Makefile.MonoDevelop.Base trunk/MonoDevelop/src/Main/Base/Makefile.am trunk/MonoDevelop/src/Main/Base/MonoDevelop.Base.prjx Log: gui love for the new solution bould build option. and as non-relative as it may look to you, it really does store it relatively, so it is safe to checkin and distribute. Modified: trunk/MonoDevelop/build/AddIns/SharpDevelopCore.addin.xml =================================================================== --- trunk/MonoDevelop/build/AddIns/SharpDevelopCore.addin.xml 2004-06-02 17:58:34 UTC (rev 1686) +++ trunk/MonoDevelop/build/AddIns/SharpDevelopCore.addin.xml 2004-06-02 20:20:18 UTC (rev 1687) @@ -325,6 +325,9 @@ +