Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: reviewpad onboarding #7

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b0bd909
feat: LanguageSwitcher
linonetwo Jun 1, 2023
403a43e
feat: plugin for search
linonetwo Jun 1, 2023
ba11da2
Create allowFilter.tid
linonetwo Jun 1, 2023
df04eca
Updated with Git-Sync
linonetwo Jun 1, 2023
fe2cf6f
Updated with Git-Sync
linonetwo Jun 1, 2023
87588f7
Update download-installers.mjs
linonetwo Jun 1, 2023
5e0d71b
Merge branch 'master' of https://github.com/tiddly-gittly/TidGi-Offic…
linonetwo Jun 1, 2023
3fb1bdf
Updated with Git-Sync
linonetwo Jun 1, 2023
eeca929
Update download-installers.mjs
linonetwo Jun 1, 2023
5c937a1
github token
linonetwo Jun 1, 2023
34d04d4
Update download-installers.mjs
linonetwo Jun 1, 2023
9675c34
Update download-installers.mjs
linonetwo Jun 1, 2023
d12bda1
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
45627d7
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
04115ca
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
2d9179e
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
8145a98
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
dc8b0db
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
0113ddf
feat: closeSidebarOnStart
linonetwo Jun 1, 2023
27303b7
feat: beautify download links
linonetwo Jun 1, 2023
f0e95ae
feat: 美化链接
linonetwo Jun 1, 2023
57bc6d7
feat: beautify font page style
linonetwo Jun 1, 2023
174c173
fix: table with summary not working
linonetwo Jun 1, 2023
109b096
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
beb0b72
Updated with Git-Sync
tiddlygit-test Jun 1, 2023
181c2c8
修复英文里嵌入时丢失有序列表的问题
dongrentianyu Jun 1, 2023
5ac0219
解决嵌入丢失有序列表嵌入问题
dongrentianyu Jun 2, 2023
f5f449a
修改p标签为有序列表
dongrentianyu Jun 2, 2023
f9b5341
feat: 隐藏顶部栏,鼠标放上去才显示.因为官网有个Index标题在那比较奇怪
linonetwo Jun 2, 2023
dfa1633
Merge branch 'master' of https://github.com/tiddly-gittly/TidGi-Offic…
linonetwo Jun 2, 2023
93aa6cb
删除了背景图片,并换了一个配色
dongrentianyu Jun 2, 2023
0c440d8
图片老是显示不出来
dongrentianyu Jun 7, 2023
cf0f559
feat: add reviewpad.yml file
reviewpad[bot] Jun 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GITHUB_TOKEN=
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ tiddlers/$__Import.tid
tiddlers/$__layout.json
tiddlers/$__layout.json.meta
tiddlers/$__layout.tid

files/
.env
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@
## Related Discussion

- [How to create product website using tw? (Like apple.com)](https://talk.tiddlywiki.org/t/how-to-create-product-website-using-tw-like-apple-com)

## DLC

Use [scripts/download-installers.mjs](../scripts/download-installers.mjs) to download installer exe/zip/dmg to this folder.

Binary files in this folder should be gitignored, because files are large and updated frequently. When setup website on a server, please use things like `pm2` to run the download-installers script periodically.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"scripts": {
"build": "zx ./scripts/build-wiki.mjs"
"build": "zx ./scripts/build-wiki.mjs",
"download-installers": "rimraf ./files && zx ./scripts/download-installers.mjs"
},
"dependencies": {
"@tiddlygit/tiddlywiki": "5.2.6-prerelease-2022-12-20"
"@tiddlygit/tiddlywiki": "5.3.0-prerelease-2023-05-22",
"dotenv": "^16.1.3",
"exponential-backoff": "^3.1.1"
},
"devDependencies": {
"html-minifier-terser": "7.1.0",
"rimraf": "^5.0.1",
"shx": "0.3.4",
"workbox-cli": "6.5.3",
"zx": "^7.0.0"
Expand Down
Loading