[Monodevelop-patches-list] r1310 - in trunk/MonoDevelop: . src/Main/Base src/Main/Base/Gui/Dialogs
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Wed Mar 31 18:26:45 EST 2004
Author: tberman
Date: 2004-03-31 18:26:44 -0500 (Wed, 31 Mar 2004)
New Revision: 1310
Modified:
trunk/MonoDevelop/ChangeLog
trunk/MonoDevelop/configure.in
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs
trunk/MonoDevelop/src/Main/Base/Makefile.am
Log:
fixing utf8 issues.
Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog 2004-03-31 23:12:14 UTC (rev 1309)
+++ trunk/MonoDevelop/ChangeLog 2004-03-31 23:26:44 UTC (rev 1310)
@@ -1,3 +1,7 @@
+2004-03-31 Todd Berman <tberman at sevenl.net>
+
+ * configure.in: required 0.31 for a utf related stream fix.
+
2004-03-25 Todd Berman <tberman at sevenl.net>
* configure.in: updated for switchover to gecko-sharp
Modified: trunk/MonoDevelop/configure.in
===================================================================
--- trunk/MonoDevelop/configure.in 2004-03-31 23:12:14 UTC (rev 1309)
+++ trunk/MonoDevelop/configure.in 2004-03-31 23:26:44 UTC (rev 1310)
@@ -25,7 +25,7 @@
fi
dnl Find mono
-MONO_REQUIRED_VERSION=0.30
+MONO_REQUIRED_VERSION=0.31
PKG_CHECK_MODULES(BASE_DEPENDENCIES, mono >= $MONO_REQUIRED_VERSION, enable_mono=yes, enable_mono=no)
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-03-31 23:12:14 UTC (rev 1309)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-03-31 23:26:44 UTC (rev 1310)
@@ -1,5 +1,10 @@
2004-03-31 Todd Berman <tberman at sevenl.net>
+ * Gui/Dialogs/CommonAboutDialog.cs: fixing the string stuff.
+ * Makefile.am: adding -codepage:utf8
+
+2004-03-31 Todd Berman <tberman at sevenl.net>
+
* Gui/Dialogs/CommonAboutDialog.cs: adding miguel :)
2004-03-31 Todd Berman <tberman at sevenl.net>
Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs 2004-03-31 23:12:14 UTC (rev 1309)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/CommonAboutDialog.cs 2004-03-31 23:26:44 UTC (rev 1310)
@@ -53,7 +53,7 @@
ResourceService resourceService = (ResourceService)ServiceManager.Services.GetService(typeof(IResourceService));
image = resourceService.GetBitmap ("Icons.AboutImage");
- text = "<b>Ported and developed by:</b>\nTodd Berman\nPedro Abelleira Seco\nJohn Luke\nDaniel Kornhauser\norph\nnricciar\nJohn Bou Antoun\nBen Maurer\nJeroen Zwartepoorte\nGustavo Giráldez\nMiguel de Icaza";
+ text = "<b>Ported and developed by:</b>\nTodd Berman\nPedro Abelleira Seco\nJohn Luke\nDaniel Kornhauser\norph\nnricciar\nJohn Bou Antoun\nBen Maurer\nJeroen Zwartepoorte\nGustavo Giráldez\nMiguel de Icaza ";
//text = "\"The most successful method of programming is to begin a program as simply as possible, test it, and then add to the program until it performs the required job.\"\n -- PDP8 handbook, Pg 9-64\n\n\n";
//text = "\"The primary purpose of the DATA statement is to give names to constants; instead of referring to pi as 3.141592653589793 at every\n appearance, the variable PI can be given that value with a DATA statement and used instead of the longer form of the constant. This also simplifies modifying the program, should the value of pi change.\"\n -- FORTRAN manual for Xerox computers\n\n\n";
Modified: trunk/MonoDevelop/src/Main/Base/Makefile.am
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Makefile.am 2004-03-31 23:12:14 UTC (rev 1309)
+++ trunk/MonoDevelop/src/Main/Base/Makefile.am 2004-03-31 23:26:44 UTC (rev 1310)
@@ -374,7 +374,7 @@
all: $(ASSEMBLY)
$(ASSEMBLY): $(build_sources) ../../../data/resources/glade/Base.glade
- @ $(CSC) /out:$(ASSEMBLY) /target:library $(DLLS) \
+ @ $(CSC) -codepage:utf8 /out:$(ASSEMBLY) /target:library $(DLLS) \
/resource:$(srcdir)/../../../data/resources/glade/Base.glade,Base.glade \
$(monodoc_libflags) \
$(build_sources) \
More information about the Monodevelop-patches-list
mailing list