Skip to content

Commit

Permalink
Merge pull request #81 from UdaraJay/udara/new-search
Browse files Browse the repository at this point in the history
Minor updates
  • Loading branch information
UdaraJay authored Apr 20, 2024
2 parents 39c27d6 + 2be387e commit 29224b0
Show file tree
Hide file tree
Showing 14 changed files with 955 additions and 857 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "Pile",
"version": "0.9.3",
"version": "0.9.4",
"keywords": [
"pile"
],
Expand Down Expand Up @@ -103,13 +103,13 @@
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"axios": "^1.6.0",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"electron-debug": "^3.2.0",
"electron-log": "^4.4.8",
"electron-updater": "^5.3.0",
"follow-redirects": "^1.15.5",
"undici": "^5.28.4",
"framer-motion": "^10.12.18",
"gray-matter": "^4.0.3",
"luxon": "^3.3.0",
Expand Down Expand Up @@ -148,7 +148,7 @@
"css-minimizer-webpack-plugin": "^5.0.0",
"detect-port": "^1.5.1",
"electron": "^25.8.4",
"electron-builder": "^24.7.0",
"electron-builder": "^24.13.0",
"electron-devtools-installer": "^3.2.0",
"electronmon": "^2.0.2",
"eslint": "^8.42.0",
Expand Down Expand Up @@ -189,8 +189,8 @@
"url-loader": "^4.1.1",
"webpack": "^5.85.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0",
"webpack-merge": "^5.9.0"
},
"build": {
Expand Down
4 changes: 2 additions & 2 deletions release/app/package-lock.json

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

2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pile",
"version": "0.9.3",
"version": "0.9.4",
"description": "Pile: Everyday journal and thought companion.",
"license": "MIT",
"author": {
Expand Down
455 changes: 224 additions & 231 deletions release/app/yarn.lock

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion src/renderer/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
--bg-tertiary: #1a375f;
--bg-color-secondary-hover: rgb(95, 100, 122);
--bg-translucent: rgba(10, 15, 35, 0.45); */

color-scheme: dark;
}
}
Expand All @@ -129,6 +129,16 @@

@import '../../assets/inter/inter.css';

html {
font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
html {
font-family: 'Inter var', sans-serif;
}
}

* {
box-sizing: border-box;
}
Expand Down
Loading

0 comments on commit 29224b0

Please sign in to comment.