Skip to content

Commit 1cd6784

Browse files
authored
Merge pull request #6 from Hunter87ff/1.1.0
1.1.0
2 parents 1a42d5a + a7adb6c commit 1cd6784

14 files changed

Lines changed: 1860 additions & 1499 deletions

.github/workflows/status.yml

Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,36 @@
1-
name: Test
2-
3-
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
10-
11-
jobs:
12-
build-and-test:
13-
runs-on: ubuntu-latest
14-
15-
strategy:
16-
matrix:
17-
node-version: [16.x, 18.x]
18-
19-
steps:
20-
- name: Checkout repository
21-
uses: actions/checkout@v3
22-
23-
- name: Set up Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
25-
with:
26-
node-version: ${{ matrix.node-version }}
27-
28-
- name: Install dependencies
29-
run: npm install
30-
31-
- name: Available Scripts
32-
run: npm run
33-
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build-and-test:
16+
runs-on: ubuntu-latest
17+
18+
strategy:
19+
matrix:
20+
node-version: [16.x, 18.x]
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v3
25+
26+
- name: Set up Node.js ${{ matrix.node-version }}
27+
uses: actions/setup-node@v3
28+
with:
29+
node-version: ${{ matrix.node-version }}
30+
31+
- name: Install dependencies
32+
run: npm install
33+
34+
- name: Available Scripts
35+
run: npm run
36+

.gitignore

