Skip to content

Commit

Permalink
update submodules (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj authored Jan 23, 2025
1 parent 5e4517d commit 0f8cff2
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
mkdir old new
tar xf release/$file -C old
tar xf $file -C new
diff -r old new >> summary.md || true
diff -rq old new | grep -v '\.hpp differ' >> summary.md || true
rm -r old new
fi
else
Expand Down
2 changes: 1 addition & 1 deletion libgee
2 changes: 1 addition & 1 deletion librime
2 changes: 1 addition & 1 deletion libuv
Submodule libuv updated 60 files
+69 −66 .github/workflows/CI-unix.yml
+1 −1 .github/workflows/sanitizer.yml
+1 −0 .mailmap
+3 −1 AUTHORS
+3 −2 CMakeLists.txt
+82 −1 ChangeLog
+1 −0 LINKS.md
+3 −3 MAINTAINERS.md
+2 −1 Makefile.am
+2 −2 SUPPORTED_PLATFORMS.md
+1 −1 configure.ac
+5 −0 docs/src/fs_event.rst
+11 −0 docs/src/misc.rst
+25 −0 docs/src/threading.rst
+2 −0 docs/src/threadpool.rst
+9 −5 docs/src/timer.rst
+14 −0 docs/src/udp.rst
+12 −0 include/uv.h
+6 −0 include/uv/errno.h
+4 −1 include/uv/unix.h
+2 −2 include/uv/version.h
+1 −9 include/uv/win.h
+3 −0 src/fs-poll.c
+1 −1 src/idna.c
+1 −0 src/threadpool.c
+83 −0 src/unix/async.c
+47 −3 src/unix/core.c
+2 −18 src/unix/darwin-proctitle.c
+24 −0 src/unix/internal.h
+17 −12 src/unix/kqueue.c
+45 −30 src/unix/linux.c
+9 −21 src/unix/pipe.c
+98 −0 src/unix/thread.c
+201 −186 src/unix/udp.c
+22 −0 src/uv-common.c
+20 −0 src/uv-common.h
+8 −102 src/win/core.c
+4 −0 src/win/fs-event.c
+197 −8 src/win/fs.c
+9 −3 src/win/pipe.c
+74 −0 src/win/thread.c
+20 −1 src/win/udp.c
+68 −24 src/win/util.c
+0 −13 src/win/winapi.c
+54 −54 src/win/winapi.h
+0 −41 src/win/winsock.h
+14 −0 test/runner.c
+8 −1 test/test-fs-event.c
+54 −0 test/test-fs.c
+19 −7 test/test-idna.c
+10 −0 test/test-list.h
+9 −0 test/test-pipe-getsockname.c
+16 −0 test/test-platform-output.c
+2 −4 test/test-spawn.c
+189 −0 test/test-thread-name.c
+10 −0 test/test-thread.c
+3 −2 test/test-udp-mmsg.c
+17 −2 test/test-udp-multicast-join.c
+1 −0 test/test-udp-multicast-join6.c
+34 −6 test/test-udp-try-send.c
4 changes: 2 additions & 2 deletions patches/libgee.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/Makefile.am b/Makefile.am
index 07d2bdc..886c194 100644
index 9058f89..1f67070 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,7 +16,6 @@ endif
Expand All @@ -11,7 +11,7 @@ index 07d2bdc..886c194 100644
$(BENCHMARK_SUBDIR) \
$(NULL)
diff --git a/configure.ac b/configure.ac
index 10c661a..b1a4cfc 100644
index e9bfb37..6d0d9e1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -68,9 +68,6 @@ AC_ARG_ENABLE(consistency-check, [AS_HELP_STRING([--enable-consistency-check], [
Expand Down
16 changes: 8 additions & 8 deletions patches/librime.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1608286..5b6942f 100644
index 16082869..5b6942f6 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -166,6 +166,14 @@ if(BUILD_SHARED_LIBS)
Expand All @@ -18,7 +18,7 @@ index 1608286..5b6942f 100644
OUTPUT_NAME "rime" PREFIX "lib"
ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib)
diff --git a/src/rime/engine.cc b/src/rime/engine.cc
index 07aa6b7..7360e0b 100644
index 07aa6b7d..7360e0b5 100644
--- a/src/rime/engine.cc
+++ b/src/rime/engine.cc
@@ -52,7 +52,6 @@ class ConcreteEngine : public Engine {
Expand All @@ -30,7 +30,7 @@ index 07aa6b7..7360e0b 100644

// implementations
diff --git a/src/rime/engine.h b/src/rime/engine.h
index 6b51a68..c5b8f7e 100644
index 6b51a68e..c5b8f7e4 100644
--- a/src/rime/engine.h
+++ b/src/rime/engine.h
@@ -16,6 +16,7 @@ namespace rime {
Expand All @@ -50,7 +50,7 @@ index 6b51a68..c5b8f7e 100644
protected:
Engine();
diff --git a/src/rime/gear/navigator.cc b/src/rime/gear/navigator.cc
index e3c3b40..551716b 100644
index e3c3b40e..551716b2 100644
--- a/src/rime/gear/navigator.cc
+++ b/src/rime/gear/navigator.cc
@@ -15,6 +15,9 @@
Expand All @@ -73,7 +73,7 @@ index e3c3b40..551716b 100644
FallbackOptions::All);
}
diff --git a/src/rime/gear/selector.cc b/src/rime/gear/selector.cc
index 0687410..b288eaf 100644
index 06874103..b288eaf2 100644
--- a/src/rime/gear/selector.cc
+++ b/src/rime/gear/selector.cc
@@ -14,6 +14,16 @@
Expand Down Expand Up @@ -202,7 +202,7 @@ index 0687410..b288eaf 100644
return false;
}
diff --git a/src/rime/gear/selector.h b/src/rime/gear/selector.h
index 5e4bfce..e88aace 100644
index 5e4bfce0..e88aace0 100644
--- a/src/rime/gear/selector.h
+++ b/src/rime/gear/selector.h
@@ -14,11 +14,12 @@
Expand All @@ -221,7 +221,7 @@ index 5e4bfce..e88aace 100644
enum CandidateListLayout {
Stacked = 0,
diff --git a/src/rime/service.h b/src/rime/service.h
index a69ae74..9b3d4b1 100644
index a69ae741..9b3d4b16 100644
--- a/src/rime/service.h
+++ b/src/rime/service.h
@@ -44,11 +44,11 @@ class Session {
Expand All @@ -238,7 +238,7 @@ index a69ae74..9b3d4b1 100644
string commit_text_;
};
diff --git a/src/rime_api_impl.h b/src/rime_api_impl.h
index 6e906cf..f4dae0a 100644
index 6e906cfe..f4dae0a3 100644
--- a/src/rime_api_impl.h
+++ b/src/rime_api_impl.h
@@ -17,6 +17,8 @@
Expand Down
2 changes: 1 addition & 1 deletion scripts/boost.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from common import CMakeBuilder, PLATFORM, cache, ensure

version = '1.86.0'
version = '1.87.0'

boost_dir = f'boost-{version}'
boost_tar = f'{boost_dir}-cmake.tar.xz'
Expand Down

0 comments on commit 0f8cff2

Please sign in to comment.