diff --git a/.gitignore b/.gitignore
index d152dd1..a3bcbec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,4 @@ inkscape.tar.bz2
/inkscape-1.0_2020-05-01_4035a4fb49.tar.xz
/inkscape-1.0.1.tar.xz
/inkscape-1.0.2.tar.xz
+/inkscape-1.1.tar.xz
diff --git a/inkscape-gcc11.patch b/inkscape-gcc11.patch
deleted file mode 100644
index 794fc70..0000000
--- a/inkscape-gcc11.patch
+++ /dev/null
@@ -1,289 +0,0 @@
-diff --git a/src/extension/system.cpp b/src/extension/system.cpp
-index 08de0b4..418f5ba 100644
---- a/src/extension/system.cpp
-+++ b/src/extension/system.cpp
-@@ -174,7 +174,7 @@ open_internal(Extension *in_plug, gpointer in_data)
- // skip all the rest if we already found a function to open it
- // since they're ordered by preference now.
- if (!*pimod) {
-- gchar const *ext = dynamic_cast(in_plug)->get_extension();
-+ gchar const *ext = dynamic_cast(*in_plug).get_extension();
-
- gchar *filenamelower = g_utf8_strdown(filename, -1);
- gchar *extensionlower = g_utf8_strdown(ext, -1);
-@@ -384,7 +384,7 @@ save_internal(Extension *in_plug, gpointer in_data)
- // skip all the rest if we already found someone to save it
- // since they're ordered by preference now.
- if (!*pomod) {
-- gchar const *ext = dynamic_cast