Lines changed: 137 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,138 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
9-
10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# testing environment
14-
/test
15-
16-
17-
# Runtime data
18-
pids
19-
*.pid
20-
*.seed
21-
*.pid.lock
22-
23-
# Directory for instrumented libs generated by jscoverage/JSCover
24-
lib-cov
25-
26-
# Coverage directory used by tools like istanbul
27-
coverage
28-
*.lcov
29-
30-
# nyc test coverage
31-
.nyc_output
32-
33-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34-
.grunt
35-
36-
# Bower dependency directory (https://bower.io/)
37-
bower_components
38-
39-
# node-waf configuration
40-
.lock-wscript
41-
42-
# Compiled binary addons (https://nodejs.org/api/addons.html)
43-
build/Release
44-
45-
# Dependency directories
46-
node_modules/
47-
jspm_packages/
48-
49-
# Snowpack dependency directory (https://snowpack.dev/)
50-
web_modules/
51-
52-
# TypeScript cache
53-
*.tsbuildinfo
54-
55-
# Optional npm cache directory
56-
.npm
57-
58-
# Optional eslint cache
59-
.eslintcache
60-
61-
# Optional stylelint cache
62-
.stylelintcache
63-
64-
# Microbundle cache
65-
.rpt2_cache/
66-
.rts2_cache_cjs/
67-
.rts2_cache_es/
68-
.rts2_cache_umd/
69-
70-
# Optional REPL history
71-
.node_repl_history
72-
73-
# Output of 'npm pack'
74-
*.tgz
75-
76-
# Yarn Integrity file
77-
.yarn-integrity
78-
79-
# dotenv environment variable files
80-
.env
81-
.env.development.local
82-
.env.test.local
83-
.env.production.local
84-
.env.local
85-
86-
# parcel-bundler cache (https://parceljs.org/)
87-
.cache
88-
.parcel-cache
89-
90-
# Next.js build output
91-
.next
92-
out
93-
94-
# Nuxt.js build / generate output
95-
.nuxt
96-
dist
97-
98-
# Gatsby files
99-
.cache/
100-
# Comment in the public line in if your project uses Gatsby and not Next.js
101-
# https://nextjs.org/blog/next-9-1#public-directory-support
102-
# public
103-
104-
# vuepress build output
105-
.vuepress/dist
106-
107-
# vuepress v2.x temp and cache directory
108-
.temp
109-
.cache
110-
111-
# Docusaurus cache and generated files
112-
.docusaurus
113-
114-
# Serverless directories
115-
.serverless/
116-
117-
# FuseBox cache
118-
.fusebox/
119-
120-
# DynamoDB Local files
121-
.dynamodb/
122-
123-
# TernJS port file
124-
.tern-port
125-
126-
# Stores VSCode versions used for testing VSCode extensions
127-
.vscode-test
128-
129-
# yarn v2
130-
.yarn/cache
131-
.yarn/unplugged
132-
.yarn/build-state.yml
133-
.yarn/install-state.gz
134-
.pnp.*
135-
136-
#win config
137-
*.bat
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# testing environment
14+
/test
15+
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Directory for instrumented libs generated by jscoverage/JSCover
24+
lib-cov
25+
26+
# Coverage directory used by tools like istanbul
27+
coverage
28+
*.lcov
29+
30+
# nyc test coverage
31+
.nyc_output
32+
33+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34+
.grunt
35+
36+
# Bower dependency directory (https://bower.io/)
37+
bower_components
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons (https://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directories
46+
node_modules/
47+
jspm_packages/
48+
49+
# Snowpack dependency directory (https://snowpack.dev/)
50+
web_modules/
51+
52+
# TypeScript cache
53+
*.tsbuildinfo
54+
55+
# Optional npm cache directory
56+
.npm
57+
58+
# Optional eslint cache
59+
.eslintcache
60+
61+
# Optional stylelint cache
62+
.stylelintcache
63+
64+
# Microbundle cache
65+
.rpt2_cache/
66+
.rts2_cache_cjs/
67+
.rts2_cache_es/
68+
.rts2_cache_umd/
69+
70+
# Optional REPL history
71+
.node_repl_history
72+
73+
# Output of 'npm pack'
74+
*.tgz
75+
76+
# Yarn Integrity file
77+
.yarn-integrity
78+
79+
# dotenv environment variable files
80+
.env
81+
.env.development.local
82+
.env.test.local
83+
.env.production.local
84+
.env.local
85+
86+
# parcel-bundler cache (https://parceljs.org/)
87+
.cache
88+
.parcel-cache
89+
90+
# Next.js build output
91+
.next
92+
out
93+
94+
# Nuxt.js build / generate output
95+
.nuxt
96+
dist
97+
98+
# Gatsby files
99+
.cache/
100+
# Comment in the public line in if your project uses Gatsby and not Next.js
101+
# https://nextjs.org/blog/next-9-1#public-directory-support
102+
# public
103+
104+
# vuepress build output
105+
.vuepress/dist
106+
107+
# vuepress v2.x temp and cache directory
108+
.temp
109+
.cache
110+
111+
# Docusaurus cache and generated files
112+
.docusaurus
113+
114+
# Serverless directories
115+
.serverless/
116+
117+
# FuseBox cache
118+
.fusebox/
119+
120+
# DynamoDB Local files
121+
.dynamodb/
122+
123+
# TernJS port file
124+
.tern-port
125+
126+
# Stores VSCode versions used for testing VSCode extensions
127+
.vscode-test
128+
129+
# yarn v2
130+
.yarn/cache
131+
.yarn/unplugged
132+
.yarn/build-state.yml
133+
.yarn/install-state.gz
134+
.pnp.*
135+
136+
#win config
137+
*.bat
138138
*.vsix

.vscode/c_cpp_properties.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
{
2-
"configurations": [
3-
{
4-
"name": "Win32",
5-
"includePath": [
6-
"${workspaceFolder}/**"
7-
],
8-
"defines": [
9-
"_DEBUG",
10-
"UNICODE",
11-
"_UNICODE"
12-
],
13-
"cppStandard": "c++23",
14-
"cStandard": "c23",
15-
"compilerPath": "C:/MinGW64/bin/g++.exe"
16-
}
17-
],
18-
"version": 4
1+
{
2+
"configurations": [
3+
{
4+
"name": "Win32",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [
9+
"_DEBUG",
10+
"UNICODE",
11+
"_UNICODE"
12+
],
13+
"cppStandard": "c++23",
14+
"cStandard": "c23",
15+
"compilerPath": "C:/MinGW64/bin/g++.exe"
16+
}
17+
],
18+
"version": 4
1919
}

0 commit comments

Comments
 (0)