diff --git a/0001-dde-file-manager-support-loongarch64.patch b/0001-dde-file-manager-support-loongarch64.patch new file mode 100644 index 0000000000000000000000000000000000000000..850c23e7c7972d5a7cb059099d96805ba6e6cd3d --- /dev/null +++ b/0001-dde-file-manager-support-loongarch64.patch @@ -0,0 +1,152 @@ +From 65a5d92c5458d58efd8746f36e97bbc1e6277e78 Mon Sep 17 00:00:00 2001 +From: liuzhilin +Date: Fri, 29 Apr 2022 22:22:56 +0800 +Subject: [PATCH] dde-file-manager-support-loongarch64 + +--- + src/common/common.pri | 9 ++++++--- + src/dde-desktop/dde-desktop-build.pri | 2 +- + src/dde-file-manager-lib/dde-file-manager-lib.pro | 2 +- + .../dde-file-manager-plugins.pro | 2 +- + .../pluginPreview/pluginPreview.pro | 2 +- + src/dde-file-manager/dde-file-manager.pro | 4 ++-- + tests/dde-file-manager-lib/test-dde-file-manager-lib.pro | 2 +- + .../test-dde-file-manager-plugins.pro | 2 +- + 8 files changed, 14 insertions(+), 11 deletions(-) + +diff --git a/src/common/common.pri b/src/common/common.pri +index 1bde3f8..1312c4d 100644 +--- a/src/common/common.pri ++++ b/src/common/common.pri +@@ -9,14 +9,17 @@ unix { + } + + ARCH = $$QMAKE_HOST.arch +- isEqual(ARCH, mips64) | isEqual(ARCH, mips32) { ++ isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) { + DEFINES += SPLICE_CP + + #不支持CI内存检测 + CONFIG += DISABLE_TSAN_TOOL + } ++ isEqual(ARCH, loongarch64) ++ DEFINES += __mips__ ++ DEFINES += __MIPSEL__ + +- isEqual(ARCH, x86_64) | isEqual(ARCH, i686) { ++ isEqual(ARCH, x86_64) | isEqual(ARCH, i686) | isEqual(ARCH, ppc64le) { + message("Build arch:" $$ARCH) + + #只在release开启,方便debug时开发 +@@ -34,7 +37,7 @@ unix { + DEFINES += ENABLE_ASYNCINIT + } + +- isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) { ++ isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + DEFINES += ARCH_MIPSEL ARCH_SW + + #use classical file section mode +diff --git a/src/dde-desktop/dde-desktop-build.pri b/src/dde-desktop/dde-desktop-build.pri +index fd0ee1a..0061e0e 100644 +--- a/src/dde-desktop/dde-desktop-build.pri ++++ b/src/dde-desktop/dde-desktop-build.pri +@@ -2,7 +2,7 @@ DEFINES += QT_MESSAGELOGCONTEXT + + EDITION=COMMUNITY + ARCH = $$QMAKE_HOST.arch +-isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) { ++isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le){ + EDITION=RACCOON + } + +diff --git a/src/dde-file-manager-lib/dde-file-manager-lib.pro b/src/dde-file-manager-lib/dde-file-manager-lib.pro +index 386af87..d6865a1 100644 +--- a/src/dde-file-manager-lib/dde-file-manager-lib.pro ++++ b/src/dde-file-manager-lib/dde-file-manager-lib.pro +@@ -92,7 +92,7 @@ include(interfaces/vfs/vfs.pri) + include(interfaces/customization/customization.pri) + include(src.pri) + +-isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64){ ++isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + include(search/dfsearch.pri) + } + +diff --git a/src/dde-file-manager-plugins/dde-file-manager-plugins.pro b/src/dde-file-manager-plugins/dde-file-manager-plugins.pro +index 5ac2265..9dc5284 100644 +--- a/src/dde-file-manager-plugins/dde-file-manager-plugins.pro ++++ b/src/dde-file-manager-plugins/dde-file-manager-plugins.pro +@@ -4,7 +4,7 @@ include(../common/common.pri) + + IS_TEST_VIEW_PLUGIN = False + +-isEqual(ARCH, mips64) | isEqual(ARCH, mips32) { ++isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + # SUBDIRS += \ + # showfile + } +diff --git a/src/dde-file-manager-plugins/pluginPreview/pluginPreview.pro b/src/dde-file-manager-plugins/pluginPreview/pluginPreview.pro +index b6b6990..ce7ae2b 100644 +--- a/src/dde-file-manager-plugins/pluginPreview/pluginPreview.pro ++++ b/src/dde-file-manager-plugins/pluginPreview/pluginPreview.pro +@@ -9,7 +9,7 @@ SUBDIRS += \ + ARCH = $$QMAKE_HOST.arch + + !CONFIG(DISABLE_FFMPEG):!isEqual(BUILD_MINIMUM, YES) { +- !isEqual(ARCH, sw_64):!isEqual(ARCH, mips64):!isEqual(ARCH, mips32) { ++ !isEqual(ARCH, sw_64):!isEqual(ARCH, mips64):!isEqual(ARCH, mips32):!isEqual(ARCH, loongarch64):!isEqual(ARCH, ppc64le) { + SUBDIRS += dde-video-preview-plugin + } + } +diff --git a/src/dde-file-manager/dde-file-manager.pro b/src/dde-file-manager/dde-file-manager.pro +index ed8bae8..02ffee5 100644 +--- a/src/dde-file-manager/dde-file-manager.pro ++++ b/src/dde-file-manager/dde-file-manager.pro +@@ -69,7 +69,7 @@ DEFINES += APPSHAREDIR=\\\"$$PREFIX/share/$$TARGET\\\" + target.path = $$BINDIR + + desktop.path = $${PREFIX}/share/applications/ +-isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) { ++isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + desktop.files = $$PWD/mips/$${TARGET}.desktop \ + dde-open.desktop + }else{ +@@ -91,7 +91,7 @@ manual.path = /usr/share/deepin-manual/manual-assets/application + + INSTALLS += target desktop policy pkexec propertyDialogShell manual + +-isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) { ++isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + dde-mips-shs.path = $$BINDIR + dde-mips-shs.files = $$PWD/mips/dde-computer.sh \ + $$PWD/mips/dde-trash.sh \ +diff --git a/tests/dde-file-manager-lib/test-dde-file-manager-lib.pro b/tests/dde-file-manager-lib/test-dde-file-manager-lib.pro +index 4aefcfd..2a2beb2 100644 +--- a/tests/dde-file-manager-lib/test-dde-file-manager-lib.pro ++++ b/tests/dde-file-manager-lib/test-dde-file-manager-lib.pro +@@ -84,7 +84,7 @@ include($$LIB_DFM_SRC_FOLDER/interfaces/vfs/vfs.pri) + include($$LIB_DFM_SRC_FOLDER/interfaces/customization/customization.pri) + include($$LIB_DFM_SRC_FOLDER/src.pri) + +-isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64){ ++isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, aarch64) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { + include($$LIB_DFM_SRC_FOLDER/search/dfsearch.pri) + } + APPSHAREDIR = $$PREFIX/share/$$TARGET +diff --git a/tests/dde-file-manager-plugins/test-dde-file-manager-plugins.pro b/tests/dde-file-manager-plugins/test-dde-file-manager-plugins.pro +index 93b4333..2c3bb89 100644 +--- a/tests/dde-file-manager-plugins/test-dde-file-manager-plugins.pro ++++ b/tests/dde-file-manager-plugins/test-dde-file-manager-plugins.pro +@@ -2,7 +2,7 @@ TEMPLATE = subdirs + + include(../../src/common/common.pri) + +-isEqual(ARCH, mips64) | isEqual(ARCH, mips32) { ++isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) { + # SUBDIRS += \ + # showfile + } +-- +2.27.0 + diff --git a/0001-dde-file-manager-support-ppc64le.patch b/0001-dde-file-manager-support-ppc64le.patch new file mode 100644 index 0000000000000000000000000000000000000000..5b1d2e01534eb822d1b195783144dec7afb1241a --- /dev/null +++ b/0001-dde-file-manager-support-ppc64le.patch @@ -0,0 +1,59 @@ +From 4598a850e86331c02be9e544bede48a24672d476 Mon Sep 17 00:00:00 2001 +From: liuzhilin +Date: Sat, 7 May 2022 14:02:04 +0800 +Subject: [PATCH] dde-file-manager-support-ppc64le + +--- + src/common/common.pri | 8 ++++++-- + tests/all-ut-prj-running.sh | 2 +- + 2 files changed, 7 insertions(+), 3 deletions(-) + +diff --git a/src/common/common.pri b/src/common/common.pri +index 1312c4d..91788af 100644 +--- a/src/common/common.pri ++++ b/src/common/common.pri +@@ -19,7 +19,7 @@ unix { + DEFINES += __mips__ + DEFINES += __MIPSEL__ + +- isEqual(ARCH, x86_64) | isEqual(ARCH, i686) | isEqual(ARCH, ppc64le) { ++ isEqual(ARCH, x86_64) | isEqual(ARCH, i686) { + message("Build arch:" $$ARCH) + + #只在release开启,方便debug时开发 +@@ -38,7 +38,7 @@ unix { + } + + isEqual(ARCH, sw_64) | isEqual(ARCH, mips64) | isEqual(ARCH, mips32) | isEqual(ARCH, loongarch64) | isEqual(ARCH, ppc64le) { +- DEFINES += ARCH_MIPSEL ARCH_SW ++ DEFINES += ARCH_MIPSEL ARCH_SW ARCH_PPC64EL + + #use classical file section mode + DEFINES += CLASSICAL_SECTION +@@ -68,6 +68,10 @@ unix { + DEFINES += arm + DEFINES += __arm__ + } ++ isEqual(ARCH, ppc64el){ ++ DEFINES += ppc64el ++ DEFINES += __ppc64el__ ++ } + #优化通过指定 -Wl,--as-needed 选项,链接过程中,链接器会检查所有的依赖库,没有实际被引用的库,不再写入可执行文件头。最终生成的可执行文件头中包含的都是必要的链接库信息 + QMAKE_CXX += -Wl,--as-need -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,-O1 + QMAKE_CXXFLAGS += -Wl,--as-need -fPIE -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,-O1 +diff --git a/tests/all-ut-prj-running.sh b/tests/all-ut-prj-running.sh +index 3b93867..5525a89 100755 +--- a/tests/all-ut-prj-running.sh ++++ b/tests/all-ut-prj-running.sh +@@ -246,7 +246,7 @@ if ([ "$hw_arrch" != "aarch64" ]) && ([ "$UT_PRJ_TYPE" = "$UT_TYPE_ALL" ] || [ " + fi + + # 9. 子项目 deepin-anything-server-plugins 单元测试与覆盖率测试 +-if ([ "$hw_arrch" != "aarch64" ] && [ "$hw_arrch" != "sw_64" ] && [ "$hw_arrch" != "mips64" ] && [ "$hw_arrch" != "mips32" ]) && ++if ([ "$hw_arrch" != "aarch64" ] && [ "$hw_arrch" != "sw_64" ] && [ "$hw_arrch" != "mips64" ] && [ "$hw_arrch" != "mips32" ] && [ "$hw_arrch" != "ppc64le" ]) && + ([ "$UT_PRJ_TYPE" = "$UT_TYPE_ALL" ] || [ "$UT_PRJ_TYPE" = "$UT_TYPE_ANYTHING_SERVER_PLUGINS" ]); then + echo $UT_TYPE_ANYTHING_SERVER_PLUGINS "test case is running" + +-- +2.27.0 + diff --git a/dde-file-manager-5.1.2.3.tar.bz2 b/dde-file-manager-5.1.2.3.tar.bz2 deleted file mode 100644 index e01c36cfb42147abce5356a2e2d6ff7a5df9a9f9..0000000000000000000000000000000000000000 Binary files a/dde-file-manager-5.1.2.3.tar.bz2 and /dev/null differ diff --git a/dde-file-manager.spec b/dde-file-manager.spec index 577b2930d2119746f71145b311599e30d620b1c6..dc4da2d3f226638591ef62fd90c60a4b2869a537 100644 --- a/dde-file-manager.spec +++ b/dde-file-manager.spec @@ -1,20 +1,22 @@ Name: dde-file-manager -Version: 5.1.2.3 -Release: 9 +Version: 5.2.63 +Release: 8%{?dist}.01 Summary: Deepin File Manager License: GPLv3 URL: https://github.com/linuxdeepin/dde-file-manager -Source0: %{name}-%{version}.tar.bz2 - +Source0: %{name}_%{version}.tar.gz +Patch0001: 0001-dde-file-manager-support-loongarch64.patch +Patch0002: 0001-dde-file-manager-support-ppc64le.patch BuildRequires: gcc-c++ BuildRequires: desktop-file-utils BuildRequires: deepin-gettext-tools BuildRequires: dde-dock-devel BuildRequires: file-devel +#BuildRequires: jemalloc-devel +#BuildRequires: cmake(KF5Codecs) BuildRequires: pkgconfig(atk) -BuildRequires: dtkcore-devel BuildRequires: dtkgui-devel -BuildRequires: dtkwidget-devel +BuildRequires: pkgconfig(dtkwidget) >= 5.1 BuildRequires: pkgconfig(dframeworkdbus) >= 2.0 BuildRequires: pkgconfig(gtk+-2.0) BuildRequires: pkgconfig(gsettings-qt) @@ -32,10 +34,12 @@ BuildRequires: pkgconfig(Qt5X11Extras) BuildRequires: qt5-qtbase-private-devel %{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}} BuildRequires: pkgconfig(taglib) +#BuildRequires: pkgconfig(uchardet) BuildRequires: pkgconfig(xcb-util) BuildRequires: pkgconfig(xcb-ewmh) BuildRequires: qt5-linguist BuildRequires: jemalloc-devel +#BuildRequires: udisks2-qt5 BuildRequires: udisks2-qt5-devel BuildRequires: disomaster-devel BuildRequires: libgio-qt libgio-qt-devel @@ -43,9 +47,33 @@ BuildRequires: openssl-devel BuildRequires: libqtxdg-devel BuildRequires: libmediainfo-devel BuildRequires: kf5-kcodecs-devel +#BuildRequires: libudisks2-qt5-devel +BuildRequires: lucene++-devel +BuildRequires: htmlcxx-devel +BuildRequires: libgsf-devel +BuildRequires: mimetic-devel +BuildRequires: boost-devel +%ifarch %{ix86} x86_64 +BuildRequires: deepin-anything-devel deepin-anything-server +%endif + + +# run command by QProcess +#Requires: deepin-shortcut-viewer Requires: deepin-terminal Requires: dde-desktop -Requires: file-roller +#Requires: file-roller +Requires: jemalloc +Requires: libglvnd-glx +Requires: libdde-file-manager +Requires: cryfs +%ifarch %{ix86} x86_64 +Requires: deepin-anything-dkms deepin-anything-server +%endif +#Requires: gvfs-client +#Requires: samba +#Requires: xdg-user-dirs +#Requires: gstreamer-plugins-good Recommends: deepin-manual %description @@ -61,6 +89,17 @@ Header files and libraries for %{name}. %package -n libdde-file-manager Summary: DDE File Manager library Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: kf5-kcodecs +Requires: jemalloc +Requires: poppler-cpp +Requires: libmediainfo +Requires: libzen +Requires: udisks2-qt5 +Requires: taglib +Requires: libgio-qt +%ifarch %{ix86} x86_64 +Requires: deepin-anything-libs +%endif %description -n libdde-file-manager DDE File Manager library. @@ -83,16 +122,24 @@ Requires: dde-session-ui Deepin desktop environment - desktop module. %prep -%setup -q -n %{name}-%{version} - +%setup -q -n %{name}_%{version} +%if 0%{?openeuler} +%else +%patch0001 -p1 +%patch0002 -p1 +%endif +# fix file permissions find -type f -perm 775 -exec chmod 644 {} \; -sed -i '/deepin-daemon/s|lib|libexec|' dde-zone/mainwindow.h -sed -i 's|lib/gvfs|libexec|' %{name}-lib/gvfs/networkmanager.cpp -sed -i 's|/lib/dde-dock/plugins|/lib64/dde-dock/plugins|' dde-dock-plugins/disk-mount/disk-mount.pro - +#sed -i '/target.path/s|lib|%{_lib}|' src/dde-dock-plugins/disk-mount/disk-mount.pro +sed -i '/deepin-daemon/s|lib|libexec|' src/dde-zone/mainwindow.h +sed -i 's|lib/gvfs|libexec|' src/%{name}-lib/gvfs/networkmanager.cpp +#sed -i 's|%{_datadir}|%{_libdir}|' dde-sharefiles/appbase.pri +%ifnarch i686 +sed -i 's|/lib/dde-dock/plugins|/lib64/dde-dock/plugins|' src/dde-dock-plugins/disk-mount/disk-mount.pro +%endif %build export PATH=%{_qt5_bindir}:$PATH -%qmake_qt5 PREFIX=%{_prefix} QMAKE_CFLAGS_ISYSTEM= CONFIG+="DISABLE_FFMPEG DISABLE_ANYTHING" +%qmake_qt5 PREFIX=%{_prefix} DISABLE_JEMALLOC=1 QMAKE_CFLAGS_ISYSTEM= CONFIG+="DISABLE_FFMPEG" DEFINES+="VERSION=%{version}" filemanager.pro %make_build %install @@ -102,6 +149,7 @@ export PATH=%{_qt5_bindir}:$PATH desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop desktop-file-validate %{buildroot}%{_datadir}/applications/dde-computer.desktop ||: desktop-file-validate %{buildroot}%{_datadir}/applications/dde-trash.desktop ||: +desktop-file-validate %{buildroot}%{_datadir}/applications/dde-home.desktop ||: %ldconfig_scriptlets @@ -112,16 +160,24 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/dde-trash.desktop ||: %{_bindir}/%{name} %{_bindir}/%{name}-daemon %{_bindir}/%{name}-pkexec +%ifnarch x86_64 i686 +%{_bindir}/*.sh +%{_sysconfdir}/xdg/autostart/dde-file-manager-autostart.desktop +%endif %{_bindir}/dde-property-dialog /usr/lib/systemd/system/dde-filemanager-daemon.service + +%{_datadir}/applications/dde-open.desktop %{_datadir}/applications/%{name}.desktop %{_datadir}/dbus-1/interfaces/com.deepin.filemanager.filedialog.xml %{_datadir}/dbus-1/interfaces/com.deepin.filemanager.filedialogmanager.xml %{_datadir}/dbus-1/services/com.deepin.filemanager.filedialog.service %{_datadir}/dbus-1/services/org.freedesktop.FileManager.service %{_datadir}/dbus-1/system-services/com.deepin.filemanager.daemon.service -%{_datadir}/polkit-1/actions/com.deepin.filemanager.daemon.policy -%{_datadir}/polkit-1/actions/com.deepin.pkexec.dde-file-manager.policy +%{_polkit_qt_policydir}/com.deepin.filemanager.daemon.policy +%{_polkit_qt_policydir}/com.deepin.pkexec.dde-file-manager.policy +%{_datadir}/deepin-manual/manual-assets/application/dde-file-manager +%{_datadir}/applications/context-menus/.readme %files -n libdde-file-manager %{_libdir}/dde-file-manager/plugins/previews/libdde-image-preview-plugin.so @@ -137,6 +193,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/dde-trash.desktop ||: %{_datadir}/dde-file-manager/mimetypes/image.mimetype %{_datadir}/dde-file-manager/mimetypes/text.mimetype %{_datadir}/dde-file-manager/mimetypes/video.mimetype +%{_datadir}/dde-file-manager/templates/newDoc.wps +%{_datadir}/dde-file-manager/templates/newExcel.et +%{_datadir}/dde-file-manager/templates/newPowerPoint.dps %{_datadir}/dde-file-manager/templates/newDoc.doc %{_datadir}/dde-file-manager/templates/newExcel.xls %{_datadir}/dde-file-manager/templates/newPowerPoint.ppt @@ -147,15 +206,15 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/dde-trash.desktop ||: %{_datadir}/icons/hicolor/scalable/apps/dde-file-manager.svg %{_libdir}/libdde-file-manager.so.1 %{_libdir}/libdde-file-manager.so.1.8 +%ifarch x86_64 i686 +%{_libdir}/deepin-anything-server-lib/plugins/handlers/libdde-anythingmonitor.so +%endif %files -n dde-disk-mount-plugin %{_libdir}/dde-dock/plugins/system-trays/libdde-disk-mount-plugin.so %{_datadir}/dde-disk-mount-plugin/translations %{_datadir}/glib-2.0/schemas/com.deepin.dde.dock.module.disk-mount.gschema.xml - - - %files devel %{_includedir}/%{name}/*.h %{_includedir}/%{name}/gvfs/ @@ -167,16 +226,15 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/dde-trash.desktop ||: %files -n dde-desktop %{_bindir}/dde-desktop %{_datadir}/applications/dde-computer.desktop -%exclude %{_datadir}/applications/dde-open.desktop +%{_datadir}/applications/dde-home.desktop %{_datadir}/applications/dde-trash.desktop %dir %{_datadir}/dde-desktop %{_datadir}/dde-desktop/translations/ %{_datadir}/dbus-1/services/com.deepin.dde.desktop.service %changelog -* Tue Sep 8 2020 chenbo pan - 5.1.2.3-9 -- fix compile error -* Mon Aug 17 2020 chenbo pan - 5.1.2.3-8 -- fix spec name -* Thu Jul 30 2020 openEuler Buildteam - 5.1.2.3-7 -- Package init +* Fri Jun 10 2022 liweigang - 5.2.63-8.01 +- build: supprt ppc64le and loongarch64 + +* Fri Jun 10 2022 uoser - 5.2.63-8 +- package init diff --git a/dde-file-manager_5.2.63.tar.gz b/dde-file-manager_5.2.63.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..0fe3cc98a176d6876d2484e10896703d14d2f6e6 Binary files /dev/null and b/dde-file-manager_5.2.63.tar.gz differ diff --git a/image/hot_key.png b/image/hot_key.png deleted file mode 100644 index 1e3c2c12fc79d6fa7f92de18d85fb732bb331713..0000000000000000000000000000000000000000 Binary files a/image/hot_key.png and /dev/null differ diff --git a/image/hot_key_en.png b/image/hot_key_en.png deleted file mode 100644 index 0befd3a2e0cd588888b421e749d3d0773cc58ad8..0000000000000000000000000000000000000000 Binary files a/image/hot_key_en.png and /dev/null differ diff --git a/image/newdo.png b/image/newdo.png deleted file mode 100644 index adea46a9c13413b6e878f668b5062eb45b7160ed..0000000000000000000000000000000000000000 Binary files a/image/newdo.png and /dev/null differ diff --git a/image/newdo_en.png b/image/newdo_en.png deleted file mode 100644 index 94f3ae413cf2924512a4939757e499122651dce9..0000000000000000000000000000000000000000 Binary files a/image/newdo_en.png and /dev/null differ diff --git a/image/rename.png b/image/rename.png deleted file mode 100644 index c63ee57026fc28a6d0f0c72abde4ca34975504ce..0000000000000000000000000000000000000000 Binary files a/image/rename.png and /dev/null differ diff --git a/image/rename_en.png b/image/rename_en.png deleted file mode 100644 index 2089bdd07c91584079b5a236f4ea117184b94b97..0000000000000000000000000000000000000000 Binary files a/image/rename_en.png and /dev/null differ