Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
watamario15 committed Feb 21, 2023
1 parent 9fb15b9 commit ee88584
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
gh release delete -R ${{ github.repository }} ${{ steps.time.outputs.version }} -y --cleanup-tag || true
gh release create -R ${{ github.repository }} ${{ steps.time.outputs.version }} -d -t ${{ steps.time.outputs.version }} -n 'These XTBook dictionary files (.xtbdict) are automatically created from the version ${{ steps.time.outputs.version }}. **You must extract them with an extractor such as `tar` or [7-Zip](http://www.7-zip.org/) before using them on the XTBook.** For 7-Zip, download all splitted files and specify to extract the first archive. For `tar`, concatenate all splitted files with `tarcat` and pipe them to `tar`. You may find some MediaWiki based wikis that are not distributed below, such as images for Japanese Uncyclopedia, Brain Wiki, and English Wikipedia at [OSDN](https://osdn.net/projects/xtbook/). Open an [issue](https://github.com/watamario15/xtbook/issues) for Wikimedia wikis that are not currently listed here. License information can be found [here](https://ja.osdn.net/projects/xtbook/wiki/FrontPage).
${{ steps.time.outputs.version }} の版を元に自動生成された XTBook 辞書ファイル (.xtbdict) です。**ダウンロードしたファイルは、最初に `tar` や [7-Zip](https://sevenzip.osdn.jp/) 等を用いて展開する必要があります。**7-Zip なら分割ファイル全てをダウンロードし、最初の番号のファイルを指定して展開します。`tar` の場合は `tarcat` を用いて全てを結合し、それをパイプで `tar` に流して展開します。Uncyclopedia 日本語版の画像データ、Brain Wiki、英語版 Wikipedia は自動化できないため、[OSDN](https://ja.osdn.net/projects/xtbook/) で手動配布しています。Wikimedia 財団の wiki のうち、生成していないものについては [issue](https://github.com/watamario15/xtbook/issues) を立ててもらえれば検討します。ライセンス情報は[こちら](https://ja.osdn.net/projects/xtbook/wiki/FrontPage)から確認してください。'
${{ steps.time.outputs.version }} の版を元に自動生成された XTBook 辞書ファイル (.xtbdict) です。**ダウンロードしたファイルは、最初に `tar` や [7-Zip](https://sevenzip.osdn.jp/) 等を用いて展開する必要があります。** 7-Zip なら分割ファイル全てをダウンロードし、最初の番号のファイルを指定して展開します。`tar` の場合は `tarcat` を用いて全てを結合し、それをパイプで `tar` に流して展開します。Uncyclopedia 日本語版の画像データ、Brain Wiki、英語版 Wikipedia は自動化できないため、[OSDN](https://ja.osdn.net/projects/xtbook/) で手動配布しています。Wikimedia 財団の wiki のうち、生成していないものについては [issue](https://github.com/watamario15/xtbook/issues) を立ててもらえれば検討します。ライセンス情報は[こちら](https://ja.osdn.net/projects/xtbook/wiki/FrontPage)から確認してください。'
dictgen:
name: Convert
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
./xtbconv wikimedia ${{ matrix.wiki }} ${{ needs.create_release.outputs.version }} 1900M
- name: Upload
run: gh release upload -R ${{ github.repository }} ${{ steps.time.outputs.version }} ./*.xtbdict.tar.*
run: gh release upload -R ${{ github.repository }} ${{ needs.create_release.outputs.version }} ./*.xtbdict.tar.* --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -80,4 +80,4 @@ jobs:
- name: Publish the draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release edit -R ${{ github.repository }} ${{ steps.time.outputs.version }} --draft=false
run: gh release edit -R ${{ github.repository }} ${{ needs.create_release.outputs.version }} --draft=false
12 changes: 6 additions & 6 deletions build.cegcc/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
SDL=/mnt/c/Users/watamario15/Documents/wata/Git/SDL-1.2/build-wince/.libs
SDLINCLUDE=/mnt/c/Users/watamario15/Documents/wata/Git/SDL-1.2/include
CEGCC=/opt/cegcc
CC=arm-mingw32ce-gcc
CXX=arm-mingw32ce-g++
LD=arm-mingw32ce-g++
STRIP=arm-mingw32ce-strip
WINDRES=arm-mingw32ce-windres
CC=$(CEGCC)/bin/arm-mingw32ce-gcc
CXX=$(CEGCC)/bin/arm-mingw32ce-g++
LD=$(CEGCC)/bin/arm-mingw32ce-g++
STRIP=$(CEGCC)/bin/arm-mingw32ce-strip
WINDRES=$(CEGCC)/bin/arm-mingw32ce-windres
CCFLAGS= -I$(SRCPATH)/tcw/include -I$(SRCPATH) -I$(SDLINCLUDE) -DEV_PLATFORM_WIN32 -DUNICODE -D_UNICODE -DEV_UNSAFE_SWPRINTF -mwin32 -Os -mcpu=arm926ej-s -D_WIN32_WCE=0x500 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64 -DNDEBUG
CXXFLAGS=$(CCFLAGS) --std=gnu++98
CXXFLAGS=$(CCFLAGS) --std=gnu++03
LDFLAGS=-L$(SDL) -lSDLmain -lSDL -lmmtimer -mwin32 -mthreads -static
TARGET=AppMain.exe
PACKAGE=build
Expand Down

0 comments on commit ee88584

Please sign in to comment.