blob: b7bd9ffb98cb5e382036a867652d5fab918441e3 (
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
|
post_install() {
cat << 'EOF'
+-Cemu-------------------------------------------------------------------------+
| This software is still experimental! Some features are missing (e.g. Online) |
| but performance is already great. If you rely on a specific feature you can |
| still run the Windows version through Wine (AUR: cemu-wine) although doing |
| that is no longer recommended. |
| |
| This package follows the XDG Base Directory Specification: |
| - Config files (e.g. settings.txt) are found in $XDG_CONFIG_HOME. |
| Default: ~/.config/cemu |
| - Data files (e.g. mlc01, keys.txt, log.txt) are found in $XDG_DATA_HOME. |
| Default: ~/.local/share/cemu |
| - Cache files (e.g. shaderCache) are found in $XDG_CACHE_HOME. |
| Default: ~/.cache/cemu |
| |
| Report Linux issues here: https://github.com/cemu-project/Cemu/issues |
| Report Arch issues here: https://aur.archlinux.org/packages/cemu |
+------------------------------------------------------------------------------+
EOF
}
post_upgrade() {
cat << 'EOF'
+-Cemu-------------------------------------------------------------------------+
| The location of the keys file recently changed from $XDG_CONFIG_HOME to |
| $XDG_DATA_HOME (defaults to ~/.local/share/cemu/keys.txt). |
+------------------------------------------------------------------------------+
EOF
}
|