mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-03-30 18:28:11 +00:00
Merge branch 'master' into fixLocalAdminAPITests
This commit is contained in:
30
changelog.md
30
changelog.md
@@ -83,12 +83,40 @@ pre {
|
|||||||
.page .exampleTable td,th {
|
.page .exampleTable td,th {
|
||||||
border:1px dashed #00000030;
|
border:1px dashed #00000030;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page .df {
|
||||||
|
font-size: 2em;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## changelog
|
## changelog
|
||||||
For a full record of development, visit our [Github Page](https://github.com/naturalcrit/homebrewery).
|
For a full record of development, visit our [Github Page](https://github.com/naturalcrit/homebrewery).
|
||||||
|
|
||||||
### Friday 11/14/2025 - v13.20.0
|
### Friday 1/11/2026 - v3.20.1
|
||||||
|
|
||||||
|
{{taskList
|
||||||
|
##### calculuschild
|
||||||
|
* [x] Add D100 "ball" dice icons `:d100:` :df_d100_05:
|
||||||
|
|
||||||
|
##### G-Ambatte
|
||||||
|
* [x] Fix transparent edge on back cover image
|
||||||
|
|
||||||
|
Fixes issue [#4551](https://github.com/naturalcrit/homebrewery/issues/4551)
|
||||||
|
|
||||||
|
* [x] Fix "Out of sync" error when document contains extended unicode characters
|
||||||
|
|
||||||
|
Fixes issue [#4583](https://github.com/naturalcrit/homebrewery/issues/4583)
|
||||||
|
|
||||||
|
##### 5e-Cleric
|
||||||
|
* [x] Fix page count error on Vault
|
||||||
|
|
||||||
|
* [x] Fix cover page footnote set to all-caps
|
||||||
|
|
||||||
|
Fixes issue [#4559](https://github.com/naturalcrit/homebrewery/issues/4559)
|
||||||
|
}}
|
||||||
|
|
||||||
|
### Friday 11/14/2025 - v3.20.0
|
||||||
|
|
||||||
{{taskList
|
{{taskList
|
||||||
##### calculuschild
|
##### calculuschild
|
||||||
|
|||||||
@@ -216,7 +216,7 @@ const EditPage = (props)=>{
|
|||||||
text : brew.text.normalize('NFC'),
|
text : brew.text.normalize('NFC'),
|
||||||
pageCount : ((brew.renderer === 'legacy' ? brew.text.match(/\\page/g) : brew.text.match(/^\\page$/gm)) || []).length + 1,
|
pageCount : ((brew.renderer === 'legacy' ? brew.text.match(/\\page/g) : brew.text.match(/^\\page$/gm)) || []).length + 1,
|
||||||
patches : stringifyPatches(makePatches(encodeURI(lastSavedBrew.current.text.normalize('NFC')), encodeURI(brew.text.normalize('NFC')))),
|
patches : stringifyPatches(makePatches(encodeURI(lastSavedBrew.current.text.normalize('NFC')), encodeURI(brew.text.normalize('NFC')))),
|
||||||
hash : await md5(lastSavedBrew.current.text),
|
hash : await md5(lastSavedBrew.current.text.normalize('NFC')),
|
||||||
textBin : undefined,
|
textBin : undefined,
|
||||||
version : lastSavedBrew.current.version
|
version : lastSavedBrew.current.version
|
||||||
};
|
};
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "homebrewery",
|
"name": "homebrewery",
|
||||||
"version": "3.20.0",
|
"version": "3.20.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "homebrewery",
|
"name": "homebrewery",
|
||||||
"version": "3.20.0",
|
"version": "3.20.1",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "homebrewery",
|
"name": "homebrewery",
|
||||||
"description": "Create authentic looking D&D homebrews using only markdown",
|
"description": "Create authentic looking D&D homebrews using only markdown",
|
||||||
"version": "3.20.0",
|
"version": "3.20.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"npm": "^10.8.x",
|
"npm": "^10.8.x",
|
||||||
|
|||||||
Reference in New Issue
Block a user