diff options
author | alone <yooduck.seo@samsung.com> | 2020-10-26 20:02:00 +0900 |
---|---|---|
committer | alone <yooduck.seo@samsung.com> | 2020-10-26 20:02:00 +0900 |
commit | cdad74fe0716ddd46781c1030c01c83eaf0b1fe7 (patch) | |
tree | 926631ae3e7a26b2380e32f21d653c4907002929 | |
download | taskmanager-accepted/tizen_5.5_unified_wearable_hotfix.tar.gz taskmanager-accepted/tizen_5.5_unified_wearable_hotfix.tar.bz2 taskmanager-accepted/tizen_5.5_unified_wearable_hotfix.zip |
[ABS] This patch performs following modifications in IOT taskmanager-submit/tizen_5.5_wearable_hotfix_mobile_tpk/20201026.184309accepted/tizen/5.5/unified/wearable/hotfix/20201027.092600tizen_5.5_wearable_hotfix_mobile_tpkaccepted/tizen_5.5_unified_wearable_hotfix
1) makes app icon more transparent(dim) as we move the particular app away from taskmanager in vertical direction.
2) adds padding between "clear all" cross icon and right side of display.
3) sets alignment of app titles currectly.
Reference: submit/tizen_5.5_wearable_hotfix/20201026.184309
Commit id: 53d81a141dc04624c24199b30836e144fda9a035
Requested by: None
SDK rootstrap version: 20201019_1
-rw-r--r-- | org.tizen.task-mgr_common-1.0.0-arm-debug.tpk | bin | 0 -> 154607 bytes | |||
-rw-r--r-- | org.tizen.task-mgr_common-1.0.0-arm.tpk | bin | 0 -> 128616 bytes | |||
-rw-r--r-- | org.tizen.task-mgr_common-1.0.0-x86-debug.tpk | bin | 0 -> 153590 bytes | |||
-rw-r--r-- | org.tizen.task-mgr_common-1.0.0-x86.tpk | bin | 0 -> 153590 bytes | |||
-rw-r--r-- | packaging/org.tizen.task-mgr_common.spec | 54 |
5 files changed, 54 insertions, 0 deletions
diff --git a/org.tizen.task-mgr_common-1.0.0-arm-debug.tpk b/org.tizen.task-mgr_common-1.0.0-arm-debug.tpk Binary files differnew file mode 100644 index 0000000..9ea57b7 --- /dev/null +++ b/org.tizen.task-mgr_common-1.0.0-arm-debug.tpk diff --git a/org.tizen.task-mgr_common-1.0.0-arm.tpk b/org.tizen.task-mgr_common-1.0.0-arm.tpk Binary files differnew file mode 100644 index 0000000..1f21d34 --- /dev/null +++ b/org.tizen.task-mgr_common-1.0.0-arm.tpk diff --git a/org.tizen.task-mgr_common-1.0.0-x86-debug.tpk b/org.tizen.task-mgr_common-1.0.0-x86-debug.tpk Binary files differnew file mode 100644 index 0000000..13363ea --- /dev/null +++ b/org.tizen.task-mgr_common-1.0.0-x86-debug.tpk diff --git a/org.tizen.task-mgr_common-1.0.0-x86.tpk b/org.tizen.task-mgr_common-1.0.0-x86.tpk Binary files differnew file mode 100644 index 0000000..71447f3 --- /dev/null +++ b/org.tizen.task-mgr_common-1.0.0-x86.tpk diff --git a/packaging/org.tizen.task-mgr_common.spec b/packaging/org.tizen.task-mgr_common.spec new file mode 100644 index 0000000..e14376d --- /dev/null +++ b/packaging/org.tizen.task-mgr_common.spec @@ -0,0 +1,54 @@ +Name: org.tizen.task-mgr_common +#VCS_FROM: profile/iot/apps/native/taskmanager#53d81a141dc04624c24199b30836e144fda9a035 +#RS_Ver: 20201019_1 +Summary: Taskmanager application +Version: 1.0.0 +Release: 1 +Group: Applications/Core Applications +License: Apache-2.0 +Source0: %{name}-%{version}.tar.gz + +ExclusiveArch: i586 x86 i486 i686 i386 armv7l arm + + +BuildRequires: pkgconfig(libtzplatform-config) +Requires(post): /usr/bin/tpk-backend + +%define internal_name org.tizen.task-mgr_common +%define preload_tpk_path %{TZ_SYS_RO_APP}/.preload-tpk + +%define build_mode %{nil} + +%ifarch arm armv7l +%define target arm +%endif +%ifarch aarch64 +%define target aarch64 +%endif +%ifarch x86_64 +%define target x86_64 +%endif +%ifarch i386 i486 i586 i686 +%define target x86 +%endif + +%description +profile/iot/apps/native/taskmanager#53d81a141dc04624c24199b30836e144fda9a035 +This is a container package which have preload TPK/WGT files + +%prep +%setup -q + +%build + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}/%{preload_tpk_path} +install %{internal_name}-%{version}-%{target}%{build_mode}.tpk %{buildroot}/%{preload_tpk_path}/ + +%post + +%files +%defattr(-,root,root,-) +%{preload_tpk_path}/* + |