Skip to content

Commit 13a2a2b

Browse files
committed
adding notes about making the release
1 parent 81d2b7e commit 13a2a2b

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The JavaFX binaries have grown very large in size so this was a necessary step t
77
This version of the JavaFX library will be required for `FX2D` sketches starting with 4.0 beta 4.
88

99

10-
## Download Size
10+
## This library is large
1111

1212
The build script creates a very large download (hundreds of megabytes), because Processing supports several platforms (3 officially, 3 more unofficially) and we want to make it easy to use all of them. This is an acceptable tradeoff for a standalone library like this, but if you want a smaller build, you have options:
1313

@@ -16,3 +16,31 @@ The build script creates a very large download (hundreds of megabytes), because
1616
2. Un-comment the `<!-- <exclude name="**/*jfxwebkit.*" /> -->` line so that the WebKit library is removed.
1717

1818
These are not done by default because we've seen projects that (1) run on all those platforms, and (2) use the full browser implementation available with the WebKit support. Again, because this is an optional download, this seems the correct tradeoff.
19+
20+
21+
## Pushing a new release
22+
23+
1. Roll the version/revision numbers in `mode.properties`
24+
25+
2. Tag the latest and push
26+
27+
git tag -a rev1279 -m 'Revision 1279 (Processing 4.0b4)'
28+
git push origin --tags
29+
30+
3. Delete the previous `latest` tag
31+
32+
git tag -d latest
33+
git push origin :refs/tags/latest
34+
35+
4. Create new `latest` tag with the current state of the repo
36+
37+
git tag -f -a latest -m 'Revision 1279 (Processing 4.0b4)'
38+
git push -f --tags
39+
40+
5. Create the distribution
41+
42+
ant dist
43+
44+
Then upload dist/javafx.zip and dist/javafx.txt to the `latest` tag on Github. Can also upload them to the tag for the current version, for anyone installing manually.
45+
46+
6. Add changes in MarkDown format to the release: <https://github.com/processing4/processing4-javafx/releases>

0 commit comments

Comments
 (0)