Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated raqm to 0.10.0 #6884

Merged
merged 1 commit into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion depends/install_raqm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# install raqm


archive=libraqm-0.9.0
archive=libraqm-0.10.0

./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz

Expand Down
4 changes: 2 additions & 2 deletions src/thirdparty/raqm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It currently provides bidirectional text support (using [FriBiDi][1] or
As a result, Raqm can support most writing systems covered by Unicode.

The documentation can be accessed on the web at:
> http://host-oman.github.io/libraqm/
> https://host-oman.github.io/libraqm/

Raqm (Arabic: رَقْم) is writing, also number or digit and the Arabic word for
digital (رَقَمِيّ) shares the same root, so it is a play on “digital writing”.
Expand Down Expand Up @@ -81,5 +81,5 @@ The following projects have patches to support complex text layout using Raqm:
[1]: https://github.com/fribidi/fribidi
[2]: https://github.com/Tehreer/SheenBidi
[3]: https://github.com/harfbuzz/harfbuzz
[4]: https://freetype.org/
[4]: https://www.freetype.org
Copy link
Contributor

@nulano nulano Jan 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is undoing part of #6613. Would you like to submit a PR to libraqm to update the upstream link instead?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I've created HOST-Oman/libraqm#185

[5]: https://www.gtk.org/gtk-doc
4 changes: 2 additions & 2 deletions src/thirdparty/raqm/raqm-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
#define _RAQM_VERSION_H_

#define RAQM_VERSION_MAJOR 0
#define RAQM_VERSION_MINOR 9
#define RAQM_VERSION_MINOR 10
#define RAQM_VERSION_MICRO 0

#define RAQM_VERSION_STRING "0.9.0"
#define RAQM_VERSION_STRING "0.10.0"

#define RAQM_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \
Expand Down
Loading