-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# css4j-dom4j version 1.3.0 Release Notes | ||
|
||
### February 15, 2022 | ||
|
||
<br/> | ||
|
||
## Release Highlights | ||
|
||
### `:dir()` pseudo-class | ||
|
||
The `:dir()` pseudo-class is now partially supported in computed styles. | ||
|
||
Full support could not be implemented due to dom4j's limited DOM support. | ||
|
||
Users are advised to switch to css4j's native DOM if they need a full `:dir` | ||
implementation. | ||
|
||
### Build | ||
|
||
The build system was switched from Maven to Gradle. | ||
|
||
|
||
## Project Sites | ||
|
||
Project home: https://css4j.github.io/ | ||
|
||
Development site: https://github.com/css4j/css4j-dom4j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
# | ||
# This script writes the changelog in a human-readable format. | ||
# | ||
# You'll probably want to edit manually the result of executing the script. | ||
# | ||
if [[ $# -eq 0 ]] ; then | ||
echo "No version supplied (e.g. '1.3.1')" | ||
exit 1 | ||
fi | ||
OLDTAG=`git tag -l --merged 1-stable --sort=-taggerdate|head -1` | ||
echo "Writing changes from tag $OLDTAG" | ||
TITLE="CSS4J-DOM4J Module changes" | ||
VERHDR="Version ${1}" | ||
OUTFILE="CHANGES.txt" | ||
echo -en "${TITLE}\\r\\n${TITLE//?/=}\\r\\n\\r\\n${VERHDR}\\r\\n${VERHDR//?/-}\\r\\n\\r\\n">${OUTFILE} | ||
git log --reverse --pretty=format:%s ${OLDTAG}..|sed -e 's/^/- /'|fold -s|sed -r 's/^([^-])/ \1/'|sed -e 's/$/\r/'>>${OUTFILE} | ||
echo -en "\\n">>${OUTFILE} |