Skip to content

Commit da3f0cd

Browse files
authored
Update README.md to gramps52 (#601)
* Update README.md change examples from gramps50 to gramps52 * Update README.md gramps51 to gramps52
1 parent 3d03694 commit da3f0cd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To develop your own addon:
77

88
* https://gramps-project.org/wiki/index.php?title=Addons_development
99

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/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).
1111

1212
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.
1313

@@ -26,33 +26,33 @@ files will be in the second addon repository to be commited.
2626
Examples:
2727
* Creates the initial addon-source directories and .pot file for the addon.
2828
```
29-
python3 make.py gramps50 init AddonDirectory
29+
python3 make.py gramps52 init AddonDirectory
3030
```
3131

3232
* Creates the initial empty `AddonDirectory/po/fr-local.po` file for the addon.
3333
```
34-
python3 make.py gramps50 init AddonDirectory fr
34+
python3 make.py gramps52 init AddonDirectory fr
3535
```
3636

3737
* Updates `AddonDirectory/po/fr-local.po` with the latest translations.
3838
```
39-
python3 make.py gramps50 update AddonDirectory fr
39+
python3 make.py gramps52 update AddonDirectory fr
4040
```
4141

4242
* Build `../download/AddonDirectory.addon.tgz`
4343
```
44-
python3 make.py gramps50 build AddonDirectory
44+
python3 make.py gramps52 build AddonDirectory
4545
```
4646

4747
* Create or update the listing entry for your addon
4848
```
49-
python3 make.py gramps50 listing AddonDirectory
49+
python3 make.py gramps52 listing AddonDirectory
5050
```
5151

5252
* For the developer who is merging PRs or other commits and needs to rebuild
5353
and list one or more addons
5454
```
55-
python3 make.py gramps50 as-needed
55+
python3 make.py gramps52 as-needed
5656
```
5757

5858
Valid command summary

0 commit comments

Comments
 (0)