Skip to content

Commit

Permalink
release: 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BCsabaEngine committed Dec 6, 2024
1 parent 3cc9d6c commit 67be273
Show file tree
Hide file tree
Showing 10 changed files with 213 additions and 187 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 1.5

### 1.5.2

- chore: In the psychicHttp generated code, the minimum setting of server.config.max_uri_handlers (20 by default) is displayed as a comment so that all files can be served.

### 1.5.1

- bugfix: It generated an error code if there was an @ sign in the file name. We tried to protect all possible characters: `!&()+./@{}~-`
Expand Down
1 change: 0 additions & 1 deletion demo/svelte/dist/assets/index-CW8wyynd.js

This file was deleted.

1 change: 1 addition & 0 deletions demo/svelte/dist/assets/index-D_xnI6Wv.js

Large diffs are not rendered by default.

Binary file modified demo/svelte/dist/favicon.png.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion demo/svelte/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Svelte to ESP32 demo application</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#f3f4f6" />
<script type="module" crossorigin src="./assets/index-CW8wyynd.js"></script>
<script type="module" crossorigin src="./assets/index-D_xnI6Wv.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-CMpKda2x.css">
</head>

Expand Down
322 changes: 170 additions & 152 deletions demo/svelte/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions demo/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
"flowbite-svelte-icons": "^2.0.2",
"postcss": "^8.4.49",
"postcss-load-config": "^6.0.1",
"prettier": "^3.4.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.5.2",
"svelte": "^5.8.0",
"svelte-check": "^4.1.1",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.16",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite": "^6.0.3",
"vite-plugin-tailwind-purgecss": "^0.3.5"
}
}
59 changes: 31 additions & 28 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
@@ -1,6 +1,6 @@
{
"name": "svelteesp32",
"version": "1.5.1",
"version": "1.5.2",
"description": "Convert Svelte (or any frontend) JS application to serve it from ESP32 webserver (PsychicHttp)",
"author": "BCsabaEngine",
"license": "ISC",
Expand Down Expand Up @@ -63,7 +63,7 @@
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
Expand Down
1 change: 1 addition & 0 deletions src/cppCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type ExtensionGroups = ExtensionGroup[];
const psychicTemplate = `
//engine: PsychicHttpServer
//cmdline: {{{commandLine}}}
//You should use server.config.max_uri_handlers = {{fileCount}}; or higher value to proper handles all files
{{#if created }}
//created: {{now}}
{{/if}}
Expand Down

0 comments on commit 67be273

Please sign in to comment.