diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/debian/changelog b/debian/changelog old mode 100644 new mode 100755 index 32be12e..f9dd677 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +lingmo-dock (2.0.2) UNRELEASED; urgency=high + + * update + + -- Lingmo OS Team Sun, 18 Feb 2024 22:10:11 +0800 + +lingmo-dock (2.0.0-2) UNRELEASED; urgency=high + + * update + + -- Lingmo OS Team Tue, 13 Jan 2024 22:10:11 +0800 + lingmo-dock (2.0.0) UNRELEASED; urgency=high * update diff --git a/debian/compat b/debian/compat old mode 100644 new mode 100755 diff --git a/debian/control b/debian/control old mode 100644 new mode 100755 diff --git a/debian/copyright b/debian/copyright old mode 100644 new mode 100755 diff --git a/debian/source/format b/debian/source/format old mode 100644 new mode 100755 diff --git a/images/launcher.svg b/images/launcher.svg old mode 100644 new mode 100755 diff --git a/images/rocket.png b/images/rocket.png old mode 100644 new mode 100755 diff --git a/lingmo-dock-list.conf b/lingmo-dock-list.conf old mode 100644 new mode 100755 index 71f4619..c62f5a7 --- a/lingmo-dock-list.conf +++ b/lingmo-dock-list.conf @@ -1,15 +1,35 @@ -[lingmo-terminal] -DesktopPath=/usr/share/applications/lingmo-terminal.desktop +[firefox] +DesktopPath=/usr/share/applications/firefox.desktop Index=0 -[org.lingmo_browser.Lingmo] -DesktopPath=/usr/share/applications/org.lingmo_browser.Lingmo.desktop +[lingmo-filemanager] +DesktopPath=/usr/share/applications/lingmo-filemanager.desktop Index=1 +[lingmo-terminal] +DesktopPath=/usr/share/applications/lingmo-terminal.desktop +Index=2 + [lingmo-settings] DesktopPath=/usr/share/applications/lingmo-settings.desktop -Index=2 +Index=3 [lingmo-calculator] DesktopPath=/usr/share/applications/lingmo-calculator.desktop -Index=3 +Index=4 + +[lingmo-debinstaller] +DesktopPath=/usr/share/applications/lingmo-debinstaller.desktop +Index=5 + +[lingmo-texteditor] +DesktopPath=/usr/share/applications/lingmo-texteditor.desktop +Index=6 + +[lingmo-updator] +DesktopPath=/usr/share/applications/lingmo-updator.desktop +Index=7 + +[install-lingmo] +DesktopPath=/usr/share/applications/install-lingmo.desktop +Index=8 diff --git a/qml/AppItem.qml b/qml/AppItem.qml old mode 100644 new mode 100755 diff --git a/qml/DockItem.qml b/qml/DockItem.qml old mode 100644 new mode 100755 diff --git a/qml/HorizontalDivider.qml b/qml/HorizontalDivider.qml deleted file mode 100644 index 7d6b387..0000000 --- a/qml/HorizontalDivider.qml +++ /dev/null @@ -1,18 +0,0 @@ -import QtQuick 2.4 -import QtQuick.Layouts 1.3 -import LingmoUI 1.0 as LingmoUI - -Item { - id: control - // height: LingmoUI.Units.largeSpacing * 2 - - Layout.fillWidth: true - - Rectangle { - anchors.centerIn: parent - height: control.width - width: 2 - color: LingmoUI.Theme.disabledTextColor - opacity: LingmoUI.Theme.darkMode ? 0.3 : 0.1 - } -} diff --git a/qml/main.qml b/qml/main.qml old mode 100644 new mode 100755 index bc50cbf..2cc1274 --- a/qml/main.qml +++ b/qml/main.qml @@ -111,8 +111,6 @@ Item { } } - HorizontalDivider {} - DockItem { id: trashItem implicitWidth: isHorizontal ? root.height : root.width @@ -180,4 +178,4 @@ Item { popupTips.hide() } } -} \ No newline at end of file +} diff --git a/resources.qrc b/resources.qrc old mode 100644 new mode 100755 index eed5843..a938dc6 --- a/resources.qrc +++ b/resources.qrc @@ -3,7 +3,6 @@ qml/main.qml qml/DockItem.qml qml/AppItem.qml - qml/HorizontalDivider.qml images/launchpad.svg images/rocket.svg images/rocket.png diff --git a/src/activity.cpp b/src/activity.cpp old mode 100644 new mode 100755 diff --git a/src/activity.h b/src/activity.h old mode 100644 new mode 100755 diff --git a/src/applicationitem.h b/src/applicationitem.h old mode 100644 new mode 100755 diff --git a/src/applicationmodel.cpp b/src/applicationmodel.cpp old mode 100644 new mode 100755 index 9717a6c..7268df9 --- a/src/applicationmodel.cpp +++ b/src/applicationmodel.cpp @@ -356,7 +356,7 @@ void ApplicationModel::initPinnedApplications() ApplicationItem *item = new ApplicationItem; item->id = "lingmo-launcher"; item->exec = "lingmo-launcher"; - item->iconName = "qrc:/images/launchpad.svg"; + item->iconName = "qrc:/images/rocket.svg"; item->visibleName = tr("Launcher"); item->fixed = true; m_appItems.append(item); diff --git a/src/applicationmodel.h b/src/applicationmodel.h old mode 100644 new mode 100755 diff --git a/src/com.lingmo.Dock.xml b/src/com.lingmo.Dock.xml old mode 100644 new mode 100755 diff --git a/src/docksettings.cpp b/src/docksettings.cpp old mode 100644 new mode 100755 diff --git a/src/docksettings.h b/src/docksettings.h old mode 100644 new mode 100755 diff --git a/src/fakewindow.cpp b/src/fakewindow.cpp old mode 100644 new mode 100755 diff --git a/src/fakewindow.h b/src/fakewindow.h old mode 100644 new mode 100755 diff --git a/src/iconthemeimageprovider.cpp b/src/iconthemeimageprovider.cpp old mode 100644 new mode 100755 diff --git a/src/iconthemeimageprovider.h b/src/iconthemeimageprovider.h old mode 100644 new mode 100755 diff --git a/src/main.cpp b/src/main.cpp old mode 100644 new mode 100755 diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp old mode 100644 new mode 100755 diff --git a/src/mainwindow.h b/src/mainwindow.h old mode 100644 new mode 100755 diff --git a/src/processprovider.cpp b/src/processprovider.cpp old mode 100644 new mode 100755 diff --git a/src/processprovider.h b/src/processprovider.h old mode 100644 new mode 100755 diff --git a/src/systemappitem.cpp b/src/systemappitem.cpp old mode 100644 new mode 100755 diff --git a/src/systemappitem.h b/src/systemappitem.h old mode 100644 new mode 100755 diff --git a/src/systemappmonitor.cpp b/src/systemappmonitor.cpp old mode 100644 new mode 100755 diff --git a/src/systemappmonitor.h b/src/systemappmonitor.h old mode 100644 new mode 100755 diff --git a/src/trashmanager.cpp b/src/trashmanager.cpp old mode 100644 new mode 100755 diff --git a/src/trashmanager.h b/src/trashmanager.h old mode 100644 new mode 100755 diff --git a/src/utils.cpp b/src/utils.cpp old mode 100644 new mode 100755 diff --git a/src/utils.h b/src/utils.h old mode 100644 new mode 100755 diff --git a/src/xwindowinterface.cpp b/src/xwindowinterface.cpp old mode 100644 new mode 100755 diff --git a/src/xwindowinterface.h b/src/xwindowinterface.h old mode 100644 new mode 100755 diff --git a/translations/ar_AA.ts b/translations/ar_AA.ts old mode 100644 new mode 100755 diff --git a/translations/az_AZ.ts b/translations/az_AZ.ts old mode 100644 new mode 100755 diff --git a/translations/be_BY.ts b/translations/be_BY.ts old mode 100644 new mode 100755 diff --git a/translations/be_Latn.ts b/translations/be_Latn.ts old mode 100644 new mode 100755 diff --git a/translations/bg_BG.ts b/translations/bg_BG.ts old mode 100644 new mode 100755 diff --git a/translations/bn_BD.ts b/translations/bn_BD.ts old mode 100644 new mode 100755 diff --git a/translations/bs_BA.ts b/translations/bs_BA.ts old mode 100644 new mode 100755 diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts old mode 100644 new mode 100755 diff --git a/translations/da_DK.ts b/translations/da_DK.ts old mode 100644 new mode 100755 diff --git a/translations/de_DE.ts b/translations/de_DE.ts old mode 100644 new mode 100755 diff --git a/translations/en_US.ts b/translations/en_US.ts old mode 100644 new mode 100755 diff --git a/translations/eo_XX.ts b/translations/eo_XX.ts old mode 100644 new mode 100755 diff --git a/translations/es_ES.ts b/translations/es_ES.ts old mode 100644 new mode 100755 diff --git a/translations/es_MX.ts b/translations/es_MX.ts old mode 100644 new mode 100755 diff --git a/translations/fa_IR.ts b/translations/fa_IR.ts old mode 100644 new mode 100755 diff --git a/translations/fi_FI.ts b/translations/fi_FI.ts old mode 100644 new mode 100755 diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts old mode 100644 new mode 100755 diff --git a/translations/he_IL.ts b/translations/he_IL.ts old mode 100644 new mode 100755 diff --git a/translations/hi_IN.ts b/translations/hi_IN.ts old mode 100644 new mode 100755 diff --git a/translations/hr_HR.ts b/translations/hr_HR.ts old mode 100644 new mode 100755 diff --git a/translations/hu_HU.ts b/translations/hu_HU.ts old mode 100644 new mode 100755 diff --git a/translations/id_ID.ts b/translations/id_ID.ts old mode 100644 new mode 100755 diff --git a/translations/ie.ts b/translations/ie.ts old mode 100644 new mode 100755 diff --git a/translations/it_IT.ts b/translations/it_IT.ts old mode 100644 new mode 100755 diff --git a/translations/ja_JP.ts b/translations/ja_JP.ts old mode 100644 new mode 100755 diff --git a/translations/lt_LT.ts b/translations/lt_LT.ts old mode 100644 new mode 100755 diff --git a/translations/lv_LV.ts b/translations/lv_LV.ts old mode 100644 new mode 100755 diff --git a/translations/mg.ts b/translations/mg.ts old mode 100644 new mode 100755 diff --git a/translations/ml_IN.ts b/translations/ml_IN.ts old mode 100644 new mode 100755 diff --git a/translations/nb_NO.ts b/translations/nb_NO.ts old mode 100644 new mode 100755 diff --git a/translations/ne_NP.ts b/translations/ne_NP.ts old mode 100644 new mode 100755 diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts old mode 100644 new mode 100755 diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts old mode 100644 new mode 100755 diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts old mode 100644 new mode 100755 diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts old mode 100644 new mode 100755 diff --git a/translations/ro_RO.ts b/translations/ro_RO.ts old mode 100644 new mode 100755 diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts old mode 100644 new mode 100755 diff --git a/translations/si_LK.ts b/translations/si_LK.ts old mode 100644 new mode 100755 diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts old mode 100644 new mode 100755 diff --git a/translations/so.ts b/translations/so.ts old mode 100644 new mode 100755 diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts old mode 100644 new mode 100755 diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts old mode 100644 new mode 100755 diff --git a/translations/sw.ts b/translations/sw.ts old mode 100644 new mode 100755 diff --git a/translations/ta_IN.ts b/translations/ta_IN.ts old mode 100644 new mode 100755 diff --git a/translations/tr_TR.ts b/translations/tr_TR.ts old mode 100644 new mode 100755 diff --git a/translations/tzm.ts b/translations/tzm.ts old mode 100644 new mode 100755 diff --git a/translations/uk_UA.ts b/translations/uk_UA.ts old mode 100644 new mode 100755 diff --git a/translations/uz_UZ.ts b/translations/uz_UZ.ts old mode 100644 new mode 100755 diff --git a/translations/vi_VN.ts b/translations/vi_VN.ts old mode 100644 new mode 100755 diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts old mode 100644 new mode 100755 diff --git a/translations/zh_TW.ts b/translations/zh_TW.ts old mode 100644 new mode 100755