From 9c23e6c5f3459240a87898762cbfa90cef766ad7 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 2 May 2026 19:32:21 +0200 Subject: Emoji suggestion (#1235) Suggest an emoji in addition to the 3 suggested words when the current word matches an alias in the emoji dictionary, if available.--- vendor/cdict | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor') diff --git a/vendor/cdict b/vendor/cdict index 0b772b9..4e29981 160000 --- a/vendor/cdict +++ b/vendor/cdict @@ -1 +1 @@ -Subproject commit 0b772b9db9762a141afbb18cc14d407a8fb3b2b9 +Subproject commit 4e29981795f6d143337511108f4e030269f3fab2 -- cgit v1.2.3 From 9d0a849d347eb3ec0d921bc3a08d39a5b53ebb45 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Wed, 6 May 2026 23:25:37 +0200 Subject: Make building libcdict reproducible (#1282) This is needed to release on F-Droid.--- vendor/Android.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vendor') diff --git a/vendor/Android.mk b/vendor/Android.mk index b514ad9..4974cea 100644 --- a/vendor/Android.mk +++ b/vendor/Android.mk @@ -8,6 +8,10 @@ LOCAL_CFLAGS += LOCAL_SRC_FILES := cdict/libcdict/libcdict.c cdict/java/jni/juloo_cdict_Cdict.c LOCAL_MODULE := libcdict_java LOCAL_SDK_VERSION := 21 + +# Android requires 16K pages LOCAL_LDFLAGS += -Wl,-z,max-page-size=16384 +# Disable build id to ensure reproducibility, needed for F-Droid +LOCAL_LDFLAGS += -Wl,--build-id=none include $(BUILD_SHARED_LIBRARY) -- cgit v1.2.3