blob: 686c9d411026b1c18c4dede9d3063dabf39cb3fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Version 1.14.12-2 upgrade notice
post_upgrade() {
if [[ "${1}" == "1.14.12-2" ]]; then
echo ""
note_header "UPGRADE INFORMATION ABOUT VERSION 1.14.12-2:"
echo ""
note "pCloud drive creates autostart files when the \"start pCloud Drive"
note "on system startup\" setting is enabled. If you have used this setting,"
note "there are likely old .desktop files lingering in your ~/.config/autostart directory"
note ""
note "While these may not cause problems, it is advisable to clean them up:"
note " 1. Open pCloud Drive, disable \"start pCloud Drive on system startup\""
note " 2. Remove lingering startup files with \"pCloud\" in the name"
note " e.g. find ~/.config/autostart -type f -iname \"*pcloud*\" -exec rm -f {} \;"
note " 3. Re-enable \"start pCloud Drive on system startup\""
echo ""
fi
}
# Pacman-like colors
reset="$(tput sgr0)"
bold="${reset}$(tput bold)"
blue="${bold}$(tput setaf 4)"
yellow="${bold}$(tput setaf 3)"
note_header() {
printf "${yellow}==> NOTE: ${bold}$1${reset}\n"
}
note() {
printf "${blue} -> ${bold}$1${reset}\n"
}
|