You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: The default git branch is `master`. The master branch should only be used to develop addons that require features or changes found in the Gramps master branch. Most of the time addons should be developed to work with the current released version of Gramps (`maintenance/gramps51` for the Gramps 5.1.x versions for example).
10
+
Note: The default git branch is `master`. The master branch should only be used to develop addons that require features or changes found in the Gramps master branch. Most of the time addons should be developed to work with the current released version of Gramps (`maintenance/gramps52` for the Gramps 5.2.x versions for example).
11
11
12
12
So use care when creating your addon to base off of the correct branch, and also to select the correct branch when creating a PR on Github.
13
13
@@ -26,33 +26,33 @@ files will be in the second addon repository to be commited.
26
26
Examples:
27
27
* Creates the initial addon-source directories and .pot file for the addon.
28
28
```
29
-
python3 make.py gramps50 init AddonDirectory
29
+
python3 make.py gramps52 init AddonDirectory
30
30
```
31
31
32
32
* Creates the initial empty `AddonDirectory/po/fr-local.po` file for the addon.
33
33
```
34
-
python3 make.py gramps50 init AddonDirectory fr
34
+
python3 make.py gramps52 init AddonDirectory fr
35
35
```
36
36
37
37
* Updates `AddonDirectory/po/fr-local.po` with the latest translations.
38
38
```
39
-
python3 make.py gramps50 update AddonDirectory fr
39
+
python3 make.py gramps52 update AddonDirectory fr
40
40
```
41
41
42
42
* Build `../download/AddonDirectory.addon.tgz`
43
43
```
44
-
python3 make.py gramps50 build AddonDirectory
44
+
python3 make.py gramps52 build AddonDirectory
45
45
```
46
46
47
47
* Create or update the listing entry for your addon
48
48
```
49
-
python3 make.py gramps50 listing AddonDirectory
49
+
python3 make.py gramps52 listing AddonDirectory
50
50
```
51
51
52
52
* For the developer who is merging PRs or other commits and needs to rebuild
0 commit comments