Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2 MonoDevelop.mdw
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<WorkspaceItem name="MonoDevelop" ctype="Workspace">
<WorkspaceItem name="DotDevelop" ctype="Workspace">
<Items>
<Item>main/Main.sln</Item>
</Items>
Expand Down
2 changes: 1 addition & 1 deletion 2 main/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 2 main/autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

DIE=0

PKG_NAME=MonoDevelop
PKG_NAME=DotDevelop
WANT_AUTOCONF="2.5"
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
Expand Down
4 changes: 2 additions & 2 deletions 4 main/configure.ac
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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])

Expand Down
8 changes: 4 additions & 4 deletions 8 main/monodevelop.desktop → main/dotdevelop.desktop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=MonoDevelop
Name=DotDevelop
GenericName=Integrated Development Environment
GenericName[ja]=統合開発環境
GenericName[ru]=Интегрированная среда разработки
Expand All @@ -10,12 +10,12 @@ Comment[ja]=.NETアプリケーション開発を行うための統合開発環
Comment[ru]=Создание приложений .NET в Интегрированной среде разработки
Exec=monodevelop %F
TryExec=monodevelop
Icon=monodevelop
Icon=dotdevelop
StartupNotify=true
Terminal=false
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
6 changes: 3 additions & 3 deletions 6 main/monodevelop.appdata.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<application>
<id type="desktop">monodevelop.desktop</id>
<id type="desktop">dotdevelop.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>LGPL-2.1 and MIT</project_license>
<name>MonoDevelop</name>
<name>DotDevelop</name>
<summary>Full-Featured IDE for Mono and Gtk#</summary>
<description>
<p>
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.
Expand Down
2 changes: 1 addition & 1 deletion 2 main/src/addins/MonoDevelop.DesignerSupport/AddinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
2 changes: 1 addition & 1 deletion 2 main/src/addins/Xml/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
6 changes: 3 additions & 3 deletions 6 main/src/core/MonoDevelop.Core/AddinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
6 changes: 3 additions & 3 deletions 6 main/src/core/MonoDevelop.Core/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -56,7 +56,7 @@ public static string ApplicationName {
}
set {
if (string.IsNullOrEmpty (value))
value = "MonoDevelop";
value = "DotDevelop";

if (applicationName != value) {
applicationName = value;
Expand All @@ -71,7 +71,7 @@ public static string ApplicationLongName {
}
set {
if (string.IsNullOrEmpty (value))
value = "MonoDevelop";
value = "DotDevelop";

if (applicationLongName != value) {
applicationLongName = value;
Expand Down Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions 6 main/src/core/MonoDevelop.Ide/AddinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
6 changes: 3 additions & 3 deletions 6 main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
<LinkItem id = "Mono" _label = "Mono Project" description = "A free .NET implementation effort, worth visiting" link = "http://www.mono-project.com" />
</Condition>
<SeparatorItem id = "Separator3" />
<Condition id = "Branding" value = "MonoDevelop">
<Condition id = "Branding" value = "DotDevelop">
<LinkItem id = "ReportBug" _label = "Report Problem..." link = "https://github.com/dotdevelop/dotdevelop/issues" />
</Condition>
<SeparatorItem id = "DiagnosticToolsSeparator" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ public AboutMonoDevelopTabPage ()
Markup = string.Format ("<b>{0}</b>", 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
Expand All @@ -126,7 +130,6 @@ public AboutMonoDevelopTabPage ()
Text = "© 2004–" + DateTime.Now.Year + " MonoDevelop contributors",
MarginLeft = 12
});

this.ShowAll ();
}
}
Expand Down
4 changes: 2 additions & 2 deletions 4 main/src/core/MonoDevelop.Startup/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{DA8EDEA6-7DA8-435D-B1A0-F3A0CA07F424}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AssemblyName>MonoDevelop</AssemblyName>
<AssemblyName>DotDevelop</AssemblyName>
<ApplicationIcon>..\..\..\theme-icons\Windows\monodevelop.ico</ApplicationIcon>
<TargetFrameworkVersion>$(MDFrameworkVersion)</TargetFrameworkVersion>
<Commandlineparameters>-no-redirect</Commandlineparameters>
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.