Compare commits
10 Commits
86f3076a7a
...
52020e425b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52020e425b | ||
|
|
48ec67efdb | ||
|
|
cb9cbf8728 | ||
|
|
712dea09e3 | ||
|
|
083c4170e2 | ||
|
|
c3b95b0c9b | ||
|
|
31b28e498d | ||
|
|
92981df1e8 | ||
|
|
a80f3d36d6 | ||
|
|
c375e3a9f0 |
17
README.en.md
17
README.en.md
@ -4,19 +4,22 @@
|
||||
dde introduction
|
||||
|
||||
#### Software Architecture
|
||||
Software architecture description
|
||||
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. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
1. dnf install dde-introduction
|
||||
|
||||
#### Instructions
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
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
|
||||
|
||||
|
||||
13
README.md
13
README.md
@ -4,20 +4,19 @@
|
||||
dde introduction
|
||||
|
||||
#### 软件架构
|
||||
软件架构说明
|
||||
当您第一次登录系统时,欢迎程序将自动启动。观看介绍视频获得新功能,自定义您的桌面,启用窗口了解OS。
|
||||
|
||||
|
||||
#### 安装教程
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
1. dnf install dde-introduction
|
||||
|
||||
#### 使用说明
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
1. 第一次进入系统后自动弹出欢迎界面,可观看OS介绍视频
|
||||
2. 下一步进行桌面样式设置,可以选择“时尚模式”或者“高效模式”设置
|
||||
3. 下一步进行运行模式设置,可以选择“特效模式”或者“普通模式”设置
|
||||
4. 下一步进行图标主题设置,四款图标样式供选择设置,配置结束。
|
||||
|
||||
#### 参与贡献
|
||||
|
||||
|
||||
Binary file not shown.
BIN
dde-introduction-5.6.13.tar.gz
Normal file
BIN
dde-introduction-5.6.13.tar.gz
Normal file
Binary file not shown.
@ -1,20 +1,28 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: dde-introduction
|
||||
Version: 5.6.0.7
|
||||
Release: 1
|
||||
Version: 5.6.13
|
||||
Release: 3
|
||||
Summary: Introduction for UOS
|
||||
License: GPLv3+
|
||||
URL: https://github.com/linuxdeepin/%{name}
|
||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake3
|
||||
BuildRequires: qt5-devel
|
||||
|
||||
BuildRequires: dtkcore-devel dtkwidget-devel
|
||||
BuildRequires: dtkwidget-devel
|
||||
BuildRequires: pkgconfig(dtkgui)
|
||||
BuildRequires: pkgconfig(dtkcore)
|
||||
BuildRequires: pkgconfig(dframeworkdbus)
|
||||
#BuildRequires: pkgconfig(libdmr)
|
||||
# BuildRequires: pkgconfig(libdmr)
|
||||
BuildRequires: pkgconfig(gsettings-qt)
|
||||
|
||||
#BuildRequires: ffmpegthumbnailer-devel
|
||||
BuildRequires: deepin-desktop-base
|
||||
BuildRequires: ffmpegthumbnailer-devel
|
||||
BuildRequires: gtest-devel
|
||||
BuildRequires: gmock-devel
|
||||
BuildRequires: qt5-qtbase-private-devel
|
||||
|
||||
BuildRequires: deepin-desktop-server
|
||||
Requires: deepin-desktop-server
|
||||
@ -30,12 +38,16 @@ effect and know more about UnionTech OS.
|
||||
# disable dmr lib
|
||||
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
|
||||
# help find (and prefer) qt5 utilities, e.g. qmake, lrelease
|
||||
export PATH=%{_qt5_bindir}:$PATH
|
||||
mkdir build && pushd build
|
||||
%qmake_qt5 ../ VERSION=%{version} DEFINES+="VERSION=%{version}"
|
||||
%make_build
|
||||
sed -i "s|^cmake_minimum_required.*|cmake_minimum_required(VERSION 3.0)|" $(find . -name "CMakeLists.txt")
|
||||
mkdir build && pushd build
|
||||
%cmake -DCMAKE_BUILD_TYPE=Release ../ -DAPP_VERSION=%{version} -DVERSION=%{version}
|
||||
%make_build
|
||||
popd
|
||||
|
||||
%install
|
||||
@ -54,6 +66,18 @@ popd
|
||||
%{_datadir}/%{name}/
|
||||
|
||||
%changelog
|
||||
* Tue Nov 28 2023 liuzhilin <liuzhilin@uniontech.com> - 5.6.13-3
|
||||
- remove unnecessary macro definitions
|
||||
|
||||
* 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
|
||||
- update version to 5.6.13
|
||||
|
||||
* Tue Feb 08 2022 liweigang <liweiganga@uniontech.com> - 5.6.0.7-2
|
||||
- fix build error
|
||||
|
||||
* Fri Oct 23 2020 panchenbo <panchenbo@uniontech.com> - 5.6.0.7-1
|
||||
- update to 5.6.0.7
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user