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

Trigonometric and Logarithmic Support #95

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
127a174
[added]volume conversion
riju-stone Aug 7, 2020
9ff6474
Update readme.md
riju-stone Aug 7, 2020
0bea1e1
Update readme.md
riju-stone Aug 7, 2020
274bcf1
[add] trigonometric functions
riju-stone Aug 8, 2020
3b9fdb3
Merge branch 'master' of https://github.com/riju-stone/caligator
riju-stone Aug 8, 2020
67738ea
Update readme.md
riju-stone Aug 8, 2020
c7827e7
Update readme.md
riju-stone Aug 8, 2020
4b7d358
Update readme.md
riju-stone Aug 8, 2020
4db3814
[add] two new themes and logarithmic functions
riju-stone Aug 14, 2020
dd1cda4
Merge branch 'master' of https://github.com/riju-stone/caligator
riju-stone Aug 14, 2020
96d4814
Update readme.md
riju-stone Aug 14, 2020
62450af
Update readme.md
riju-stone Aug 14, 2020
8422b19
Update readme.md
riju-stone Aug 14, 2020
bfce284
Update readme.md
riju-stone Aug 14, 2020
71dc8e9
Update readme.md
riju-stone Aug 14, 2020
a5a74ab
Update readme.md
riju-stone Aug 14, 2020
45aa78f
Update readme.md
riju-stone Aug 14, 2020
a6dc213
Update readme.md
riju-stone Aug 14, 2020
12b2353
Update readme.md
riju-stone Aug 14, 2020
817205f
Update readme.md
riju-stone Aug 14, 2020
8407e5a
font selector
riju-stone Oct 10, 2020
4080220
Update readme.md
riju-stone Oct 10, 2020
e3d492e
minor changes
riju-stone Nov 9, 2020
6cb5e1d
minor changes
riju-stone Nov 14, 2020
c6d4692
fixed minor issues
riju-stone Feb 18, 2022
a0bbe69
Update readme.md
riju-stone Oct 1, 2022
dc1e6fe
update: complete overhaul using vite and electron@28
riju-stone Apr 24, 2024
3e5ba77
Update readme.md
riju-stone Sep 15, 2024
8bfb510
Update readme.md
riju-stone Sep 15, 2024
998846d
Update readme.md
riju-stone Sep 15, 2024
f73f2ef
updated dependencies
riju-stone Dec 2, 2024
dce8c22
updated dependencies
riju-stone Dec 2, 2024
d90e8f5
updated readme
riju-stone Dec 2, 2024
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
10 changes: 3 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
out
.gitignore
9 changes: 9 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'@electron-toolkit/eslint-config-ts/recommended',
'@electron-toolkit/eslint-config-prettier'
]
}
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
node_modules
yarn.lock
/dist
dist
out
.DS_Store
*.log*
.vscode
archive/
build/

2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
electron_mirror=https://npmmirror.com/mirrors/electron/
electron_builder_binaries_mirror=https://npmmirror.com/mirrors/electron-builder-binaries/
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
out
dist
pnpm-lock.yaml
LICENSE.md
tsconfig.json
tsconfig.*.json
10 changes: 0 additions & 10 deletions .prettierrc.js

This file was deleted.

4 changes: 4 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
singleQuote: true
semi: false
printWidth: 100
trailingComma: none
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

248 changes: 0 additions & 248 deletions app/index.css

This file was deleted.

Loading