Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9d814e7
大幅减少程序里写死的逻辑,将其转移到config文件中
run26oyzr Aug 31, 2023
be31d3c
导出时列数修改
run26oyzr Aug 31, 2023
d5abd8c
Update config.json
IceCang Aug 31, 2023
1233ffe
哦不,某人代码删多了💦
IceCang Aug 31, 2023
12e3904
哦不,这会留到我忘API了😅
IceCang Aug 31, 2023
cad6af4
修复用日期作为种子的bug
run26oyzr Aug 31, 2023
908b684
check函数中的定制换成和n,m有关的变量
run26oyzr Aug 31, 2023
257e08b
读取文件时增加catch(如果格式错误会在log中提示)
run26oyzr Sep 2, 2023
5ce6219
Update package.json
EDP2021-C1 Sep 8, 2023
8d33957
Update config.json
EDP2021-C1 Sep 8, 2023
f02c3b3
Update config.json
EDP2021-C1 Sep 8, 2023
899735f
Update index.html
EDP2021-C1 Sep 8, 2023
870c046
注释享受生活相关内容,隐藏分开输入框,分开值从config中读取; unfix:log框自动滚动出错
run26oyzr Sep 10, 2023
c1a4432
Merge branch 'main' of https://github.com/edp2021c1/RandomSeat
run26oyzr Sep 10, 2023
3232ab4
Update renderer.js
EDP2021-C1 Sep 28, 2023
0447463
Update config.json
EDP2021-C1 Sep 28, 2023
b654372
Update renderer.js
EDP2021-C1 Sep 28, 2023
c6b7773
修复最后一行可选位置导致死循环,加回分开输入框,读取新的config后会重置表格
run26oyzr Sep 29, 2023
104c1fe
删除分开输入框的隐藏与显示按钮
run26oyzr Sep 29, 2023
2e32efd
可自动填入精度为秒的时间作为种子
run26oyzr Sep 29, 2023
fa7dc5a
Update config.json
EDP2021-C1 Oct 9, 2023
3c8c60d
Update config.json
EDP2021-C1 Oct 9, 2023
6d2c04d
Update config.json
EDP2021-C1 Oct 9, 2023
9696c56
Update renderer.js
EDP2021-C1 Oct 9, 2023
f8c07b1
Update renderer.js
EDP2021-C1 Oct 9, 2023
d79472b
Update renderer.js
EDP2021-C1 Oct 9, 2023
a77292c
Update config.json
EDP2021-C1 Oct 9, 2023
f723c50
Update config.json
EDP2021-C1 Oct 9, 2023
76e963a
Update config.json
EDP2021-C1 Oct 9, 2023
6f592e0
诶嘿嘿嘿,WebStorm来喽
Calboot Dec 5, 2023
856a563
小更改
Calboot Dec 5, 2023
68caedb
格式化代码
Calboot Dec 5, 2023
a5799ae
格式化代码
Calboot Dec 5, 2023
b5b1e0d
提高规范性
Calboot Dec 5, 2023
d46ea42
提高规范性
Calboot Dec 5, 2023
fb8dee7
优化+规范化
Calboot Dec 5, 2023
c27048c
Update .gitignore
Calboot Dec 5, 2023
e8201c4
删去可省略的异步声明
Calboot Dec 5, 2023
d8b8500
还能省
Calboot Dec 5, 2023
282d7f0
再优化一下
Calboot Dec 5, 2023
a330bc8
Merge pull request #4 from Calboot/main
EDP2021-C1 Dec 6, 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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest, ]
os: [ windows-latest, macOS-latest, ubuntu-latest, ]

# create steps
steps:
Expand All @@ -42,7 +42,7 @@ jobs:

- name: build app
run: npm run make
env:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# step6: upload artifacts
Expand All @@ -53,9 +53,9 @@ jobs:
path: out

release:
needs: [build]
needs: [ build ]
runs-on: ubuntu-latest
steps:
steps:
- name: download artifacts
uses: actions/download-artifact@v2
with:
Expand Down
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/RandomSeat.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations/build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/runConfigurations/index_html.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions app.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ button {
border: none;
}

.titlebar {
.title-bar {
-webkit-app-region: drag;
position: fixed;
width: 100%;
Expand Down Expand Up @@ -114,7 +114,7 @@ input, textarea {
border-radius: 10px;
padding-left: 10px;
padding-right: 10px;
outline: none;
outline: none;
border: none;
transition: .5s ease;
}
Expand All @@ -127,12 +127,13 @@ input, textarea {
input, textarea {
width: 75% !important;
}

.log {
height: 7%;
}
}

input:focus, textarea:focus{
input:focus, textarea:focus {
background-color: hsla(247, 39%, 50%, 0.8);
}

Expand All @@ -146,7 +147,7 @@ input:focus, textarea:focus{
}


.lineinput+button {
.line-input + button {
height: 25px;
font-size: 0.7em;
}
Expand Down
Loading