!28 Update package
From: @lliuzhi Reviewed-by: @ut-layne-yang Signed-off-by: @ut-layne-yang
This commit is contained in:
commit
55e7a10ceb
39
README.en.md
39
README.en.md
@ -1,39 +0,0 @@
|
|||||||
# dde-introduction
|
|
||||||
|
|
||||||
#### Description
|
|
||||||
dde introduction
|
|
||||||
|
|
||||||
#### Software Architecture
|
|
||||||
When you log into the system for the first time, a welcome program will automatically start.
|
|
||||||
Watch the introduction video to get new features, customize your desktop, enable the window
|
|
||||||
effect and know more about OS.
|
|
||||||
|
|
||||||
#### Installation
|
|
||||||
|
|
||||||
1. dnf install dde-introduction
|
|
||||||
|
|
||||||
#### Instructions
|
|
||||||
|
|
||||||
1. When you log in to the system for the first time, the welcome page is displayed and you can watch the OS introduction video
|
|
||||||
2. Next, set the desktop style. You can choose "Fashionable Mode" or "Efficient Mode"
|
|
||||||
|
|
||||||
3. Next, set the operating mode. You can select Special Effect mode or Common Mode
|
|
||||||
|
|
||||||
4. Next, set the icon theme. You can select four icon styles for setting.
|
|
||||||
|
|
||||||
#### Contribution
|
|
||||||
|
|
||||||
1. Fork the repository
|
|
||||||
2. Create Feat_xxx branch
|
|
||||||
3. Commit your code
|
|
||||||
4. Create Pull Request
|
|
||||||
|
|
||||||
|
|
||||||
#### Gitee Feature
|
|
||||||
|
|
||||||
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
|
|
||||||
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
|
|
||||||
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
|
|
||||||
4. The most valuable open source project [GVP](https://gitee.com/gvp)
|
|
||||||
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
|
|
||||||
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
|
||||||
36
README.md
36
README.md
@ -1,36 +0,0 @@
|
|||||||
# dde-introduction
|
|
||||||
|
|
||||||
#### 介绍
|
|
||||||
dde introduction
|
|
||||||
|
|
||||||
#### 软件架构
|
|
||||||
当您第一次登录系统时,欢迎程序将自动启动。观看介绍视频获得新功能,自定义您的桌面,启用窗口了解OS。
|
|
||||||
|
|
||||||
|
|
||||||
#### 安装教程
|
|
||||||
|
|
||||||
1. dnf install dde-introduction
|
|
||||||
|
|
||||||
#### 使用说明
|
|
||||||
|
|
||||||
1. 第一次进入系统后自动弹出欢迎界面,可观看OS介绍视频
|
|
||||||
2. 下一步进行桌面样式设置,可以选择“时尚模式”或者“高效模式”设置
|
|
||||||
3. 下一步进行运行模式设置,可以选择“特效模式”或者“普通模式”设置
|
|
||||||
4. 下一步进行图标主题设置,四款图标样式供选择设置,配置结束。
|
|
||||||
|
|
||||||
#### 参与贡献
|
|
||||||
|
|
||||||
1. Fork 本仓库
|
|
||||||
2. 新建 Feat_xxx 分支
|
|
||||||
3. 提交代码
|
|
||||||
4. 新建 Pull Request
|
|
||||||
|
|
||||||
|
|
||||||
#### 码云特技
|
|
||||||
|
|
||||||
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
|
|
||||||
2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com)
|
|
||||||
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目
|
|
||||||
4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
|
|
||||||
5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
|
|
||||||
6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
|
||||||
@ -1,7 +1,7 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%define specrelease 1%{?dist}
|
%define specrelease 2%{?dist}
|
||||||
%if 0%{?openeuler}
|
%if 0%{?openeuler}
|
||||||
%define specrelease 1
|
%define specrelease 2
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: dde-introduction
|
Name: dde-introduction
|
||||||
@ -42,6 +42,9 @@ effect and know more about UnionTech OS.
|
|||||||
# disable dmr lib
|
# disable dmr lib
|
||||||
sed -i 's/contains(TARGET_ARCH, x86_64)/contains(TARGET_ARCH, mips)/' introduction.pro
|
sed -i 's/contains(TARGET_ARCH, x86_64)/contains(TARGET_ARCH, mips)/' introduction.pro
|
||||||
|
|
||||||
|
# fix strip
|
||||||
|
sed -i 's|gc-sections"|gc-sections -s"|' CMakeLists.txt
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# help find (and prefer) qt5 utilities, e.g. qmake, lrelease
|
# help find (and prefer) qt5 utilities, e.g. qmake, lrelease
|
||||||
export PATH=%{_qt5_bindir}:$PATH
|
export PATH=%{_qt5_bindir}:$PATH
|
||||||
@ -67,6 +70,9 @@ popd
|
|||||||
%{_datadir}/%{name}/
|
%{_datadir}/%{name}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Mar 16 2023 liweiganga <liweiganga@uniontech.com> - 5.6.13-2
|
||||||
|
- feat: fix strip
|
||||||
|
|
||||||
* Mon Jul 18 2022 konglidong <konglidong@uniontech.com> - 5.6.13-1
|
* Mon Jul 18 2022 konglidong <konglidong@uniontech.com> - 5.6.13-1
|
||||||
- update version to 5.6.13
|
- update version to 5.6.13
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user