https://github.com/linuxdeepin/dde-launchpad
The "launcher" or "start menu" component for DDE. This component replaces dde-launcher.
https://github.com/linuxdeepin/dde-launchpad
dde deepin dtk qml qt
Last synced: 29 days ago
JSON representation
The "launcher" or "start menu" component for DDE. This component replaces dde-launcher.
- Host: GitHub
- URL: https://github.com/linuxdeepin/dde-launchpad
- Owner: linuxdeepin
- License: gpl-3.0
- Created: 2023-08-07T07:44:14.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-03-09T03:06:30.000Z (about 1 month ago)
- Last Synced: 2026-03-09T08:17:49.935Z (about 1 month ago)
- Topics: dde, deepin, dtk, qml, qt
- Language: C++
- Homepage:
- Size: 1.63 MB
- Stars: 7
- Watchers: 3
- Forks: 40
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DDE Launchpad
The "launcher" or "start menu" component for DDE.
## Dependencies
Check `debian/control` for build-time and runtime dependencies, or use `cmake` to check the missing required dependencies.
## Building
Regular CMake building steps applies, in short:
```shell
$ mkdir build && cd build
$ cmake ..
$ cmake --build .
```
After building, a `dde-launchpad` binary can be found inside the build folder. And you can optionally install it by:
```shell
$ cmake --build . --target install # only do this if you know what you are doing
```
A `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command:
```shell
$ sudo apt build-dep . # install build dependencies
$ dpkg-buildpackage -uc -us -nc -b # build binary package(s)
```
### Update Translations
Once CMake configuration phase is done, use the `update_translations` target to update the `.ts` files:
```shell
$ cmake --build . --target update_translations
$ # *OR* you can do it manually. Assume you are using GNU Make:
$ make update_translations
```
## Getting Involved
- [Code contribution via GitHub](https://github.com/linuxdeepin/dde-launchpad/)
- [Submit bug or suggestions to GitHub Issues or GitHub Discussions](https://github.com/linuxdeepin/developer-center/issues/new/choose)
- Contribute translation: [deepin-translation-program](https://www.deepin.org/index/zh/docs/sig/sig/deepin-translation-program/README.md)
## License
**dde-launchpad** is licensed under [GPL-3.0-or-later](LICENSE).