Skip to content

Commit e051413

Browse files
committed
add: wechat qrcode png.
fix: version to v3.
1 parent 0d7e008 commit e051413

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
- name: Upload coverage to Codecov
3838
uses: codecov/codecov-action@v4.0.1
3939
with:
40-
token: ${{ secrets.CODECOV_TOKEN }}
40+
token: ${{ secrets.CODECOV_TOKEN }}

README.md

-7
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,3 @@ This project follows the all-contributors specification. All kinds of contributi
5050
![Contributors](https://contributors-img.web.app/image?repo=auula/typikon)
5151

5252

53-
---
54-
55-
## WeChat Group
56-
57-
> 中国大陆用户可以加微信群一起讨论设计与代码实现细节。
58-
59-
<img src="https://img.ibyte.me/nlbxzp.jpg" alt="Alt text" style="width: 180px; height: 260px;">

src/cli/commands.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ pub fn handle_init_command(_args: &[String]) {
167167
return;
168168
}
169169

170-
if let Err(err) = utils::move_dir_contents(Path::new("typikon-book-main"), Path::new(".")) {
170+
if let Err(err) = utils::move_dir_contents(Path::new("typikon-book-v3-main"), Path::new(".")) {
171171
log.error(format_args!("{:?}", err));
172172
return;
173173
}
174174

175-
if let Err(err) = utils::delete_folder(Path::new("typikon-book-main")) {
175+
if let Err(err) = utils::delete_folder(Path::new("typikon-book-v3-main")) {
176176
log.error(format_args!("{:?}", err));
177177
return;
178178
}

0 commit comments

Comments
 (0)