Preparing for release v1.7.3
[geeqie.git] / CHECKLIST.md
1 # Checklist for new releases of Geeqie
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 desktop template if menus have changed
22
23 ```sh
24 ./scripts/template-desktop.sh
25 ```
26
27 ## After compiling the sources, carry out the following actions when necessary
28
29 * Update the man page and Command Line Options section in Help if the command line options have changed
30
31 ```sh
32 ./scripts/generate-man-page.sh
33 ```
34
35 * Update the keyboard shortcuts page in Help if any keyboard shortcuts have changed
36
37 ```sh
38 ./doc/create-shortcuts-xml.sh
39 ```
40
41 * Commit the changes and push to the .repo
42
43 * Generate a new AppImage (note that this should be run on a **20.04 system**)
44
45 ```sh
46 ./scripts/generate-appimage.sh <location of local appimages folder>
47 ```
48
49 * Upload AppImage to web AppImages location
50 * Edit `<location of local geeqie.github.io>/AppImage/appimages.txt` to include latest AppImage at the *top* of the list
51 * Update the web-page Help files if they have changed
52     * commit and push if necessary
53
54 ```sh
55 ./scripts/web-help.sh
56 ```
57
58 * Copy `geeqie.desktop` to `<location of local geeqie.github.io>/`
59 * Copy `org.geeqie.Geeqie.appdata.xml` to `<location of local geeqie.github.io>/`
60 * Push changes to `geeqie.github.io`