Show shortcut keys in pop-up menus
[geeqie.git] / CHECKLIST.md
1 # A checklist to be used after Geeqie has been updated
2
3 ## Before compiling the sources, carry out the following actions when necessary
4
5 * Update `org.geeqie.Geeqie.appdata.xml.in` with the latest released version and date
6
7 * If source files have been added or removed from `./src/` directory, resync `./po/POTFILES.in`
8
9 ```sh
10 cd ./po
11 ./regen_potfiles.sh | patch -p0
12 ```
13
14 * Keep translations in sync with the code
15
16 ```sh
17 cd ./po
18 make update-po
19 ```
20
21 * Update the the timezone database
22
23 ```sh
24 ./scripts/zonedetect/create_timezone_database
25 ```
26
27 * Upload the timezone database to TBD
28
29 ## After compiling the sources, carry out the following actions when necessary
30
31 * Update the man page and Command Line Options section in Help
32
33 ```sh
34 ./scripts/generate-man-page.sh
35 ```
36
37 * Update the keyboard shortcuts page in Help
38
39 ```sh
40 ./doc/create-shortcuts-xml.sh
41 ```
42
43 * Commit the changes
44
45 * Generate a new AppImage (note that this should be run on a **20.04 system**)
46
47 ```sh
48 ./scripts/generate-appimage.sh <location of local appimages folder>
49 ```
50
51 * Upload AppImage to web AppImages location
52 * Edit `<location of local geeqie.github.io>/AppImage/appimages.txt` to include latest AppImage at the *top* of the list
53 * Copy Help html files to `<location of local geeqie.github.io>/help`
54 * Copy `geeqie.desktop` to `<location of local geeqie.github.io>/`
55 * Copy `org.geeqie.Geeqie.appdata.xml` to `<location of local geeqie.github.io>/`
56 * Push changes to `geeqie.github.io`