Skip to content

Commit f42feef

Browse files
committed
3.0.0
1 parent 9f087e9 commit f42feef

File tree

16 files changed

+22
-33
lines changed

16 files changed

+22
-33
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
sudo apt-get update
7171
sudo apt-get install -y libclang-10-dev
72-
sudo apt-get install -y libgtk2.0-dev libgtk-3-dev
72+
sudo apt-get install -y libgtk-3-dev
7373
7474
- name: Download engine
7575
uses: actions/download-artifact@v2
@@ -116,14 +116,14 @@ jobs:
116116

117117
strategy:
118118
matrix:
119+
# 5.15.3 doesn't have binary release
119120
qt5:
120121
- 5.9.5
121122
- 5.11.3
122123
- 5.12.8
123124
- 5.12.9
124125
- 5.14.2
125126
- 5.15.2
126-
- 5.15.3
127127

128128
steps:
129129
- name: Download engine
@@ -241,7 +241,7 @@ jobs:
241241
asset_name: libkime-qt-${{ matrix.qt6 }}.so
242242
asset_content_type: application/x-sharedlib
243243

244-
package-arch:
244+
package-archive:
245245
needs:
246246
- build-other
247247
- build-qt5
@@ -263,7 +263,7 @@ jobs:
263263
- qt5: 5.14.2
264264
pkg: deb
265265
name: ubuntu-20.10
266-
- qt5: 5.15.3
266+
- qt5: 5.15.2
267267
pkg: deb
268268
name: ubuntu-22.04
269269
- qt5: 5.11.3

README.ko.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ scripts/build.sh -ar
115115
패키지로 설치 하실 경우에는 필요 없을수도 있습니다.
116116

117117
```sh
118-
# GTK2 설치 시
119-
sudo gtk-query-immodules-2.0 --update-cache
120118
# GTK3 설치 시
121119
sudo gtk-query-immodules-3.0 --update-cache
122120
# GTK4 설치 시
@@ -164,7 +162,6 @@ kime은 kime 데몬을 위한 kime.desktop 파일을 /etc/xdg/autostart에 설
164162
참고로 필요하신 종속성만 있으면 됩니다
165163
예를들어 qt6를 사용하지 않으신다면 필요하지 않습니다.
166164

167-
* gtk2
168165
* gtk3
169166
* gtk4
170167
* qt5
@@ -185,7 +182,6 @@ kime은 kime 데몬을 위한 kime.desktop 파일을 /etc/xdg/autostart에 설
185182

186183
#### 선택적
187184

188-
* gtk2
189185
* gtk3
190186
* gtk4
191187
* qtbase5-private

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ Every files needed for manual install is in `build/out` directory.
115115
Typically, this step is not necessary when kime is installed from binary package because most Linux distros does these steps themselves.
116116

117117
```sh
118-
# for gtk2
119-
sudo gtk-query-immodules-2.0 --update-cache
120118
# for gtk3
121119
sudo gtk-query-immodules-3.0 --update-cache
122120
# for gtk4
@@ -163,7 +161,6 @@ Read [CONFIGURATION.md](docs/CONFIGURATION.md) for detail options.
163161

164162
These dependencies are optional depending on your environments. For example, qt6 is not required when it is not used.
165163

166-
* gtk2
167164
* gtk3
168165
* gtk4
169166
* qt5
@@ -184,7 +181,6 @@ These dependencies are optional depending on your environments. For example, qt6
184181

185182
#### Optional
186183

187-
* gtk2
188184
* gtk3
189185
* gtk4
190186
* qtbase5-private

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.6
1+
3.0.0

build-docker/arch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /opt/kime
44

55
RUN pacman -Syu --noconfirm
66
RUN pacman -S --noconfirm --needed rust cmake clang llvm libxcb cairo
7-
RUN pacman -S --noconfirm --needed gtk2 gtk3 gtk4
7+
RUN pacman -S --noconfirm --needed gtk3 gtk4
88
RUN pacman -S --noconfirm --needed qt5-base qt6-base
99
RUN pacman -S --noconfirm --needed git
1010
RUN mkdir -pv /opt/kime-out

build-docker/debian-buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deb http://ftp.debian.org/debian buster-backports main\n\
1212
" > /etc/apt/sources.list
1313
RUN apt-get update
1414
RUN apt-get install -y build-essential git gcc clang libclang-dev cmake extra-cmake-modules pkg-config zstd
15-
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk2.0-dev libgtk-3-dev libglib2.0 libxcb1
15+
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk-3-dev libglib2.0 libxcb1
1616
RUN apt-get install -y qt5-default qtbase5-dev qtbase5-private-dev libqt5gui5
1717
RUN mkdir -pv /opt/kime-out
1818

build-docker/ubuntu-18.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get install -y curl apt-utils
99
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --no-modify-path --profile minimal
1010
RUN curl --proto '=https' https://github.com/Kitware/CMake/releases/download/v3.19.5/cmake-3.19.5-Linux-$(uname -m).sh | sh -s -- --skip-license --prefix=/usr
1111
RUN apt-get install -y build-essential git gcc libclang-10-dev pkg-config zstd
12-
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk2.0-dev libgtk-3-dev libglib2.0 libxcb1
12+
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk-3-dev libglib2.0 libxcb1
1313
RUN apt-get install -y qt5-default qtbase5-dev qtbase5-private-dev libqt5gui5
1414
RUN mkdir -pv /opt/kime-out
1515

build-docker/ubuntu-20.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get install -y curl apt-utils
1010
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --no-modify-path --profile minimal
1111
RUN rustc --version
1212
RUN apt-get install -y build-essential git gcc libclang-10-dev cmake extra-cmake-modules pkg-config zstd
13-
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk2.0-dev libgtk-3-dev libglib2.0 libxcb1
13+
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk-3-dev libglib2.0 libxcb1
1414
RUN apt-get install -y qtbase5-dev qtbase5-private-dev libqt5gui5
1515
RUN apt-get install -y libxcb-shape0-dev libxcb-xfixes0-dev
1616
RUN mkdir -pv /opt/kime-out

build-docker/ubuntu-20.10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get install -y curl apt-utils
1010
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --no-modify-path --profile minimal
1111
RUN rustc --version
1212
RUN apt-get install -y build-essential git gcc libclang-10-dev cmake extra-cmake-modules pkg-config zstd
13-
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk2.0-dev libgtk-3-dev libglib2.0 libxcb1
13+
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk-3-dev libglib2.0 libxcb1
1414
RUN apt-get install -y qtbase5-dev qtbase5-private-dev libqt5gui5
1515
RUN mkdir -pv /opt/kime-out
1616

build-docker/ubuntu-21.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get install -y curl apt-utils
1010
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --no-modify-path --profile minimal
1111
RUN rustc --version
1212
RUN apt-get install -y build-essential git gcc libclang-11-dev cmake extra-cmake-modules pkg-config zstd
13-
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk2.0-dev libgtk-3-dev libglib2.0 libxcb1
13+
RUN apt-get install -y libpango1.0-dev libcairo2-dev libgtk-3-dev libglib2.0 libxcb1
1414
RUN apt-get install -y qtbase5-dev qtbase5-private-dev libqt5gui5 libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
1515
RUN mkdir -pv /opt/kime-out
1616

0 commit comments

Comments
 (0)