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

Dev #135

Merged
merged 24 commits into from
Sep 24, 2024
Merged

Dev #135

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cc77a73
fixed ABSOLUTE_PATHS variable
secure-77 Feb 4, 2024
51e3e4f
Added parsing support for 'center' and 'right' alignment directives i…
ar0x4 May 28, 2024
5959119
FIX: Correct use of katex in double dollars $$
Yaro2709 Aug 3, 2024
27e9f8b
Added YouTube link support
rsubr Aug 6, 2024
d4ca81e
Merge pull request #125 from ar0x4/dev
secure-77 Sep 23, 2024
eaf86e4
Merge pull request #133 from rsubr/main
secure-77 Sep 23, 2024
ee621a0
added Youtube Demo Link
secure-77 Sep 23, 2024
51cf6ac
Merge branch 'dev' of https://github.com/secure-77/Perlite into dev
secure-77 Sep 23, 2024
ae44a1c
added webp image support
secure-77 Sep 23, 2024
2d1fa39
Merge pull request #131 from Yaro2709/main
secure-77 Sep 23, 2024
b2431a7
Merge branch 'dev' of https://github.com/secure-77/Perlite into dev
secure-77 Sep 23, 2024
c5eb84d
fixed edit link and change site title
secure-77 Sep 23, 2024
e281683
fixed issue Some links are breaking the page for no apparent reason #…
secure-77 Sep 23, 2024
2da4c6b
always display left side bar on mobile
secure-77 Sep 23, 2024
5d232f0
fixed issue Image links to external URLS dont work #89
secure-77 Sep 23, 2024
05600d3
removed debug output
secure-77 Sep 23, 2024
744fe79
added Tasks support
secure-77 Sep 23, 2024
8f2c6b8
removed deprecated composer version
secure-77 Sep 23, 2024
67bfe52
changed dependency src to cdn and deleted local files
secure-77 Sep 23, 2024
fac538d
version update in files and enabled custom page view
secure-77 Sep 23, 2024
71f937a
using pre-build nginx:latest image, updated build.sh
secure-77 Sep 24, 2024
4244ad6
updated dependencies
secure-77 Sep 24, 2024
f46e337
version nr update
secure-77 Sep 24, 2024
db2c599
update
secure-77 Sep 24, 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
18 changes: 18 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 1.5.9
- added YouTube link support #133 thanks to @rsubr
- added image postion support thanks to @ar0x4
- fixed direct page links [#90](https://github.com/secure-77/Perlite/issues/90)
- added support for webp images [#126](https://github.com/secure-77/Perlite/issues/126)
- fixed kartex problem PR [#131](https://github.com/secure-77/Perlite/pull/131) thanks to @Yaro2709
- fixed obsidian edit link thanks to klgzzz
- changed site title to use the env. variable site_title
- fixed issue [#128](https://github.com/secure-77/Perlite/issues/128) thanks to @rgaricano
- added m4a support thanks to @rgaricano
- added img link support to external urls issue [#89](https://github.com/secure-77/Perlite/issues/89)
- added tasks support, issue [#118](https://github.com/secure-77/Perlite/issues/118)
- updated mermaid to 11.2.1
- updated katex to 0.16.11
- updated highlight.js to 11.10.0
- changed base image for perlite_web to nginx:stable, issue [#100](https://github.com/secure-77/Perlite/issues/100)


## 1.5.8
- merged PR #111 thanks to @selfiens
- merged PR #112 thanks to @selfiens
Expand Down
21 changes: 9 additions & 12 deletions docker-compose-build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
version: "3.9"

services:
perlite:
image: sec77/perlite:latest
image: sec77/perlite:dev
container_name: perlite-build
environment:
- NOTES_PATH=Demo
- HIDE_FOLDERS=docs,private,trash
- LINE_BREAKS=true
- ABSOLUTE_PATHES=false
- ABSOLUTE_PATHS=false
- ALLOWED_FILE_LINK_TYPES=pdf,mp4
- DISABLE_POP_HOVER=true
- SHOW_TOC=true
Expand All @@ -22,23 +20,22 @@ services:
- SITE_URL=
- SITE_IMAGE=
- SITE_DESC=
- SITE_NAME=
- SITE_TWITTER=
- SITE_LOGO=
- SITE_HOMEPAGE=
- SITE_GITHUB=
- SITE_NAME=Perlite
- SITE_TWITTER=https://x.com/
- SITE_LOGO=perlite.svg
- SITE_HOMEPAGE=https://perlite.secure77.de/
- SITE_GITHUB=https://github.com/
volumes:
- ./perlite:/var/www/perlite
- ./perlite/Demo:/var/www/perlite/Demo:ro

web:
build:
context: ./web
image: sec77/perlite_web:stable
image: nginx:stable
container_name: perlite_web-build
ports:
- 80:80
volumes:
- ./web/config/perlite.conf:/etc/nginx/conf.d/default.conf:ro
- ./perlite:/var/www/perlite
- ./perlite/Demo:/var/www/perlite/Demo:ro
depends_on:
Expand Down
20 changes: 9 additions & 11 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.9"

services:
perlite:
image: sec77/perlite:dev
Expand All @@ -9,7 +7,7 @@ services:
- NOTES_PATH=Demo
- HIDE_FOLDERS=docs,private,trash
- LINE_BREAKS=true
- ABSOLUTE_PATHES=false
- ABSOLUTE_PATHS=false
- ALLOWED_FILE_LINK_TYPES=pdf,mp4
- DISABLE_POP_HOVER=false
- SHOW_TOC=true
Expand All @@ -23,22 +21,22 @@ services:
- SITE_URL=
- SITE_IMAGE=
- SITE_DESC=
- SITE_NAME=
- SITE_TWITTER=
- SITE_LOGO=
- SITE_HOMEPAGE=
- SITE_GITHUB=
- SITE_NAME=Perlite
- SITE_TWITTER=https://x.com/
- SITE_LOGO=perlite.svg
- SITE_HOMEPAGE=https://perlite.secure77.de/
- SITE_GITHUB=https://github.com/
volumes:
- ./perlite/Demo:/var/www/perlite/Demo:ro

web:
build:
context: ./web
image: sec77/perlite_web:stable
image: nginx:stable
container_name: perlite_web
restart: unless-stopped
ports:
- 80:80
volumes:
- ./web/config/perlite.conf:/etc/nginx/conf.d/default.conf:ro
volumes_from:
- perlite
depends_on:
Expand Down
20 changes: 9 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.9"

services:
perlite:
image: sec77/perlite:latest
Expand All @@ -9,7 +7,7 @@ services:
- NOTES_PATH=Demo
- HIDE_FOLDERS=docs,private,trash
- LINE_BREAKS=true
- ABSOLUTE_PATHES=false
- ABSOLUTE_PATHS=false
- ALLOWED_FILE_LINK_TYPES=pdf,mp4
- DISABLE_POP_HOVER=false
- SHOW_TOC=true
Expand All @@ -23,22 +21,22 @@ services:
- SITE_URL=
- SITE_IMAGE=
- SITE_DESC=
- SITE_NAME=
- SITE_TWITTER=
- SITE_LOGO=
- SITE_HOMEPAGE=
- SITE_GITHUB=
- SITE_NAME=Perlite
- SITE_TWITTER=https://x.com/
- SITE_LOGO=perlite.svg
- SITE_HOMEPAGE=https://perlite.secure77.de/
- SITE_GITHUB=https://github.com/
volumes:
- ./perlite/Demo:/var/www/perlite/Demo:ro

web:
build:
context: ./web
image: sec77/perlite_web:stable
image: nginx:stable
container_name: perlite_web
restart: unless-stopped
ports:
- 80:80
volumes:
- ./web/config/perlite.conf:/etc/nginx/conf.d/default.conf:ro
volumes_from:
- perlite
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion perlite/.js/auto-render.min.js

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

Loading
Loading