Skip to content

Commit

Permalink
Version 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipmake committed Oct 16, 2024
1 parent 8aab9c3 commit a3ac2d1
Show file tree
Hide file tree
Showing 21 changed files with 949 additions and 146 deletions.
10 changes: 4 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ node_modules
.pnp.js

# testing
/coverage
coverage

# production
/build
/dist
build
dist

# misc
.DS_Store
Expand All @@ -28,6 +28,4 @@ yarn-error.log*
# exclude everything in the www folder
/backend/www/*

build

buildall.sh
build
Binary file modified assets/screenshot1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screenshot3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ app.get('/config', (req, res) => {
res.send({
PLEX_SERVER: process.env.PLEX_SERVER,
CONFIG: {
DISABLE_PROXY: process.env.DISABLE_PROXY === 'true' ?? false,
DISABLE_PROXY: process.env.DISABLE_PROXY === 'true',
}
});
});
Expand Down
12 changes: 12 additions & 0 deletions buildall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Create a new builder instance
docker buildx create --name mybuilder --use

# Build and push the amd64 image
docker buildx build --platform linux/amd64 -t ipmake/perplexed:latest-amd64 . --push

# Build and push the arm64 image
docker buildx build --platform linux/arm64 -t ipmake/perplexed:latest-arm64 . --push

# Create and push the manifest
docker buildx imagetools create --tag ipmake/perplexed:latest ipmake/perplexed:latest-amd64 ipmake/perplexed:latest-arm64
# docker buildx imagetools push ipmake/perplexed:latest
6 changes: 6 additions & 0 deletions frontend/package-lock.json

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

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource-variable/quicksand": "^5.1.0",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"axios": "^1.6.8",
Expand Down
11 changes: 10 additions & 1 deletion frontend/src/components/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ function Appbar() {

bgcolor: scrollAtTop ? "#00000000" : `#000000AA`,
boxShadow: scrollAtTop ? "none" : "0px 0px 10px 0px #000000AA",

borderBottomLeftRadius: "10px",
borderBottomRightRadius: "10px",
}}
>
<Menu
Expand Down Expand Up @@ -175,6 +178,12 @@ function Appbar() {
}
sx={{
backgroundColor: "rgba(255, 255, 255, 0.2)",
borderRadius: "7px",

// round the corners of the input
"& .MuiOutlinedInput-root": {
borderRadius: "7px",
},
}}
/>
<Avatar
Expand All @@ -185,7 +194,7 @@ function Appbar() {
sx={{
width: 45,
height: 45,
borderRadius: 2,
borderRadius: "10px",
cursor: "pointer",

"&:hover": {
Expand Down
Loading

0 comments on commit a3ac2d1

Please sign in to comment.