From a77819d4b8024cd0625fd883ecdad35f849717ae Mon Sep 17 00:00:00 2001 From: MakiWolf Date: Tue, 22 Aug 2023 11:54:34 +0200 Subject: [PATCH 1/5] renaming --- main/monodevelop.appdata.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/monodevelop.appdata.xml b/main/monodevelop.appdata.xml index 61e9bfe8f14..02cc5264f56 100644 --- a/main/monodevelop.appdata.xml +++ b/main/monodevelop.appdata.xml @@ -1,13 +1,13 @@ - monodevelop.desktop + dotdevelop.desktop CC0-1.0 LGPL-2.1 and MIT - MonoDevelop + DotDevelop Full-Featured IDE for Mono and Gtk#

- MonoDevelop is a full-featured integrated development + DotDevelop is a full-featured integrated development environment (IDE) for Mono and Gtk# primarily designed for C# and other .NET languages. It allows to quickly create desktop and ASP.NET Web applications. From a5811db85af6d0fd860b0f8b2ec3efb64958af7b Mon Sep 17 00:00:00 2001 From: MakiWolf Date: Tue, 22 Aug 2023 11:55:01 +0200 Subject: [PATCH 2/5] renaming --- MonoDevelop.mdw | 2 +- main/Makefile.am | 2 +- main/configure.ac | 4 ++-- main/{monodevelop.desktop => dotdevelop.desktop} | 6 +++--- main/src/addins/Xml/Properties/AssemblyInfo.cs | 2 +- main/src/core/MonoDevelop.Ide/AddinInfo.cs | 6 +++--- main/src/core/MonoDevelop.Ide/AssemblyInfo.cs | 6 +++--- main/src/core/MonoDevelop.Startup/AssemblyInfo.cs | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) rename main/{monodevelop.desktop => dotdevelop.desktop} (89%) diff --git a/MonoDevelop.mdw b/MonoDevelop.mdw index 61e2897bddc..fa8c147af9b 100644 --- a/MonoDevelop.mdw +++ b/MonoDevelop.mdw @@ -1,4 +1,4 @@ - + main/Main.sln diff --git a/main/Makefile.am b/main/Makefile.am index 101ecc30538..4f26a02576c 100644 --- a/main/Makefile.am +++ b/main/Makefile.am @@ -52,7 +52,7 @@ buildinfodir = $(MD_ASSEMBLY_DIR) buildinfo_DATA = $(buildinfo) desktopdir = $(datadir)/applications -desktop_DATA = monodevelop.desktop +desktop_DATA = dotdevelop.desktop appdatadir = $(datadir)/appdata appdata_DATA = monodevelop.appdata.xml diff --git a/main/configure.ac b/main/configure.ac index a678942019b..908a4e99403 100644 --- a/main/configure.ac +++ b/main/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([monodevelop], m4_esyscmd_s([grep ^Version ../version.config|cut -d '=' -f 2|tr -d '\n']), [monodevelop-list@lists.ximian.com]) +AC_INIT([dotdevelop], m4_esyscmd_s([grep ^Version ../version.config|cut -d '=' -f 2|tr -d '\n']), [monodevelop-list@lists.ximian.com]) AC_PREREQ(2.53) AM_INIT_AUTOMAKE([1.10 tar-ustar]) AM_MAINTAINER_MODE @@ -79,7 +79,7 @@ AM_CONDITIONAL(ENABLE_WINDOWSPLATFORM, [test x$enable_windowsplatform = xyes]) dnl Intl ALL_LINGUAS="cs da de es fr ja pt_BR tr pl it zh_TW zh_CN ru sl ca gl pt sv nl id hu nb ko uk" AC_SUBST(ALL_LINGUAS) -GETTEXT_PACKAGE=monodevelop +GETTEXT_PACKAGE=dotdevelop AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package]) diff --git a/main/monodevelop.desktop b/main/dotdevelop.desktop similarity index 89% rename from main/monodevelop.desktop rename to main/dotdevelop.desktop index 5f02e8e7162..10d075624a5 100644 --- a/main/monodevelop.desktop +++ b/main/dotdevelop.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Version=1.0 Encoding=UTF-8 -Name=MonoDevelop +Name=DotDevelop GenericName=Integrated Development Environment GenericName[ja]=統合開発環境 GenericName[ru]=Интегрированная среда разработки @@ -17,5 +17,5 @@ Type=Application MimeType=text/x-csharp;application/x-mds;application/x-mdp;application/x-cmbx;application/x-prjx;application/x-csproj;application/x-vbproj;application/x-sln;application/x-aspx; Categories=GNOME;GTK;Development;IDE; X-GNOME-Bugzilla-Bugzilla=Ximian -X-GNOME-Bugzilla-Product=MonoDevelop -X-GNOME-Bugzilla-OtherBinaries=monodevelop +X-GNOME-Bugzilla-Product=DotDevelop +X-GNOME-Bugzilla-OtherBinaries=dotdevelop diff --git a/main/src/addins/Xml/Properties/AssemblyInfo.cs b/main/src/addins/Xml/Properties/AssemblyInfo.cs index f6d69570a19..07176c9d15f 100644 --- a/main/src/addins/Xml/Properties/AssemblyInfo.cs +++ b/main/src/addins/Xml/Properties/AssemblyInfo.cs @@ -2,7 +2,7 @@ using System.Reflection; -[assembly: AssemblyProduct ("MonoDevelop")] +[assembly: AssemblyProduct ("DotDevelop")] [assembly: AssemblyTitle ("XML Editor")] [assembly: AssemblyDescription ("XML Editor")] [assembly: AssemblyVersion ("2.6")] diff --git a/main/src/core/MonoDevelop.Ide/AddinInfo.cs b/main/src/core/MonoDevelop.Ide/AddinInfo.cs index a703b9706f3..07465cde191 100644 --- a/main/src/core/MonoDevelop.Ide/AddinInfo.cs +++ b/main/src/core/MonoDevelop.Ide/AddinInfo.cs @@ -6,9 +6,9 @@ Namespace = "MonoDevelop", Version = MonoDevelop.BuildInfo.Version, CompatVersion = MonoDevelop.BuildInfo.CompatVersion, - Category = "MonoDevelop Core")] + Category = "DotDevelop Core")] -[assembly:AddinName ("MonoDevelop Ide")] -[assembly:AddinDescription ("The MonoDevelop IDE application")] +[assembly:AddinName ("DotDevelop Ide")] +[assembly:AddinDescription ("The DotDevelop IDE application")] [assembly:AddinDependency ("Core", MonoDevelop.BuildInfo.Version)] diff --git a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs index 665db780b20..3ce69f4f4aa 100644 --- a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs +++ b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs @@ -3,9 +3,9 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyProduct ("MonoDevelop")] -[assembly: AssemblyTitle ("MonoDevelop Ide")] -[assembly: AssemblyDescription ("The MonoDevelop IDE application.")] +[assembly: AssemblyProduct ("DotDevelop")] +[assembly: AssemblyTitle ("DotDevelop Ide")] +[assembly: AssemblyDescription ("The DotDevelop IDE application.")] [assembly: AssemblyVersion ("2.6")] [assembly: AssemblyCopyright ("LGPL")] diff --git a/main/src/core/MonoDevelop.Startup/AssemblyInfo.cs b/main/src/core/MonoDevelop.Startup/AssemblyInfo.cs index d2e914fd03d..c3aa04e5a2c 100644 --- a/main/src/core/MonoDevelop.Startup/AssemblyInfo.cs +++ b/main/src/core/MonoDevelop.Startup/AssemblyInfo.cs @@ -8,11 +8,11 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyTitle("MonoDevelop")] +[assembly: AssemblyTitle("DotDevelop")] [assembly: AssemblyDescription("A full-featured IDE for Mono and Gtk#.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MonoDevelop")] +[assembly: AssemblyProduct("DotDevelop")] [assembly: AssemblyCopyright("(c) 2004 MonoDevelop Team and Mike Krueger 2000-2003")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] From 79f341f09dde101ae3c7d398f0ed7a059bf13da6 Mon Sep 17 00:00:00 2001 From: MakiWolf Date: Tue, 22 Aug 2023 14:01:56 +0200 Subject: [PATCH 3/5] renaming --- .../MonoDevelop.Core/BrandingService.cs | 14 +++++++------- .../ExtensionModel/MainMenu.addin.xml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Core/BrandingService.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Core/BrandingService.cs index 2586174c751..8e68e30cf76 100644 --- a/main/src/core/MonoDevelop.Core/MonoDevelop.Core/BrandingService.cs +++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Core/BrandingService.cs @@ -42,8 +42,8 @@ public static class BrandingService static XDocument brandingDocument; static XDocument localizedBrandingDocument; - static string applicationName = "MonoDevelop"; - static string applicationLongName = "MonoDevelop"; + static string applicationName = "DotDevelop"; + static string applicationLongName = "DotDevelop"; public static readonly string SuiteName; public static readonly string ProfileDirectoryName; @@ -56,7 +56,7 @@ public static string ApplicationName { } set { if (string.IsNullOrEmpty (value)) - value = "MonoDevelop"; + value = "DotDevelop"; if (applicationName != value) { applicationName = value; @@ -71,7 +71,7 @@ public static string ApplicationLongName { } set { if (string.IsNullOrEmpty (value)) - value = "MonoDevelop"; + value = "DotDevelop"; if (applicationLongName != value) { applicationLongName = value; @@ -217,17 +217,17 @@ public static Stream GetStream (string name, bool lookInCallingAssembly=false) public static string BrandApplicationName (string s) { - return s.Replace ("MonoDevelop", ApplicationName); + return s.Replace ("DotDevelop", ApplicationName); } public static string BrandApplicationLongName (string s) { - return s.Replace ("MonoDevelop", ApplicationLongName); + return s.Replace ("DotDevelop", ApplicationLongName); } public static string BrandEnvironmentVariable (string envVar) { - return envVar.Replace ("MONODEVELOP", ProfileDirectoryName.ToUpper ()); + return envVar.Replace ("DOTDEVELOP", ProfileDirectoryName.ToUpper ()); } public static event EventHandler ApplicationNameChanged; diff --git a/main/src/core/MonoDevelop.Ide/ExtensionModel/MainMenu.addin.xml b/main/src/core/MonoDevelop.Ide/ExtensionModel/MainMenu.addin.xml index 23e34193af4..29e474e62fb 100644 --- a/main/src/core/MonoDevelop.Ide/ExtensionModel/MainMenu.addin.xml +++ b/main/src/core/MonoDevelop.Ide/ExtensionModel/MainMenu.addin.xml @@ -299,7 +299,7 @@ - + From efdbb8ab6fc35f08c78d25be71ece8d3d0c0eaee Mon Sep 17 00:00:00 2001 From: MakiWolf Date: Tue, 22 Aug 2023 21:45:02 +0200 Subject: [PATCH 4/5] renaming --- main/autogen.sh | 2 +- main/dotdevelop.desktop | 2 +- main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs | 2 +- main/src/addins/MonoDevelop.DesignerSupport/AssemblyInfo.cs | 2 +- main/src/core/MonoDevelop.Core/AddinInfo.cs | 6 +++--- main/src/core/MonoDevelop.Core/AssemblyInfo.cs | 6 +++--- .../src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/main/autogen.sh b/main/autogen.sh index 9d61e888734..04b90afe4cc 100755 --- a/main/autogen.sh +++ b/main/autogen.sh @@ -4,7 +4,7 @@ DIE=0 -PKG_NAME=MonoDevelop +PKG_NAME=DotDevelop WANT_AUTOCONF="2.5" srcdir=`dirname $0` test -z "$srcdir" && srcdir=. diff --git a/main/dotdevelop.desktop b/main/dotdevelop.desktop index 10d075624a5..9b147cf18d7 100644 --- a/main/dotdevelop.desktop +++ b/main/dotdevelop.desktop @@ -10,7 +10,7 @@ Comment[ja]=.NETアプリケーション開発を行うための統合開発環 Comment[ru]=Создание приложений .NET в Интегрированной среде разработки Exec=monodevelop %F TryExec=monodevelop -Icon=monodevelop +Icon=dotdevelop StartupNotify=true Terminal=false Type=Application diff --git a/main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs b/main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs index 60adee7d2d9..2cb1d5a7933 100644 --- a/main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs +++ b/main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs @@ -6,7 +6,7 @@ [assembly:Addin ("DesignerSupport", Namespace = "MonoDevelop", Version = MonoDevelop.BuildInfo.Version, - Category = "MonoDevelop Core")] + Category = "DotDevelop Core")] [assembly:AddinName ("Visual Designer Support")] [assembly:AddinDescription ("Supporting services and pads for visual design tools")] diff --git a/main/src/addins/MonoDevelop.DesignerSupport/AssemblyInfo.cs b/main/src/addins/MonoDevelop.DesignerSupport/AssemblyInfo.cs index 180b79728cd..90476cecdae 100644 --- a/main/src/addins/MonoDevelop.DesignerSupport/AssemblyInfo.cs +++ b/main/src/addins/MonoDevelop.DesignerSupport/AssemblyInfo.cs @@ -2,7 +2,7 @@ using System.Reflection; -[assembly: AssemblyProduct ("MonoDevelop")] +[assembly: AssemblyProduct ("DotDevelop")] [assembly: AssemblyTitle ("Visual Designer Support")] [assembly: AssemblyDescription ("Supporting services and pads for visual design tools.")] [assembly: AssemblyVersion ("2.6")] diff --git a/main/src/core/MonoDevelop.Core/AddinInfo.cs b/main/src/core/MonoDevelop.Core/AddinInfo.cs index 61d9261580e..cf5e5b583df 100644 --- a/main/src/core/MonoDevelop.Core/AddinInfo.cs +++ b/main/src/core/MonoDevelop.Core/AddinInfo.cs @@ -6,7 +6,7 @@ Namespace = "MonoDevelop", Version = MonoDevelop.BuildInfo.Version, CompatVersion = MonoDevelop.BuildInfo.CompatVersion, - Category = "MonoDevelop Core")] + Category = "DotDevelop Core")] -[assembly:AddinName ("MonoDevelop Runtime")] -[assembly:AddinDescription ("Provides the core services of the MonoDevelop platform")] +[assembly:AddinName ("DotDevelop Runtime")] +[assembly:AddinDescription ("Provides the core services of the DotDevelop platform")] diff --git a/main/src/core/MonoDevelop.Core/AssemblyInfo.cs b/main/src/core/MonoDevelop.Core/AssemblyInfo.cs index 44be4c463cc..16bb9483b1b 100644 --- a/main/src/core/MonoDevelop.Core/AssemblyInfo.cs +++ b/main/src/core/MonoDevelop.Core/AssemblyInfo.cs @@ -3,8 +3,8 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyProduct ("MonoDevelop")] -[assembly: AssemblyTitle ("MonoDevelop Runtime")] -[assembly: AssemblyDescription ("Provides the core services of the MonoDevelop platform")] +[assembly: AssemblyProduct ("DotDevelop")] +[assembly: AssemblyTitle ("DotDevelop Runtime")] +[assembly: AssemblyDescription ("Provides the core services of the DotDevelop platform")] [assembly: AssemblyVersion ("2.6")] [assembly: AssemblyCopyright ("MIT/X11")] \ No newline at end of file diff --git a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj index 06babcc9f75..c7b1badc7f9 100644 --- a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj +++ b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj @@ -5,7 +5,7 @@ x86 {DA8EDEA6-7DA8-435D-B1A0-F3A0CA07F424} WinExe - MonoDevelop + DotDevelop ..\..\..\theme-icons\Windows\monodevelop.ico $(MDFrameworkVersion) -no-redirect From 716ef9cf937e221d5290753552b386eb48d5a3bd Mon Sep 17 00:00:00 2001 From: MakiWolf Date: Thu, 24 Aug 2023 18:33:38 +0200 Subject: [PATCH 5/5] add dotdevelop contributors to about --- .../MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs index 4720a15a811..ae21b363519 100644 --- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs +++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs @@ -113,7 +113,11 @@ public AboutMonoDevelopTabPage () Markup = string.Format ("{0}", GettextCatalog.GetString ("Copyright")), MarginTop = 6, }); - + + infoBox.PackStart (new Xwt.Label () { + Text = "© 2020–" + DateTime.Now.Year + " DotDevelop contributors", + MarginLeft = 12 + }); infoBox.PackStart (new Xwt.Label () { Text = (DateTime.Now.Year == 2016 ? "© 2016" : "© 2016–" + DateTime.Now.Year) + " Microsoft Corp.", MarginLeft = 12 @@ -126,7 +130,6 @@ public AboutMonoDevelopTabPage () Text = "© 2004–" + DateTime.Now.Year + " MonoDevelop contributors", MarginLeft = 12 }); - this.ShowAll (); } }