Skip to content

Commit

Permalink
Merge pull request #30 from bornova/dev
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
bornova authored Jan 12, 2024
2 parents 27fd14f + bc69911 commit 8b914da
Show file tree
Hide file tree
Showing 9 changed files with 219 additions and 52 deletions.
4 changes: 2 additions & 2 deletions build/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/css/dark.css

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

2 changes: 1 addition & 1 deletion build/css/light.css

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

234 changes: 197 additions & 37 deletions build/js/app.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions build/js/app.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "numara",
"productName": "Numara",
"description": "Numara Calculator",
"version": "4.4.0",
"version": "4.4.1",
"author": {
"name": "Timur Atalay",
"email": "[email protected]",
Expand Down Expand Up @@ -36,7 +36,7 @@
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"function-plot": "^1.24.0",
"lucide": "^0.292.0",
"lucide": "^0.309.0",
"luxon": "^3.4.4",
"mathjs": "^12.2.1",
"mousetrap": "^1.6.5",
Expand Down
4 changes: 4 additions & 0 deletions src/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,10 @@ pre {
padding: 5px;
}

.CodeMirror-hints {
font-family: 'Roboto Mono', monospace;
}

/* Print style */
.printArea {
display: none;
Expand Down
3 changes: 3 additions & 0 deletions src/js/settings.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { $, $all, app, store } from './common'
import { cm, udfInput, uduInput } from './editor'
import { getRates } from './forex'
import { generateIcons } from './icons'
import { calculate, math } from './math'
import { checkLocale, checkSize, isElectron } from './utils'

Expand Down Expand Up @@ -101,6 +102,8 @@ export const settings = {

span.appendChild(icon)

generateIcons()

span.addEventListener('click', () => {
const key = item.getAttribute('id')

Expand Down

0 comments on commit 8b914da

Please sign in to comment.