Skip to content

Commit 938dcd9

Browse files
committed
all: update dep and email addr
1 parent 7ab24fe commit 938dcd9

File tree

13 files changed

+2706
-886
lines changed

13 files changed

+2706
-886
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 - 2019 Changkun Ou <hi@changkun.us>
3+
Copyright (c) 2016 - 2020 Changkun Ou <hi@changkun.de>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

epub/en-us/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all: revision epub
88
revision:
99
@echo '---' >> meta.markdown
1010
@echo 'title: "Modern C++ Tutorial: C++11/14/17/20 On the Fly"' >> meta.markdown
11-
@echo 'author: Changkun Ou <hi@changkun.us>' >> meta.markdown
11+
@echo 'author: Changkun Ou <hi[at]changkun.de>' >> meta.markdown
1212
@echo 'subtitle: |' >> meta.markdown
1313
@echo ' The content in this PDF file may outdated, please check our website <https://changkun.de/modern-cpp> or GitHub repository <https://github.com/changkun/modern-cpp-tutorial> for the latest book updates. Last update: ${date}' >> meta.markdown
1414
@echo 'rights: © Ou Changkun, CC BY-NC-ND 4.0.' >> meta.markdown

epub/en-us/filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/usr/bin/env python3
2-
# author: changkun<hi@changkun.us>
2+
# author: changkun<hi[at]changkun.de>
33

44
import os
55

epub/zh-cn/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all: revision epub
88
revision:
99
@echo '---' >> meta.markdown
1010
@echo 'title: "现代 C++ 教程:高速上手 C++11/14/17/20"' >> meta.markdown
11-
@echo 'author: 欧长坤 <hi@changkun.us>' >> meta.markdown
11+
@echo 'author: 欧长坤 <hi[at]changkun.de>' >> meta.markdown
1212
@echo 'subtitle: |' >> meta.markdown
1313
@echo ' 此文件的内容可能过期,请检查本书网站 <https://changkun.de/modern-cpp> 及 GitHub 仓库<https://github.com/changkun/modern-cpp-tutorial> 以获取最新内容。最后更新:${date}' >> meta.markdown
1414
@echo 'rights: © Ou Changkun, CC BY-NC-ND 4.0.' >> meta.markdown

epub/zh-cn/filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/usr/bin/env python3
2-
# author: changkun<hi@changkun.us>
2+
# author: changkun<hi[at]changkun.de>
33

44
import os
55

pdf/en-us/aggregator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/usr/bin/env python3
2-
# author: changkun<hi@changkun.us>
2+
# author: changkun<hi[at]changkun.de>
33

44
import os
55

@@ -11,7 +11,7 @@
1111
with open('modern-cpp-tutorial.md', 'w') as outfile:
1212
outfile.write("""---
1313
title: "Modern C++ Tutorial: C++11/14/17/20 On the Fly"
14-
author: Changkun Ou <hi@changkun.us>
14+
author: Changkun Ou <hi[at]changkun.de>
1515
copyright: cc-by-nc-nd 4.0
1616
---
1717
""")

pdf/en-us/meta/template.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
{\LARGE\textbf{Modern C++ Tutorial: C++11/14/17/20 On the Fly}}
160160

161161
\vspace{1em}
162-
{\large Changkun Ou (hi@changkun.us)}
162+
{\large Changkun Ou (hi[at]changkun.de)}
163163

164164
\vspace{1ex}
165165
Last update: \today

pdf/zh-cn/aggregator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/usr/bin/env python3
2-
# author: changkun<hi@changkun.us>
2+
# author: changkun<hi[at]changkun.de>
33

44
import os, io
55

@@ -9,7 +9,7 @@
99

1010
head = """---
1111
title: "现代 C++ 教程:高速上手 C++11/14/17/20"
12-
author: 欧长坤 <hi@changkun.us>
12+
author: 欧长坤 <hi[at]changkun.de>
1313
copyright: cc-by-nc-nd 4.0
1414
---
1515
"""

pdf/zh-cn/meta/template.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
{\LARGE\textbf{现代 C++ 教程:高速上手 C++11/14/17/20}}
167167

168168
\vspace{1em}
169-
{\large 欧长坤 (hi@changkun.us)}
169+
{\large 欧长坤 (hi[at]changkun.de)}
170170

171171
\vspace{1ex}
172172
最后更新 \today - \revision

website/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "现代 C++ 教程: 高速上手 C++ 11/14/17/20"
33
subtitle: C++ 11/14/17/20 On the Fly
44
description: "欧长坤"
55
author: 欧长坤
6-
email: hi[at]changkun.us
6+
email: hi[at]changkun.de
77
language: zh-CN
88

99
# URL

website/filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# !/usr/bin/env python3
2-
# author: changkun<hi@changkun.us>
2+
# author: changkun<hi[at]changkun.de>
33
import os
44
import re
55

0 commit comments

Comments
 (0)