Trevor Buckner
8609925da8
Merge branch 'master' into v3.14.0
2024-07-29 21:54:38 -04:00
Trevor Buckner
607244d6e1
Merge pull request #3321 from dbolack-ab/brew_themes_user_selection
...
Enable User Brew theme selection
2024-07-29 21:54:28 -04:00
Trevor Buckner
9cc81d2ff9
Up to v3.14.0
2024-07-29 21:52:09 -04:00
Trevor Buckner
32fa50d608
Fallback to showing "Blank" theme if themes fail to load.
2024-07-29 12:30:13 -04:00
Trevor Buckner
8221579b6a
Linting
2024-07-28 18:03:25 -04:00
Trevor Buckner
88eaebfd49
Raise test coverage threshold
...
This PR adds tests which means we are now covering a larger % of the codebase. Raise the coverage thresholds to match.
2024-07-28 18:00:33 -04:00
Trevor Buckner
ee9f2c8c83
Remove unused CSS endpoints in favor of #3075
...
Now that we have a dedicated /theme/ route for the recursive theming, the CSS endpoint can be simpler for only getting the `style` of a single brew. #3075 already has this simpler version, but no testing, so I have copied this into a comment there for implementation when it is ready.
2024-07-28 17:53:25 -04:00
Trevor Buckner
2870caaae6
Clean up metadataEditor theme dropdown
2024-07-28 17:18:30 -04:00
Trevor Buckner
e0425ec6c0
Simplify API call url
2024-07-28 16:47:16 -04:00
Trevor Buckner
8aa88a2e45
Add proper error popup when theme fails to load
2024-07-28 16:45:01 -04:00
Trevor Buckner
edec9369ec
Finish adding test cases
2024-07-27 19:17:19 -04:00
Trevor Buckner
f2d933410e
Add error handling for missing themes
2024-07-27 19:17:05 -04:00
Trevor Buckner
b64a0c5200
Start adding tests for /theme/ endpoint
2024-07-27 03:30:51 -04:00
Trevor Buckner
113f9b3fe3
No need to stringify Theme Bundle object
2024-07-27 02:00:38 -04:00
David Bolack
d2afa7adea
Move fetchThemeBundle into /shared/helpers
...
This might not be the best rework - I was unsure if the *this* that would be available when called would see the appropriate object so I assumed not and pass it as a parameter.
Works, but may be bad form.
2024-07-23 22:17:52 -05:00
Trevor Buckner
8e7baca47d
Fix tests
2024-07-23 17:40:32 -04:00
Trevor Buckner
ddc5693778
revert package-lock
2024-07-23 17:31:07 -04:00
Trevor Buckner
82f73fb21d
cleanup
2024-07-23 17:24:50 -04:00
Trevor Buckner
27c52fc244
Fix loading CSS for Legacy
2024-07-23 17:11:48 -04:00
Trevor Buckner
ac82e3ecb2
Add to home page
2024-07-23 16:50:29 -04:00
Trevor Buckner
22b6aa14f0
Add to /new page
2024-07-23 16:43:23 -04:00
Trevor Buckner
24ab3d3392
Merge branch 'brew_themes_user_selection' of https://github.com/dbolack-ab/homebrewery into pr/3321
2024-07-23 16:26:35 -04:00
Trevor Buckner
0b01f27d11
Load theme bundles on /share page
2024-07-23 16:26:33 -04:00
Víctor Losada Hernández
270aa9e0f9
Merge branch 'master' into brew_themes_user_selection
2024-07-22 22:46:12 +02:00
Trevor Buckner
6ae249a527
Lint
2024-07-22 02:46:26 -04:00
Trevor Buckner
c0123b96eb
Support snippet compilation
...
Original handling of snippets only worked if the current selected theme was a staticTheme. This now fully merges all snippets through the theme chain no matter what the top-level theme is. So user themes built on 5ePHB can benefit from 5ePHB snippets too.
User input of user snippets will be a later PR, but merging them into static snippets is now supported.
2024-07-22 02:44:41 -04:00
Trevor Buckner
45f7080afd
Move loadAllBrewStylesAndSnippets to the parent page component
...
Themes contain both CSS and Snippets. The brewRenderer only cares about the CSS, but other components need the Snippets. Better to have the parent "editPage", etc. load the theme bundles and pass them down to each child that needs it, rather than trying to pass from the child up.
This also fixes the `metadataEditor.jsx` not being able to change themes live; A new theme bundle is now loaded when a new theme is selected, instead of only the first time the BrewRenderer mounts.
Also renamed to "fetchThemeBundle"
2024-07-21 16:25:24 -04:00
Trevor Buckner
0a5ff213de
use same theme endpoint for user and static themes
...
`getThemeBundle()` rework no longer needs two separate endpoints
2024-07-20 11:39:23 -04:00
Trevor Buckner
f364f054f8
restore renderStyle
...
`renderStyle` is still necessary; it allows us to update the style live in the component render step as the user types into the style tab. Otherwise the style is only rendered once and never updates.
React also discourages directly editing the DOM ourselves, because it makes changes to the DOM that react cannot track; we should aim to provide all DOM writes inside of the component render function instead of using `document.createElement`, etc.
Too that end, this commit reduces the `loadAllStylesAndSnippets` function to just fetch and parse the data; actual rendering is moved back to `renderStyle()`
2024-07-19 01:33:56 -04:00
Trevor Buckner
460358ce1f
Simplify some logic
2024-07-19 00:09:21 -04:00
Trevor Buckner
0448f15322
Classify user brews as V3 if they use V3
...
Each theme in the theme chain, including user brews, must use the same renderer. When moving to V4 or future versions, it will be important to distinguish which themes are compatible with each other
2024-07-19 00:05:45 -04:00
Trevor Buckner
d741878f78
Also remove userthemes from Brew object in sharePage
2024-07-19 00:00:06 -04:00
Trevor Buckner
d22cd88446
fix crash in metadataeditor
2024-07-15 23:47:19 -04:00
Trevor Buckner
1444581c86
pass userThemes prop to Editor -> MetadataEditor
2024-07-15 23:44:07 -04:00
Trevor Buckner
dfbd85a8ce
pass userThemes as a new prop, rather than inside of the brew
2024-07-15 23:29:16 -04:00
Trevor Buckner
af5434c9b7
cleanup
2024-07-15 16:45:55 -04:00
Trevor Buckner
484b0a6dff
simplify getThemeBundle() by using just one loop
...
Also, removes need for special handling of the "first" theme.
2024-07-15 16:38:19 -04:00
Trevor Buckner
4951b9bf1a
Add async error handler to /edit and /new
...
Since /edit and /new endpoints now have an `await` inside that could return an error (`getUsersBrewThemes()`), asyncHandler must be added to pass errors along instead of just crashing
2024-07-13 19:46:12 -04:00
Trevor Buckner
62c619de24
userThemes need not be nested inside a Brew object
2024-07-13 19:38:51 -04:00
Trevor Buckner
44c96aad04
spacing
2024-07-13 18:11:04 -04:00
Trevor Buckner
f392216ff4
Spacing
2024-07-13 18:08:29 -04:00
Trevor Buckner
591cae0e8f
more renaming engine to renderer
2024-07-13 18:08:00 -04:00
Trevor Buckner
e222811d03
Rename engine to renderer to unify naming
...
This value is named `renderer` everywhere else. Relabeling to a consistent name.
2024-07-13 18:06:46 -04:00
Trevor Buckner
c9b885f868
include theme as baseTheme when getting user brew themes
...
`baseTheme` for a user brew theme is just the `theme` value of that brew.
2024-07-13 18:01:50 -04:00
Trevor Buckner
47f912750b
Extract getting userThemes from getBrew()
...
`getBrew()` should do one thing only; retrieve a brew. UI elements like the list of themes available to the user are not part of a brew.
Moved into the handers for the `/edit/` and `/new/` endpoints
2024-07-13 17:44:23 -04:00
Trevor Buckner
f29a5e346e
Remove id parameter from getUsersBrewThemes
...
Filtering out the current brew can be done later as needed; certain situations may call for retrieving the whole list.
2024-07-13 17:35:19 -04:00
Trevor Buckner
ee381c91fe
Simplify getUserBrewThemes function a bit
2024-07-13 17:26:38 -04:00
Trevor Buckner
5f8d46f1b6
Reuse splitTextStyleAndMetadata from helpers.js
2024-07-13 17:09:45 -04:00
David Bolack
ade819c70c
A not so light rework.
...
This removes the existing endpoints and replaces them with /theme.
/theme/:id - return a theme bundle containing all styling from this USER theme and any parents.
/theme/:engine/:id - return a theme bundle containing all styling from this STATIC theme and any parents
The theme bundle returns a marshalled JSON object containing:
styles - an array of strings representing the collected styles in loading order
snippets - an array ( currently empty ) of collected snippets.
The various bits of theme rendering code for <style> an style <link> have been swapped out with an 'onDidMount' call that loads the thendpoint and appends a series of <style> blocks to the brewRender's head.
This loses some caching advantages, but probably won't matter in the long run.
2024-07-13 12:12:05 -05:00
Trevor Buckner
4fe38e3929
Merge pull request #3567 from G-Ambatte/fixUglyDropCap-#3551
...
Add additional styles to SolberaImitationRemake font declaration
2024-07-11 09:47:26 -04:00
Trevor Buckner
b6d69173cd
Merge branch 'master' into fixUglyDropCap-#3551
2024-07-11 09:46:45 -04:00
Trevor Buckner
8b085e1806
Merge pull request #3569 from G-Ambatte/fixBrewItemLinkUnderlining-#3568
...
Unset text-decoration on Brew Item links
2024-07-11 09:46:36 -04:00
G.Ambatte
cb9d24d5b4
Remove text-decoration from Brew Item links
2024-07-11 20:03:17 +12:00
G.Ambatte
23fd70e3c3
Add additional style to existing SolberaImitation
2024-07-11 18:10:26 +12:00
Trevor Buckner
2fa3c0f311
themeClass is never used
2024-07-11 00:26:50 -04:00
Trevor Buckner
5c0a072115
userThemes passed to SnippetBar.jsx is never used
2024-07-11 00:25:11 -04:00
Trevor Buckner
29c2274a19
Unify some variable naming
2024-07-10 18:54:45 -04:00
Trevor Buckner
a6f787ea8f
Remove getBrewThemeParentCSS
2024-07-10 17:56:39 -04:00
Trevor Buckner
24c86dd199
Remove unused test
2024-07-10 17:49:57 -04:00
Trevor Buckner
7eb96ee6be
Simplify brewRenderer output to only emit current theme
...
Instead of Blank, Parent, and Theme, just make use of the @include chaining, to handle all parent themes down to and including Blank
2024-07-10 17:46:51 -04:00
Trevor Buckner
27aebf0e3b
Give 5ePHB and Journal themes a baseTheme of "Blank"
2024-07-10 17:15:45 -04:00
Trevor Buckner
88578a3d16
Fix failing test
2024-07-10 14:22:42 -04:00
Trevor Buckner
28446d3ae2
Comments for theme CSS endpoints
2024-07-10 14:21:23 -04:00
Trevor Buckner
a247e50c9f
renaming "get" functions
...
rename `getStaticTheme` to `getStaticThemeCSS`
rename `getBrewThemeWithCSS` to `getBrewThemeCSS`
rename `getBrewThemeParent` to `getBrewThemeParentCSS`
to avoid confusion with other "get" endpoints like `getBrew`, and unify naming for endpoint functions that return CSS.
Simplify `isStaticTheme` function (getting the parent theme is handled elsewhere)
2024-07-10 14:15:03 -04:00
David Bolack
656edb07ea
Rework detection of user brews to look up themeid in static themes list before assuming is a user brew.
...
Ended up being a fairly straightforward change. A few ternaries got smooshed or inverted. Passes builtin and local tests. Need to compare on the test instance.
2024-07-08 18:12:58 -05:00
David Bolack
ea6595d4d6
Merge branch 'master' into brew_themes_user_selection
...
Fixes a regression for legacy brews.
2024-07-07 12:03:15 -05:00
Trevor Buckner
5b02132e57
Merge pull request #3561 from naturalcrit/v3.13.1
...
Up Version to 3.13.1
2024-07-06 18:20:34 -04:00
Trevor Buckner
f8841c068f
Up Version to 3.13.1
2024-07-06 18:20:11 -04:00
Trevor Buckner
da1d08f8a9
Merge pull request #3560 from G-Ambatte/fixAttributeLeaking-#3559
...
Limit htmlString to the first element ONLY
2024-07-06 18:01:26 -04:00
Trevor Buckner
0a199e750f
Simplify string splitting code
...
String.split will return the substring before > or the whole string if no > exists.
2024-07-06 18:00:18 -04:00
Trevor Buckner
5433cda52f
Add test case
2024-07-06 17:05:23 -04:00
G.Ambatte
9c4de58161
Limit htmlString to the first element ONLY
2024-07-06 13:22:47 +12:00
Trevor Buckner
1b96dae27f
Merge pull request #3543 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.11.0
...
Bump @googleapis/drive from 8.10.0 to 8.11.0
2024-07-05 18:09:10 -04:00
David Bolack
16ca52756d
Merge branch 'master' into brew_themes_user_selection
2024-07-05 16:55:14 -05:00
David Bolack
645da7ae5f
Merge branch 'brew_themes_user_selection' of github.com:dbolack-ab/homebrewery into brew_themes_user_selection
2024-07-05 16:54:11 -05:00
David Bolack
8570335d79
Consolidate variable redundancy.
2024-07-05 16:53:21 -05:00
dependabot[bot]
1564bc7448
Bump @googleapis/drive from 8.10.0 to 8.11.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.10.0 to 8.11.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.10.0...drive-v8.11.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-05 18:59:10 +00:00
Trevor Buckner
8e20d3ba10
Merge pull request #3539 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.34.3
...
Bump eslint-plugin-react from 7.34.2 to 7.34.3
2024-07-05 14:57:59 -04:00
dependabot[bot]
450baee66a
Bump eslint-plugin-react from 7.34.2 to 7.34.3
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.34.2 to 7.34.3.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.2...v7.34.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-05 18:55:32 +00:00
Trevor Buckner
4b588786c4
Merge pull request #3538 from naturalcrit/dependabot/npm_and_yarn/ws-7.5.10
...
Bump ws from 7.5.9 to 7.5.10
2024-07-05 14:54:32 -04:00
dependabot[bot]
e07a04ebfa
Bump ws from 7.5.9 to 7.5.10
...
Bumps [ws](https://github.com/websockets/ws ) from 7.5.9 to 7.5.10.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/7.5.9...7.5.10 )
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-05 18:53:33 +00:00
Trevor Buckner
f707752c26
Merge pull request #3558 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.4.5
...
Bump mongoose from 8.4.1 to 8.4.5
2024-07-05 14:52:35 -04:00
dependabot[bot]
80e039b194
Bump mongoose from 8.4.1 to 8.4.5
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.4.1 to 8.4.5.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.4.1...8.4.5 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-05 18:41:01 +00:00
Trevor Buckner
c888df28aa
Merge pull request #3533 from naturalcrit/dependabot/npm_and_yarn/marked-emoji-1.4.1
...
Bump marked-emoji from 1.4.0 to 1.4.1
2024-07-05 14:39:58 -04:00
Trevor Buckner
94cc1c642c
Merge branch 'master' into dependabot/npm_and_yarn/marked-emoji-1.4.1
2024-07-05 09:03:10 -04:00
Trevor Buckner
9a02a351fa
Merge pull request #3528 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.2.0
...
Bump marked-gfm-heading-id from 3.1.3 to 3.2.0
2024-07-05 09:02:39 -04:00
dependabot[bot]
e8e7237a8e
Bump marked-gfm-heading-id from 3.1.3 to 3.2.0
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.1.3 to 3.2.0.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.1.3...v3.2.0 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-04 03:21:44 +00:00
dependabot[bot]
086c4f74f6
Bump marked-emoji from 1.4.0 to 1.4.1
...
Bumps [marked-emoji](https://github.com/UziTech/marked-emoji ) from 1.4.0 to 1.4.1.
- [Release notes](https://github.com/UziTech/marked-emoji/releases )
- [Changelog](https://github.com/UziTech/marked-emoji/blob/main/release.config.cjs )
- [Commits](https://github.com/UziTech/marked-emoji/compare/v1.4.0...v1.4.1 )
---
updated-dependencies:
- dependency-name: marked-emoji
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-04 03:21:26 +00:00
Trevor Buckner
e987da498b
Merge pull request #3557 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.24.1
...
Bump react-router-dom from 6.23.1 to 6.24.1
2024-07-03 23:20:35 -04:00
dependabot[bot]
d12f644f5b
Bump react-router-dom from 6.23.1 to 6.24.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.23.1 to 6.24.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.24.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-04 03:15:49 +00:00
Trevor Buckner
e4bde91f6a
Merge branch 'master' into brew_themes_user_selection
2024-07-02 12:04:17 -04:00
Trevor Buckner
3eb071fbdc
Merge pull request #3555 from G-Ambatte/fixToC-#3548
...
Fix ToC generator snippet
2024-07-02 11:55:39 -04:00
Trevor Buckner
81e17b420c
Merge branch 'master' into fixToC-#3548
2024-07-02 11:55:31 -04:00
Trevor Buckner
e8ccd094e8
Merge pull request #3552 from naturalcrit/Allow=InAttributes
...
Allow `=` in attributes
2024-07-02 11:54:59 -04:00
G.Ambatte
7c60fbe655
Remove page + 1 from ToC generator snippet
2024-07-02 20:46:01 +12:00
Trevor Buckner
2d570924d1
Add tests
2024-07-01 12:21:36 -04:00
Trevor Buckner
8ee70b0928
Only split curly attributes on on first =, allow ?, = in attributes
2024-07-01 12:21:29 -04:00
Trevor Buckner
2cdd65b083
revert DOMPURIFY for now
2024-06-29 11:29:31 -04:00
Trevor Buckner
758a06e58a
Merge pull request #3545 from naturalcrit/3.13.0
...
Up version to 3.13.0
2024-06-28 22:47:31 -04:00
Trevor Buckner
a87e420437
Up version to 3.13.0
2024-06-28 22:46:56 -04:00
Trevor Buckner
46085c8d44
Merge pull request #3544 from naturalcrit/unifyEmojiFontSpacing
...
Unify some emoji CSS across fonts
2024-06-28 22:02:19 -04:00
Trevor Buckner
179e21755c
Unify some emoji CSS across fonts
2024-06-28 22:01:55 -04:00
Trevor Buckner
e9ca68e7d3
Merge pull request #3261 from dbolacksn/issue_2994_css_style
...
Table of Contents Snippet exclusion system
2024-06-28 11:05:14 -04:00
Trevor Buckner
9886200fa9
Fix partCover H1 inclusion rule
2024-06-28 09:39:49 -04:00
Trevor Buckner
9a1070bb06
Merge branch 'master' into issue_2994_css_style
2024-06-27 17:22:23 -04:00
David Bolack
ba76c51da7
Merge branch 'master' into brew_themes_user_selection
2024-06-19 19:32:04 -05:00
Víctor Losada Hernández
3b8dbe8a04
Merge pull request #3522 from naturalcrit/tweakCMPageLineBrightness
...
Tweak CM page line brightness on dark themes
2024-06-15 18:03:08 +02:00
David Bolack
7a349ae26d
Remove weirdly redundant error box.
2024-06-13 18:13:32 -05:00
David Bolack
0945a5e47e
Merge branch 'master' into brew_themes_user_selection
2024-06-13 15:15:30 -05:00
G.Ambatte
68f95f6130
Merge branch 'master' into tweakCMPageLineBrightness
2024-06-08 10:05:12 +12:00
Trevor Buckner
35ae5e09ee
Merge branch 'master' into issue_2994_css_style
2024-06-07 15:04:26 -04:00
Trevor Buckner
552a23585b
Merge pull request #3524 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-28.6.0
...
Bump eslint-plugin-jest from 28.5.0 to 28.6.0
2024-06-07 13:56:12 -04:00
Trevor Buckner
e635877b66
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-jest-28.6.0
2024-06-07 13:53:49 -04:00
Trevor Buckner
954bcbdaf6
Merge pull request #3523 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.10.0
...
Bump @googleapis/drive from 8.8.0 to 8.10.0
2024-06-07 13:53:38 -04:00
dependabot[bot]
559de2527b
Bump eslint-plugin-jest from 28.5.0 to 28.6.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 28.5.0 to 28.6.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v28.5.0...v28.6.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 16:44:09 +00:00
dependabot[bot]
4c14774f1a
Bump @googleapis/drive from 8.8.0 to 8.10.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.8.0 to 8.10.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.8.0...drive-v8.10.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 16:44:07 +00:00
Trevor Buckner
ea380ae6a9
Merge pull request #3521 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.7
...
Bump @babel/preset-env from 7.24.5 to 7.24.7
2024-06-07 12:43:17 -04:00
dependabot[bot]
e2a946674f
Bump @babel/preset-env from 7.24.5 to 7.24.7
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.5 to 7.24.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 16:27:54 +00:00
Trevor Buckner
75926e34a2
Merge pull request #3520 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.24.7
...
Bump @babel/core from 7.24.5 to 7.24.7
2024-06-07 12:27:07 -04:00
dependabot[bot]
37bc37bd94
Bump @babel/core from 7.24.5 to 7.24.7
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.24.5 to 7.24.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 16:05:03 +00:00
Trevor Buckner
528359dd9f
Merge pull request #3519 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.24.7
...
Bump @babel/plugin-transform-runtime from 7.24.3 to 7.24.7
2024-06-07 12:04:28 -04:00
dependabot[bot]
f745fdefb3
Bump @babel/plugin-transform-runtime from 7.24.3 to 7.24.7
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.24.3 to 7.24.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 15:59:39 +00:00
Trevor Buckner
2d9b80a81e
Merge pull request #3510 from naturalcrit/dependabot/npm_and_yarn/dompurify-3.1.5
...
Bump dompurify from 3.1.4 to 3.1.5
2024-06-07 11:58:48 -04:00
Trevor Buckner
299acfb92c
Merge branch 'master' into dependabot/npm_and_yarn/dompurify-3.1.5
2024-06-07 11:53:17 -04:00
Trevor Buckner
8fc97493c5
Merge pull request #3500 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.34.2
...
Bump eslint-plugin-react from 7.34.1 to 7.34.2
2024-06-07 11:53:05 -04:00
dependabot[bot]
7c7c6341f9
Bump dompurify from 3.1.4 to 3.1.5
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.1.4...3.1.5 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 15:45:45 +00:00
dependabot[bot]
227ab192c4
Bump eslint-plugin-react from 7.34.1 to 7.34.2
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.34.1 to 7.34.2.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.1...v7.34.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-07 15:45:42 +00:00
Trevor Buckner
ad48c0cd76
Merge pull request #3509 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.4.1
...
Bump mongoose from 8.4.0 to 8.4.1
2024-06-07 11:44:53 -04:00
Trevor Buckner
958b168906
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.4.1
2024-06-07 11:37:17 -04:00
Trevor Buckner
51d4b5042c
Merge pull request #3518 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.24.7
...
Bump @babel/preset-react from 7.24.1 to 7.24.7
2024-06-07 11:37:02 -04:00
Trevor Buckner
371ac9680c
Merge branch 'master' into dependabot/npm_and_yarn/babel/preset-react-7.24.7
2024-06-07 11:32:45 -04:00
Trevor Buckner
f68af555de
Merge pull request #3382 from G-Ambatte/addLockNotification-#3326
...
Add blocking notification to EditPage
2024-06-07 11:32:07 -04:00
Trevor Buckner
66fdf808a6
Lint renderWarnings.less
2024-06-07 11:29:02 -04:00
Trevor Buckner
65770782c2
Lint lockNotification.less
2024-06-07 11:28:30 -04:00
Trevor Buckner
fdf6acd80a
Lint notificationPopup.less
2024-06-07 11:27:51 -04:00
Trevor Buckner
08b61a6bb4
Cleanup comments. Fix Indentation.
2024-06-07 11:26:47 -04:00
G.Ambatte
33c2bee873
Remove unused useState
2024-06-07 16:05:14 +12:00
G.Ambatte
8bbf2e1ce4
Dim background while Modal displayed
2024-06-07 11:25:34 +12:00
G.Ambatte
476002ae4d
Tweak notificationPopup.less
...
Stop the notification from covering the renderWarning when both are present
2024-06-07 11:01:47 +12:00
G.Ambatte
54ec1b8827
Comment out dialog.less reference
2024-06-07 10:50:57 +12:00
Trevor Buckner
7bb92bc790
Refactor slightly
2024-06-06 18:10:04 -04:00
G.Ambatte
a87d62c9c2
Tweak page line brightness
...
As per Reddit report (https://redd.it/1d8opte ), on dark CodeMirror themes, it can be difficult to read the folded text between the bright backgrounds of `\page` lines.
This PR tweaks the brightness down slightly by reducing opacity of the background from 75% to 50%.
2024-06-07 09:30:09 +12:00
G.Ambatte
8c315980e9
Revert dismiss styling to opacity change on hover
2024-06-06 22:37:01 +12:00
G.Ambatte
359a64968c
Nudge popups left
2024-06-06 22:31:05 +12:00
G.Ambatte
866548deec
Move renderWarnings to use Dialog
2024-06-06 22:12:13 +12:00
G.Ambatte
ed39852a8f
Move dialog[open] to Dialog component styling
2024-06-06 22:00:28 +12:00
G.Ambatte
38fc647495
Change NotificationPopup to inline-block from block
2024-06-06 21:46:34 +12:00
G.Ambatte
fa7b3ea2a0
Shift dismiss button, tweak local storage check
2024-06-06 21:41:33 +12:00
G.Ambatte
9e041d26bd
Fix display property on dialog causing close() to not work
2024-06-06 21:40:54 +12:00
dependabot[bot]
978c0c4c7b
Bump @babel/preset-react from 7.24.1 to 7.24.7
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.24.1 to 7.24.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-06 03:01:32 +00:00
G.Ambatte
4f4cef0f6c
Tweak LockNotification styling
2024-06-06 12:02:07 +12:00
G.Ambatte
556ded9b08
Tweak Dialog to work with showModal and show LockNotifications
2024-06-06 12:01:55 +12:00
G.Ambatte
0efcd5d258
Shift LockNotification to use Dialog
2024-06-05 13:03:26 +12:00
G.Ambatte
31b6e0c4f6
Show dialog when dismissKey prop is not specified
2024-06-05 12:33:13 +12:00
Trevor Buckner
423413e41b
Merge branch 'master' into addLockNotification-#3326
2024-06-04 16:23:00 -04:00
G.Ambatte
ec514cdb51
Set local storage only if dismissKey prop exists
2024-06-05 07:49:29 +12:00
Trevor Buckner
7272544724
Convert LockNotification.jsx to functional component
2024-06-04 14:53:19 -04:00
Trevor Buckner
99ff7fdf14
linting
2024-06-04 12:32:21 -04:00
Trevor Buckner
491b38c330
Small cleanup of Dialog component
...
Reduce number of `useEffects` needed
2024-06-04 12:29:13 -04:00
Trevor Buckner
4033d3ad99
Merge pull request #3513 from naturalcrit/propagateEventsToNavButtons
...
Pass click events to click handler on Nav items
2024-06-04 10:24:14 -04:00
Trevor Buckner
9285d355b2
Merge branch 'master' into propagateEventsToNavButtons
2024-06-04 10:22:12 -04:00
G.Ambatte
24e67e2270
Restore Info Circle to notification
2024-06-04 17:47:17 +12:00
G.Ambatte
5f6d5f53cc
Change dismiss button to use fa-dismiss
2024-06-04 17:38:06 +12:00
G.Ambatte
865c5678bc
Change all Modal references to Dialog
2024-06-04 17:34:26 +12:00
G.Ambatte
05ba7b41d1
Tweak NotificationPopup
2024-06-04 17:29:34 +12:00
G.Ambatte
e7735e242a
Add closeText prop
2024-06-04 17:28:29 +12:00
G.Ambatte
1111d8275c
Tweak dismiss button styling
2024-06-04 17:27:45 +12:00
G.Ambatte
f3b01bc75c
Fix for modals
2024-06-04 16:51:43 +12:00
G.Ambatte
8685c5cae4
Break Dialog out of NotificationPopup, restore NotificationPopup to original position
2024-06-04 16:26:51 +12:00
dependabot[bot]
e0a457bf40
Bump mongoose from 8.4.0 to 8.4.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.4.0 to 8.4.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.4.0...8.4.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-06-03 03:05:35 +00:00
David Bolack
d20c9c502c
Merge branch 'issue_2994_css_style' of github.com:dbolacksn/homebrewery-broken into issue_2994_css_style
2024-06-01 00:35:39 -05:00
David Bolack
8c5e68e571
Merge branch 'master' into issue_2994_css_style
2024-06-01 00:34:43 -05:00
David Bolack
fbe65a4e93
Resolve indentation errors in TOC Generation, adjust partCover class
...
This fixes an error in the recusion that was failing to add children under existing parents.
Index generation now does not overindent when levels are skipped.
PartCover less code as suggesred by CC.
2024-06-01 00:32:25 -05:00
David Bolack
3875dabfd2
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-05-31 23:32:39 -05:00
David Bolack
6464f35ce9
Forgot to run npm install after merge
2024-05-31 22:40:22 -05:00
David Bolack
5442f232d5
Merge branch 'master' into brew_themes_user_selection
2024-05-31 22:32:14 -05:00
G.Ambatte
930709223a
Lint fix
2024-06-01 12:42:40 +12:00
G.Ambatte
a6ce36689c
Shift NotificationPopup to shared components & update BrewRenderer ref
2024-06-01 12:38:01 +12:00
G.Ambatte
2424d34682
Merge branch 'master' into addLockNotification-#3326
2024-06-01 12:14:04 +12:00
Trevor Buckner
8fc224e9a1
Update themes/V3/5ePHB/snippets.js
2024-05-28 17:33:52 -04:00
Trevor Buckner
98fc007efd
Merge branch 'master' into issue_2994_css_style
2024-05-28 17:31:14 -04:00
Trevor Buckner
7fb23c7362
Pass click events to click handler
2024-05-28 16:25:39 -04:00
Trevor Buckner
a2f0546a6d
Merge pull request #3491 from naturalcrit/Print-directly-from-edit/share-page
...
Print directly from Edit/Share/New pages
2024-05-28 16:14:08 -04:00
Trevor Buckner
8a55658bd7
Rename printPage function to printCurrentBrew()
...
Avoid confusion with other "page" components.
2024-05-28 16:11:18 -04:00
Trevor Buckner
01d60c4520
lint
2024-05-28 13:22:33 -04:00
Trevor Buckner
b4349a0476
iframe hotkey printing only works in Edit/Share/New
...
Default browser printing still works
2024-05-28 12:51:58 -04:00
Trevor Buckner
695b9916dd
Remove old /print page
2024-05-28 12:39:43 -04:00
Trevor Buckner
ac3168e365
Move "printPage()" to helpers.js for reuse in multiple pages
2024-05-24 19:28:02 -04:00
Trevor Buckner
e396211f92
remove duplicate button
2024-05-23 17:13:44 -04:00
Trevor Buckner
4ce68b86ed
Fix hotkey printing on focused iframe
2024-05-23 17:09:03 -04:00
Trevor Buckner
24769d69d4
Force browser repaint after closing Print dialog
2024-05-23 17:08:24 -04:00
David Bolack
fc22e6cd53
Smidge of documentation
2024-05-22 23:17:22 -05:00
David Bolack
62ed026757
Hopeflly final class renaming sessions.
2024-05-22 21:25:10 -05:00
David Bolack
7cef4316d7
Flag Table of Contents as "Experimental"
2024-05-22 21:04:32 -05:00
David Bolack
0df53daa4c
Another attempt at clearer classnames for the Table of contents snippet
2024-05-22 17:25:52 -05:00
David Bolack
b496ef3597
Remove completely redundant checks for class based exclusion from ToC Snippet
2024-05-22 16:34:00 -05:00
David Bolack
3ae5d4c1e3
Slight reworking of style naming for Table of Contents
...
Also uses :is operator for cleaner? looking CSS
Lastly, removes {{partCover}} from automatic exclusion.
2024-05-22 16:30:12 -05:00
Trevor Buckner
a227a792c0
Replace print redirect with print contentWindow on all pages
2024-05-22 15:54:01 -04:00
David Bolack
d9d4d74b71
Add CR wrappers around addTOC snippet insertions.
2024-05-22 12:44:19 -05:00
David Bolack
af82d71e4f
Merge branch 'master' into issue_2994_css_style
2024-05-22 11:52:43 -05:00
David Bolack
f897cbfdf4
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-05-22 11:51:45 -05:00
David Bolack
1773e77cb9
Fix missed issues with converting to delightfully recursive function
2024-05-22 11:47:12 -05:00
Trevor Buckner
dcd34ccdaf
Merge pull request #3477 from Gazook89/fix-refs
...
Fix `ref` issues
2024-05-21 17:50:07 -04:00
Trevor Buckner
2453b623db
tweak names in editor.jsx
2024-05-21 17:45:50 -04:00
Trevor Buckner
783e88b5e6
Merge branch 'master' into pr/3477
2024-05-21 17:42:03 -04:00
Trevor Buckner
77c0af42d0
Merge pull request #3489 from naturalcrit/dependabot/npm_and_yarn/dompurify-3.1.4
...
Bump dompurify from 3.1.1 to 3.1.4
2024-05-21 17:35:56 -04:00
Trevor Buckner
c21b4eb2d6
Merge branch 'master' into dependabot/npm_and_yarn/dompurify-3.1.4
2024-05-21 17:35:48 -04:00
Trevor Buckner
6043af81e4
Merge pull request #3470 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.23.1
...
Bump react-router-dom from 6.23.0 to 6.23.1
2024-05-21 17:35:36 -04:00
Trevor Buckner
7c3321b62f
Merge branch 'master' into dependabot/npm_and_yarn/react-router-dom-6.23.1
2024-05-21 17:34:17 -04:00
Trevor Buckner
d1955951e4
Merge pull request #3490 from naturalcrit/LintingPass
...
Lint a bunch of things
2024-05-21 17:33:45 -04:00
Trevor Buckner
e62e185214
Lint a bunch of things
2024-05-21 17:32:17 -04:00
Trevor Buckner
0c38415372
Merge pull request #3482 from 5e-Cleric/clean-up-unused-constants-and-requires
...
Clean up unused declarations
2024-05-21 17:29:28 -04:00
Trevor Buckner
73f879aa63
Merge branch 'master' into clean-up-unused-constants-and-requires
2024-05-21 17:28:51 -04:00
Trevor Buckner
f12de7d953
Undo Journal path change
2024-05-21 17:28:17 -04:00
Trevor Buckner
933ac41774
Merge pull request #3420 from Gazook89/RPG-Awesome-Redux
...
RPG Awesome Redux
2024-05-21 16:30:00 -04:00
Trevor Buckner
54b4d490f1
Adjust hyphenation
2024-05-21 16:21:24 -04:00
Trevor Buckner
193af61725
Merge branch 'master' into pr/3420
2024-05-21 14:50:02 -04:00
David Bolack
54d2709d6a
Merge
2024-05-20 17:58:22 -05:00
David Bolack
916bd5f4d6
Merge branch 'master' into brew_themes_user_selection
2024-05-20 17:56:21 -05:00
David Bolack
511c9ffada
Merge branch 'master' into issue_2994_css_style
2024-05-20 14:51:19 -05:00
David Bolack
ea03538552
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-05-20 13:33:20 -05:00
dependabot[bot]
8fb9f3f823
Bump dompurify from 3.1.1 to 3.1.4
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.1.1 to 3.1.4.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.1.1...3.1.4 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-20 17:39:53 +00:00
dependabot[bot]
7af919afd3
Bump react-router-dom from 6.23.0 to 6.23.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.23.0 to 6.23.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.23.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-20 17:39:49 +00:00
Trevor Buckner
5bbe4016d6
Merge pull request #3488 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.4.0
...
Bump mongoose from 8.3.3 to 8.4.0
2024-05-20 13:39:00 -04:00
dependabot[bot]
0f3312a5d7
Bump mongoose from 8.3.3 to 8.4.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.3.3 to 8.4.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.3.3...8.4.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-20 17:38:10 +00:00
Trevor Buckner
0bf432dd76
Merge pull request #3486 from naturalcrit/dependabot/npm_and_yarn/vitreum-9d55fd6
...
Bump vitreum from `49994da` to `9d55fd6`
2024-05-20 13:37:27 -04:00
dependabot[bot]
27b3da0144
Bump vitreum from 49994da to 9d55fd6
...
Bumps [vitreum](https://github.com/calculuschild/vitreum ) from `49994da` to `9d55fd6`.
- [Commits](49994da405...9d55fd6fb7 )
---
updated-dependencies:
- dependency-name: vitreum
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-20 03:13:40 +00:00
Trevor Buckner
b8b1b9660f
Merge pull request #3404 from MurdoMaclachlan/master
...
Add proficiency bonus to monster statblocks
2024-05-18 17:28:38 -04:00
David Bolack
c6f62142e1
Change the ID used for User Brews to the shareId for future-proofing.
2024-05-17 20:53:06 -05:00
Trevor Buckner
f40d851d49
Merge branch 'master' into master
2024-05-17 16:53:58 -04:00
Víctor Losada Hernández
b64c835706
Aparently it wasn't redundant as VSCode said
...
This reverts commit aef6605225 .
2024-05-17 22:38:54 +02:00
Víctor Losada Hernández
b7717171b3
Server and shared folders
2024-05-17 22:34:40 +02:00
Víctor Losada Hernández
92e27cda6c
"Removed unused imports of 'classnames' and 'create-react-class' from various JSX files. in the Client folder"
2024-05-17 22:31:55 +02:00
Víctor Losada Hernández
aef6605225
Remove redundant snippetBar import from editor.jsx
2024-05-17 22:28:01 +02:00
Gazook89
7c9cc25923
update editor ref's in edit, home, and new pages.
2024-05-16 23:29:30 -05:00
Gazook89
78ce8aa6e3
remove unused ref attributes
...
from editPage, homePage, newPage, and printPage, as well as splitPane. The refs were declared, but never used.
2024-05-16 23:25:22 -05:00
Gazook89
8ae22bdc27
fix refs in codeEditor.jsx
2024-05-16 23:15:54 -05:00
Gazook89
46c14ef23b
fix refs in editor.jsx
...
now has refs `editorWrapper` and `editor`-- the former includes the snippet bar and codemirror editor, and the latter includes only the codemirror editor.
2024-05-16 23:12:10 -05:00
Trevor Buckner
d3080c03a4
Merge pull request #3432 from 5e-Cleric/fix-icon-fonts
...
Fix icon fonts
2024-05-16 17:22:39 -04:00
Trevor Buckner
12eead3379
Small typos
2024-05-16 17:19:13 -04:00
Trevor Buckner
a2e065c5d8
Adjustments to match Emojis PR
2024-05-16 17:04:02 -04:00
Trevor Buckner
0d1a3d55cf
Merge branch 'master' into fix-icon-fonts
2024-05-16 16:53:54 -04:00
Gazook89
b748a597d2
some fixes post merge.
2024-05-15 21:25:45 -05:00
Gazook89
5fb0e123e3
install new dependencies from merging master
2024-05-15 20:50:52 -05:00
Gazook89
9a4a14fa97
add license, rename files for clarity, update references
2024-05-15 20:48:58 -05:00
Gazook89
0c76a546e4
Merge branch 'master' into RPG-Awesome-Redux
2024-05-15 20:19:00 -05:00
Trevor Buckner
fb299f898e
Merge pull request #3434 from G-Ambatte/experimentalHTMLSanitization
...
Add DOM Purify to BrewRenderer
2024-05-15 17:07:42 -04:00
David Bolack
69f01b282a
CSS Tweaks for Theme Selector
...
Add 5e-Cleric's suggestsions to acvoid the title overflowing over the preview.
2024-05-13 22:33:58 -05:00
David Bolack
66e39d9c65
Update Theme Selector display
...
For User/Brew Themes, display the first author instead of Brew/V3 in the first column.
2024-05-13 22:24:41 -05:00
David Bolack
8c5f4e0605
Brew Theme Fixes.
...
This adds the User Brew themes, where applicible, to the /new path.
This adds a semi-graceful failure to the metadata panel when a Brew Theme is declared as used but is not present.
More gracefully handles loading with themes not present.
2024-05-13 11:14:35 -05:00
David Bolack
ed210da4af
Merge branch 'master' into brew_themes_user_selection
2024-05-12 12:08:16 -05:00
David Bolack
afb5ccec81
Slight Rearrange of ToC theme names and menu
...
Reorders ToC inclusion options with slight relabel for clarity.
Changes assumptions on H4, H5, and H6 snippets to assume H1-H3 class should be explicitly stated.
change naming of addToToCH# to tocH#
more explicitly define .addToC to h1 to h3 changes for --TOC var.
2024-05-12 12:00:55 -05:00
David Bolack
c0beae6e46
Remove redundant class declaration for ToC
2024-05-12 11:49:30 -05:00
David Bolack
9c6ece3e7f
Merge branch 'master' into issue_2994_css_style
2024-05-12 11:37:51 -05:00
David Bolack
5494c02f00
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-05-12 10:23:14 -05:00
G.Ambatte
b4ee62a1bd
Merge branch 'master' into experimentalHTMLSanitization
2024-05-11 08:58:21 +12:00
David Bolack
b6c2f96b82
Change tag filtering for theme detection to require meta prefix
2024-05-10 01:40:01 -04:00
G.Ambatte
632efe8b9f
Add Share ID to lock notification
2024-05-10 08:17:09 +12:00
G.Ambatte
bf38f95d25
Pass ID to Lock Notification
2024-05-10 08:05:29 +12:00
G.Ambatte
f6daeb4acd
Update error message
2024-05-10 08:05:09 +12:00
G.Ambatte
10a7f34abb
Update lock message
2024-05-10 07:45:04 +12:00
G.Ambatte
3a054f1ae0
Merge branch 'master' into addLockNotification-#3326
2024-05-10 07:15:40 +12:00
Víctor Losada Hernández
25b4b3d906
Merge branch 'master' into master
2024-05-09 08:50:51 +02:00
Víctor Losada Hernández
f21d636846
changes as requested
2024-05-09 08:00:02 +02:00
Víctor Losada Hernández
8365841b89
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into fix-icon-fonts
2024-05-09 07:59:31 +02:00
Víctor Losada Hernández
e6bf8b59a1
fix further errors
2024-05-09 07:49:17 +02:00
Trevor Buckner
b4a4934c5c
Merge pull request #3405 from naturalcrit/EmojiSyntax
...
Emoji syntax
2024-05-08 15:55:01 -04:00
Trevor Buckner
a6b2dab9cc
Linting
2024-05-08 14:53:24 -04:00
Trevor Buckner
d692e88b96
Merge branch 'EmojiSyntax' of https://github.com/naturalcrit/homebrewery into EmojiSyntax
2024-05-08 14:24:19 -04:00
Trevor Buckner
62c9e081e6
typos
2024-05-08 14:24:15 -04:00
David Bolack
6f7a657b59
Merge branch 'brew_themes_user_selection' of github.com:dbolack-ab/homebrewery into brew_themes_user_selection
2024-05-08 12:52:01 -05:00
David Bolack
65495b4e7c
Prevent Legacy renderer brews from being listed as themes.
2024-05-08 12:51:10 -05:00
Trevor Buckner
5a52e76ff0
Merge branch 'master' into EmojiSyntax
2024-05-08 11:01:15 -04:00
Trevor Buckner
3b1f4a0d13
Add Tests for emoji markdown
2024-05-08 09:51:29 -04:00
G.Ambatte
cdad9af453
Merge branch 'master' into experimentalHTMLSanitization
2024-05-08 23:30:49 +12:00
David Bolack
07ca134d98
Merge pull request #1 from Gazook89/dropdownTextures-User-Themes
...
Add dropdownTexture for user theme options
2024-05-07 16:39:13 -05:00
David Bolack
dde8e28d07
Merge branch 'brew_themes_user_selection' into dropdownTextures-User-Themes
2024-05-07 16:38:56 -05:00
Trevor Buckner
5fd92ee72d
Remove redundant font inclusion
2024-05-07 15:55:34 -04:00
Trevor Buckner
5bcd3a1b01
Clear up steps
2024-05-07 15:54:08 -04:00
Trevor Buckner
d49d9fd755
typo
2024-05-07 15:35:00 -04:00
Trevor Buckner
41d817823b
Don't autosuggest emojis inside injectors
2024-05-07 15:30:56 -04:00
Trevor Buckner
cfffb4961b
Rename files, add some instructions to markdown.js
2024-05-07 15:28:05 -04:00
Trevor Buckner
6bd2f4d98d
Add rest of Font-Awesome icons
2024-05-07 15:07:30 -04:00
David Bolack
872ee339da
Clean up console logs
...
Eliminate erroronous theme pulldown texture load.
2024-05-07 12:13:57 -05:00
Gazook89
295fea7581
Add dropdownTexture for user theme options
...
If a user theme document has a thumbnail, this will include that thumbnail as a dropdown texture in the options.
2024-05-07 11:00:20 -05:00
David Bolack
f936b8b12b
Update User brew endpoint tests
2024-05-06 20:28:46 -05:00
David Bolack
9f04c34b06
Missed $
2024-05-06 20:07:33 -05:00
David Bolack
c9d416fec0
Small User Brew theme changes.
...
Move the Static Theme shortcut to getBrewThemeWithCSS to drop an unneeded URL load.
Change the comment in the CSS to refer to the shareURL for the theme
instead of its name if it is a user theme.
2024-05-06 19:39:27 -05:00
David Bolack
3dde6a098c
Test code to reduce duplicate theme loading
...
This shorts out loading of 5ePHB and/or blank from getBrewThemeParent
2024-05-06 12:12:46 -05:00
David Bolack
ef25139ffe
Merge branch 'master' into brew_themes_user_selection
2024-05-06 12:04:38 -05:00
David Bolack
9d6076f642
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-05-06 11:59:20 -05:00
Trevor Buckner
dd82a1bebd
Merge pull request #3457 from 5e-Cleric/icons-for-share-dropdown
...
icon for edit link in sharepage
2024-05-06 07:54:41 -04:00
Víctor Losada Hernández
d3f1fde9d9
icon for edit link
2024-05-06 07:43:45 +02:00
Trevor Buckner
d83e7bce0a
Merge pull request #3456 from 5e-Cleric/icons-for-share-dropdown
...
Adding icons to the share dropdown
2024-05-05 21:43:40 -04:00
Trevor Buckner
8cd4a58304
Merge branch 'master' into icons-for-share-dropdown
2024-05-05 21:43:12 -04:00
Trevor Buckner
0ef683222d
Merge pull request #3447 from 5e-Cleric/link-to-edit-if-author
...
Add edit link to share page if user is author
2024-05-05 21:42:25 -04:00
Trevor Buckner
ebbf162318
Merge branch 'master' into link-to-edit-if-author
2024-05-05 21:25:43 -04:00
Víctor Losada Hernández
268d202562
initial commit
2024-05-06 00:32:38 +02:00
G.Ambatte
4e0ec75e58
Revert template.js changes for separate PR
2024-05-06 09:46:34 +12:00
G.Ambatte
1af989c4a3
Case insensitive matching
2024-05-06 07:27:22 +12:00
G.Ambatte
53480fdd5f
Merge branch 'master' into experimentalHTMLSanitization
2024-05-05 20:50:46 +12:00
G.Ambatte
ffa90c397c
Add script sanitization to template.js
2024-05-05 20:18:53 +12:00
Trevor Buckner
df3d1078f1
Add FontAwesome Solid to emoji list
2024-05-05 01:50:38 -04:00
Trevor Buckner
22bdb85dff
Convert dicefont and elderberry icon names to snake_case
2024-05-04 00:40:51 -04:00
Trevor Buckner
2f5081156d
Merge pull request #3438 from naturalcrit/dependabot/npm_and_yarn/react-dom-18.3.1
...
Bump react-dom from 18.2.0 to 18.3.1
2024-05-03 21:56:23 -04:00
dependabot[bot]
c3f153a5fa
Bump react-dom from 18.2.0 to 18.3.1
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) from 18.2.0 to 18.3.1.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-04 01:54:01 +00:00
Trevor Buckner
5e0dda1bde
Merge pull request #3437 from naturalcrit/dependabot/npm_and_yarn/react-18.3.1
...
Bump react from 18.2.0 to 18.3.1
2024-05-03 21:52:58 -04:00
Trevor Buckner
b0379b0821
Merge branch 'master' into EmojiSyntax
2024-05-03 21:47:55 -04:00
dependabot[bot]
c506c9cee5
Bump react from 18.2.0 to 18.3.1
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) from 18.2.0 to 18.3.1.
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react )
---
updated-dependencies:
- dependency-name: react
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-04 01:47:47 +00:00
Trevor Buckner
9184593bc0
Merge pull request #3442 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.24.5
...
Bump @babel/core from 7.24.4 to 7.24.5
2024-05-03 21:46:46 -04:00
dependabot[bot]
1da70d54e8
Bump @babel/core from 7.24.4 to 7.24.5
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.24.4 to 7.24.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-04 01:45:56 +00:00
Trevor Buckner
55cdd016da
Merge pull request #3455 from naturalcrit/addMarkedEmojiPackage
...
Just installs the marked-emoji package
2024-05-03 21:44:53 -04:00
Trevor Buckner
10997898b9
Just installs the marked-emoji package
2024-05-03 21:43:53 -04:00
Trevor Buckner
76b66977e9
Update with master
2024-05-03 21:41:41 -04:00
Trevor Buckner
d695648d9b
Tweaks to Editor highlighting. Maybe still ugly.
2024-05-03 21:40:09 -04:00
Trevor Buckner
72160f5daf
missed one commit
2024-05-03 21:40:09 -04:00
Trevor Buckner
0751da42b6
Add emoji highlighting to editor
2024-05-03 21:40:08 -04:00
Trevor Buckner
babe1f30a2
Prevent autosuggest inside curly span/div properties
2024-05-03 21:40:08 -04:00
Trevor Buckner
cd35e91ea2
add elderberryInn to emoji syntax
2024-05-03 21:40:08 -04:00
Trevor Buckner
8d8a965241
Rename font-icons to elderberryInn
2024-05-03 21:40:08 -04:00
Trevor Buckner
2309887c92
Change diceFont to camelCase to match existing naming convention
2024-05-03 21:40:08 -04:00
Trevor Buckner
d36e6e5834
Hack to avoid conflict with emojis
2024-05-03 21:40:07 -04:00
Trevor Buckner
dd205a14bc
typo
2024-05-03 21:40:07 -04:00
Trevor Buckner
d854fe1202
Clean up redundant code
2024-05-03 21:40:07 -04:00
Trevor Buckner
58f487ac58
Sort alphabetically and numerically
...
i.e.,
"d2, d6, d8, d10, d12, d20", not "d10, d12, d2, d20, d6, d8"
2024-05-03 21:40:07 -04:00
Trevor Buckner
1761c506be
Exclude : from the autocomplete trigger
2024-05-03 21:40:07 -04:00
Trevor Buckner
9f19514b03
CodeMirror Dropdown working
2024-05-03 21:40:07 -04:00
Trevor Buckner
ade1056a02
Include Dicefont
2024-05-03 21:40:07 -04:00
Trevor Buckner
e5fecaf9b6
Include marked-emoji package
2024-05-03 21:40:06 -04:00
Trevor Buckner
5b8b0aa641
Merge pull request #3443 from naturalcrit/dependabot/npm_and_yarn/superagent-9.0.2
...
Bump superagent from 9.0.1 to 9.0.2
2024-05-03 21:35:29 -04:00
Trevor Buckner
b7bc5cbad7
Merge branch 'master' into dependabot/npm_and_yarn/superagent-9.0.2
2024-05-03 21:33:37 -04:00
Trevor Buckner
f2fc47a719
Merge pull request #3454 from naturalcrit/cleanUpMustacheTests
...
Just linting and spacing for mustache-syntax.tests.js
2024-05-03 21:32:57 -04:00
Trevor Buckner
a5f9ab7897
Merge branch 'master' into cleanUpMustacheTests
2024-05-03 21:32:40 -04:00
Trevor Buckner
39368c1a38
Merge branch 'master' into fix-icon-fonts
2024-05-03 21:31:31 -04:00
Trevor Buckner
d879cf3cbb
Merge pull request #3451 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-28.5.0
...
Bump eslint-plugin-jest from 28.2.0 to 28.5.0
2024-05-03 21:31:15 -04:00
Trevor Buckner
ae59c56ddd
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-jest-28.5.0
2024-05-03 21:30:40 -04:00
Trevor Buckner
35431384bd
Merge pull request #3453 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.8.0
...
Bump @googleapis/drive from 8.7.0 to 8.8.0
2024-05-03 21:30:26 -04:00
dependabot[bot]
dd31c0138b
Bump @googleapis/drive from 8.7.0 to 8.8.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.7.0 to 8.8.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.7.0...drive-v8.8.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-04 01:24:32 +00:00
dependabot[bot]
11f1e3fee8
Bump eslint-plugin-jest from 28.2.0 to 28.5.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 28.2.0 to 28.5.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v28.2.0...v28.5.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-05-04 01:23:59 +00:00
Trevor Buckner
aaaa8ed693
Merge pull request #3446 from naturalcrit/makeCurlyInjectorsAppendNotOverwrite
...
Make Curly Injectors append properties, not overwrite
2024-05-03 21:23:01 -04:00
Víctor Losada Hernández
fec6bf290b
Merge branch 'master' into makeCurlyInjectorsAppendNotOverwrite
2024-05-04 01:27:36 +02:00
Trevor Buckner
2418e42655
Align input texts for mustache tests
2024-05-03 17:10:12 -04:00
Trevor Buckner
dce86580ce
Added additional tests for injection
2024-05-03 17:02:12 -04:00
Trevor Buckner
f6997871be
Try to make tests work on both circleCI and windows
2024-05-03 15:01:21 -04:00
Trevor Buckner
660a586a7c
Clarify comments
2024-05-03 15:01:04 -04:00
Trevor Buckner
193cde0925
Passes all tests
2024-05-03 14:31:34 -04:00
Trevor Buckner
1a33e6e631
Passing almost all tests
2024-05-03 12:48:19 -04:00
Trevor Buckner
bb8ade435d
Now passing many previously failing tests
2024-05-03 12:40:03 -04:00
Trevor Buckner
94905f8151
Back to passing all tests (not the "failing" tests yet)
2024-05-03 12:12:55 -04:00
Víctor Losada Hernández
05a30f00e3
Merge branch 'master' into link-to-edit-if-author
2024-05-02 11:39:48 +02:00
Víctor Losada Hernández
3c1f8804af
initial commit
2024-05-02 11:38:00 +02:00
Trevor Buckner
716e3d7143
Merge pull request #3428 from 5e-Cleric/paint-order-fix
...
drop shadow filter to text stroke
2024-05-01 17:21:15 -04:00
Víctor Losada Hernández
a0e6487a7b
Merge branch 'master' into paint-order-fix
2024-05-01 21:58:31 +02:00
Víctor Losada Hernández
076599f05c
to cm
2024-05-01 21:58:15 +02:00
Trevor Buckner
9fb0f37718
Pass CSS props from curly spans/divs as an object for finer control
2024-04-30 23:52:19 -04:00
David Bolack
b86502aec7
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-04-30 21:35:29 -05:00
David Bolack
88ccb955ce
Merge branch 'master' into brew_themes_user_selection
2024-04-30 20:11:32 -05:00
dependabot[bot]
822f8a2cd0
Bump superagent from 9.0.1 to 9.0.2
...
Bumps [superagent](https://github.com/ladjs/superagent ) from 9.0.1 to 9.0.2.
- [Release notes](https://github.com/ladjs/superagent/releases )
- [Changelog](https://github.com/ladjs/superagent/blob/master/HISTORY.md )
- [Commits](https://github.com/ladjs/superagent/compare/v9.0.1...v9.0.2 )
---
updated-dependencies:
- dependency-name: superagent
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-30 14:10:06 -04:00
Trevor Buckner
d2965e1122
Merge pull request #3444 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.3.3
...
Bump mongoose from 8.3.2 to 8.3.3
2024-04-30 14:09:57 -04:00
dependabot[bot]
37e211937c
Bump mongoose from 8.3.2 to 8.3.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.3.2 to 8.3.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.3.2...8.3.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-30 14:08:20 -04:00
Trevor Buckner
e7a03dc7d6
Merge pull request #3445 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.5
...
Bump @babel/preset-env from 7.24.4 to 7.24.5
2024-04-30 14:07:57 -04:00
Trevor Buckner
a469b88fd2
Merge branch 'master' into dependabot/npm_and_yarn/babel/preset-env-7.24.5
2024-04-30 14:05:44 -04:00
Trevor Buckner
45244c8e5d
Merge pull request #3407 from Gazook89/errorPage.jsx-cleanup
...
Convert errorPage.jsx to functional component.
2024-04-30 13:43:20 -04:00
Trevor Buckner
fad5817353
Merge branch 'master' into errorPage.jsx-cleanup
2024-04-30 13:41:10 -04:00
Trevor Buckner
c0a8b79acc
Small tweak
2024-04-30 13:40:39 -04:00
dependabot[bot]
34a41fd610
Bump @babel/preset-env from 7.24.4 to 7.24.5
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.4 to 7.24.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-30 03:58:07 +00:00
G.Ambatte
eb0440d36d
Fix ID removal
2024-04-28 01:13:12 +12:00
G.Ambatte
cd82db16d5
Add DOMPurify config options
2024-04-28 00:49:03 +12:00
G.Ambatte
bdad601ebc
Remove now-obsolete sanitization function
2024-04-27 23:58:55 +12:00
G.Ambatte
97a74902ef
Add DOMPurify to BrewRenderer
2024-04-27 23:58:23 +12:00
G.Ambatte
ab30b6a799
Add DOM-Purify package
2024-04-27 23:38:55 +12:00
Víctor Losada Hernández
da6bc497fc
eldeberry misstype rise dead
2024-04-26 23:07:06 +02:00
Trevor Buckner
06c3168868
Merge pull request #3429 from naturalcrit/dependabot/npm_and_yarn/multi-812b0dc3fc
...
Bump formidable, superagent and supertest
2024-04-25 10:45:55 -04:00
dependabot[bot]
86be90adb2
Bump formidable, superagent and supertest
...
Bumps [formidable](https://github.com/node-formidable/formidable ) to 3.5.1 and updates ancestor dependencies [formidable](https://github.com/node-formidable/formidable ), [superagent](https://github.com/ladjs/superagent ) and [supertest](https://github.com/ladjs/supertest ). These dependencies need to be updated together.
Updates `formidable` from 2.1.2 to 3.5.1
- [Release notes](https://github.com/node-formidable/formidable/releases )
- [Changelog](https://github.com/node-formidable/formidable/blob/master/CHANGELOG.md )
- [Commits](https://github.com/node-formidable/formidable/commits/v3.5.1 )
Updates `superagent` from 8.1.2 to 9.0.1
- [Release notes](https://github.com/ladjs/superagent/releases )
- [Changelog](https://github.com/ladjs/superagent/blob/master/HISTORY.md )
- [Commits](https://github.com/ladjs/superagent/compare/v8.1.2...v9.0.1 )
Updates `supertest` from 6.3.4 to 7.0.0
- [Release notes](https://github.com/ladjs/supertest/releases )
- [Commits](https://github.com/ladjs/supertest/compare/v6.3.4...v7.0.0 )
---
updated-dependencies:
- dependency-name: formidable
dependency-type: indirect
- dependency-name: superagent
dependency-type: direct:production
- dependency-name: supertest
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-25 14:28:34 +00:00
Trevor Buckner
a296678d20
Merge pull request #3409 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.3.2
...
Bump mongoose from 8.3.1 to 8.3.2
2024-04-25 10:27:36 -04:00
Trevor Buckner
f768990fb1
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.3.2
2024-04-25 09:39:13 -04:00
Trevor Buckner
313543d0d1
Merge pull request #3424 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.23.0
...
Bump react-router-dom from 6.22.3 to 6.23.0
2024-04-25 09:39:03 -04:00
Víctor Losada Hernández
2ebe8d80e9
fix ei poison piercing
2024-04-25 15:15:07 +02:00
Víctor Losada Hernández
8c20422fef
initial commit
2024-04-25 15:09:25 +02:00
dependabot[bot]
2197a9b782
Bump react-router-dom from 6.22.3 to 6.23.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.22.3 to 6.23.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.23.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-24 03:27:56 +00:00
Gazook89
928a8b351e
Merge branch 'master' into RPG-Awesome-Redux
2024-04-21 20:12:56 -05:00
David Bolack
980ed8e265
Merge branch 'master' into brew_themes_user_selection
2024-04-20 21:55:59 -05:00
David Bolack
2a148cb138
Update Menus and standardize CSS Names
...
Update addh4, addh5, addh6 class names to addToCH4, addToCH5, addToCH6
Update menu items for Table of contents with better labels and addToC
2024-04-20 21:53:02 -05:00
David Bolack
9426c6acd9
Merge branch 'issue_2994_css_style' of github.com:dbolacksn/homebrewery-broken into issue_2994_css_style
2024-04-20 21:48:13 -05:00
David Bolack
90ce48b170
Adapt Recursive Toc function from 3254
2024-04-20 21:46:32 -05:00
David Bolack
448af683a0
Merge branch 'master' into issue_2994_css_style
2024-04-20 21:36:42 -05:00
David Bolack
ec5f8254f1
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-04-20 19:12:29 -05:00
Gazook89
7ca38b88ad
add RPG awesome icons
...
This branch just does the same thing as the RPG Awesome repo, but more closely aligns with the code used in the other icon fonts and isn't an NPM package.
2024-04-19 23:15:02 -05:00
G.Ambatte
9f31a2c8a2
I can spell, honest
2024-04-20 14:06:33 +12:00
G.Ambatte
09cf5a9b04
Fix test
2024-04-20 14:02:46 +12:00
G.Ambatte
4c6953a4e0
Differentiate between Edit and Share messages
2024-04-20 13:57:33 +12:00
G.Ambatte
b4b4fbe375
Update fixed text and add REMOVAL button (NYI)
2024-04-20 13:50:10 +12:00
G.Ambatte
4bc07ceb4e
Nudge line and button spacing
2024-04-20 13:49:36 +12:00
G.Ambatte
fde1706a0c
Merge branch 'master' into addLockNotification-#3326
2024-04-20 12:55:44 +12:00
Trevor Buckner
1891d7c90a
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.3.2
2024-04-19 12:10:55 -04:00
Trevor Buckner
98d032913b
Update pr-check.yml
2024-04-19 12:00:11 -04:00
Trevor Buckner
80bcf92fa3
Update pr-check.yml
2024-04-19 11:57:44 -04:00
Trevor Buckner
41d536b7ff
Merge pull request #3418 from naturalcrit/calculuschild-patch-2
...
Rename limit-pull-requests.yml to action.yml
2024-04-19 11:50:14 -04:00
Trevor Buckner
1e5e3d5f41
Rename limit-pull-requests.yml to action.yml
2024-04-19 11:50:01 -04:00
Trevor Buckner
19961c7ec5
Update pr-check.yml
2024-04-19 11:48:30 -04:00
Trevor Buckner
08e273bfd6
Update pr-check.yml
2024-04-19 11:37:23 -04:00
Trevor Buckner
9f45456066
Delete .github/workflows/limit-pull-requests.yml
2024-04-19 11:34:26 -04:00
Trevor Buckner
6e69696b4a
Update pr-check.yml
2024-04-19 11:34:06 -04:00
Trevor Buckner
8b6be1cab8
Create limit-pull-requests.yml
2024-04-19 11:33:55 -04:00
Trevor Buckner
93a490e881
Merge pull request #3413 from naturalcrit/calculuschild-patch-1
...
Update pr-check.yml
2024-04-19 11:24:28 -04:00
Trevor Buckner
f23959bb05
Update pr-check.yml
2024-04-19 11:24:18 -04:00
Trevor Buckner
228041913e
Create limit-pull-requests.yml
2024-04-19 11:15:27 -04:00
Trevor Buckner
fc53989946
Create pr-check.yml
...
For users with many open PRs, creates a warning message in the PR description when opening a new PR, encouraging users to complete existing PRs before opening new ones.
2024-04-19 10:47:00 -04:00
Trevor Buckner
83103a893a
add elderberryInn to emoji syntax
2024-04-18 23:06:21 -04:00
Trevor Buckner
8cbc7a68e5
Rename font-icons to elderberryInn
2024-04-18 23:06:02 -04:00
David Bolack
1292d9ad9b
Merge branch 'master' into brew_themes_user_selection
2024-04-18 21:13:01 -05:00
Trevor Buckner
1177fd721c
Change diceFont to camelCase to match existing naming convention
2024-04-18 16:57:35 -04:00
Trevor Buckner
2c8908850b
Merge branch 'master' into EmojiSyntax
2024-04-18 16:52:38 -04:00
Trevor Buckner
9f72dc08c6
Merge pull request #3411 from naturalcrit/make-diceFont-capitalization-consistent
...
Change dicefont names to consistent camelCase
2024-04-18 16:52:15 -04:00
Trevor Buckner
1018ba554f
rename files to camelCase
2024-04-18 16:42:06 -04:00
Trevor Buckner
709c9ece74
Change to camelCase
2024-04-18 16:20:09 -04:00
Trevor Buckner
4622a74786
Merge branch 'master' into EmojiSyntax
2024-04-17 01:08:19 -04:00
Trevor Buckner
19e51102d2
Merge pull request #3410 from naturalcrit/Only-check-DefinitionLists-at-start-of-line
...
Only check definition lists at start of line
2024-04-17 01:08:03 -04:00
Trevor Buckner
68a68bde82
Only check for DLs at start of line
...
Previous "start" regex used `^` instead of `\n`, which meant if the first character in a line failed to start a match, it would check for the start of a DL in *every* character in the line, which slows things down a lot.
2024-04-17 01:03:25 -04:00
Trevor Buckner
e1186b4a1e
Rename Inline to SingleLine
2024-04-17 01:01:58 -04:00
Trevor Buckner
72cfca1158
Hack to avoid conflict with emojis
2024-04-17 00:56:43 -04:00
dependabot[bot]
67d824cac9
Bump mongoose from 8.3.1 to 8.3.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.3.1 to 8.3.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.3.1...8.3.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-17 03:56:30 +00:00
Trevor Buckner
4f010d77e8
typo
2024-04-14 16:06:43 -04:00
Trevor Buckner
3b1f9b10e7
Clean up redundant code
2024-04-14 16:06:12 -04:00
Trevor Buckner
5e33d8b6c4
Sort alphabetically and numerically
...
i.e.,
"d2, d6, d8, d10, d12, d20", not "d10, d12, d2, d20, d6, d8"
2024-04-14 16:02:04 -04:00
Trevor Buckner
f7a2509405
Exclude : from the autocomplete trigger
2024-04-14 15:38:01 -04:00
Gazook89
52904eea09
add a comment
2024-04-13 20:47:38 -05:00
Gazook89
ff84ded547
Convert page to functional component
2024-04-13 11:10:43 -05:00
Gazook89
6220e4f63f
Remove unused defaultProps
...
The defaultProps are not used, and may be a relic of previous error page function.
2024-04-13 10:30:04 -05:00
Trevor Buckner
b0c2521101
CodeMirror Dropdown working
2024-04-12 14:12:30 -04:00
Murdo B. Maclachlan
30d2a03fd0
Added proficiency bonus to monster statblocks
2024-04-12 11:19:48 +01:00
Trevor Buckner
61a4b558a8
Include Dicefont
2024-04-10 18:25:45 -04:00
Trevor Buckner
3771d4bfd8
Include marked-emoji package
2024-04-10 17:50:33 -04:00
Trevor Buckner
b087e849b5
Merge branch 'master' into issue_2994_css_style
2024-04-10 17:27:12 -04:00
Trevor Buckner
9e71945a76
Merge pull request #3388 from 5e-Cleric/scrollbar-new-fix
...
Custom scrollbar fixes
2024-04-09 18:39:20 -04:00
Trevor Buckner
9f6fc3d1ac
Merge branch 'master' into scrollbar-new-fix
2024-04-09 18:38:07 -04:00
Trevor Buckner
e22830eb4a
Merge pull request #3399 from 5e-Cleric/add-share-link-to-error-pages
...
Add share link to error pages ONLY IF PUBLISHED
2024-04-09 15:31:53 -04:00
Trevor Buckner
f02a3d815a
Merge branch 'master' into add-share-link-to-error-pages
2024-04-09 15:24:23 -04:00
Trevor Buckner
7097897df8
Remove "stub.published" from thrown error, since no longer used
2024-04-09 15:24:04 -04:00
Víctor Losada Hernández
9247967f93
fixed published request
2024-04-09 20:12:40 +02:00
Trevor Buckner
1b3d82fc04
Merge pull request #3400 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-28.2.0
...
Bump eslint-plugin-jest from 27.9.0 to 28.2.0
2024-04-09 13:15:56 -04:00
dependabot[bot]
810934f2c1
Bump eslint-plugin-jest from 27.9.0 to 28.2.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.9.0 to 28.2.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.9.0...v28.2.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-09 15:42:16 +00:00
Trevor Buckner
3b507a1fb9
Merge pull request #3403 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.3.1
...
Bump mongoose from 8.3.0 to 8.3.1
2024-04-09 11:41:27 -04:00
Trevor Buckner
4f1056a320
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.3.1
2024-04-09 11:39:03 -04:00
Trevor Buckner
963aa8f003
Merge pull request #3398 from Gazook89/Clean-Up-accountPage.jsx
...
Refactor accountPage.jsx to functional component
2024-04-09 11:37:34 -04:00
Trevor Buckner
431dfd7780
tweak comments
2024-04-09 11:36:13 -04:00
Trevor Buckner
4f0cbd82d4
Linting, small cleanup, and renaming some functions
...
Renamed "makeActive" and "renderButton" to make more clear without needing comments.
2024-04-09 11:35:30 -04:00
dependabot[bot]
53e437c6bc
Bump mongoose from 8.3.0 to 8.3.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.3.0 to 8.3.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.3.0...8.3.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-09 03:02:17 +00:00
Víctor Losada Hernández
0e5c91733d
Revert "rename icons less"
...
This reverts commit 7cc83eaf95 .
2024-04-08 02:29:43 +02:00
Víctor Losada Hernández
f5c729c328
Revert "rename icons"
...
This reverts commit 22b01b131f .
2024-04-08 02:29:40 +02:00
Víctor Losada Hernández
4f9e93fac7
Revert "renaming snippetBar"
...
This reverts commit 2045bf8060 .
2024-04-08 02:29:38 +02:00
Víctor Losada Hernández
7cc83eaf95
rename icons less
2024-04-08 02:19:43 +02:00
Víctor Losada Hernández
22b01b131f
rename icons
2024-04-08 02:19:32 +02:00
Víctor Losada Hernández
2045bf8060
renaming snippetBar
2024-04-08 02:17:10 +02:00
Víctor Losada Hernández
df73b37180
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into add-share-link-to-error-pages
2024-04-07 16:17:51 +02:00
Víctor Losada Hernández
99f9b10348
initial commit
2024-04-07 16:16:21 +02:00
Gazook89
ed85f77c48
ESLint linting (one small whitespace change).
2024-04-06 21:34:04 -05:00
Gazook89
777438fd94
rename props.brew.uiItems to ...accountDetails
...
and destructure props at start of account page component.
`accountDetails` is more descriptive of what set of info is being passed through props to the account page, info which is only *then* displayed as UI items.
2024-04-06 21:23:26 -05:00
Gazook89
08406de5cc
add code comments for each step.
2024-04-06 15:44:19 -05:00
Gazook89
e1599909bc
change name of render method to be more discriptive
...
"UiItems" is not descriptive enough for a render method because most anything that is rendered is part of the UI. This could be left as just `render()`, but `renderAccountPage()` provides best context of what is happening.
2024-04-06 15:30:18 -05:00
Gazook89
e7eda1f5ec
Convert class component to functional component
...
Used OpenAI ChatGPT to do the bulk of this, and then fixed some formatting and looked for obvious mistakes.
2024-04-06 15:26:40 -05:00
Gazook89
9f2aaf01c7
Remove unnecessary Nav components and methods.
2024-04-06 14:50:20 -05:00
Trevor Buckner
882c78fbb5
Merge pull request #2981 from 5e-Cleric/small-fixes,-snippet-uniformity
...
Cleaning CSS for uniformity
2024-04-04 17:44:34 -04:00
Trevor Buckner
a79b2fb755
Merge branch 'master' into small-fixes,-snippet-uniformity
2024-04-04 17:38:42 -04:00
Trevor Buckner
97fba241a1
Undo linting on unrelated pages
2024-04-04 17:37:52 -04:00
Trevor Buckner
d0fbca7af5
Undo linting on unrelated files.
2024-04-04 17:36:06 -04:00
Trevor Buckner
36726c747c
Merge pull request #3393 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.3.0
...
Bump mongoose from 8.2.3 to 8.3.0
2024-04-04 14:28:16 -04:00
Trevor Buckner
74580e63d6
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.3.0
2024-04-04 14:22:13 -04:00
Trevor Buckner
1d8eb35c64
Merge pull request #3368 from 5e-Cleric/authors-as-links-to-userpage-in-error-pages
...
Usernames in error pages being displayed as anchors to their userpage
2024-04-04 14:22:01 -04:00
Trevor Buckner
659472578b
Merge branch 'master' into authors-as-links-to-userpage-in-error-pages
2024-04-04 14:19:56 -04:00
Trevor Buckner
9ec549b496
Merge pull request #3383 from Gazook89/Changes-to-server-start
...
Changes to terminal output on server start
2024-04-04 14:12:40 -04:00
Trevor Buckner
e37c190600
Merge branch 'master' into Changes-to-server-start
2024-04-04 14:11:33 -04:00
dependabot[bot]
d51d7efdcf
Bump mongoose from 8.2.3 to 8.3.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.2.3 to 8.3.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.2.3...8.3.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-04 17:47:06 +00:00
Trevor Buckner
b0a16c8daf
Merge pull request #3392 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.4
...
Bump @babel/preset-env from 7.24.3 to 7.24.4
2024-04-04 13:46:14 -04:00
dependabot[bot]
beb86c1820
Bump @babel/preset-env from 7.24.3 to 7.24.4
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.3 to 7.24.4.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.4/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-04 17:42:44 +00:00
Trevor Buckner
48f8026c35
Merge pull request #3391 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.24.4
...
Bump @babel/core from 7.24.3 to 7.24.4
2024-04-04 13:41:24 -04:00
Trevor Buckner
1be0a2dac3
Merge branch 'master' into dependabot/npm_and_yarn/babel/core-7.24.4
2024-04-04 13:40:08 -04:00
Trevor Buckner
d31e495d07
Merge pull request #3394 from Gazook89/1px-change-in-Editor-Height
...
1px adjustment to Editor height
2024-04-04 13:23:14 -04:00
Gazook89
3b2a48eabf
remove + 1 from editor height
2024-04-03 22:52:16 -05:00
dependabot[bot]
4bc76a0766
Bump @babel/core from 7.24.3 to 7.24.4
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.24.3 to 7.24.4.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.4/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-04-04 03:12:37 +00:00
Trevor Buckner
3faa23c6eb
Merge pull request #3389 from Gazook89/snippet-menu-style-revision
...
Align snippet menu icons and names
2024-04-03 23:05:25 -04:00
Gazook89
e324de8f4f
remove 'remake' from font names
2024-04-03 14:09:07 -05:00
Gazook89
7954ae8692
set a min-width on icons, reduce font sizes
2024-04-03 12:57:24 -05:00
Víctor Losada Hernández
85a00b508b
automatic linting
2024-04-02 14:47:03 +02:00
Víctor Losada Hernández
1e91d7256c
Merge branch 'master' into authors-as-links-to-userpage-in-error-pages
2024-04-02 14:12:35 +02:00
Víctor Losada Hernández
8a15172db1
pull from master and suggested fixes
2024-04-02 14:09:53 +02:00
Víctor Losada Hernández
aae574e4e5
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into small-fixes,-snippet-uniformity
2024-04-02 13:56:21 +02:00
Víctor Losada Hernández
45106b47d4
Custom scrollbar fixes
2024-04-02 13:47:16 +02:00
Gazook89
59b3038b9b
small style changes to terminal output of server start
2024-03-29 20:42:07 -05:00
G.Ambatte
963ec282d3
Initial functionality pass
2024-03-29 20:06:16 +13:00
Gazook89
31cf8b7d28
add browser-readable address and some styling to log.
2024-03-28 14:58:05 -05:00
Trevor Buckner
9f6bc10369
Merge pull request #3222 from naturalcrit/dependabot/npm_and_yarn/classnames-2.5.1
...
Bump classnames from 2.3.2 to 2.5.1
2024-03-27 10:07:46 -04:00
Trevor Buckner
f7c7d40195
Merge branch 'master' into dependabot/npm_and_yarn/classnames-2.5.1
2024-03-27 10:04:11 -04:00
Trevor Buckner
380e3fead3
Merge pull request #3367 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.24.3
...
Bump @babel/core from 7.24.0 to 7.24.3
2024-03-27 10:03:22 -04:00
dependabot[bot]
ffa01c7f1d
Bump @babel/core from 7.24.0 to 7.24.3
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.24.0 to 7.24.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.3/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 14:01:07 +00:00
Trevor Buckner
15367f9444
Merge pull request #3380 from naturalcrit/dependabot/npm_and_yarn/express-4.19.2
...
Bump express from 4.19.1 to 4.19.2
2024-03-27 09:59:34 -04:00
Trevor Buckner
90a710907e
Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.2
2024-03-27 09:57:16 -04:00
Trevor Buckner
da6d06728c
Merge pull request #3346 from 5e-Cleric/scrollbar
...
Custom scrollbar
2024-03-27 09:56:35 -04:00
Trevor Buckner
451ff3ffec
Merge branch 'master' into scrollbar
2024-03-27 09:54:57 -04:00
Trevor Buckner
61038f876d
Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.2
2024-03-27 09:34:20 -04:00
Trevor Buckner
20e1c71eff
Merge pull request #3379 from G-Ambatte/fixDL+MustacheClash-#3378
...
Change Marked extension priority order
2024-03-27 09:34:05 -04:00
Trevor Buckner
d2d7f5b71e
Merge branch 'master' into fixDL+MustacheClash-#3378
2024-03-27 09:23:52 -04:00
dependabot[bot]
0ad4cb7cfd
Bump express from 4.19.1 to 4.19.2
...
Bumps [express](https://github.com/expressjs/express ) from 4.19.1 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases )
- [Changelog](https://github.com/expressjs/express/blob/master/History.md )
- [Commits](https://github.com/expressjs/express/compare/4.19.1...4.19.2 )
---
updated-dependencies:
- dependency-name: express
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-27 13:23:35 +00:00
Trevor Buckner
161efbb3c8
Merge pull request #3372 from naturalcrit/dependabot/npm_and_yarn/express-4.19.1
...
Bump express from 4.18.3 to 4.19.1
2024-03-27 09:23:06 -04:00
G.Ambatte
b35739c5c1
Change Marked extension priority order
2024-03-27 15:48:34 +13:00
David Bolack
7690fb9287
Return .addToC for inline mustaches
2024-03-26 09:39:15 -05:00
David Bolack
57f0aefbc8
Merge branch 'master' into brew_themes_user_selection
2024-03-25 20:38:28 -05:00
David Bolack
2e54520b32
Merge branch 'master' into issue_2994_css_style
2024-03-25 19:39:01 -05:00
David Bolack
cdf5b29ac2
Remove !important from toc.h4/h5/h6 --TOC
2024-03-25 19:38:26 -05:00
David Bolack
733b929940
Integrate code recursion from 3254.
2024-03-25 19:36:30 -05:00
David Bolack
211fe48e29
Attempt to block H4-h6 from existing ToCs from showing up in a new ToC.
2024-03-25 19:06:38 -05:00
David Bolack
9d3f7fe556
Fix H3-H6 entries in ToC generation
2024-03-25 18:58:29 -05:00
David Bolack
5d87508d0e
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-25 18:09:43 -05:00
David Bolack
40d0e7e90e
Trim space off of ToC entries.
2024-03-25 16:32:03 -05:00
David Bolack
7ca10ff5a4
Add requested additions to code
...
Add snippet additions to handle Add h4, Add h4-h5, add h4-h6
Add collection of headers h4-h6 and rendering of h4 to h6.
2024-03-25 16:13:07 -05:00
Trevor Buckner
831c635149
Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.1
2024-03-25 14:51:30 -04:00
Trevor Buckner
d961e7695d
Merge pull request #3366 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.24.3
...
Bump @babel/plugin-transform-runtime from 7.24.0 to 7.24.3
2024-03-25 14:44:23 -04:00
dependabot[bot]
4b842ef37f
Bump @babel/plugin-transform-runtime from 7.24.0 to 7.24.3
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.24.0 to 7.24.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.3/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-25 18:33:28 +00:00
Trevor Buckner
0396bedcd0
Merge pull request #3373 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.3
...
Bump @babel/preset-env from 7.24.1 to 7.24.3
2024-03-25 14:31:26 -04:00
dbolack
1705e66be2
Corrections per PR
...
Remove off by one error realted to change in page number detection.
Dewrap quotes from exclude screen.
2024-03-23 18:57:53 -05:00
dbolack
1e4f804542
Merge branch 'issue_2994_css_style' of github.com:dbolacksn/homebrewery-broken into issue_2994_css_style
2024-03-23 18:54:05 -05:00
dbolacksn
6a03be9d64
Merge branch 'master' into issue_2994_css_style
2024-03-23 18:53:52 -05:00
dbolack
591278862a
Merge branch 'master' into issue_2994_css_style
2024-03-23 18:52:33 -05:00
David Bolack
9848e4b600
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-23 05:59:29 -05:00
Trevor Buckner
772b478682
Merge branch 'master' into dependabot/npm_and_yarn/babel/preset-env-7.24.3
2024-03-22 11:43:07 -04:00
Trevor Buckner
dab8dd278d
Merge pull request #3376 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.2.3
...
Bump mongoose from 8.2.2 to 8.2.3
2024-03-22 11:42:57 -04:00
dependabot[bot]
72d26c6c7e
Bump @babel/preset-env from 7.24.1 to 7.24.3
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.1 to 7.24.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.3/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-22 15:41:15 +00:00
Trevor Buckner
a7f07ab9f5
Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.1
2024-03-22 11:40:47 -04:00
Trevor Buckner
75080135af
Merge branch 'master' into dependabot/npm_and_yarn/mongoose-8.2.3
2024-03-22 11:40:36 -04:00
Trevor Buckner
7a9483c0d0
Merge pull request #3363 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.24.1
...
Bump @babel/preset-react from 7.23.3 to 7.24.1
2024-03-22 11:40:26 -04:00
Trevor Buckner
484c6bb8a7
Merge branch 'master' into dependabot/npm_and_yarn/babel/preset-react-7.24.1
2024-03-22 11:23:23 -04:00
Trevor Buckner
125adfb198
Merge branch 'master' into dependabot/npm_and_yarn/express-4.19.1
2024-03-22 11:23:09 -04:00
dependabot[bot]
a0c6e92016
Bump mongoose from 8.2.2 to 8.2.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.2.2 to 8.2.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.2.2...8.2.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-22 03:49:13 +00:00
Trevor Buckner
7de58740a2
Merge pull request #3375 from G-Ambatte/fixDefinitionListUndefinedTypeCrash
...
Fix crash when match is undefined
2024-03-21 21:56:31 -04:00
G.Ambatte
bae56b8b9d
Fix crash when match is undefined
2024-03-22 14:27:45 +13:00
dependabot[bot]
e02d925a49
Bump express from 4.18.3 to 4.19.1
...
Bumps [express](https://github.com/expressjs/express ) from 4.18.3 to 4.19.1.
- [Release notes](https://github.com/expressjs/express/releases )
- [Changelog](https://github.com/expressjs/express/blob/master/History.md )
- [Commits](https://github.com/expressjs/express/compare/4.18.3...4.19.1 )
---
updated-dependencies:
- dependency-name: express
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-21 03:02:53 +00:00
Víctor Losada Hernández
03f868d084
initial commit
2024-03-20 17:58:10 +01:00
Trevor Buckner
920c4cd7cb
Merge pull request #3361 from G-Ambatte/addDefinitionListTests
...
Add definition list test: ensure inline has priority over multiline
2024-03-20 10:42:52 -04:00
dependabot[bot]
bf2c638cad
Bump @babel/preset-react from 7.23.3 to 7.24.1
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.23.3 to 7.24.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.1/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-20 14:41:25 +00:00
Trevor Buckner
eddb513e72
Merge branch 'master' into addDefinitionListTests
2024-03-20 10:40:34 -04:00
Trevor Buckner
fea68ac71a
Merge pull request #3362 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.1
...
Bump @babel/preset-env from 7.24.0 to 7.24.1
2024-03-20 10:39:45 -04:00
dependabot[bot]
97b10c685c
Bump @babel/preset-env from 7.24.0 to 7.24.1
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.0 to 7.24.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.1/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-20 03:21:58 +00:00
G.Ambatte
40fc422ab5
Check inline DL has priority over multiline DL
2024-03-20 13:31:10 +13:00
David Bolack
f0a8020189
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-19 19:18:43 -05:00
Trevor Buckner
647afba2b0
Merge pull request #3359 from naturalcrit/Fix-Multiline-DL-Crash
...
Fix crash for DL, disallow block tokens as DT, add test
2024-03-19 15:48:40 -04:00
Trevor Buckner
bd324a7e74
Fix crash for DL, disallow block tokens as DT, add test
2024-03-19 13:14:58 -04:00
Trevor Buckner
ac080c8323
Merge pull request #3358 from 5e-Cleric/fix-monster-dl
...
Quickfix: Monster statblocks definition list missed blank line
2024-03-18 19:36:48 -04:00
Trevor Buckner
30ebf90371
Add Tests to circleci
2024-03-18 19:34:17 -04:00
Trevor Buckner
f9a7adbd72
Fix tests
2024-03-18 19:28:42 -04:00
Víctor Losada Hernández
b74fb22182
Revert "fix another test"
...
This reverts commit b6ea89356b .
2024-03-18 23:50:33 +01:00
Víctor Losada Hernández
b6ea89356b
fix another test
2024-03-18 23:47:06 +01:00
Víctor Losada Hernández
37488ded4d
fix 1 test, no idea how these work
2024-03-18 23:43:51 +01:00
Víctor Losada Hernández
c47dd828ed
initial commit
2024-03-18 23:39:15 +01:00
Trevor Buckner
a34ed8ccb4
Merge pull request #3354 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.34.1
...
Bump eslint-plugin-react from 7.34.0 to 7.34.1
2024-03-18 17:37:47 -04:00
Trevor Buckner
d4d0546d61
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-react-7.34.1
2024-03-18 17:34:16 -04:00
Trevor Buckner
e94c1d33d2
Merge pull request #3353 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.2.2
...
Bump mongoose from 8.2.1 to 8.2.2
2024-03-18 17:34:05 -04:00
Trevor Buckner
dd6388bf9f
Merge pull request #3327 from G-Ambatte/experimentalBrewLocking-#3326
...
Add administrative brew locking function
2024-03-18 17:33:54 -04:00
Trevor Buckner
8b8071a903
Merge branch 'master' into experimentalBrewLocking-#3326
2024-03-18 17:31:41 -04:00
dependabot[bot]
19746a78f4
Bump eslint-plugin-react from 7.34.0 to 7.34.1
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.34.0 to 7.34.1.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/v7.34.1/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.0...v7.34.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-18 21:26:36 +00:00
dependabot[bot]
13d679c4bf
Bump mongoose from 8.2.1 to 8.2.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.2.1 to 8.2.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.2.1...8.2.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-18 21:26:34 +00:00
Trevor Buckner
a851378a2f
Merge pull request #3357 from naturalcrit/v3.12.0
...
v3.12.0
2024-03-18 17:25:34 -04:00
Trevor Buckner
e3b2d33a5e
v3.12.0
2024-03-18 17:24:39 -04:00
Trevor Buckner
e4b7d0be64
Merge pull request #3356 from naturalcrit/Fix-Dicefont
...
Fix dicefont
2024-03-18 16:55:32 -04:00
Trevor Buckner
7e48696fb5
lint
2024-03-18 16:55:08 -04:00
Trevor Buckner
b727c56e56
Fix Dicefont
2024-03-18 16:52:43 -04:00
G.Ambatte
7f168f35b8
Add test for locked brew
2024-03-17 21:35:03 +13:00
G.Ambatte
21c0916693
Switch to boolean lock state
2024-03-17 21:34:31 +13:00
G.Ambatte
8f0fb6e458
Merge branch 'master' into experimentalBrewLocking-#3326
2024-03-17 18:40:57 +13:00
Trevor Buckner
4606ad4c6e
Merge branch 'master' into scrollbar
2024-03-14 17:10:30 -04:00
Trevor Buckner
bf267436b0
Merge pull request #3348 from 5e-Cleric/fonts-fix
...
Font fix, df to icon fonts, remove duplication
2024-03-14 17:07:30 -04:00
Trevor Buckner
2af44665e1
Merge branch 'master' into fonts-fix
2024-03-14 16:59:21 -04:00
Trevor Buckner
e412a379e3
Merge pull request #3129 from dbolacksn/Extended_DD
...
Add Multi-line Dictionary Definition (<dd>) rows.
2024-03-14 00:05:30 -04:00
Trevor Buckner
f37da19649
lint
2024-03-14 00:03:28 -04:00
Trevor Buckner
d7756230fb
More tests. Split into two extensions
...
Split into two extensions as single-line and multiline are different syntaxes. Simplified a lot of logic and probably cleaner as their own NPM packages (eventually).
2024-03-14 00:02:18 -04:00
David Bolack
f2f32c35ea
Ensure shared pages work with user themes.
2024-03-10 11:54:48 -05:00
David Bolack
d4770f16e3
Merge branch 'master' into brew_themes_user_selection
2024-03-09 20:25:24 -06:00
David Bolack
d6aa0138f0
Merge branch 'Extended_DD' of github.com:dbolacksn/homebrewery-broken into Extended_DD
2024-03-09 19:42:34 -06:00
David Bolack
f3b17f4615
Fix bad merge
2024-03-09 19:40:54 -06:00
David Bolack
04e6f2ea58
Merge branch 'master' into Extended_DD
2024-03-09 19:37:57 -06:00
David Bolack
ed6718eef1
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-09 19:37:31 -06:00
Trevor Buckner
e36a638ae5
Add more tests
2024-03-09 16:41:05 -05:00
Víctor Losada Hernández
d1c2e74ed6
Merge branch 'master' into fonts-fix
2024-03-08 19:56:15 +01:00
Víctor Losada Hernández
5a410029f6
Merge branch 'master' into scrollbar
2024-03-08 19:51:15 +01:00
Trevor Buckner
005fb705fa
Merge pull request #3349 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.22.3
...
Bump react-router-dom from 6.22.2 to 6.22.3
2024-03-08 10:46:35 -05:00
Víctor Losada Hernández
b4fec32320
Merge branch 'scrollbar' of https://github.com/5e-Cleric/homebrewery into scrollbar
2024-03-08 10:13:06 +01:00
Víctor Losada Hernández
d0000cee11
linting
2024-03-08 10:13:04 +01:00
Víctor Losada Hernández
846b3b9d02
Merge branch 'master' into scrollbar
2024-03-08 10:11:16 +01:00
Víctor Losada Hernández
54d881642d
listpage, editor
2024-03-08 10:09:29 +01:00
Trevor Buckner
f6c0b0d6fc
Simplification of CSS
2024-03-07 23:46:10 -05:00
dependabot[bot]
08a3d7367b
Bump react-router-dom from 6.22.2 to 6.22.3
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.22.2 to 6.22.3.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.3/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-08 03:15:21 +00:00
David Bolack
cd537f98c7
Merge branch 'master' into Extended_DD
2024-03-06 23:41:42 -06:00
David Bolack
8ab91c3eb2
Merge branch 'master' of github.com:dbolacksn/homebrewery-broken
2024-03-06 23:39:12 -06:00
David Bolack
8c773ced9c
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-06 23:38:44 -06:00
David Bolack
e487f9a951
Fix remaining jest issues
2024-03-06 23:27:43 -06:00
David Bolack
eb4ecf853b
Fix Jest issues I was able to understand
2024-03-06 22:50:24 -06:00
David Bolack
54e2deaddc
Merge branch 'master' into brew_themes_user_selection
2024-03-06 19:28:37 -06:00
David Bolack
1ac510af3d
Heroku debug
2024-03-06 19:24:16 -06:00
David Bolack
a666c8def3
Heroku debug
2024-03-06 19:20:16 -06:00
David Bolack
33933ef212
Attempted fix on access
2024-03-06 19:14:16 -06:00
David Bolack
d9dade7181
Fix User Brew display label in metadata editor
2024-03-06 19:04:12 -06:00
David Bolack
87502f4249
Heavy rework for usertheme parents.
2024-03-06 18:55:12 -06:00
Víctor Losada Hernández
4cc2acc9e6
quickfix
2024-03-06 23:12:12 +01:00
Víctor Losada Hernández
f903e97562
back to original links
2024-03-06 23:03:44 +01:00
Víctor Losada Hernández
b57e42be6f
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into fonts-fix
2024-03-06 22:38:00 +01:00
Víctor Losada Hernández
9f95947d16
initial commit
2024-03-06 22:34:44 +01:00
Trevor Buckner
d129fc14c1
Merge pull request #3291 from 5e-Cleric/nav-fixes
...
Small navigation fixes
2024-03-06 15:39:45 -05:00
Trevor Buckner
58422569c9
Extra classes were needed for .recent and .save
...
.save has special styling for the "on" button.
.recent has special styling for the dividers between Edited and Viewed
2024-03-06 15:32:38 -05:00
David Bolack
9adafbd473
more heroku debug
2024-03-06 14:12:13 -06:00
David Bolack
47ea2f6ed7
more heroku debug
2024-03-06 14:04:16 -06:00
David Bolack
e2ba0ec059
more heroku debug
2024-03-06 13:59:36 -06:00
David Bolack
870cbc103d
more heroku debug
2024-03-06 13:57:32 -06:00
David Bolack
dfca664f6e
more heroku debug
2024-03-06 13:53:54 -06:00
David Bolack
00cfd427b1
more heroku debug
2024-03-06 13:47:40 -06:00
David Bolack
e639a32822
more heroku debug
2024-03-06 13:41:58 -06:00
David Bolack
8765bc800d
more heroku debug
2024-03-06 13:38:48 -06:00
David Bolack
1dc73a951e
more heroku debug
2024-03-06 13:35:08 -06:00
David Bolack
317b80bf4d
more heroku debug
2024-03-06 13:20:57 -06:00
David Bolack
2aaae95e89
more heroku debug
2024-03-06 13:16:57 -06:00
David Bolack
0580e45af9
more heroku debug
2024-03-06 13:11:49 -06:00
David Bolack
0dbf6453ac
more heroku debug
2024-03-06 13:04:03 -06:00
David Bolack
695324832c
more heroku debug
2024-03-06 12:56:33 -06:00
David Bolack
ac4c84e7a4
config file fix
2024-03-06 12:44:20 -06:00
Víctor Losada Hernández
f172d02920
Merge branch 'nav-fixes' of https://github.com/5e-Cleric/homebrewery into nav-fixes
2024-03-06 19:43:46 +01:00
Víctor Losada Hernández
dbe60e3ff1
dropdown classes fix
2024-03-06 19:43:44 +01:00
David Bolack
18aa453bb0
Rearrange and leverage getBrew
2024-03-06 12:38:00 -06:00
Víctor Losada Hernández
beaf67c975
initial commit
2024-03-06 19:30:23 +01:00
Trevor Buckner
8e6f0a7dbb
Merge branch 'master' into nav-fixes
2024-03-06 13:24:32 -05:00
Víctor Losada Hernández
b2b276c3a3
classname to new dropdown
2024-03-06 19:21:11 +01:00
Víctor Losada Hernández
7483b4afc6
quickfix
2024-03-06 19:16:48 +01:00
Víctor Losada Hernández
c7a2e84927
no wrapping text
2024-03-06 19:13:35 +01:00
Víctor Losada Hernández
3482330629
adjust to work with overflow
2024-03-06 19:05:58 +01:00
David Bolack
17f78169f2
More debug
2024-03-06 12:03:27 -06:00
Trevor Buckner
a74b556188
Merge pull request #3278 from 5e-Cleric/type-fix-for-stylesheet-import-in-html
...
Add type attribute to all stylesheet import link tags
2024-03-06 12:57:03 -05:00
Víctor Losada Hernández
1721b9087a
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into nav-fixes
2024-03-06 18:55:02 +01:00
Trevor Buckner
c871548877
Merge branch 'master' into type-fix-for-stylesheet-import-in-html
2024-03-06 12:53:04 -05:00
Trevor Buckner
190ecddc2a
Merge pull request #3345 from RKuerten/fixContentsSnippet
...
Updated Table of Contents snippet
2024-03-06 12:45:38 -05:00
Trevor Buckner
0a24ac9f25
Merge pull request #3289 from 5e-Cleric/newFromLocal
...
New Brew from Local file
2024-03-06 12:44:01 -05:00
Trevor Buckner
d8d580c277
Merge branch 'master' into newFromLocal
2024-03-06 12:43:34 -05:00
Trevor Buckner
be08887e50
Merge pull request #3286 from 5e-Cleric/PHB-vs-Blank-theme-management
...
Phb vs Blank theme management
2024-03-06 12:33:26 -05:00
Trevor Buckner
5043313aca
Merge branch 'master' into PHB-vs-Blank-theme-management
2024-03-06 12:32:20 -05:00
Trevor Buckner
83d2a604e1
Clean up some spacing
2024-03-06 12:28:43 -05:00
Víctor Losada Hernández
02509ebc3a
Merge branch 'newFromLocal' of https://github.com/5e-Cleric/homebrewery into newFromLocal
2024-03-06 18:12:23 +01:00
Víctor Losada Hernández
e494899f8b
icons
2024-03-06 18:12:21 +01:00
Víctor Losada Hernández
9f483bba6f
Merge branch 'master' into newFromLocal
2024-03-06 18:09:57 +01:00
Víctor Losada Hernández
f93af38fa6
split-style-and-metadata moved to helpers.js
2024-03-06 18:09:26 +01:00
David Bolack
6f6a06c8c3
More debug
2024-03-06 11:00:43 -06:00
Rodrigo Kuerten
6eecd9cee4
Updated Table of Contents snippet
2024-03-06 13:46:13 -03:00
David Bolack
79a4291153
More debug
2024-03-06 10:37:10 -06:00
David Bolack
a54fb98d4e
Additional debugging
2024-03-06 10:28:09 -06:00
Trevor Buckner
7e847cc139
Merge pull request #3332 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.24.0
...
Bump @babel/plugin-transform-runtime from 7.23.9 to 7.24.0
2024-03-06 11:25:06 -05:00
dependabot[bot]
99daaf5537
Bump @babel/plugin-transform-runtime from 7.23.9 to 7.24.0
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.9 to 7.24.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.0/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-06 16:05:23 +00:00
Trevor Buckner
24421ca4e7
Merge pull request #3331 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.24.0
...
Bump @babel/preset-env from 7.23.9 to 7.24.0
2024-03-06 11:03:34 -05:00
David Bolack
a3549ae694
Merge branch 'master' into brew_themes_user_selection
2024-03-06 09:35:10 -06:00
Víctor Losada Hernández
25945fc0df
getting rid of state as per req
2024-03-06 14:06:57 +01:00
Víctor Losada Hernández
b50353c8c4
rename nav buttons per req
2024-03-06 14:02:09 +01:00
dbolacksn
4f4b43f49d
Merge branch 'naturalcrit:master' into master
2024-03-05 13:56:23 -06:00
dependabot[bot]
cfdc3e6870
Bump @babel/preset-env from 7.23.9 to 7.24.0
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.9 to 7.24.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.0/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 17:40:24 +00:00
Trevor Buckner
f71c3da568
Merge pull request #3333 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.24.0
...
Bump @babel/core from 7.23.9 to 7.24.0
2024-03-05 12:39:36 -05:00
dependabot[bot]
e472465ce7
Bump @babel/core from 7.23.9 to 7.24.0
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.9 to 7.24.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.24.0/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 17:36:12 +00:00
Trevor Buckner
776b6da79f
Merge pull request #3337 from naturalcrit/dependabot/npm_and_yarn/express-4.18.3
...
Bump express from 4.18.2 to 4.18.3
2024-03-05 12:35:10 -05:00
dependabot[bot]
1e4a00ce56
Bump express from 4.18.2 to 4.18.3
...
Bumps [express](https://github.com/expressjs/express ) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/expressjs/express/releases )
- [Changelog](https://github.com/expressjs/express/blob/master/History.md )
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.18.3 )
---
updated-dependencies:
- dependency-name: express
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 17:23:13 +00:00
Trevor Buckner
ed6bca04f5
Merge pull request #3334 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.22.2
...
Bump react-router-dom from 6.22.1 to 6.22.2
2024-03-05 12:22:25 -05:00
dependabot[bot]
dbfc1e7d28
Bump react-router-dom from 6.22.1 to 6.22.2
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.22.1 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 17:19:12 +00:00
Trevor Buckner
cc9ead20b3
Merge pull request #3342 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.34.0
...
Bump eslint-plugin-react from 7.33.2 to 7.34.0
2024-03-05 12:18:26 -05:00
Trevor Buckner
79c89bb621
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-react-7.34.0
2024-03-05 12:14:59 -05:00
dependabot[bot]
cf1617f2a3
Bump eslint-plugin-react from 7.33.2 to 7.34.0
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.33.2 to 7.34.0.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.33.2...v7.34.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 17:10:23 +00:00
Trevor Buckner
7ecca16fd0
Merge pull request #3343 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.2.1
...
Bump mongoose from 8.2.0 to 8.2.1
2024-03-05 12:09:42 -05:00
Víctor Losada Hernández
1e1505c63f
towards a more traditional approach
2024-03-05 08:27:56 +01:00
Víctor Losada Hernández
1bddb38fcc
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into newFromLocal
2024-03-05 08:07:34 +01:00
dependabot[bot]
3314471d73
Bump mongoose from 8.2.0 to 8.2.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.2.0 to 8.2.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.2.0...8.2.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-03-05 03:47:01 +00:00
David Bolack
42c441f534
Merge branch 'master' into brew_themes_user_selection
2024-03-04 16:54:13 -06:00
David Bolack
a957ea37f6
Merge branch 'issue_2994_css_style' of github.com:dbolacksn/homebrewery-broken into issue_2994_css_style
2024-03-04 16:38:50 -06:00
David Bolack
a4d426bc00
Merge branch 'master' into issue_2994_css_style
2024-03-04 16:38:00 -06:00
David Bolack
15f95ddd44
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-04 16:33:15 -06:00
Trevor Buckner
4dd8ad77bb
Merge pull request #3288 from 5e-Cleric/FA-upgrade
...
FA to 6.5.1
2024-03-04 16:58:53 -05:00
Trevor Buckner
9f5a4fb44c
Merge branch 'master' into FA-upgrade
2024-03-04 16:57:59 -05:00
David Bolack
7f16da110f
Merge branch 'master' into Extended_DD
2024-03-04 11:01:49 -06:00
David Bolack
3734c9e71d
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-03-04 09:21:09 -06:00
David Bolack
a924f53320
Merge branch 'master' into brew_themes_user_selection
2024-03-03 22:11:35 -06:00
Víctor Losada Hernández
6b93b1c1e7
Merge pull request #3292 from Gazook89/Combine-Nav-Styling
...
Looks good! thanks @Gazook89 !
2024-03-01 19:44:27 +01:00
Trevor Buckner
3d7780958a
Merge branch 'Combine-Nav-Styling' of https://github.com/Gazook89/homebrewery into pr/3292
2024-03-01 01:31:06 -05:00
Trevor Buckner
59e87697ff
linting
2024-03-01 01:27:46 -05:00
Trevor Buckner
20c088b6de
Merge branch 'master' into Combine-Nav-Styling
2024-03-01 01:26:17 -05:00
Trevor Buckner
50f069e688
Fix some nesting of styles
...
The values from nav.less were mistakenly nested inside each other which was adding too much specificity.
2024-03-01 01:24:50 -05:00
Trevor Buckner
148c243d9f
Merge pull request #3323 from dbolack-ab/fix_subsuper_Highlighting
...
Fix syntax highlighting on sub and superscript
2024-02-29 18:28:03 -05:00
Trevor Buckner
16e4f66b99
Merge branch 'master' into fix_subsuper_Highlighting
2024-02-29 18:27:35 -05:00
Trevor Buckner
774b555a61
Rework to fix 5eCleric's tests
2024-02-29 17:17:38 -05:00
David Bolack
4f90f92b38
Additional theme based error checking.
2024-02-28 15:08:00 -06:00
David Bolack
753b3befad
Fix issue with empty theme ( /faq )
2024-02-28 14:53:40 -06:00
David Bolack
544bc9bd01
Catch bad assumption in unlogged saves
2024-02-28 08:32:15 -06:00
David Bolack
1a467565c1
Merge branch 'master' into brew_themes_user_selection
2024-02-27 21:32:33 -06:00
David Bolack
562daf9b04
Handle some statics
2024-02-27 21:13:22 -06:00
G.Ambatte
5b35d1169d
Merge branch 'experimentalBrewLocking-#3326' of https://github.com/G-Ambatte/homebrewery into experimentalBrewLocking-#3326
2024-02-28 16:02:47 +13:00
G.Ambatte
0d1d3a180d
Handle missing lock property
2024-02-28 16:02:35 +13:00
G.Ambatte
df3db14e8b
Merge branch 'master' into experimentalBrewLocking-#3326
2024-02-28 15:55:01 +13:00
David Bolack
8f15887c03
Cleanup of console logging
2024-02-27 20:51:59 -06:00
David Bolack
7384cdc241
My god it works
2024-02-27 20:20:43 -06:00
David Bolack
56851f2c2d
Edit working - with noise.
2024-02-27 19:33:33 -06:00
David Bolack
50c9d95ce0
WIP trying to debug theme selection.
2024-02-27 17:30:14 -06:00
Víctor Losada Hernández
0310eee685
increase minimum width
2024-02-27 22:18:04 +01:00
Víctor Losada Hernández
c4499fcc26
min-width for elements
2024-02-27 22:12:40 +01:00
Víctor Losada Hernández
1d317788fe
fix undefined class
2024-02-27 22:12:32 +01:00
Víctor Losada Hernández
b5301ff978
requested changes
2024-02-27 21:53:44 +01:00
Víctor Losada Hernández
a027e16636
Merge branch 'pr/3292' into nav-fixes
2024-02-27 21:42:44 +01:00
Víctor Losada Hernández
673a22a571
Merge branch 'master' into nav-fixes
2024-02-27 21:32:03 +01:00
Trevor Buckner
1c7d2740f3
Merge branch 'master' into dependabot/npm_and_yarn/classnames-2.5.1
2024-02-27 15:30:35 -05:00
David Bolack
4f4659b0e2
Cleaned up noise in homebrew.api.js
2024-02-27 13:57:58 -06:00
David Bolack
7b3a1eb4ff
Functional user theme loading though noising console
2024-02-27 13:41:51 -06:00
Trevor Buckner
3778b4c719
Merge pull request #3328 from naturalcrit/dependabot/npm_and_yarn/eslint-8.57.0
...
Bump eslint from 8.56.0 to 8.57.0
2024-02-27 10:39:12 -05:00
Trevor Buckner
3e258332c1
Merge pull request #3330 from RKuerten/removeBGattach
...
Remove background-attachment property from .monster.frame
2024-02-27 10:38:53 -05:00
Rodrigo Kuerten
713865fb40
Remove background-attachment property
2024-02-27 10:21:53 -03:00
G.Ambatte
bc29cddcec
Merge pull request #3165 from G-Ambatte/experimentalTagFiltering-#3164
...
Add tag filtering
2024-02-27 08:49:33 +13:00
G.Ambatte
f9d8344dba
Remove unnecessary function
2024-02-26 21:16:37 +13:00
dependabot[bot]
9d38c937b4
Bump eslint from 8.56.0 to 8.57.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.56.0 to 8.57.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.56.0...v8.57.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-26 03:43:17 +00:00
G.Ambatte
622579bb7d
Merge branch 'master' into experimentalTagFiltering-#3164
2024-02-26 13:12:37 +13:00
G.Ambatte
26263c0bf8
Remove unused function parameter type
2024-02-26 13:01:13 +13:00
David Bolack
05f88dfd00
Extended Definition List cleanup
...
Remove redundant inlineBlock extension
Add missing trim on multiline definitions
Fix editor regex for colon terminated terms.
2024-02-25 09:19:31 -06:00
David Bolack
d1d28acebb
Merge branch 'master' into Extended_DD
2024-02-25 09:15:27 -06:00
David Bolack
84d5b26530
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-02-25 08:34:37 -06:00
Víctor Losada Hernández
16c37d8d76
Merge branch 'master' into Combine-Nav-Styling
2024-02-25 13:12:21 +01:00
G.Ambatte
802da2920b
Initial functionality pass
2024-02-25 22:28:44 +13:00
Víctor Losada Hernández
a608df9cd9
Merge pull request #3325 from RKuerten/new-theme
...
This looks good, merging now, thanks @RKuerten !
2024-02-25 01:03:58 +01:00
Rodrigo Kuerten
254b0852ca
Cleaned up css, added missing variables
2024-02-24 20:57:26 -03:00
Víctor Losada Hernández
8e41755d2a
Merge branch 'master' into Combine-Nav-Styling
2024-02-25 00:06:29 +01:00
Rodrigo Kuerten
36eb250d7a
Merge branch 'master' into new-theme
2024-02-24 20:00:44 -03:00
G.Ambatte
a2b97abb2e
Remove missed console.log debugging lines
2024-02-25 11:47:34 +13:00
Víctor Losada Hernández
0331f5cf5b
Merge branch 'master' into experimentalTagFiltering-#3164
2024-02-24 23:30:14 +01:00
Víctor Losada Hernández
54159513e4
Merge pull request #3197 from G-Ambatte/addDiceFont
...
Add DiceFont support to Homebrewery
2024-02-24 23:26:33 +01:00
Víctor Losada Hernández
99a766d990
Merge branch 'master' into addDiceFont
2024-02-24 23:24:49 +01:00
Rodrigo Kuerten
1ec0cb14ef
Merge branch 'master' into new-theme
2024-02-24 14:42:33 -03:00
Víctor Losada Hernández
387f03db25
Merge branch 'master' into Combine-Nav-Styling
2024-02-24 13:29:08 +01:00
Víctor Losada Hernández
0c20a65999
Merge pull request #3324 from dbolack-ab/Readme_column
...
Add a column break before the Tables header on page 2
2024-02-24 13:04:42 +01:00
Rodrigo Kuerten
da8836ba99
Added new theme
2024-02-23 22:07:28 -03:00
David Bolack
2456432844
Exclude self from brew themes list to prevent circular ref.
2024-02-23 17:12:54 -06:00
David Bolack
bf874c55af
Add a column break before the Tables header on page 2
...
Small formatting fix.
2024-02-23 14:46:13 -06:00
David Bolack
3e66647f9f
Fix @import loading on Chrome.
2024-02-23 14:43:29 -06:00
David Bolack
6d6571be0b
Merge branch 'master' into brew_themes_user_selection
2024-02-23 13:46:56 -06:00
Víctor Losada Hernández
43a76933ab
Merge branch 'master' into experimentalTagFiltering-#3164
2024-02-23 20:23:15 +01:00
Víctor Losada Hernández
ce9013fed2
Merge branch 'master' into addDiceFont
2024-02-23 20:22:45 +01:00
Víctor Losada Hernández
e4632ea340
Merge branch 'master' into Combine-Nav-Styling
2024-02-23 20:20:50 +01:00
Víctor Losada Hernández
f21eaab997
Merge branch 'master' into type-fix-for-stylesheet-import-in-html
2024-02-23 20:19:58 +01:00
Víctor Losada Hernández
f48b9c46fe
Merge branch 'master' into PHB-vs-Blank-theme-management
2024-02-23 20:19:49 +01:00
Víctor Losada Hernández
7d08731094
Merge branch 'master' into newFromLocal
2024-02-23 20:19:33 +01:00
Víctor Losada Hernández
bd97d78195
Merge branch 'master' into nav-fixes
2024-02-23 20:19:18 +01:00
Víctor Losada Hernández
b1a3fcf33c
Merge branch 'master' into FA-upgrade
2024-02-23 20:18:50 +01:00
Víctor Losada Hernández
453656fbeb
Merge branch 'master' into small-fixes,-snippet-uniformity
2024-02-23 18:53:56 +01:00
David Bolack
7d755fe2a3
Fix syntax highlighting on sub and superscript
...
I did not test this very robustly, it seems.
2024-02-23 11:35:57 -06:00
David Bolack
f9307986cd
WIP
...
@import statements are just not working. Uploaded for other eyes.
2024-02-22 23:06:40 -06:00
Trevor Buckner
ba1430c377
Merge pull request #3320 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.2.0
...
Bump mongoose from 8.1.3 to 8.2.0
2024-02-22 23:08:17 -05:00
David Bolack
f60090e5fa
Update Theme Picker to use Brews tagged as a theme
...
This updates the theme picker to include brews tagged as themes owned by
the user.
Some supporting functions were updated. User themes are loaded on /edit
and added to the request.
2024-02-22 21:12:56 -06:00
dependabot[bot]
7698abe70f
Bump mongoose from 8.1.3 to 8.2.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.1.3 to 8.2.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.1.3...8.2.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-23 03:02:05 +00:00
Víctor Losada Hernández
fd58503a77
Merge pull request #3297 from RKuerten/fixMonsterBg
...
Changed background-attachment: fixed on the monster frame
2024-02-22 16:43:10 +01:00
Rodrigo Kuerten
8aa7a26183
Merge branch 'master' into fixMonsterBg
2024-02-22 12:02:14 -03:00
G.Ambatte
ad5ad05b7b
Simplify syntax
2024-02-22 20:02:09 +13:00
G.Ambatte
c0827d6db0
Merge branch 'master' into addDiceFont
2024-02-22 19:55:25 +13:00
G.Ambatte
43209186ee
Remove obsolete styling from tags-container
2024-02-22 19:27:17 +13:00
G.Ambatte
46a0a66fb6
Use currentColor once instead of multiple border-color declarations
2024-02-22 19:20:42 +13:00
G.Ambatte
9e6f7a496e
Merge branch 'master' into experimentalTagFiltering-#3164
2024-02-22 19:16:38 +13:00
Trevor Buckner
94d9e1b08e
Merge pull request #3316 from G-Ambatte/fixSantizeScriptTags-#3315
...
Fix sanitizeScriptTags when content is null
2024-02-22 00:20:35 -05:00
G.Ambatte
087ce4bb90
Merge branch 'master' into experimentalTagFiltering-#3164
2024-02-22 17:37:37 +13:00
G.Ambatte
2c02d4174f
Fix sanitizeScriptTags when content is null
2024-02-22 17:06:02 +13:00
Trevor Buckner
4feeaee7e7
Merge pull request #3307 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.9.0
...
Bump eslint-plugin-jest from 27.6.3 to 27.9.0
2024-02-21 22:02:52 -05:00
Trevor Buckner
5f5185c619
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-jest-27.9.0
2024-02-21 21:53:14 -05:00
Trevor Buckner
3e76307303
Merge pull request #3296 from 5e-Cleric/lang-fix-on-print
...
Fix lang on print
2024-02-21 21:52:59 -05:00
Trevor Buckner
fe3a5f4def
Merge branch 'master' into lang-fix-on-print
2024-02-21 21:52:03 -05:00
Trevor Buckner
5d752f3355
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-jest-27.9.0
2024-02-21 21:49:43 -05:00
Trevor Buckner
8f400236a7
Merge pull request #3314 from naturalcrit/ForceVarMathTo$
...
Variable math requires `$` prefix
2024-02-21 21:42:36 -05:00
Trevor Buckner
8779ee3325
Variable math requires $ prefix
2024-02-21 21:42:03 -05:00
dependabot[bot]
e268858945
Bump eslint-plugin-jest from 27.6.3 to 27.9.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.6.3 to 27.9.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.3...v27.9.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-21 22:31:38 +00:00
Trevor Buckner
0e48f325f2
Merge pull request #3311 from naturalcrit/v3.11.0
...
Up to v3.11.0
2024-02-21 17:30:44 -05:00
Trevor Buckner
7e38271ac6
Up to v3.11.0
2024-02-21 17:30:15 -05:00
Rodrigo Kuerten
ff75afa91f
Merge branch 'master' into fixMonsterBg
2024-02-21 08:46:47 -03:00
David Bolack
ae2bb3a028
Add missing style.css
2024-02-20 23:26:09 -06:00
David Bolack
c319d6bcfa
Consolidate and add theme parent walking
...
This consolidates the style/theme endpoint to a singular method, adds
interpretation of static themes, and allow parent theme recursion.
I am not 100% sure this will order styles correctly.
2024-02-20 23:15:37 -06:00
Trevor Buckner
4866eacd5d
Merge pull request #3306 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.22.1
...
Bump react-router-dom from 6.22.0 to 6.22.1
2024-02-20 23:51:32 -05:00
Trevor Buckner
1386020bbb
Merge pull request #3273 from 5e-Cleric/brew-author-comma-fix
...
brew fix commas
2024-02-20 23:25:23 -05:00
Trevor Buckner
6b7af58e6c
Change span to Fragment; linting
2024-02-20 23:24:43 -05:00
dependabot[bot]
0f1d07d90f
Bump react-router-dom from 6.22.0 to 6.22.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.22.0 to 6.22.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@6.22.1/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-21 04:08:37 +00:00
Trevor Buckner
d5230757b1
Merge pull request #3305 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.1.3
...
Bump mongoose from 8.1.1 to 8.1.3
2024-02-20 23:07:27 -05:00
Trevor Buckner
06825468b4
Merge pull request #3299 from 5e-Cleric/update-popup
...
popup update 3.11
2024-02-20 23:07:05 -05:00
Trevor Buckner
faab60f271
Merge branch 'master' into update-popup
2024-02-20 23:06:33 -05:00
dependabot[bot]
4bed2349a9
Bump mongoose from 8.1.1 to 8.1.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.1.1 to 8.1.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.1.1...8.1.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-21 04:05:02 +00:00
Trevor Buckner
53f1e53fcb
Merge pull request #3199 from naturalcrit/GlobalReflinks
...
Yet another Brew Variables PR
2024-02-20 23:03:53 -05:00
Trevor Buckner
df447d3d4d
typo
2024-02-20 23:01:49 -05:00
Trevor Buckner
e3bf913a80
lint
2024-02-20 23:00:57 -05:00
Trevor Buckner
7bb1f16946
Always render currently-edited page first, so variables update across pages properly
2024-02-20 22:56:37 -05:00
Trevor Buckner
6870fd6d76
Add tests for cross-page behavior and fix related bugs
2024-02-20 22:31:33 -05:00
David Bolack
e2ef9b8122
Report Theme title with CSS
...
This adds a comment/field ( depending on endpoint ) that reports the
name of the Brew being used as a theming source.
2024-02-20 16:44:17 -06:00
Trevor Buckner
9ad1d1f196
remove unused 'parseVarse' variable
2024-02-20 17:05:26 -05:00
Trevor Buckner
969cff61bf
Add one more test that was failing
2024-02-20 17:03:17 -05:00
Trevor Buckner
736f729457
Rename variables
2024-02-20 16:46:49 -05:00
Trevor Buckner
0050e1e294
Added another test for a broken case and fixed; Cleaned up more
2024-02-20 15:37:54 -05:00
Trevor Buckner
f2d1b61a7a
Remove unused variables
2024-02-20 00:04:29 -05:00
Trevor Buckner
1d1fa99b4b
Pass all tests
2024-02-19 23:57:19 -05:00
David Bolack
8e48df5de1
Partial Code coverage for new endpoints
2024-02-18 12:45:14 -06:00
David Bolack
a3b1d7fb7c
Use a brew as a theme, three ways.
...
This has been implemented three different ways to allow for comparison
and discussion
- /api/css/:id : This returns the style frontmatter of the referenced
document as a text/css document.
/api/theme/:id : This returns an object with the reference'd object's
theme and style frontmatter.
/api/csstheme/:id : This returns the stylye frontmatter of the
referenced document as a text/css document and adds the theme as an
@import ( if not using the legacy renderer )
2024-02-17 11:01:21 -06:00
Víctor Losada Hernández
f42cab6e40
suggested changes
2024-02-17 11:51:42 +01:00
Trevor Buckner
bc21abd509
Fix matches inside of code blocks
2024-02-14 11:38:47 -05:00
David Bolack
41d43e84a5
Merge branch 'master' into issue_2994_css_style
2024-02-14 09:42:23 -06:00
Trevor Buckner
72744718cc
Adding some tests
2024-02-13 22:44:57 -05:00
Trevor Buckner
e85a62a05c
Disable default def behavior.
2024-02-13 09:35:55 -05:00
Víctor Losada Hernández
5a68acc0f5
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into update-popup
2024-02-13 14:31:45 +01:00
Víctor Losada Hernández
f51fca74e6
initial commit
2024-02-13 14:27:32 +01:00
Víctor Losada Hernández
fe5a76c0df
fix link href
2024-02-13 10:52:53 +01:00
Trevor Buckner
3bda834ad3
remove console.log
2024-02-13 00:53:34 -05:00
Trevor Buckner
29f0a8e635
Fix code blocks and nested parens.
2024-02-13 00:23:58 -05:00
Trevor Buckner
c035404555
Add exponents via '^'
2024-02-12 11:58:56 -05:00
Trevor Buckner
74ddc71962
Add 'floor()' and 'ceil()' math functions.
2024-02-12 11:57:37 -05:00
Trevor Buckner
1491a1b4ff
Fix Math assignments
2024-02-12 11:54:28 -05:00
Rodrigo Kuerten
6890bab668
Fixed background being fixed on the monster frame
2024-02-12 10:37:52 -03:00
Víctor Losada Hernández
209c237b73
en-US to en
2024-02-12 08:54:00 +01:00
Víctor Losada Hernández
086468d65b
initial commit
2024-02-12 08:12:53 +01:00
Gazook89
323d84974c
Combine nav and navbar styles
...
- moves all the nav.less styling to navbar.less in the `client` directory
- deletes nav.less
- changes the nav.jsx import of styles to navbar.less
- stylelint navbar.less
- added a couple comments about easy future changes.
2024-02-10 22:29:16 -06:00
Víctor Losada Hernández
6365fb9b56
Merge branch 'master' into nav-fixes
2024-02-10 13:05:13 +01:00
Víctor Losada Hernández
19bb9705b6
initial commit
2024-02-09 13:33:41 +01:00
Víctor Losada Hernández
705d170b6e
alert if wrong file, redirect if good
2024-02-09 10:22:55 +01:00
Trevor Buckner
ab54188ba4
Fix small typo
2024-02-09 02:15:53 -05:00
Trevor Buckner
e0b6b95295
Merge pull request #3290 from naturalcrit/PreprocessVars
...
Simplify and clean Vars - Done in preprocessing step now
2024-02-09 02:04:02 -05:00
Trevor Buckner
c7cfade86f
Support () and round in math
2024-02-09 01:59:59 -05:00
Trevor Buckner
e4fa59aae8
Merge branch 'master' into PreprocessVars
2024-02-08 23:13:19 -05:00
Trevor Buckner
35227268cf
Move to preprocessor step
2024-02-08 23:12:06 -05:00
David Bolack
67b11d62ea
Small DD appending mode fix
2024-02-08 19:35:43 -06:00
David Bolack
2b81c26cff
Working, but ugly
2024-02-08 19:23:33 -06:00
Víctor Losada Hernández
32b5bebbc4
full functionality
2024-02-09 00:18:39 +01:00
Trevor Buckner
c27f5d9efa
Merge pull request #3287 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recess-order-4.6.0
...
Bump stylelint-config-recess-order from 4.5.0 to 4.6.0
2024-02-08 10:53:40 -05:00
Víctor Losada Hernández
26a41e6262
FA to 6.5.1
2024-02-08 11:33:11 +01:00
dependabot[bot]
87c9e587a1
Bump stylelint-config-recess-order from 4.5.0 to 4.6.0
...
Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order ) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases )
- [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.5.0...v4.6.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recess-order
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-08 03:54:50 +00:00
David Bolack
bfd3eff6f2
Merge branch 'master' into issue_2994_css_style
2024-02-07 20:34:21 -06:00
David Bolack
f3148ed53c
Fix Syntax Highlighting
...
Update changelog to match PR target shifts.
2024-02-07 20:23:19 -06:00
David Bolack
ea320e0cc4
Merge branch 'master' into Extended_DD
2024-02-07 20:11:57 -06:00
Víctor Losada Hernández
7f8b87bb85
watermark now visible
2024-02-07 22:52:44 +01:00
Víctor Losada Hernández
5e97121e5a
pageNumber to blank
2024-02-07 22:48:32 +01:00
Víctor Losada Hernández
c9fc976c72
counter left
2024-02-07 22:43:43 +01:00
Víctor Losada Hernández
9e8570c19b
page counter rename
2024-02-07 22:42:55 +01:00
Trevor Buckner
ed2d539995
Merge pull request #3282 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.7.0
...
Bump @googleapis/drive from 8.6.0 to 8.7.0
2024-02-07 07:45:44 -05:00
David Bolack
13fbcd0eb1
Improve Regex to permit DTs with a final :
2024-02-06 23:29:59 -06:00
David Bolack
43b9f3d901
Merge branch 'master' into Extended_DD
2024-02-06 22:25:26 -06:00
David Bolack
3ee9fe1c3f
Update tests.
...
Prune no lionger valid cases.
2024-02-06 22:13:44 -06:00
dependabot[bot]
65cc8567a1
Bump @googleapis/drive from 8.6.0 to 8.7.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.6.0 to 8.7.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.6.0...drive-v8.7.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-07 04:12:33 +00:00
Trevor Buckner
dd82f54549
Merge pull request #3283 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.1.3
...
Bump marked-gfm-heading-id from 3.1.2 to 3.1.3
2024-02-06 23:11:44 -05:00
dependabot[bot]
a014056440
Bump marked-gfm-heading-id from 3.1.2 to 3.1.3
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.1.2 to 3.1.3.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.1.2...v3.1.3 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-07 03:58:59 +00:00
Trevor Buckner
c176c38f30
Merge pull request #3280 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.22.0
...
Bump react-router-dom from 6.21.3 to 6.22.0
2024-02-06 22:58:10 -05:00
dependabot[bot]
4c87aed628
Bump react-router-dom from 6.21.3 to 6.22.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.21.3 to 6.22.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-07 03:51:27 +00:00
Trevor Buckner
09f2f96dff
Merge pull request #3285 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recess-order-4.5.0
...
Bump stylelint-config-recess-order from 4.4.0 to 4.5.0
2024-02-06 22:50:26 -05:00
David Bolack
703e207970
I think I have all the desired modes in place.
...
I feel like this is ugly code and maybe there are prettier ways to do
it, but it functions as I *believe* is currently desired.
2024-02-06 21:47:15 -06:00
dependabot[bot]
f075b19a68
Bump stylelint-config-recess-order from 4.4.0 to 4.5.0
...
Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order ) from 4.4.0 to 4.5.0.
- [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases )
- [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.4.0...v4.5.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recess-order
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-02-07 03:42:21 +00:00
David Bolack
283c2b5ae1
Empty Tag multiline input
2024-02-05 21:18:36 -06:00
Víctor Losada Hernández
f1c3507a9f
initial commit
2024-01-31 15:45:27 +01:00
David Bolack
29dc1e0747
Merge branch 'master' into Extended_DD
2024-01-30 18:40:58 -06:00
David Bolack
265e9976b9
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-30 18:40:42 -06:00
dependabot[bot]
70657c16d1
Bump classnames from 2.3.2 to 2.5.1
...
Bumps [classnames](https://github.com/JedWatson/classnames ) from 2.3.2 to 2.5.1.
- [Changelog](https://github.com/JedWatson/classnames/blob/main/HISTORY.md )
- [Commits](https://github.com/JedWatson/classnames/compare/v2.3.2...v2.5.1 )
---
updated-dependencies:
- dependency-name: classnames
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-30 19:30:29 +00:00
Trevor Buckner
7177548c0e
Merge pull request #3276 from naturalcrit/dependabot/npm_and_yarn/marked-11.2.0
...
Bump marked from 11.1.1 to 11.2.0
2024-01-30 14:29:00 -05:00
David Bolack
e1ad05eb3a
Solve regression with monster template.
...
Was not handling "weak" Definition list endings well ( places were it
was \n<something> instead of \n\n.
2024-01-29 23:42:13 -06:00
David Bolack
75c41f4466
Merge branch 'issue_2994_css_style' of github.com:dbolacksn/homebrewery-broken into issue_2994_css_style
2024-01-29 20:18:01 -06:00
David Bolack
85caf0a892
Add fixes to account for no page numbers
...
Clear out manual toggles.
2024-01-29 20:14:52 -06:00
David Bolack
692205b0e6
Merge branch 'master' into issue_2994_css_style
2024-01-29 20:03:24 -06:00
David Bolack
e4324f316d
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-29 20:03:03 -06:00
Trevor Buckner
46140e92fd
Merge branch 'master' into pr/3129
2024-01-29 20:56:48 -05:00
dependabot[bot]
3bc2df0ac5
Bump marked from 11.1.1 to 11.2.0
...
Bumps [marked](https://github.com/markedjs/marked ) from 11.1.1 to 11.2.0.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v11.1.1...v11.2.0 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-29 03:26:17 +00:00
Víctor Losada Hernández
77abab8395
initial commit
2024-01-27 16:58:28 +01:00
Trevor Buckner
37c72d5125
Merge pull request #3267 from dbolacksn/clone_tags
...
Clone a brew's tags when cloning a brew.
2024-01-26 15:00:50 -05:00
Trevor Buckner
602a476b59
Merge branch 'master' into pr/3267
2024-01-26 14:58:42 -05:00
Trevor Buckner
965397733d
Merge pull request #3268 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.9
...
Bump @babel/core from 7.23.7 to 7.23.9
2024-01-26 14:57:12 -05:00
Trevor Buckner
f10868db0b
Merge branch 'master' into dependabot/npm_and_yarn/babel/core-7.23.9
2024-01-26 14:30:38 -05:00
Trevor Buckner
d7a95d3cff
Merge pull request #3269 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.9
...
Bump @babel/preset-env from 7.23.8 to 7.23.9
2024-01-26 14:30:22 -05:00
dependabot[bot]
6eeed49022
Bump @babel/core from 7.23.7 to 7.23.9
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.7 to 7.23.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.9/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-26 16:48:01 +00:00
dependabot[bot]
be96c3a56f
Bump @babel/preset-env from 7.23.8 to 7.23.9
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.8 to 7.23.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.9/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-26 16:46:59 +00:00
Trevor Buckner
57a31f3b71
Merge pull request #3270 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.9
...
Bump @babel/plugin-transform-runtime from 7.23.7 to 7.23.9
2024-01-26 11:46:10 -05:00
David Bolack
7c5955c96f
Merge branch 'master' into clone_tags
2024-01-26 10:40:00 -06:00
David Bolack
8ab273363c
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-26 09:52:42 -06:00
dependabot[bot]
538650bf92
Bump @babel/plugin-transform-runtime from 7.23.7 to 7.23.9
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.7 to 7.23.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.9/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-26 03:22:04 +00:00
David Bolack
54921a998a
Clone tags along with the rest of the brew
2024-01-25 19:51:03 -06:00
Trevor Buckner
da11089fff
Merge pull request #3265 from 5e-Cleric/brewItem-update
...
Easy enough. Thanks @5e-Cleric ! 🎉
2024-01-25 16:36:46 -05:00
Trevor Buckner
0243d138ff
Merge branch 'master' into pr/3265
2024-01-25 16:30:43 -05:00
Trevor Buckner
4c8a5baee5
Merge pull request #3264 from 5e-Cleric/admin-fix
...
Thanks @5e-Cleric ! ⭐ 💯 🔥
2024-01-25 16:29:37 -05:00
Trevor Buckner
e5acbfed3a
Linting and small tweaks
2024-01-25 16:27:10 -05:00
David Bolack
0163e22567
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-25 13:58:04 -06:00
Trevor Buckner
b503b8fc9b
Merge branch 'master' into pr/3264
2024-01-25 14:35:23 -05:00
Trevor Buckner
3243e4d56c
Merge pull request #3266 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.1.1
...
Bump mongoose from 8.1.0 to 8.1.1
2024-01-25 14:33:46 -05:00
David Bolack
fbc164a9b8
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-25 13:10:08 -06:00
David Bolack
02e6a3df99
Merge branch 'master' into issue_2994_css_style
2024-01-25 00:17:13 -06:00
dependabot[bot]
78cf95fbb1
Bump mongoose from 8.1.0 to 8.1.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.1.0 to 8.1.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.1.0...8.1.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-25 03:48:29 +00:00
Víctor Losada Hernández
d2306b70a9
quick fix based on review, textBin
2024-01-24 23:24:51 +01:00
Víctor Losada Hernández
43180c314f
Merge branch 'master' into brewItem-update
2024-01-24 23:11:18 +01:00
Víctor Losada Hernández
f47c2dcb56
style fix
2024-01-24 23:07:53 +01:00
Víctor Losada Hernández
a4ea1612c1
tag count in title, and authors to links
2024-01-24 23:05:50 +01:00
Víctor Losada Hernández
8b6517eb8d
more callback errors, and cloning queries
2024-01-24 22:49:14 +01:00
David Bolack
b8ee696b69
Add manual exclusion classes for ToC exclusion.
2024-01-24 15:42:22 -06:00
Víctor Losada Hernández
067a7cd507
admin fixes, the rest( i think)
2024-01-24 22:20:01 +01:00
Víctor Losada Hernández
0243b5f491
inital commit
2024-01-23 08:09:17 +01:00
Trevor Buckner
31c7fd12b9
Merge pull request #3241 from naturalcrit/dependabot/npm_and_yarn/marked-11.1.1
...
Bump marked from 5.1.1 to 11.1.1
2024-01-22 19:29:55 -05:00
Trevor Buckner
7b8aaa408d
Merge branch 'master' into dependabot/npm_and_yarn/marked-11.1.1
2024-01-22 18:03:57 -05:00
Trevor Buckner
1c65ee150b
relocate renderer.link
2024-01-22 17:56:40 -05:00
Trevor Buckner
b0cfeaa782
Allow Babel to transpile Marked
...
Marked now only supports ES6. Needs to be transpiled by us to support older browsers.
2024-01-22 17:45:00 -05:00
Trevor Buckner
84de560083
Initial commit
2024-01-22 16:00:21 -05:00
David Bolack
26c4b1afa6
Add toggle-on classes.
2024-01-21 08:58:14 -06:00
David Bolack
622827efda
Fix Exclusion examination
2024-01-20 20:47:27 -06:00
David Bolack
854c21639a
CSS based ToC exclusion system
...
either I am building the lookup incorrectly or Chrome is not letting me
see variables via computedStyles.
2024-01-20 11:58:17 -06:00
Víctor Losada Hernández
2b1b0acefc
Merge branch 'master' into experimentalTagFiltering-#3164
2024-01-20 14:50:41 +01:00
David Bolack
8fc6047127
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-19 19:01:39 -06:00
Louis David Bolack
7782e200af
Merge branch 'master' into Extended_DD
2024-01-19 18:49:24 -06:00
Víctor Losada Hernández
62e679571e
Merge pull request #3259 from 5e-Cleric/new-page-in-new-tab
...
New page in new tab
2024-01-19 18:31:43 +01:00
Víctor Losada Hernández
f32c52a460
Merge branch 'master' into new-page-in-new-tab
2024-01-19 18:25:57 +01:00
Víctor Losada Hernández
edbe8cdace
initial commit
2024-01-19 18:17:03 +01:00
Trevor Buckner
9e4344de83
Merge branch 'master' into GlobalReflinks
2024-01-19 00:13:02 -05:00
Trevor Buckner
760269a6e1
Fix math and inline defs getting lowercased
2024-01-19 00:11:52 -05:00
dependabot[bot]
e53e00713d
Bump marked from 5.1.1 to 11.1.1
...
Bumps [marked](https://github.com/markedjs/marked ) from 5.1.1 to 11.1.1.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v5.1.1...v11.1.1 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-19 04:59:48 +00:00
David Bolack
faba9f1616
Merge branch 'master' into Extended_DD
2024-01-18 22:59:22 -06:00
David Bolack
6beee49ebc
Merge branch 'master' of github.com:naturalcrit/homebrewery
2024-01-18 22:58:58 -06:00
Trevor Buckner
eaf3c7978d
Merge pull request #3256 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.21.3
...
Bump react-router-dom from 6.21.2 to 6.21.3
2024-01-18 23:58:23 -05:00
dependabot[bot]
d36e052478
Bump react-router-dom from 6.21.2 to 6.21.3
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.21.2 to 6.21.3.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.3/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-19 03:08:19 +00:00
Trevor Buckner
099ea08bd4
Merge pull request #3255 from naturalcrit/MoreSpecificSaveErrorPopups
...
Add error popups for "Out of Google Drive Storage" and "Not logged in to edit"
2024-01-18 17:25:04 -05:00
Trevor Buckner
b0ea34cc3f
Add custom error messages.
2024-01-18 17:20:31 -05:00
Trevor Buckner
a241813b8d
Merge pull request #3118 from G-Ambatte/separateApiErrors-#2975
...
Identify API errors and send error response
2024-01-18 15:36:10 -05:00
Trevor Buckner
de27437148
Merge branch 'master' into separateApiErrors-#2975
2024-01-18 15:32:16 -05:00
Víctor Losada Hernández
79e8dfec18
Merge branch 'master' into GlobalReflinks
2024-01-18 16:55:21 +01:00
David Bolack
0c010a0a87
Revert "WIP"
...
This reverts commit 67a4391dcb .
2024-01-18 09:51:17 -06:00
David Bolack
0c6c9fce4d
Revert "Simple Underline token."
...
This reverts commit 04187cf769 .
2024-01-18 09:51:14 -06:00
David Bolack
ac9fc720f7
Revert "A better regex for underlining."
...
This reverts commit a88b256b6c .
2024-01-18 09:51:11 -06:00
David Bolack
8b31966c2b
Revert "Remove stray console.logs."
...
This reverts commit 1861c7db69 .
2024-01-18 09:51:07 -06:00
Víctor Losada Hernández
76d966f17d
Merge pull request #3248 from 5e-Cleric/small-phb-fixes
...
Fix italicized parentheses in class feature
2024-01-18 13:38:50 +01:00
Víctor Losada Hernández
d0d8b268d4
Merge branch 'master' into small-phb-fixes
2024-01-18 13:22:49 +01:00
David Bolack
8bd8f0fc37
Merge remote-tracking branch 'origin/master'
2024-01-17 17:20:23 -06:00
Trevor Buckner
a2acf3be0e
Merge pull request #3244 from Gazook89/theme-selector-styling
...
Theme Selector Z-index issue
2024-01-17 17:21:32 -05:00
Trevor Buckner
844a3c19ec
Merge branch 'master' into theme-selector-styling
2024-01-17 17:21:21 -05:00
Trevor Buckner
877c2e365f
Merge pull request #3245 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.6.3
...
Bump eslint-plugin-jest from 27.6.2 to 27.6.3
2024-01-17 17:20:24 -05:00
Trevor Buckner
81c7950ad1
Merge branch 'master' into dependabot/npm_and_yarn/eslint-plugin-jest-27.6.3
2024-01-17 14:28:43 -05:00
Trevor Buckner
7b8e3da90a
Merge pull request #3250 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.1.0
...
Bump mongoose from 8.0.4 to 8.1.0
2024-01-17 14:28:26 -05:00
Trevor Buckner
eef3d7738e
Merge branch 'master' into separateApiErrors-#2975
2024-01-17 14:11:13 -05:00
dependabot[bot]
b8ca837c02
Bump eslint-plugin-jest from 27.6.2 to 27.6.3
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.6.2 to 27.6.3.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.2...v27.6.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-17 19:10:57 +00:00
dependabot[bot]
1fc3573087
Bump mongoose from 8.0.4 to 8.1.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.0.4 to 8.1.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.0.4...8.1.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-17 19:10:35 +00:00
Trevor Buckner
5ab89b2583
Merge pull request #3251 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.6.0
...
Bump @googleapis/drive from 8.5.0 to 8.6.0
2024-01-17 14:09:42 -05:00
dependabot[bot]
539cd1d2b9
Bump @googleapis/drive from 8.5.0 to 8.6.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.5.0 to 8.6.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.5.0...drive-v8.6.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-17 03:45:33 +00:00
G.Ambatte
c930ae87f4
Merge branch 'master' into addDiceFont
2024-01-17 07:06:15 +13:00
Víctor Losada Hernández
4424a331d5
first commit
2024-01-16 18:38:38 +01:00
David Bolack
c747c5577e
Add PANdoc style lists ( using :: not : )
...
Includes new tests and fixes broken old tests
2024-01-16 02:01:55 -06:00
David Bolack
ce8cbba441
Merge branch 'master' into Extended_DD
2024-01-16 00:29:29 -06:00
David Bolack
c0cabbb563
Move Credits snippet to Blank
2024-01-15 21:35:19 -06:00
G.Ambatte
e56ff93db1
Add underline on hover to link in credit
2024-01-15 21:34:24 -06:00
G.Ambatte
033776168e
Change the text to include URL link
2024-01-15 21:34:23 -06:00
G.Ambatte
d0ccc4a15a
Capitalize C in NaturalCrit.com
2024-01-15 21:34:19 -06:00
G.Ambatte
2f383d59b6
Add HB Credit snippet
2024-01-15 21:34:18 -06:00
G.Ambatte
c9c5176f1b
Add Credits styling to 5ePHB theme
2024-01-15 21:34:17 -06:00
G.Ambatte
fe0cfcb2b6
New file was unnecessary
2024-01-15 21:34:16 -06:00
G.Ambatte
0470d13ae0
Add optimized NC logo
2024-01-15 21:34:15 -06:00
Trevor Buckner
c4defb7b3f
Merge pull request #3246 from naturalcrit/dependabot/npm_and_yarn/supertest-6.3.4
...
Bump supertest from 6.3.3 to 6.3.4
2024-01-15 21:13:35 -05:00
dependabot[bot]
c1e17bb6aa
Bump supertest from 6.3.3 to 6.3.4
...
Bumps [supertest](https://github.com/ladjs/supertest ) from 6.3.3 to 6.3.4.
- [Release notes](https://github.com/ladjs/supertest/releases )
- [Commits](https://github.com/ladjs/supertest/compare/v6.3.3...v6.3.4 )
---
updated-dependencies:
- dependency-name: supertest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-15 03:52:38 +00:00
David Bolack
d09dc11f5f
The remainder of the tests
2024-01-14 13:38:01 -06:00
David Bolack
4c2211c428
Updated rendering to follow input line breaks
...
Updated and additional tests.
2024-01-14 13:30:52 -06:00
David Bolack
d076d6c719
Update tests for previous changes.
2024-01-13 18:58:59 -06:00
Gazook89
d648bacd26
Merge branch 'master' into theme-selector-styling
2024-01-13 15:28:51 -06:00
Gazook89
1ca5ba1086
Merge branch 'theme-selector-styling' of https://github.com/Gazook89/homebrewery into theme-selector-styling
2024-01-13 15:19:40 -06:00
Gazook89
7c28f60e0a
fix z-index layering issue
2024-01-13 15:19:38 -06:00
David Bolack
20b76bdead
Fix issue when pattern matches a DD without DT
...
```
Test
::One
```
WOuld previously break the browser.
2024-01-13 11:55:43 -06:00
Trevor Buckner
2fd2ccfe14
Tweak Font snippets to have ABC
2024-01-12 11:59:16 -05:00
Trevor Buckner
69308cfd8b
Merge pull request #3242 from naturalcrit/stylelint-Snippetbar.less
...
Lint snippetbar.less
2024-01-12 11:58:39 -05:00
Trevor Buckner
ccc1895304
Lint snippetbar.less
2024-01-12 11:57:34 -05:00
Trevor Buckner
05a0d80c1b
Merge pull request #3203 from 5e-Cleric/font-snippets
...
fonts as snippets
2024-01-12 11:48:26 -05:00
Trevor Buckner
2ea65de0c0
Merge branch 'master' into pr/3203
2024-01-12 11:45:55 -05:00
Trevor Buckner
742798ad79
Fixing merge issues
2024-01-12 11:41:08 -05:00
Trevor Buckner
f088fc49f3
Start fixing merge conflicts
2024-01-12 11:37:34 -05:00
Trevor Buckner
b837ac5d6b
Merge pull request #3240 from naturalcrit/dependabot/npm_and_yarn/marked-smartypants-lite-1.0.2
...
Bump marked-smartypants-lite from 1.0.1 to 1.0.2
2024-01-11 23:03:26 -05:00
Trevor Buckner
64af24f0f4
Merge pull request #3239 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.21.2
...
Bump react-router-dom from 6.21.1 to 6.21.2
2024-01-11 23:03:13 -05:00
dependabot[bot]
5abb1db512
Bump marked-smartypants-lite from 1.0.1 to 1.0.2
...
Bumps [marked-smartypants-lite](https://github.com/calculuschild/marked-smartypants-lite ) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/calculuschild/marked-smartypants-lite/releases )
- [Changelog](https://github.com/calculuschild/marked-smartypants-lite/blob/main/release.config.cjs )
- [Commits](https://github.com/calculuschild/marked-smartypants-lite/compare/v1.0.1...v1.0.2 )
---
updated-dependencies:
- dependency-name: marked-smartypants-lite
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-12 03:41:27 +00:00
dependabot[bot]
f1133b9c33
Bump react-router-dom from 6.21.1 to 6.21.2
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.21.1 to 6.21.2.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.2/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-12 03:40:45 +00:00
Víctor Losada Hernández
c73d02c550
Requested changes
2024-01-11 22:19:04 +01:00
Trevor Buckner
f1d26cc0c0
Merge pull request #3237 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.6.2
...
Bump eslint-plugin-jest from 27.6.1 to 27.6.2
2024-01-11 12:14:00 -05:00
dependabot[bot]
077d699f0b
Bump eslint-plugin-jest from 27.6.1 to 27.6.2
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.6.1 to 27.6.2.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.1...v27.6.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-11 03:01:28 +00:00
Trevor Buckner
2ed8614642
Merge pull request #3195 from naturalcrit/dependabot/npm_and_yarn/eslint-8.56.0
...
Bump eslint from 8.55.0 to 8.56.0
2024-01-10 15:10:12 -05:00
Trevor Buckner
9834fcb97f
Merge pull request #3200 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.21.1
...
Bump react-router-dom from 6.21.0 to 6.21.1
2024-01-10 15:09:58 -05:00
Trevor Buckner
347393520d
Merge pull request #3172 from 5e-Cleric/Elderberry-icon-font
...
Eldeberry Inn Icon font to HB
2024-01-10 14:59:57 -05:00
Víctor Losada Hernández
e65e12ff6e
translate removal
2024-01-10 20:24:43 +01:00
Trevor Buckner
4dfe1a0914
Merge pull request #3202 from Gazook89/theme-selector-styling
...
Improve Theme selector styling
2024-01-10 14:12:01 -05:00
Trevor Buckner
1a1acec2f3
Merge branch 'master' into theme-selector-styling
2024-01-10 14:11:40 -05:00
Víctor Losada Hernández
e6276a0c7b
new version of the font
2024-01-10 20:04:30 +01:00
Trevor Buckner
84a0c43745
Merge pull request #3221 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.7
...
Bump @babel/plugin-transform-runtime from 7.23.6 to 7.23.7
2024-01-10 11:33:35 -05:00
Trevor Buckner
baed640a3d
Merge pull request #3233 from naturalcrit/FixPageDeletion
...
Fix Page Deletion issue
2024-01-10 11:32:17 -05:00
G.Ambatte
9621a69b7d
Merge branch 'master' into addDiceFont
2024-01-10 21:31:16 +13:00
Trevor Buckner
7d6851572f
Merge pull request #3193 from G-Ambatte/fixMustacheBlocks
...
MustacheDivs do not account for prefixed spaces when generating text
2024-01-09 22:36:49 -05:00
Trevor Buckner
3e2ec7cd36
Merge pull request #3235 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.0.4
...
Bump mongoose from 8.0.3 to 8.0.4
2024-01-09 22:34:24 -05:00
Trevor Buckner
0ac88bd84a
Fix $[var]:() - Must have at least one char inside ( )
2024-01-09 22:29:30 -05:00
dependabot[bot]
db3f9a45ad
Bump mongoose from 8.0.3 to 8.0.4
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.0.3 to 8.0.4.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.0.3...8.0.4 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-10 03:28:03 +00:00
Trevor Buckner
8fc2737670
Merge pull request #3215 from 5e-Cleric/Darkbrewery-color-fix
...
Color simplification and Darkbrewery snippet color fix
2024-01-09 22:21:33 -05:00
dependabot[bot]
0c2e4ce20b
Bump @babel/plugin-transform-runtime from 7.23.6 to 7.23.7
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.6 to 7.23.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.7/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-10 03:21:14 +00:00
Trevor Buckner
62948b2838
Merge pull request #3213 from naturalcrit/dependabot/npm_and_yarn/moment-2.30.1
...
Bump moment from 2.29.4 to 2.30.1
2024-01-09 22:20:38 -05:00
Trevor Buckner
3dfb3a9738
Merge pull request #3230 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.8
...
Bump @babel/preset-env from 7.23.7 to 7.23.8
2024-01-09 22:20:00 -05:00
Trevor Buckner
42c1bece65
Also edit currently selected page
2024-01-09 22:19:09 -05:00
Trevor Buckner
448c12cc91
Truncate extra pages when page count is edited.
2024-01-09 17:10:03 -05:00
Trevor Buckner
56c82f8793
Merge pull request #3204 from 5e-Cleric/fix-page-size-override
...
quick fix page size override
2024-01-09 16:52:09 -05:00
Víctor Losada Hernández
84b0407f74
contain page size quick fix
2024-01-09 20:36:34 +01:00
Trevor Buckner
90977521df
Merge branch 'master' into GlobalReflinks
2024-01-09 13:53:09 -05:00
Trevor Buckner
09a52bc7cb
Merge pull request #3232 from naturalcrit/CleanupVarsCode
...
Added hoisting, math, fixed several bugs
2024-01-09 13:51:03 -05:00
Trevor Buckner
6ef80eed7f
All features working...?
2024-01-09 13:28:35 -05:00
dependabot[bot]
ad1795258b
Bump @babel/preset-env from 7.23.7 to 7.23.8
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.7 to 7.23.8.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-09 03:03:20 +00:00
David Bolack
993ae295af
Update editor pattern match for DLs
2024-01-07 15:40:05 -06:00
dependabot[bot]
78c26ab1a3
Bump eslint from 8.55.0 to 8.56.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.55.0 to 8.56.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.55.0...v8.56.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-06 04:17:52 +00:00
Trevor Buckner
eb669e6eca
Merge pull request #3223 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.7
...
Bump @babel/preset-env from 7.23.6 to 7.23.7
2024-01-05 23:16:42 -05:00
Trevor Buckner
17355012fb
Merge pull request #3225 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.6.1
...
Bump eslint-plugin-jest from 27.6.0 to 27.6.1
2024-01-05 23:16:37 -05:00
Trevor Buckner
eae593ce90
Merge pull request #3228 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.5.0
...
Bump @googleapis/drive from 8.4.0 to 8.5.0
2024-01-05 23:16:31 -05:00
Trevor Buckner
7a8a6480de
Merge pull request #3220 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.7
...
Bump @babel/core from 7.23.6 to 7.23.7
2024-01-05 23:16:24 -05:00
dependabot[bot]
d0dd61a25c
Bump @googleapis/drive from 8.4.0 to 8.5.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.4.0 to 8.5.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.4.0...drive-v8.5.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-05 03:39:39 +00:00
dependabot[bot]
dbf0559f95
Bump eslint-plugin-jest from 27.6.0 to 27.6.1
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.6.0 to 27.6.1.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.6.0...v27.6.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-02 03:57:38 +00:00
dependabot[bot]
8e88b881fc
Bump @babel/preset-env from 7.23.6 to 7.23.7
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.6 to 7.23.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.7/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-01 03:21:35 +00:00
dependabot[bot]
c722e0af39
Bump @babel/core from 7.23.6 to 7.23.7
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.6 to 7.23.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.7/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-01-01 03:20:46 +00:00
Víctor Losada Hernández
6dcdc1b685
font to icon
2023-12-29 12:13:13 +01:00
Víctor Losada Hernández
76d17baf7e
divider color to currentColor keyword
2023-12-28 17:31:06 +01:00
Víctor Losada Hernández
c97e2be9d5
color simplification and darkbrewery snippet color fix
2023-12-28 17:27:22 +01:00
Víctor Losada Hernández
229acbfcd1
title as snippet.name
2023-12-28 12:25:07 +01:00
dependabot[bot]
2cb216ed7b
Bump moment from 2.29.4 to 2.30.1
...
Bumps [moment](https://github.com/moment/moment ) from 2.29.4 to 2.30.1.
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/moment/moment/compare/2.29.4...2.30.1 )
---
updated-dependencies:
- dependency-name: moment
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-28 03:49:49 +00:00
Gazook89
8674bc9da2
change gray to #999
2023-12-23 20:49:59 -06:00
Víctor Losada Hernández
199e049871
fix column-gap in listpage
2023-12-23 23:49:44 +01:00
Víctor Losada Hernández
31f18ef3d5
add blank theme to listpage
2023-12-23 23:49:30 +01:00
Víctor Losada Hernández
9db55c4dff
fix piage size override
2023-12-23 20:43:39 +01:00
Víctor Losada Hernández
e2ac6c9b6b
fonts as snippets
2023-12-23 12:40:56 +01:00
Gazook89
407c35d9f7
switch to gray 'active' color
2023-12-22 23:40:29 -06:00
Gazook89
8575d72f6e
add e.target check to prevent dismissal of select menu
2023-12-22 23:36:46 -06:00
Gazook89
7b8e398891
improve simple styling on theme selector. nest inside toggle.
2023-12-22 22:58:13 -06:00
Louis David Bolack
dfd5b228c2
Merge branch 'master' into Extended_DD
2023-12-21 22:08:30 -06:00
dependabot[bot]
89c5c3f255
Bump react-router-dom from 6.21.0 to 6.21.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.21.0 to 6.21.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-22 03:05:24 +00:00
Trevor Buckner
4dd58aaad3
Ugly ugly initial commit
2023-12-21 17:13:13 -05:00
David Bolack
96d973528c
Updated and reworked to handle more definition*
...
Updated to allow multiple definition terms and definitions per term
<Term>::<definition>
<Term>::<definition1>::<definition2>
::<definition3>
```
**Example** ::
::V3 uses HTML *definition lists* to create "lists" with hanging indents.
::Three
I'm a term::Four
**<u>Hello</u>**::I\'m a different
::List
:
```
2023-12-20 22:57:37 -06:00
Trevor Buckner
3a4de13551
split renderer into steps
2023-12-19 15:57:32 -05:00
Víctor Losada Hernández
a65c24bebf
font-size and position fix for uniformity with FA
2023-12-19 21:50:10 +01:00
G.Ambatte
7dfc857217
Add DiceFont license file
2023-12-19 17:48:23 +13:00
G.Ambatte
d5980cba89
Initial DiceFont commit
2023-12-19 17:44:43 +13:00
G.Ambatte
9ed32527a6
Account for prefixed spaces when generating text
2023-12-17 15:47:17 +13:00
Víctor Losada Hernández
62982f86a1
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into Elderberry-icon-font
2023-12-16 16:55:23 +01:00
Trevor Buckner
985a9843f2
Merge pull request #3191 from 5e-Cleric/Navigator-node-error-fix
...
Navigator Node Error Fix
2023-12-16 10:55:10 -05:00
Víctor Losada Hernández
3bbcb1b6fb
Merge branch 'master' of https://github.com/5e-Cleric/homebrewery into Navigator-node-error-fix
2023-12-16 16:53:18 +01:00
Víctor Losada Hernández
9da203d204
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-12-16 16:52:09 +01:00
Víctor Losada Hernández
212b3f7e05
full fix
2023-12-16 16:49:13 +01:00
Víctor Losada Hernández
7a06fe386d
navigator to window
2023-12-14 23:44:45 +01:00
Víctor Losada Hernández
4580217410
Merge branch 'Elderberry-icon-font' of https://github.com/5e-Cleric/homebrewery into Elderberry-icon-font
2023-12-14 23:38:40 +01:00
Víctor Losada Hernández
e82ba8cb7a
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into Elderberry-icon-font
2023-12-14 23:38:15 +01:00
Trevor Buckner
636f10cb41
stylelint
2023-12-14 16:57:26 -05:00
Trevor Buckner
d6eaa812b1
Merge pull request #3066 from 5e-Cleric/single-quote-inline-style
...
Single Quote in in-line styles
2023-12-14 16:47:18 -05:00
Trevor Buckner
507f170720
Merge branch 'master' into pr/3066
2023-12-14 16:45:57 -05:00
Trevor Buckner
faaf4207b4
Merge pull request #3187 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.21.0
...
Bump react-router-dom from 6.20.1 to 6.21.0
2023-12-14 16:24:49 -05:00
Trevor Buckner
688377ce0b
Fix failing Markdown tests
2023-12-14 16:24:23 -05:00
Trevor Buckner
8cf57dbc72
Merge branch 'master' into pr/3066
2023-12-14 15:01:28 -05:00
Trevor Buckner
12012a2a5b
Merge pull request #3131 from dbolack-ab/Issue_1488
...
Add arbitrary tag attribute assignment in mustaches
2023-12-14 14:53:50 -05:00
Trevor Buckner
9b59f47536
Simplify Attributes parsing logic
2023-12-14 13:58:38 -05:00
Trevor Buckner
90b4e47861
Fix ' ' removed from processStyleTags regex
...
Removes the case of "empty properties" that needed `.trim()`
2023-12-14 13:47:36 -05:00
Trevor Buckner
ef00231c5b
Move tests to the correct section
2023-12-14 13:46:44 -05:00
Trevor Buckner
c39653bc69
Merge branch 'master' into pr/3131
2023-12-14 12:24:48 -05:00
Trevor Buckner
83faa86063
Merge pull request #3189 from naturalcrit/FixMarkdownTests
...
Make a lot of Markdown tests pass
2023-12-14 12:22:11 -05:00
Trevor Buckner
af20d0b1c2
Make a lot of Markdown tests pass
2023-12-14 12:20:50 -05:00
David Bolack
1861c7db69
Remove stray console.logs.
2023-12-13 21:59:02 -06:00
David Bolack
a88b256b6c
A better regex for underlining.
2023-12-13 21:47:55 -06:00
dependabot[bot]
40542e9bec
Bump react-router-dom from 6.20.1 to 6.21.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.20.1 to 6.21.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-14 03:46:17 +00:00
David Bolack
04187cf769
Simple Underline token.
...
Overrides __
2023-12-13 17:37:05 -06:00
David Bolack
67a4391dcb
WIP
2023-12-13 15:57:00 -06:00
Trevor Buckner
3784e0f583
Merge branch 'master' into pr/3131
2023-12-13 16:55:19 -05:00
Trevor Buckner
df33713f82
Merge branch 'master' into pr/3066
2023-12-13 16:46:35 -05:00
Trevor Buckner
c4ba6381f2
Merge pull request #3180 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.6
...
Bump @babel/core from 7.23.5 to 7.23.6
2023-12-13 16:39:57 -05:00
Trevor Buckner
547daf6499
Merge pull request #3179 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.6
...
Bump @babel/preset-env from 7.23.5 to 7.23.6
2023-12-13 16:39:49 -05:00
dependabot[bot]
649e225359
Bump @babel/preset-env from 7.23.5 to 7.23.6
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.5 to 7.23.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.6/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-13 20:51:54 +00:00
dependabot[bot]
35bf26feae
Bump @babel/core from 7.23.5 to 7.23.6
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.5 to 7.23.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.6/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-13 20:51:34 +00:00
Trevor Buckner
481bab9463
Merge pull request #3181 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.6
...
Bump @babel/plugin-transform-runtime from 7.23.4 to 7.23.6
2023-12-13 15:50:23 -05:00
dependabot[bot]
a0e2997a40
Bump @babel/plugin-transform-runtime from 7.23.4 to 7.23.6
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.4 to 7.23.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.6/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-12 03:35:53 +00:00
Trevor Buckner
74c4f4fe52
Merge pull request #3078 from 5e-Cleric/clear-invalid-or-unused-css
...
Clear invalid CSS from 5ePHB/style.less
2023-12-11 16:39:57 -05:00
Trevor Buckner
7c9513f377
Lint
2023-12-11 16:29:16 -05:00
Víctor Losada Hernández
c10be139c9
redundant font-weight removed
2023-12-11 22:09:08 +01:00
Víctor Losada Hernández
ee4921f02c
uncaught styles
2023-12-11 22:08:03 +01:00
Trevor Buckner
f5f6137a4d
Lint
2023-12-11 15:48:58 -05:00
Trevor Buckner
0775f9ee1b
Restore padding to code blocks
2023-12-11 15:45:39 -05:00
Trevor Buckner
75ed555de1
Merge branch 'master' into pr/3078
2023-12-11 15:13:39 -05:00
Trevor Buckner
e7d0741139
Merge pull request #3178 from naturalcrit/lintBlankTheme
...
Lint Blank style.less to match PHB format
2023-12-11 15:13:07 -05:00
Trevor Buckner
c69de1036f
Lint Blank style.less to match PHB format
2023-12-11 15:12:40 -05:00
Trevor Buckner
7d115c970a
Merge pull request #3176 from naturalcrit/dependabot/npm_and_yarn/marked-extended-tables-1.0.8
...
Bump marked-extended-tables from 1.0.7 to 1.0.8
2023-12-11 14:12:30 -05:00
Trevor Buckner
852aa8d289
Merge pull request #3174 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.0.3
...
Bump mongoose from 8.0.2 to 8.0.3
2023-12-11 14:12:22 -05:00
dependabot[bot]
ae974b270d
Bump marked-extended-tables from 1.0.7 to 1.0.8
...
Bumps [marked-extended-tables](https://github.com/calculuschild/marked-extended-tables ) from 1.0.7 to 1.0.8.
- [Release notes](https://github.com/calculuschild/marked-extended-tables/releases )
- [Changelog](https://github.com/calculuschild/marked-extended-tables/blob/main/release.config.cjs )
- [Commits](https://github.com/calculuschild/marked-extended-tables/compare/v1.0.7...v1.0.8 )
---
updated-dependencies:
- dependency-name: marked-extended-tables
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-11 03:42:57 +00:00
G.Ambatte
0a1c04d003
Merge branch 'master' into experimentalTagFiltering-#3164
2023-12-09 22:33:21 +13:00
dependabot[bot]
ef10b71e56
Bump mongoose from 8.0.2 to 8.0.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.0.2 to 8.0.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.0.2...8.0.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-08 03:44:10 +00:00
Trevor Buckner
5bfd0dd537
Merge pull request #3074 from G-Ambatte/addCreditsSnippet-#283
...
Add basic Homebrewery credits snippet
2023-12-07 22:33:41 -05:00
Trevor Buckner
05e56221f4
Small tweaks
2023-12-07 22:32:33 -05:00
Víctor Losada Hernández
5c5230e64e
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into clear-invalid-or-unused-css
2023-12-07 21:32:40 +01:00
David Bolack
769f636db2
Small fix and test updates
...
Discovered that classes ( and possibly other splits could end up with an
empty/null member that still gets joined so I added a trim to the end of
all the joins in processStyleTags.
Added tests that SHOULD test for bloc-level and inline-span moustaches
with added attributes ( a=b )
2023-12-06 17:48:51 -06:00
David Bolack
eeba037244
Merge branch 'master' into Extended_DD
2023-12-06 17:10:18 -06:00
David Bolack
688eca05e1
Update Regex pattern to be consistant.
2023-12-06 16:59:53 -06:00
David Bolack
4c48992331
Merge branch 'master' into Issue_1488
2023-12-06 16:56:43 -06:00
David Bolack
fcb9a8cdc5
Update Editor highlighting to handle attribut assignments
2023-12-06 16:54:28 -06:00
G.Ambatte
78d4d6fb7c
Tweak icon styling
2023-12-06 14:33:55 +13:00
G.Ambatte
407efd0f8b
Merge branch 'master' into addCreditsSnippet-#283
2023-12-06 14:02:31 +13:00
Víctor Losada Hernández
d39ae139d7
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into single-quote-inline-style
2023-12-06 00:26:53 +01:00
Víctor Losada Hernández
467b728c47
text-re-fix
2023-12-06 00:24:44 +01:00
Víctor Losada Hernández
b02036fb7a
Initial commit
2023-12-05 23:16:27 +01:00
G.Ambatte
d8524c3a84
Merge branch 'master' into experimentalTagFiltering-#3164
2023-12-06 08:48:46 +13:00
Sean Robertson
75809a5f42
Remove forced uppercase
2023-12-06 08:28:51 +13:00
Trevor Buckner
e99aad15c1
Merge pull request #3116 from G-Ambatte/fixFFPrinting-#3115
...
Fix Firefox printing
2023-12-05 11:49:50 -05:00
Trevor Buckner
c57b011215
Merge branch 'master' into fixFFPrinting-#3115
2023-12-05 11:40:32 -05:00
Trevor Buckner
5942bfece1
Merge pull request #3133 from dbolack-ab/Issue_2171
...
Add subscript and subscript markdown tokens
2023-12-04 22:23:28 -05:00
Trevor Buckner
2dc874daba
Adjust hotkeys to match other changes
2023-12-04 22:21:58 -05:00
Trevor Buckner
38fa428fde
Change to 1 and 2 ^'s . Slight cleanup
2023-12-04 22:11:05 -05:00
Trevor Buckner
6bf51cd94a
Allow both sub and super highlighting on same line
2023-12-04 21:56:08 -05:00
Trevor Buckner
ddef21cd7e
Give editor highlighting sub/superscript alignment
2023-12-04 21:54:44 -05:00
Trevor Buckner
bf30cadb68
Add default page size to brewRenderer.less
...
Add default brew page size to brewRenderer.less, so all pages have a fallback size when switching between themes and renderers. Avoids losing the scroll position on a page caused by out-of-view pages losing their size, especially on long brews where recalculating page layout can take a half second.
2023-12-04 21:13:26 -05:00
G.Ambatte
2f13b89510
Styling tweak
2023-12-05 12:41:27 +13:00
Trevor Buckner
abe3a7e7c7
Merge pull request #3154 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.4
...
Bump @babel/plugin-transform-runtime from 7.23.3 to 7.23.4
2023-12-04 17:10:16 -05:00
dependabot[bot]
4ec5f73aed
Bump @babel/plugin-transform-runtime from 7.23.3 to 7.23.4
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.3 to 7.23.4.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.4/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-04 22:09:59 +00:00
Trevor Buckner
a5313deb78
Merge pull request #3157 from naturalcrit/dependabot/npm_and_yarn/fs-extra-11.2.0
...
Bump fs-extra from 11.1.1 to 11.2.0
2023-12-04 17:09:53 -05:00
Trevor Buckner
5dd486866f
Merge pull request #3151 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recess-order-4.4.0
...
Bump stylelint-config-recess-order from 4.3.0 to 4.4.0
2023-12-04 17:09:43 -05:00
Trevor Buckner
ada642e56e
Merge pull request #3158 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.0.2
...
Bump mongoose from 8.0.0 to 8.0.2
2023-12-04 17:09:02 -05:00
Trevor Buckner
881fcc9cba
Merge pull request #3161 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.5
...
Bump @babel/core from 7.23.3 to 7.23.5
2023-12-04 17:08:44 -05:00
Trevor Buckner
a809e920fc
Merge pull request #3160 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.5
...
Bump @babel/preset-env from 7.23.3 to 7.23.5
2023-12-04 17:08:38 -05:00
Trevor Buckner
36f3eb4da1
Merge pull request #3162 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.1.2
...
Bump marked-gfm-heading-id from 3.1.1 to 3.1.2
2023-12-04 17:08:31 -05:00
Trevor Buckner
57772065e0
Merge pull request #3170 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.20.1
...
Bump react-router-dom from 6.18.0 to 6.20.1
2023-12-04 17:08:23 -05:00
Trevor Buckner
f10be94190
Merge pull request #3169 from naturalcrit/dependabot/npm_and_yarn/eslint-8.55.0
...
Bump eslint from 8.53.0 to 8.55.0
2023-12-04 17:08:15 -05:00
Trevor Buckner
055ee38cb7
Merge pull request #3163 from naturalcrit/BrewRendererToFunctionalComponent
...
Convert BrewRenderer to function, PPR always on
2023-12-04 17:08:04 -05:00
Trevor Buckner
202b275966
Tweak legacy style so V3 pages offscreen keep size
2023-12-04 17:07:20 -05:00
G.Ambatte
34be05ac51
Add X icon to tag window
2023-12-05 10:00:25 +13:00
Trevor Buckner
39e33da2d1
Cleanup
2023-12-04 14:46:51 -05:00
G.Ambatte
d262f586fc
Add basic selected tags display to List Page
2023-12-04 21:45:59 +13:00
dependabot[bot]
71f1aed227
Bump react-router-dom from 6.18.0 to 6.20.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.18.0 to 6.20.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.20.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-04 03:09:30 +00:00
dependabot[bot]
159d5a35b2
Bump eslint from 8.53.0 to 8.55.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.53.0 to 8.55.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.53.0...v8.55.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-04 03:09:15 +00:00
G.Ambatte
efecfac68a
Simplify tag styling
2023-12-04 08:10:32 +13:00
G.Ambatte
2c997458b2
Simplify filter tag test
2023-12-04 07:54:19 +13:00
G.Ambatte
7e98f79416
Make alphabetical tag sorting case insensitive
2023-12-04 07:53:49 +13:00
G.Ambatte
cfecc001aa
Add brew tag sorting
2023-12-03 19:14:20 +13:00
G.Ambatte
ab8716d071
Add icons before special tags
2023-12-03 18:40:20 +13:00
G.Ambatte
9e12ab71f8
Switch to better brew.tags array check
2023-12-03 17:46:55 +13:00
G.Ambatte
995d1c63d8
Make tag removal from URL case insensitive
2023-12-03 17:17:03 +13:00
G.Ambatte
875e1023fc
Add styling for different tag types
2023-12-03 17:09:33 +13:00
G.Ambatte
6c4dad675f
Switch to case-insensitive tag comparison
2023-12-03 16:34:12 +13:00
G.Ambatte
632882d370
Use the whole tag in the tag filter
2023-12-03 16:02:36 +13:00
G.Ambatte
041c7ed48f
Shift to AND operation for multiple tags
2023-12-03 12:48:20 +13:00
G.Ambatte
6dcc6d36b7
Add separate tag filter
2023-12-03 12:23:39 +13:00
G.Ambatte
0762b82c40
Initial functionality of basic tag filtering
2023-12-03 09:46:02 +13:00
G.Ambatte
c6821819c7
Initial functionality pass on BrewItem
2023-12-03 09:36:17 +13:00
G.Ambatte
5a79795e4f
Indicate tags are clickable by cursor
2023-12-03 09:33:00 +13:00
Trevor Buckner
3073b3e35d
Convert BrewRenderer to function, PPR always on
2023-11-30 23:52:42 -05:00
dependabot[bot]
0491516662
Bump marked-gfm-heading-id from 3.1.1 to 3.1.2
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.1.1...v3.1.2 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-12-01 03:26:01 +00:00
dependabot[bot]
b55616170b
Bump @babel/core from 7.23.3 to 7.23.5
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.3 to 7.23.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.5/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-30 03:48:32 +00:00
dependabot[bot]
e080c46509
Bump @babel/preset-env from 7.23.3 to 7.23.5
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.3 to 7.23.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.5/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-30 03:47:55 +00:00
dependabot[bot]
171d1c7c46
Bump mongoose from 8.0.0 to 8.0.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 8.0.0 to 8.0.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/8.0.0...8.0.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-29 03:23:54 +00:00
dependabot[bot]
d1503c8d6f
Bump fs-extra from 11.1.1 to 11.2.0
...
Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra ) from 11.1.1 to 11.2.0.
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0 )
---
updated-dependencies:
- dependency-name: fs-extra
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-28 03:04:54 +00:00
Trevor Buckner
be72b029bf
Merge pull request #3156 from naturalcrit/renderAllPages
...
Render all pages
2023-11-26 17:29:49 -05:00
Trevor Buckner
93a7b11017
Simplify "BrewPage" into Functional Component
2023-11-25 23:23:39 -05:00
Trevor Buckner
045fbbe158
lint
2023-11-24 01:36:04 -05:00
Trevor Buckner
ede731e3a5
Add "BrewPage" component which updates only when needed
2023-11-24 01:35:06 -05:00
David Bolack
d6e63604ac
Add tests
2023-11-22 13:29:37 -06:00
David Bolack
0624f8a0b9
Add basic tests for Dictionary lists.
2023-11-22 13:13:58 -06:00
dependabot[bot]
960c03bfa6
Bump stylelint-config-recess-order from 4.3.0 to 4.4.0
...
Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order ) from 4.3.0 to 4.4.0.
- [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases )
- [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.3.0...v4.4.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recess-order
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-20 03:36:02 +00:00
Trevor Buckner
cda98e02e0
Merge pull request #3079 from 5e-Cleric/fix-indent-in-monster-blocks
...
fix indent in monster blocks
2023-11-15 14:34:44 -05:00
Trevor Buckner
9ac070512d
linting
2023-11-15 14:34:30 -05:00
Trevor Buckner
a1e9c82c06
Linting
2023-11-15 14:32:15 -05:00
Trevor Buckner
b116e0a622
Merge pull request #3147 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.1.1
...
Bump marked-gfm-heading-id from 3.1.0 to 3.1.1
2023-11-15 11:49:56 -05:00
dependabot[bot]
ef2bbfea5e
Bump marked-gfm-heading-id from 3.1.0 to 3.1.1
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.1.0...v3.1.1 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-13 03:28:56 +00:00
David Bolack
c858c705d2
Complete mustache div updates for attr
2023-11-11 22:23:43 -06:00
G.Ambatte
fb91761c31
Merge branch 'naturalcrit:master' into separateApiErrors-#2975
2023-11-12 13:45:40 +13:00
Víctor Losada Hernández
93d38eb184
Merge branch 'fix-indent-in-monster-blocks' of https://github.com/5e-Cleric/homebrewery into fix-indent-in-monster-blocks
2023-11-12 00:28:45 +01:00
Víctor Losada Hernández
d31dae728f
i don't know why i didn't do this last time
2023-11-12 00:28:43 +01:00
David Bolack
c068aca9ff
Small tweaks to processStyle.
...
This changes the output on arbitrary outputs to always wrap the value in
quotes instead of only doing so on whitespaced values.
2023-11-11 15:47:27 -06:00
David Bolack
fcdaef2445
Merge branch 'master' into Issue_1488
2023-11-11 15:08:11 -06:00
David Bolack
c78dcbfe05
Remove Line-break
...
Remove the linbreak between the </dt> and the first <dd>
2023-11-10 23:19:55 -06:00
Louis David Bolack
8d94e5fbe0
Update shared/naturalcrit/markdown.js
...
Co-authored-by: Trevor Buckner <calculuschild@gmail.com >
2023-11-10 23:10:01 -06:00
Louis David Bolack
c6d8bbae16
Update shared/naturalcrit/markdown.js
...
Co-authored-by: Trevor Buckner <calculuschild@gmail.com >
2023-11-10 23:09:49 -06:00
Trevor Buckner
0a54c7b04e
Merge pull request #3141 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.3
...
Bump @babel/preset-env from 7.23.2 to 7.23.3
2023-11-10 22:55:50 -05:00
Trevor Buckner
2fd54ee87e
Merge pull request #3138 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.3
...
Bump @babel/core from 7.23.2 to 7.23.3
2023-11-10 22:55:31 -05:00
dependabot[bot]
1f5f160964
Bump @babel/core from 7.23.2 to 7.23.3
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.2 to 7.23.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-10 16:01:36 +00:00
dependabot[bot]
8d04f09aab
Bump @babel/preset-env from 7.23.2 to 7.23.3
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.23.2 to 7.23.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-10 16:01:28 +00:00
Trevor Buckner
be1f905b48
Merge pull request #3140 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.3
...
Bump @babel/plugin-transform-runtime from 7.23.2 to 7.23.3
2023-11-10 10:59:22 -05:00
Trevor Buckner
dbbd8cb26d
Merge pull request #3139 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.23.3
...
Bump @babel/preset-react from 7.22.15 to 7.23.3
2023-11-10 10:59:13 -05:00
David Bolack
827fdd3cff
REmove a console message.
2023-11-10 00:43:45 -06:00
David Bolack
7b85995b4a
Updated attribute assignment.
...
Wraps with quotes ( a="b and c" )
Still does not work on Mustache Divs. UNsure where the failure is at the
moment. Even regressed "a:b and c" pattern on those.
2023-11-10 00:28:25 -06:00
David Bolack
37593573ce
Merge branch 'master' into Issue_1488
2023-11-09 21:52:44 -06:00
David Bolack
a6ecec4172
Merge remote-tracking branch 'origin/Extended_DD' into Extended_DD
2023-11-09 21:51:23 -06:00
David Bolack
b561f69dd0
Merge branch 'master' into Extended_DD
2023-11-09 21:40:24 -06:00
dependabot[bot]
0bdadaf946
Bump @babel/plugin-transform-runtime from 7.23.2 to 7.23.3
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.23.2 to 7.23.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-10 03:34:19 +00:00
dependabot[bot]
7b1a815e78
Bump @babel/preset-react from 7.22.15 to 7.23.3
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.22.15 to 7.23.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-10 03:33:55 +00:00
David Bolack
7b9a23670d
Update Regex based on PR siuggestions.
...
This should match more economically and in line with marked
recomendations as well as not allow whitespace ( \s ) at the beginning
or end of a sub or superscript mark. Additionally, a failure in having
mixed sub and supers on the same line was corrected.
2023-11-09 21:31:08 -06:00
Louis David Bolack
a762626c53
Merge branch 'naturalcrit:master' into Issue_2171
2023-11-09 21:25:47 -06:00
Trevor Buckner
1c5c21d89b
Merge branch 'master' into Extended_DD
2023-11-09 18:52:58 -05:00
Trevor Buckner
da2c647fa6
Merge pull request #3123 from naturalcrit/dependabot/npm_and_yarn/mongoose-8.0.0
...
Bump mongoose from 7.6.4 to 8.0.0
2023-11-09 16:45:10 -05:00
dependabot[bot]
cb61badfc5
Bump mongoose from 7.6.4 to 8.0.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.6.4 to 8.0.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.6.4...8.0.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-09 21:44:04 +00:00
Trevor Buckner
d2f909384e
Merge pull request #3124 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.18.0
...
Bump react-router-dom from 6.17.0 to 6.18.0
2023-11-09 16:43:02 -05:00
Trevor Buckner
cebc7be81d
Merge pull request #3130 from MurdoMaclachlan/master
...
Fix minor grammatical error in FAQ
2023-11-09 16:36:51 -05:00
Trevor Buckner
83c604cb74
Merge pull request #3073 from Gazook89/Fold-Buttons-in-Editor
...
Add foldAll and unfoldAll buttons to Snippet Bar
2023-11-09 16:36:20 -05:00
Trevor Buckner
ad455f652c
Remove extra comma
2023-11-09 10:03:14 -05:00
Trevor Buckner
3f19b2975c
Add tooltips
2023-11-08 17:48:32 -05:00
Trevor Buckner
cacfc788fb
Change Expand Icon for consistency with collapse icon
2023-11-08 17:38:42 -05:00
Trevor Buckner
8f99712a28
Merge branch 'master' into Fold-Buttons-in-Editor
2023-11-08 17:07:04 -05:00
Trevor Buckner
367c2bd111
Merge branch 'master' into fix-indent-in-monster-blocks
2023-11-08 17:05:23 -05:00
Trevor Buckner
1c45cb1b7f
Merge branch 'master' into Issue_2171
2023-11-08 17:03:16 -05:00
dependabot[bot]
19fbd832f1
Bump react-router-dom from 6.17.0 to 6.18.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.17.0 to 6.18.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.18.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-08 21:39:16 +00:00
Trevor Buckner
7ce0ac577a
Merge pull request #3134 from naturalcrit/AwaitBuildCompleteBeforeStartServer
...
Fix issues starting server first time in Dev environment
2023-11-08 16:38:08 -05:00
Trevor Buckner
3ce4d6d1f8
Merge pull request #3136 from naturalcrit/DownNodeToV20_FixHerokuCrashes
...
Downgrade Node to v20 to fix Heroku
2023-11-08 16:37:30 -05:00
Trevor Buckner
18aca07e84
Downgrade Node to v20 to fix Heroku
...
Heroku is crashing on deployments that use Node 21. Not sure why.
2023-11-08 16:01:09 -05:00
Trevor Buckner
4bda071742
Should fix issues starting server first time
...
Using `node scripts/buildHomebrew.js --dev` can sometimes start up the server before the build is complete, so `ssr.js` is not quite ready and the app crashes. This puts the server startup inside the async block to it must await everything else being complete.
2023-11-08 12:18:51 -05:00
Víctor Losada Hernández
35bde09aa7
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into fix-indent-in-monster-blocks
2023-11-08 13:17:37 +01:00
David Bolack
d43ea46e40
Add subscript and subscript markdown tokens
...
Uses ^^ for superscript and ^^^ subscript as wrappers in the same
pattern as italics and bold ( * and **, respectively)
Adds editor hot-keys and sytax highlighting. (CTRL-6/CTRL-7)
Exact values may not be ideal. Short of the suggestted overloading of ~,
I didn't see a better option for the delimiter.
2023-11-08 00:54:43 -06:00
David Bolack
f1ca6eeee2
Near complete
2023-11-08 00:49:39 -06:00
David Bolack
d390d518a3
Initial commit, subscripts and superscripts
2023-11-07 22:42:53 -06:00
David Bolack
d1152dcbb5
Add Change log
2023-11-07 21:04:03 -06:00
David Bolack
837306c9a7
Add tests for arbitrary attributes.
...
Also shifted around the adding of spaces for the attributes.
2023-11-07 19:07:58 -06:00
David Bolack
e6428a3b18
Update Editor highlighting for Definition Lists
...
Fixes syntax highlighting to account for multiple definitions on a
definition list.
2023-11-07 18:07:11 -06:00
David Bolack
c58c8777f1
Add arbitrary tag attr assign. in moustaches
...
This adds the ability to include attribute values for any element that
can be altered by a moustache.
Form:
```
{attribute=value}
example:
 {position:absolute,bottom:20px,left:130px,width:220px,a=b and c,g=h}
```
In order to permit spaces, the pattern matches for moustache code had to
remove the space character as a delimiter. I believe I have adequate
compensated.
This should solve #1488
2023-11-07 17:43:24 -06:00
Murdo B. Maclachlan
caadb7b4ce
Fix minor grammatical error in FAQ
...
Just a minor grammatical fix, "its" being the correct possessive as opposed to "it's" being a contraction of "it is".
2023-11-07 18:49:16 +00:00
David Bolack
ce1ba8289c
Add Multi-line Dictionary Definition (<dd>) rows.
...
Expands the existing syntax to allow/expect the option of multiple
definitions by adding any number of ``` :: Definition``` to an a DT/DD
set.
2023-11-06 22:30:26 -06:00
Trevor Buckner
ce946bda98
Merge pull request #3035 from G-Ambatte/addDarkbreweryTheme
...
Add DarkBrewery theme
2023-11-06 17:18:41 -05:00
Trevor Buckner
07b1254309
Merge pull request #3127 from naturalcrit/dependabot/npm_and_yarn/eslint-8.53.0
...
Bump eslint from 8.52.0 to 8.53.0
2023-11-06 16:39:37 -05:00
dependabot[bot]
4c7715286e
Bump eslint from 8.52.0 to 8.53.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.52.0 to 8.53.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.52.0...v8.53.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-11-06 03:32:37 +00:00
Trevor Buckner
980c544bba
Merge pull request #3122 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.6.4
...
Bump mongoose from 7.6.3 to 7.6.4
2023-10-31 15:43:52 -04:00
Trevor Buckner
7c0b9ea3f6
Merge pull request #3069 from Gazook89/Stat-Block-H3-CSS-Tweak
...
Tweak monster H3 sizing and spacing per recommendation
2023-10-31 12:13:40 -04:00
Trevor Buckner
e6d8784633
Remove redundant properties
2023-10-31 12:12:56 -04:00
dependabot[bot]
4720aced6c
Bump mongoose from 7.6.3 to 7.6.4
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.6.3 to 7.6.4.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/7.6.4/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.6.3...7.6.4 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-31 03:59:26 +00:00
Trevor Buckner
cf5e61cf09
Merge branch 'master' into Stat-Block-H3-CSS-Tweak
2023-10-30 22:18:04 -04:00
Trevor Buckner
9d43588f44
Merge pull request #3121 from naturalcrit/cleanV3PHB-Stylelint
...
Fix styleLint warnings on V3 PHB
2023-10-30 22:17:04 -04:00
Trevor Buckner
ce005da20f
Fix styleLint warnings on V3 PHB
...
Duplicate `dl` entries and wrong quotes.
2023-10-30 22:16:46 -04:00
Trevor Buckner
17531151ad
Merge branch 'master' into Stat-Block-H3-CSS-Tweak
2023-10-30 22:02:50 -04:00
Trevor Buckner
863f624772
Merge pull request #3117 from naturalcrit/dependabot/npm_and_yarn/browserify-sign-4.2.2
...
Bump browserify-sign from 4.2.1 to 4.2.2
2023-10-30 22:02:12 -04:00
Trevor Buckner
6a5f4efd26
Merge pull request #3112 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.6.0
...
Bump eslint-plugin-jest from 27.4.2 to 27.6.0
2023-10-30 22:02:04 -04:00
Trevor Buckner
6200b416ab
Merge pull request #3108 from naturalcrit/dependabot/npm_and_yarn/nconf-0.12.1
...
Bump nconf from 0.12.0 to 0.12.1
2023-10-30 22:01:55 -04:00
Trevor Buckner
dc1931a5e3
Merge pull request #3105 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.6.3
...
Bump mongoose from 7.6.1 to 7.6.3
2023-10-30 22:01:48 -04:00
Trevor Buckner
26bddc1a79
Merge pull request #3106 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.11.0
...
Bump stylelint from 15.10.3 to 15.11.0
2023-10-30 22:01:41 -04:00
dependabot[bot]
74ebd44d7c
Bump eslint-plugin-jest from 27.4.2 to 27.6.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.4.2 to 27.6.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.4.2...v27.6.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-31 02:01:02 +00:00
Trevor Buckner
989af1bbd0
Merge pull request #3109 from naturalcrit/dependabot/npm_and_yarn/eslint-8.52.0
...
Bump eslint from 8.51.0 to 8.52.0
2023-10-30 22:00:04 -04:00
Trevor Buckner
3359e489f5
Merge pull request #3104 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.17.0
...
Bump react-router-dom from 6.16.0 to 6.17.0
2023-10-30 21:59:57 -04:00
Trevor Buckner
f431ac2e40
Merge pull request #3099 from G-Ambatte/addShareLinkToNotAnAuthor
...
Add Share link to Unauthorized Edit Access error message
2023-10-30 21:59:31 -04:00
G.Ambatte
511c38dd1e
Remove unnecessary nullish coalescing operators
2023-10-29 14:16:41 +13:00
G.Ambatte
85b0976082
Move API call error handling
2023-10-29 11:52:02 +13:00
G.Ambatte
7052337669
Remove API error message from log
2023-10-29 11:43:24 +13:00
G.Ambatte
e07d1d1ddb
Add originalUrl to error object
2023-10-29 11:27:03 +13:00
G.Ambatte
c5ebd0352d
Identify API errors and send error response
2023-10-29 11:04:07 +13:00
dependabot[bot]
a8fbcf0ad1
Bump browserify-sign from 4.2.1 to 4.2.2
...
Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign ) from 4.2.1 to 4.2.2.
- [Changelog](https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md )
- [Commits](https://github.com/crypto-browserify/browserify-sign/compare/v4.2.1...v4.2.2 )
---
updated-dependencies:
- dependency-name: browserify-sign
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-27 13:30:24 +00:00
G.Ambatte
92f33136ce
Remove page-break-before and -after from Blank
2023-10-27 23:58:56 +13:00
G.Ambatte
9260283914
Remove page-break-before and -after from 5ePHB
2023-10-27 23:58:39 +13:00
dependabot[bot]
a08263dd7c
Bump eslint from 8.51.0 to 8.52.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.51.0 to 8.52.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.51.0...v8.52.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-23 03:39:23 +00:00
dependabot[bot]
7eae170f6c
Bump nconf from 0.12.0 to 0.12.1
...
Bumps [nconf](https://github.com/flatiron/nconf ) from 0.12.0 to 0.12.1.
- [Release notes](https://github.com/flatiron/nconf/releases )
- [Changelog](https://github.com/indexzero/nconf/blob/v0.12.1/CHANGELOG.md )
- [Commits](https://github.com/flatiron/nconf/compare/v0.12.0...v0.12.1 )
---
updated-dependencies:
- dependency-name: nconf
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-23 03:39:02 +00:00
G.Ambatte
b5cb8ce834
Mark HB navigation changes
2023-10-19 18:20:50 +13:00
G.Ambatte
d497c0094b
Fix comments
2023-10-19 17:51:02 +13:00
G.Ambatte
71141aa6f6
Merge branch 'master' into addDarkbreweryTheme
2023-10-19 16:37:36 +13:00
G.Ambatte
36e607eb3b
Merge branch 'master' into addCreditsSnippet-#283
2023-10-19 16:37:27 +13:00
dependabot[bot]
d67f206900
Bump stylelint from 15.10.3 to 15.11.0
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.10.3 to 15.11.0.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.10.3...15.11.0 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-18 03:22:03 +00:00
dependabot[bot]
6bf9ddd585
Bump mongoose from 7.6.1 to 7.6.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.6.1 to 7.6.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.6.1...7.6.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-18 03:21:44 +00:00
dependabot[bot]
1607a1ac10
Bump react-router-dom from 6.16.0 to 6.17.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.16.0 to 6.17.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.17.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-17 03:07:32 +00:00
G.Ambatte
392a3db3c2
Add Share link to Unauthorized Edit access message
2023-10-14 20:01:21 +13:00
G.Ambatte
0845234f2f
Add brew's shareId to error info
2023-10-14 19:59:51 +13:00
Trevor Buckner
f58a7d65b5
Merge pull request #3068 from Gazook89/Prevent-View-Increase-By-Author
...
Check for author in author list before increasing views.
2023-10-13 23:45:47 -04:00
Trevor Buckner
3ac0ac7568
Fix crash when not logged in
...
If not logged in, brew.authors doesn't exist, so visiting the share page crashes.
2023-10-13 23:44:34 -04:00
Trevor Buckner
1c71ff0945
Merge branch 'master' into pr/3068
2023-10-13 23:27:37 -04:00
G.Ambatte
3ccfef0763
Merge branch 'master' into addCreditsSnippet-#283
2023-10-14 11:42:50 +13:00
G.Ambatte
a6ec8370be
Merge branch 'master' into addDarkbreweryTheme
2023-10-14 11:42:09 +13:00
Trevor Buckner
7b059f029d
Merge pull request #3098 from naturalcrit/v3.10.0
...
Up to v3.10.0
2023-10-13 16:33:55 -04:00
Trevor Buckner
917b63722c
typo
2023-10-13 16:32:02 -04:00
Trevor Buckner
c1cbbe0047
Up to v3.10.0
2023-10-13 16:31:08 -04:00
Trevor Buckner
963d76add9
Merge pull request #3093 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.23.2
...
Bump @babel/preset-env from 7.22.20 to 7.23.2
2023-10-12 15:42:09 -04:00
Trevor Buckner
e055734d03
Merge pull request #3094 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.2
...
Bump @babel/core from 7.23.0 to 7.23.2
2023-10-12 15:41:59 -04:00
dependabot[bot]
7c16805680
Bump @babel/core from 7.23.0 to 7.23.2
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.23.0 to 7.23.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/@babel/core@7.23.2/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-12 19:35:37 +00:00
dependabot[bot]
be52e0ecd9
Bump @babel/preset-env from 7.22.20 to 7.23.2
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.20 to 7.23.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-12 19:34:55 +00:00
Trevor Buckner
175673cdf9
Merge pull request #3088 from naturalcrit/dependabot/npm_and_yarn/eslint-8.51.0
...
Bump eslint from 8.50.0 to 8.51.0
2023-10-12 15:34:15 -04:00
Trevor Buckner
a279c75826
Merge pull request #3091 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.6.1
...
Bump mongoose from 7.5.4 to 7.6.1
2023-10-12 15:34:05 -04:00
Trevor Buckner
8be95e7d04
Merge pull request #3095 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.23.2
...
Bump @babel/plugin-transform-runtime from 7.22.15 to 7.23.2
2023-10-12 15:33:51 -04:00
Trevor Buckner
8e0c1d78dc
Merge pull request #3096 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.4.0
...
Bump @googleapis/drive from 8.3.1 to 8.4.0
2023-10-12 15:33:42 -04:00
dependabot[bot]
5da73f8ff8
Bump @googleapis/drive from 8.3.1 to 8.4.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 8.3.1 to 8.4.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v8.3.1...drive-v8.4.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-12 03:19:54 +00:00
dependabot[bot]
e20fc680e9
Bump @babel/plugin-transform-runtime from 7.22.15 to 7.23.2
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.15 to 7.23.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-12 03:19:36 +00:00
dependabot[bot]
e821ddac93
Bump mongoose from 7.5.4 to 7.6.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.5.4 to 7.6.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.5.4...7.6.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-10 03:14:54 +00:00
dependabot[bot]
fab2c2cead
Bump eslint from 8.50.0 to 8.51.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.50.0 to 8.51.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.50.0...v8.51.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-09 03:23:43 +00:00
Trevor Buckner
bd0e142999
Merge pull request #3084 from naturalcrit/UpdateCircleCiNodeVersion
...
Up Node Version on CircleCi to pass tests
2023-10-06 15:02:49 -04:00
Trevor Buckner
673649abc4
typo
2023-10-06 15:00:50 -04:00
Trevor Buckner
b95a2189a5
Up Node Version on CircleCi to pass tests
2023-10-06 14:59:19 -04:00
Trevor Buckner
f45547d899
Merge pull request #3083 from naturalcrit/dependabot/npm_and_yarn/marked-smartypants-lite-1.0.1
...
Bump marked-smartypants-lite from 1.0.0 to 1.0.1
2023-10-06 01:16:04 -04:00
dependabot[bot]
f2c970fb79
Bump marked-smartypants-lite from 1.0.0 to 1.0.1
...
Bumps [marked-smartypants-lite](https://github.com/calculuschild/marked-smartypants-lite ) from 1.0.0 to 1.0.1.
- [Release notes](https://github.com/calculuschild/marked-smartypants-lite/releases )
- [Changelog](https://github.com/calculuschild/marked-smartypants-lite/blob/main/release.config.cjs )
- [Commits](https://github.com/calculuschild/marked-smartypants-lite/commits/v1.0.1 )
---
updated-dependencies:
- dependency-name: marked-smartypants-lite
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-06 03:16:34 +00:00
Trevor Buckner
6e6a6dd1e3
Merge pull request #3067 from Gazook89/Definition-List-Highlighting
...
Add syntax highlighting for definition lists
2023-10-05 22:43:58 -04:00
Trevor Buckner
b2fc020d81
Merge pull request #3063 from naturalcrit/dependabot/npm_and_yarn/marked-extended-tables-1.0.7
...
Bump marked-extended-tables from 1.0.6 to 1.0.7
2023-10-05 15:29:57 -04:00
Trevor Buckner
3bfa3bac3a
Merge pull request #3082 from naturalcrit/dependabot/npm_and_yarn/postcss-8.4.31
...
Bump postcss from 8.4.28 to 8.4.31
2023-10-05 15:29:48 -04:00
dependabot[bot]
00134c6c3d
Bump postcss from 8.4.28 to 8.4.31
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.4.28 to 8.4.31.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.4.28...8.4.31 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-05 19:25:47 +00:00
Trevor Buckner
6a393a1437
Merge pull request #3064 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.23.0
...
Bump @babel/core from 7.22.20 to 7.23.0
2023-10-05 15:25:19 -04:00
Trevor Buckner
115be2813d
Merge pull request #3076 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.4.2
...
Bump eslint-plugin-jest from 27.4.0 to 27.4.2
2023-10-05 15:25:11 -04:00
Trevor Buckner
e4a46c84ec
Merge pull request #3080 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.5.4
...
Bump mongoose from 7.5.2 to 7.5.4
2023-10-05 15:24:57 -04:00
dependabot[bot]
b994bf269a
Bump mongoose from 7.5.2 to 7.5.4
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.5.2 to 7.5.4.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.5.2...7.5.4 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-05 03:40:18 +00:00
Víctor Losada Hernández
2de7ec3585
Initial Commit
2023-10-03 17:08:46 +02:00
Víctor Losada Hernández
efbfbf3568
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-10-03 08:07:54 +02:00
Víctor Losada Hernández
12ca82e6e6
Initial commit
2023-10-03 08:00:20 +02:00
dependabot[bot]
e7ce8d73bb
Bump eslint-plugin-jest from 27.4.0 to 27.4.2
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.4.0 to 27.4.2.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.4.0...v27.4.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-10-02 03:52:27 +00:00
G.Ambatte
a420f202d8
Fix a:hover in LESS styling
2023-10-01 21:10:08 +13:00
G.Ambatte
3628ca837a
Shift to LESS nested styling
2023-10-01 21:09:32 +13:00
G.Ambatte
cc3a42402a
Move Credits snippet to Blank
2023-10-01 20:11:05 +13:00
G.Ambatte
1e9b71080b
Add underline on hover to link in credit
2023-10-01 19:58:57 +13:00
G.Ambatte
90917bb84c
Change the text to include URL link
2023-10-01 19:52:17 +13:00
G.Ambatte
7f6e90fee3
Capitalize C in NaturalCrit.com
2023-10-01 15:29:46 +13:00
G.Ambatte
b8d8c1bebb
Add HB Credit snippet
2023-10-01 14:15:58 +13:00
G.Ambatte
7ee0e914e6
Add Credits styling to 5ePHB theme
2023-10-01 14:13:01 +13:00
G.Ambatte
08dbd5638d
New file was unnecessary
2023-10-01 14:11:07 +13:00
G.Ambatte
b7d7f4f2a0
Add optimized NC logo
2023-10-01 13:03:37 +13:00
Gazook89
3cf6691e67
remove width constraint on editors in snippet bar.
2023-09-29 09:31:20 -05:00
Gazook89
8077a91ff7
add foldAll and unfoldAll buttons to snippet bar.
2023-09-29 09:31:20 -05:00
Gazook89
09670b8535
Stylelint the v3 PHB theme.
2023-09-28 00:04:21 -05:00
Gazook89
36f8f39486
Tweak monster H3 sizing and spacing per recommendation
2023-09-28 00:02:57 -05:00
Gazook89
1556cf361a
Check for author in author list before increasing views.
2023-09-27 23:46:38 -05:00
Gazook89
c6ef051232
Stylelint the editor.less file.
2023-09-27 22:56:20 -05:00
Gazook89
2c130d1943
add styling for definition lists in the editor.
2023-09-27 22:46:51 -05:00
Gazook89
f1e6a9a41e
add syntax highlighting for definition lists
2023-09-27 22:46:51 -05:00
Víctor Losada Hernández
b557144f63
extra tests
2023-09-27 20:11:00 +02:00
Víctor Losada Hernández
738fc62b8f
initial commit
2023-09-27 18:20:56 +02:00
dependabot[bot]
34edd436e7
Bump @babel/core from 7.22.20 to 7.23.0
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.20 to 7.23.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.23.0/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-26 03:37:54 +00:00
dependabot[bot]
0b13e90dd8
Bump marked-extended-tables from 1.0.6 to 1.0.7
...
Bumps [marked-extended-tables](https://github.com/calculuschild/marked-extended-tables ) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/calculuschild/marked-extended-tables/releases )
- [Changelog](https://github.com/calculuschild/marked-extended-tables/blob/main/release.config.cjs )
- [Commits](https://github.com/calculuschild/marked-extended-tables/commits )
---
updated-dependencies:
- dependency-name: marked-extended-tables
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-26 03:37:38 +00:00
Trevor Buckner
52dcc3b53c
Merge pull request #3057 from naturalcrit/CSSLint-V3PHB
...
CSS Lint on V3 5ePHB theme page
2023-09-25 16:18:28 -04:00
Trevor Buckner
6803db268f
Merge pull request #3062 from naturalcrit/dependabot/npm_and_yarn/eslint-8.50.0
...
Bump eslint from 8.49.0 to 8.50.0
2023-09-25 16:04:25 -04:00
Trevor Buckner
99c45b6cc3
Merge pull request #3061 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.1.0
...
Bump marked-gfm-heading-id from 3.0.8 to 3.1.0
2023-09-25 16:04:18 -04:00
dependabot[bot]
4cf8e620ee
Bump eslint from 8.49.0 to 8.50.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.49.0 to 8.50.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.49.0...v8.50.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-25 03:11:42 +00:00
dependabot[bot]
fb4c33545c
Bump marked-gfm-heading-id from 3.0.8 to 3.1.0
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.0.8 to 3.1.0.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.0.8...v3.1.0 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-25 03:11:21 +00:00
Trevor Buckner
68475a6aa0
Merge pull request #3016 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-8.3.1
...
Bump @googleapis/drive from 5.1.0 to 8.3.1
2023-09-19 16:39:46 -04:00
Trevor Buckner
e5140bd5b4
Merge pull request #2990 from naturalcrit/dependabot/npm_and_yarn/superagent-8.1.2
...
Bump superagent from 6.1.0 to 8.1.2
2023-09-19 16:39:09 -04:00
Trevor Buckner
e3c05c83ba
Merge branch 'master' into CSSLint-V3PHB
2023-09-19 15:36:46 -04:00
Trevor Buckner
b374f06718
Merge pull request #3058 from naturalcrit/Node20
...
Update Node to v20
2023-09-19 15:36:23 -04:00
Trevor Buckner
ea8c93d39d
Move npm position
2023-09-19 14:43:14 -04:00
Trevor Buckner
6dd8ccff90
Raise Node version
2023-09-19 14:10:28 -04:00
Trevor Buckner
ca90a22c64
Run CSSLint
2023-09-19 12:40:39 -04:00
Trevor Buckner
abc4851375
Merge pull request #2796 from 5e-Cleric/DMG-theme-update
...
Update in the DMG theme
2023-09-18 16:28:38 -04:00
Trevor Buckner
a155c10d46
Merge branch 'master' into pr/2796
2023-09-18 16:28:20 -04:00
Trevor Buckner
5247f5c87b
Update style.less
2023-09-18 16:26:38 -04:00
dependabot[bot]
e41c1ef0bd
Bump @googleapis/drive from 5.1.0 to 8.3.1
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 5.1.0 to 8.3.1.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/release-please-config.json )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/5.1.0...drive-v8.3.1 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-18 19:18:17 +00:00
Trevor Buckner
4d6b428f93
Merge pull request #3054 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.20
...
Bump @babel/preset-env from 7.22.15 to 7.22.20
2023-09-18 15:17:22 -04:00
Trevor Buckner
6928bd9fb4
Merge pull request #3051 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.20
...
Bump @babel/core from 7.22.17 to 7.22.20
2023-09-18 15:17:14 -04:00
Trevor Buckner
f2855aca85
Merge pull request #3052 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.4.0
...
Bump eslint-plugin-jest from 27.2.3 to 27.4.0
2023-09-18 15:16:49 -04:00
Trevor Buckner
aeef595ea9
Merge pull request #3055 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.5.2
...
Bump mongoose from 7.5.1 to 7.5.2
2023-09-18 15:16:39 -04:00
dependabot[bot]
1a24709da0
Bump mongoose from 7.5.1 to 7.5.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.5.1 to 7.5.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.5.1...7.5.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-18 03:54:17 +00:00
dependabot[bot]
8c11f47c1f
Bump @babel/preset-env from 7.22.15 to 7.22.20
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.15 to 7.22.20.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.20/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-18 03:54:04 +00:00
dependabot[bot]
486fbf32b2
Bump eslint-plugin-jest from 27.2.3 to 27.4.0
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.2.3 to 27.4.0.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.2.3...v27.4.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-18 03:53:32 +00:00
dependabot[bot]
8ac3cdcf9d
Bump @babel/core from 7.22.17 to 7.22.20
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.17 to 7.22.20.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.20/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-18 03:53:17 +00:00
dependabot[bot]
f0fc0bcb6d
Bump superagent from 6.1.0 to 8.1.2
...
Bumps [superagent](https://github.com/ladjs/superagent ) from 6.1.0 to 8.1.2.
- [Release notes](https://github.com/ladjs/superagent/releases )
- [Changelog](https://github.com/ladjs/superagent/blob/master/HISTORY.md )
- [Commits](https://github.com/ladjs/superagent/compare/v6.1.0...v8.1.2 )
---
updated-dependencies:
- dependency-name: superagent
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-14 21:16:32 +00:00
Trevor Buckner
63a5e9f817
Merge pull request #3048 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.16.0
...
Bump react-router-dom from 6.15.0 to 6.16.0
2023-09-14 17:15:48 -04:00
Trevor Buckner
5456f4f197
Merge pull request #2791 from 5e-Cleric/FAQ-update
...
Update FAQ and Landpage
2023-09-14 17:15:39 -04:00
Trevor Buckner
d75ea8943b
rewrite Editing and Sharing to better fit
2023-09-14 17:15:05 -04:00
Trevor Buckner
07ae1539aa
Merge pull request #2797 from 5e-Cleric/quote-snippet
...
Quote Snippet
2023-09-14 16:46:06 -04:00
Trevor Buckner
2125b8a026
Small tweaks
2023-09-14 16:44:59 -04:00
dependabot[bot]
b3522bddf1
Bump react-router-dom from 6.15.0 to 6.16.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.15.0 to 6.16.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.16.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-14 03:53:35 +00:00
Víctor Losada Hernández
9dc19d996d
reviewed fixes
2023-09-13 23:40:33 +02:00
G.Ambatte
216de73c93
Fix from 5E-Cleric
2023-09-14 08:19:25 +12:00
G.Ambatte
a306030635
Merge branch 'master' into addDarkbreweryTheme
2023-09-14 08:14:05 +12:00
Trevor Buckner
3e9bea3761
Merge pull request #3043 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.5.1
...
Bump mongoose from 7.5.0 to 7.5.1
2023-09-13 09:36:06 -04:00
Trevor Buckner
73e909c4c8
Merge pull request #3045 from naturalcrit/dependabot/npm_and_yarn/jest-29.7.0
...
Bump jest from 29.6.4 to 29.7.0
2023-09-13 09:35:59 -04:00
dependabot[bot]
53fa6af5f9
Bump jest from 29.6.4 to 29.7.0
...
Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest ) from 29.6.4 to 29.7.0.
- [Release notes](https://github.com/jestjs/jest/releases )
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jestjs/jest/commits/v29.7.0/packages/jest )
---
updated-dependencies:
- dependency-name: jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-13 03:33:13 +00:00
dependabot[bot]
4d2edf81a9
Bump mongoose from 7.5.0 to 7.5.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.5.0 to 7.5.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.5.0...7.5.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-12 03:46:23 +00:00
Trevor Buckner
b10b33830a
Merge pull request #3038 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.0.8
...
Bump marked-gfm-heading-id from 3.0.7 to 3.0.8
2023-09-11 18:59:39 -04:00
Trevor Buckner
393ac69581
Merge pull request #3040 from naturalcrit/dependabot/npm_and_yarn/eslint-8.49.0
...
Bump eslint from 8.48.0 to 8.49.0
2023-09-11 18:59:31 -04:00
Trevor Buckner
1098f6da70
Merge pull request #3039 from naturalcrit/dependabot/npm_and_yarn/npm-10.1.0
...
Bump npm from 10.0.0 to 10.1.0
2023-09-11 18:59:26 -04:00
Trevor Buckner
a29fed3c89
Merge pull request #3041 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.17
...
Bump @babel/core from 7.22.15 to 7.22.17
2023-09-11 18:59:19 -04:00
dependabot[bot]
7af3a629f9
Bump @babel/core from 7.22.15 to 7.22.17
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.15 to 7.22.17.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.17/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-11 03:32:05 +00:00
dependabot[bot]
b0a9765819
Bump eslint from 8.48.0 to 8.49.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.48.0 to 8.49.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.48.0...v8.49.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-11 03:31:50 +00:00
dependabot[bot]
86d18ea0d9
Bump npm from 10.0.0 to 10.1.0
...
Bumps [npm](https://github.com/npm/cli ) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/libnpmhook-v10.0.0...v10.1.0 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-11 03:31:19 +00:00
dependabot[bot]
bfe278c81c
Bump marked-gfm-heading-id from 3.0.7 to 3.0.8
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.0.7 to 3.0.8.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.0.7...v3.0.8 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-11 03:30:59 +00:00
G.Ambatte
7870c763df
Linter fix
2023-09-09 13:42:35 +12:00
G.Ambatte
7f1758364b
Add darkbrewery to editorThemes.json
2023-09-09 13:42:25 +12:00
Sean Robertson
46a6ed4fcc
Modify build script to include custom theme dir
2023-09-08 15:21:51 +12:00
Sean Robertson
7efd23039e
Add DarkBrewery CSS file
2023-09-08 15:20:06 +12:00
Víctor Losada Hernández
9e5103a0c7
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into FAQ-update
2023-09-07 23:14:53 +02:00
Trevor Buckner
7281b6e43c
Merge pull request #2768 from G-Ambatte/addEditorThemes-#362
...
Add editor themes
2023-09-07 10:39:33 -04:00
G.Ambatte
3f6eb7371f
Increase ESLint lines for SnippetBar.jsx
2023-09-07 18:28:08 +12:00
G.Ambatte
2b0bbfc2db
Merge branch 'master' into addEditorThemes-#362
2023-09-07 18:22:17 +12:00
G.Ambatte
e909bc8f35
Load editorThemes in SnippetBar.jsx
2023-09-07 17:33:36 +12:00
G.Ambatte
e16110da6a
Add custom styling for light background themes
2023-09-07 17:05:52 +12:00
G.Ambatte
fcd15e6d9c
Merge branch 'addEditorThemes-#362' of https://github.com/G-Ambatte/homebrewery into addEditorThemes-#362
2023-09-07 16:55:49 +12:00
G.Ambatte
3f828c8649
Make Default first option in built themes JSON
2023-09-07 16:55:39 +12:00
Trevor Buckner
bb66cffa13
Merge pull request #3021 from naturalcrit/dependabot/npm_and_yarn/npm-10.0.0
...
Bump npm from 9.8.1 to 10.0.0
2023-09-06 14:44:26 -04:00
Trevor Buckner
da5a5631ad
Merge pull request #2889 from G-Ambatte/trimBrewTitlesOnUserPage-#2775
...
Remove whitespace from brew titles on UserPage
2023-09-06 11:37:59 -04:00
Sean Robertson
3e43b058a5
Move userpage brew data clean up to app.js
2023-09-06 11:52:28 +12:00
G.Ambatte
a30c2fa1f7
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-09-06 10:58:10 +12:00
G.Ambatte
cb203c29c9
Merge branch 'master' into addEditorThemes-#362
2023-09-06 08:24:22 +12:00
Trevor Buckner
e50d7b8882
Merge pull request #3013 from G-Ambatte/changeColumnFlow-#2982
...
Change column flow to auto
2023-09-05 16:15:14 -04:00
G.Ambatte
74d6aa7c8a
Merge branch 'master' into addEditorThemes-#362
2023-09-06 07:44:24 +12:00
G.Ambatte
e86686807b
Merge branch 'master' into changeColumnFlow-#2982
2023-09-06 07:43:50 +12:00
Trevor Buckner
f4356025de
Merge pull request #3024 from G-Ambatte/fixVersionError-#2641
...
Shift manual save to use debounced save function
2023-09-05 14:52:42 -04:00
dependabot[bot]
73b141d08c
Bump npm from 9.8.1 to 10.0.0
...
Bumps [npm](https://github.com/npm/cli ) from 9.8.1 to 10.0.0.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.8.1...libnpmhook-v10.0.0 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-05 18:34:36 +00:00
Trevor Buckner
9196ffc480
Merge pull request #3011 from naturalcrit/dependabot/npm_and_yarn/jest-29.6.4
...
Bump jest from 29.6.2 to 29.6.4
2023-09-05 14:33:12 -04:00
Trevor Buckner
4e18bb047e
Merge pull request #3029 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.15
...
Bump @babel/plugin-transform-runtime from 7.22.10 to 7.22.15
2023-09-05 14:33:04 -04:00
Trevor Buckner
e4b4e34216
Merge pull request #3027 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.22.15
...
Bump @babel/preset-react from 7.22.5 to 7.22.15
2023-09-05 14:30:24 -04:00
Trevor Buckner
d38c1b9ab2
Merge pull request #3014 from naturalcrit/dependabot/npm_and_yarn/eslint-8.48.0
...
Bump eslint from 8.47.0 to 8.48.0
2023-09-05 14:30:16 -04:00
dependabot[bot]
deaaafd9d2
Bump @babel/plugin-transform-runtime from 7.22.10 to 7.22.15
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.10 to 7.22.15.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-05 18:27:40 +00:00
dependabot[bot]
9b33bf9855
Bump @babel/preset-react from 7.22.5 to 7.22.15
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.22.5 to 7.22.15.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-05 18:27:25 +00:00
Trevor Buckner
e5346d3a6e
Merge pull request #3018 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.5.0
...
Bump mongoose from 7.4.3 to 7.5.0
2023-09-05 14:27:03 -04:00
Trevor Buckner
d9ca20e17d
Merge pull request #3026 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.0.7
...
Bump marked-gfm-heading-id from 3.0.6 to 3.0.7
2023-09-05 14:26:28 -04:00
Trevor Buckner
a5cb3f085f
Merge pull request #3028 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.15
...
Bump @babel/core from 7.22.10 to 7.22.15
2023-09-05 14:26:14 -04:00
Trevor Buckner
6d28948387
Merge pull request #3030 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.15
...
Bump @babel/preset-env from 7.22.10 to 7.22.15
2023-09-05 14:26:07 -04:00
dependabot[bot]
65c75b3282
Bump @babel/preset-env from 7.22.10 to 7.22.15
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.10 to 7.22.15.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-05 03:35:27 +00:00
dependabot[bot]
a0f22e31b7
Bump @babel/core from 7.22.10 to 7.22.15
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.10 to 7.22.15.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.15/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-05 03:34:18 +00:00
dependabot[bot]
c750eebc11
Bump marked-gfm-heading-id from 3.0.6 to 3.0.7
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.0.6 to 3.0.7.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.0.6...v3.0.7 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-09-04 03:21:55 +00:00
G.Ambatte
93a93f1907
Shift manual save to use debounced save function
2023-09-04 13:29:37 +12:00
dependabot[bot]
29428b81f6
Bump mongoose from 7.4.3 to 7.5.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.4.3 to 7.5.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.4.3...7.5.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-30 03:22:53 +00:00
dependabot[bot]
a542953cec
Bump eslint from 8.47.0 to 8.48.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.47.0 to 8.48.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.47.0...v8.48.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-28 03:11:48 +00:00
G.Ambatte
183ca51753
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-08-28 07:50:44 +12:00
G.Ambatte
220816a172
Merge branch 'master' into addEditorThemes-#362
2023-08-28 07:50:33 +12:00
G.Ambatte
840b075c8e
Merge branch 'master' into changeColumnFlow-#2982
2023-08-28 07:48:00 +12:00
Trevor Buckner
3ba15a068a
Merge pull request #3009 from G-Ambatte/fixFreeBSDInstallScript-#3005
...
Fix FreeBSD Install Script
2023-08-25 00:30:57 -04:00
G.Ambatte
b99de1c6e1
Change column-fill to auto
2023-08-25 16:16:11 +12:00
dependabot[bot]
73a48501e0
Bump jest from 29.6.2 to 29.6.4
...
Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest ) from 29.6.2 to 29.6.4.
- [Release notes](https://github.com/jestjs/jest/releases )
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jestjs/jest/commits/v29.6.4/packages/jest )
---
updated-dependencies:
- dependency-name: jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-25 03:45:43 +00:00
G.Ambatte
599d39b69d
Correct service file location in repository
2023-08-25 11:56:48 +12:00
G.Ambatte
ed18ba3108
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-08-24 14:12:15 +12:00
G.Ambatte
6d93291d5b
Merge branch 'master' into addEditorThemes-#362
2023-08-24 14:09:59 +12:00
Trevor Buckner
3fef61cbf8
Merge pull request #2991 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.33.2
...
Bump eslint-plugin-react from 7.33.1 to 7.33.2
2023-08-21 12:10:05 -04:00
Trevor Buckner
c5d9c3bdc0
Merge pull request #3002 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.10.3
...
Bump stylelint from 15.10.2 to 15.10.3
2023-08-21 12:09:48 -04:00
Trevor Buckner
6c7af2d968
Merge pull request #3003 from G-Ambatte/bugfix-#2998
...
Move save location logic out of ShareID check
2023-08-21 12:09:19 -04:00
Trevor Buckner
6130d69906
Rearranged to avoid obscuring the state
...
`output` variable added an unneeded layer to dig through to understand what is being saved to `setState()`
2023-08-21 12:08:54 -04:00
G.Ambatte
8c975747c4
Move save location logic out of ShareID check
2023-08-21 19:33:51 +12:00
Trevor Buckner
ef6dab24a2
Merge pull request #2997 from G-Ambatte/bugfix-#2996
...
Move e.preventDefault to after isDragging check
2023-08-20 23:44:25 -04:00
Trevor Buckner
1f09fff94b
Merge pull request #3000 from G-Ambatte/bugfix-#2999
...
Fix crash to white screen on New page
2023-08-20 23:42:24 -04:00
dependabot[bot]
7bcd898c81
Bump stylelint from 15.10.2 to 15.10.3
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.10.2 to 15.10.3.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.10.2...15.10.3 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-21 03:00:59 +00:00
G.Ambatte
186809008c
Correct check for case of user not being logged in
2023-08-21 14:56:44 +12:00
G.Ambatte
b6e11ba607
Move e.preventDefault to after isDragging check
2023-08-19 15:01:16 +12:00
Trevor Buckner
355b8ac78f
Merge pull request #2994 from G-Ambatte/bugfix-#2993
...
Fix save location logic
2023-08-18 07:20:01 -04:00
G.Ambatte
a2c20a0f7a
Fix save location logic
2023-08-18 20:35:26 +12:00
Trevor Buckner
117e399c1d
Merge pull request #2979 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.15.0
...
Bump react-router-dom from 6.14.2 to 6.15.0
2023-08-17 16:45:15 -04:00
Trevor Buckner
a3ac524308
Merge pull request #2978 from G-Ambatte/update-v3.9.2
...
Update v3.9.2
2023-08-17 16:12:07 -04:00
Trevor Buckner
1e9ba31644
Add date
2023-08-17 16:11:40 -04:00
dependabot[bot]
751728d134
Bump eslint-plugin-react from 7.33.1 to 7.33.2
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.33.1 to 7.33.2.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.33.1...v7.33.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-17 03:26:38 +00:00
Trevor Buckner
8e05cdbb43
Merge pull request #2985 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.4.3
...
Bump mongoose from 7.4.2 to 7.4.3
2023-08-15 10:48:53 -04:00
Trevor Buckner
a5483c549b
Merge pull request #2986 from naturalcrit/dependabot/npm_and_yarn/eslint-8.47.0
...
Bump eslint from 8.46.0 to 8.47.0
2023-08-15 10:48:46 -04:00
dependabot[bot]
746f3d35f8
Bump eslint from 8.46.0 to 8.47.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.46.0 to 8.47.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.46.0...v8.47.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-14 03:47:18 +00:00
dependabot[bot]
94c902bf38
Bump mongoose from 7.4.2 to 7.4.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.4.2 to 7.4.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.4.2...7.4.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-14 03:47:06 +00:00
Trevor Buckner
0da1c43dc3
Merge pull request #2983 from G-Ambatte/fixColumnFlow
...
Fix Markdown render parameter
2023-08-12 01:19:16 -04:00
G.Ambatte
32417e92ff
Fix Markdown render parameter
2023-08-12 14:27:34 +12:00
Víctor Losada Hernández
3d5f99adae
covers em to cm
2023-08-11 15:30:33 +02:00
Víctor Losada Hernández
a889fa657e
display prop again
2023-08-11 15:18:16 +02:00
Víctor Losada Hernández
4347debf45
unsetting footer should use display property
2023-08-11 15:10:08 +02:00
Víctor Losada Hernández
dc3243ae59
back cover should not create a page after itself
2023-08-11 15:08:49 +02:00
dependabot[bot]
540dee89dd
Bump react-router-dom from 6.14.2 to 6.15.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.14.2 to 6.15.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.15.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-11 03:32:08 +00:00
G.Ambatte
1854080771
Merge branch 'master' into update-v3.9.2
2023-08-11 12:52:38 +12:00
Sean Robertson
45207b8114
Up version to 3.9.2
2023-08-11 12:42:20 +12:00
Sean Robertson
2b3c2c9fac
Update change log with merged PR info
2023-08-11 12:42:04 +12:00
Trevor Buckner
0b953fcbf3
Merge pull request #2944 from G-Ambatte/experimentalSaveLocation
...
Add save location setting to local storage
2023-08-10 20:30:13 -04:00
G.Ambatte
0a3453d228
Merge branch 'master' into addEditorThemes-#362
2023-08-11 12:09:02 +12:00
G.Ambatte
6b49e720ca
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-08-11 12:08:40 +12:00
Sean Robertson
7feaa51de0
Rename renderButton visibility control parameter
2023-08-11 11:56:45 +12:00
G.Ambatte
1729b13574
Merge branch 'master' into experimentalSaveLocation
2023-08-11 11:53:26 +12:00
G.Ambatte
73832fabcc
Update client/homebrew/pages/accountPage/accountPage.jsx
...
Co-authored-by: Trevor Buckner <calculuschild@gmail.com >
2023-08-11 11:15:27 +12:00
Trevor Buckner
bac537244c
Merge pull request #2969 from G-Ambatte/addGoogleFileLink
...
Add Google file link to UserPage BrewItem
2023-08-10 17:19:18 -04:00
G.Ambatte
54f8bb4b08
Merge branch 'master' into addGoogleFileLink
2023-08-10 16:47:07 +12:00
G.Ambatte
38f6929c1d
Reverse StorageIcons logic
2023-08-10 16:46:45 +12:00
Trevor Buckner
64ce9ecfa6
Merge pull request #2973 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.10
...
Bump @babel/preset-env from 7.22.9 to 7.22.10
2023-08-09 13:57:56 -04:00
Trevor Buckner
858990c4bd
Merge pull request #2971 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.10
...
Bump @babel/core from 7.22.9 to 7.22.10
2023-08-09 13:57:48 -04:00
dependabot[bot]
785011cba4
Bump @babel/core from 7.22.9 to 7.22.10
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.9 to 7.22.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.10/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-09 15:27:35 +00:00
dependabot[bot]
50d3b503d9
Bump @babel/preset-env from 7.22.9 to 7.22.10
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.9 to 7.22.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.10/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-09 15:27:22 +00:00
Trevor Buckner
2f8e2545c6
Merge pull request #2968 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.0.6
...
Bump marked-gfm-heading-id from 3.0.4 to 3.0.6
2023-08-09 11:26:16 -04:00
Trevor Buckner
d8574e7045
Merge pull request #2972 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.10
...
Bump @babel/plugin-transform-runtime from 7.22.9 to 7.22.10
2023-08-09 11:25:59 -04:00
Víctor Losada Hernández
b3497e14f1
remove italics
2023-08-08 19:15:19 +02:00
Víctor Losada Hernández
d6e0047d4e
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into quote-snippet
2023-08-08 19:12:34 +02:00
Víctor Losada Hernández
8ebd5ccff9
syntax change
2023-08-08 19:11:54 +02:00
dependabot[bot]
4a927daff3
Bump @babel/plugin-transform-runtime from 7.22.9 to 7.22.10
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.9 to 7.22.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.10/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-08 03:02:35 +00:00
G.Ambatte
d28e85209e
Add HB icon for Mongo brews
2023-08-07 22:03:49 +12:00
G.Ambatte
cca882869d
Add file link to Google icon on User Page
2023-08-07 22:03:17 +12:00
dependabot[bot]
9ae55c87a9
Bump marked-gfm-heading-id from 3.0.4 to 3.0.6
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.0.4 to 3.0.6.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.0.4...v3.0.6 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-07 03:02:48 +00:00
G.Ambatte
99ad96a584
Merge branch 'master' into addEditorThemes-#362
2023-08-05 14:22:31 +12:00
G.Ambatte
f8b42031fb
Merge branch 'master' into experimentalSaveLocation
2023-08-05 14:22:05 +12:00
G.Ambatte
850b52d924
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-08-05 14:22:01 +12:00
Trevor Buckner
b2e7b28b65
Merge pull request #2945 from 5e-Cleric/TOC-generate-fix
...
exclude covers from TOC generation
2023-08-04 19:16:58 -04:00
Trevor Buckner
3efa7dd0be
Merge pull request #2961 from Gazook89/Mobile-tweaks
...
Simple adjustments for mobile viewing
2023-08-04 16:42:08 -04:00
Trevor Buckner
677e27bb66
Merge pull request #2966 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.4.2
...
Bump mongoose from 7.4.1 to 7.4.2
2023-08-04 01:51:12 -04:00
Trevor Buckner
da71bd7a10
Merge pull request #2965 from G-Ambatte/reworkClassTables-#2964
...
Update class table generators
2023-08-04 01:41:02 -04:00
Trevor Buckner
0869f6b29b
Just... put the whole table in.
2023-08-04 01:19:33 -04:00
Trevor Buckner
0da5de494e
simplify third caster gen
2023-08-04 00:23:23 -04:00
Trevor Buckner
bc9dc8dee9
Clean up half caster gen.
2023-08-04 00:04:17 -04:00
Trevor Buckner
e3e250255e
Simplify full caster gen
2023-08-03 23:39:17 -04:00
dependabot[bot]
787a23bdf8
Bump mongoose from 7.4.1 to 7.4.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.4.1 to 7.4.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.4.1...7.4.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-04 03:36:35 +00:00
Trevor Buckner
7aca0f2f10
Use dedent-tabs
2023-08-03 19:23:40 -04:00
Trevor Buckner
999f9c8f25
Rename passed in "classes" to "snippetClasses" for clarity
2023-08-03 17:22:30 -04:00
Trevor Buckner
ee4b2d549b
Make CSS class order consistent on snippets
2023-08-03 17:20:38 -04:00
Trevor Buckner
3eb7ce2775
Clean up indentation
2023-08-03 17:16:26 -04:00
Trevor Buckner
4d4371f48c
Compact features array
2023-08-03 17:15:14 -04:00
G.Ambatte
47666cc26d
Merge branch 'master' into addEditorThemes-#362
2023-08-03 18:29:19 +12:00
G.Ambatte
e8352d996e
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-08-03 18:29:13 +12:00
G.Ambatte
e6f792900c
Merge branch 'master' into experimentalSaveLocation
2023-08-03 18:28:39 +12:00
G.Ambatte
0ddeafd260
Merge branch 'master' into reworkClassTables-#2964
2023-08-02 21:40:22 +12:00
G.Ambatte
4cf54d6ae8
Update class table generators
2023-08-02 21:23:11 +12:00
Gazook89
8d3329069a
remove logs
2023-08-01 14:16:31 -05:00
Gazook89
2e13eed2ef
revert moving pointerMove & pointerUp, now on splitPane
2023-08-01 13:53:38 -05:00
Gazook89
310faa449d
set editor font size to 16px on touchscreens
...
iOS requires minimum 16px font to prevent auto-zooming into input fields.
2023-08-01 13:29:57 -05:00
Trevor Buckner
8527a976a6
Merge pull request #2936 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.9
...
Bump @babel/core from 7.22.8 to 7.22.9
2023-08-01 11:27:53 -04:00
dependabot[bot]
54460c52f6
Bump @babel/core from 7.22.8 to 7.22.9
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.8 to 7.22.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.9/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-01 15:26:55 +00:00
Trevor Buckner
e81bd2a0d2
Merge pull request #2960 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.33.1
...
Bump eslint-plugin-react from 7.33.0 to 7.33.1
2023-08-01 11:25:54 -04:00
Trevor Buckner
6c0daa1e4d
Merge pull request #2935 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.9
...
Bump @babel/plugin-transform-runtime from 7.22.7 to 7.22.9
2023-08-01 11:25:47 -04:00
dependabot[bot]
25d03faae2
Bump eslint-plugin-react from 7.33.0 to 7.33.1
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.33.0 to 7.33.1.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.33.0...v7.33.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-08-01 15:22:58 +00:00
Trevor Buckner
378b2204da
Merge pull request #2959 from naturalcrit/dependabot/npm_and_yarn/eslint-8.46.0
...
Bump eslint from 8.45.0 to 8.46.0
2023-08-01 11:21:38 -04:00
Trevor Buckner
447b0939f2
Merge pull request #2957 from naturalcrit/dependabot/npm_and_yarn/jest-29.6.2
...
Bump jest from 29.6.1 to 29.6.2
2023-08-01 11:21:26 -04:00
Gazook89
0bde336226
move all pointer events to divider, not splitPane
2023-07-31 22:20:27 -05:00
Gazook89
73e44b8d7a
add touch-action css property to splitPane
2023-07-31 15:06:09 -05:00
dependabot[bot]
53fbaf87c2
Bump eslint from 8.45.0 to 8.46.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.45.0 to 8.46.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-31 03:14:21 +00:00
Gazook89
a8db7353b0
preventDefaults on pointerEvents to prevent some default behavior.
2023-07-30 20:49:16 -05:00
Gazook89
bda8037cd6
change onMouse events to onPointer events for mobile use.
2023-07-30 20:12:16 -05:00
Gazook89
1f173814ec
Add viewport meta tag for mobile view.
2023-07-30 19:40:39 -05:00
Gazook89
deb0e2f85b
add meta viewport tag in header
2023-07-30 15:00:42 -05:00
dependabot[bot]
5425ae5d15
Bump jest from 29.6.1 to 29.6.2
...
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest ) from 29.6.1 to 29.6.2.
- [Release notes](https://github.com/facebook/jest/releases )
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/jest/commits/v29.6.2/packages/jest )
---
updated-dependencies:
- dependency-name: jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-28 03:15:48 +00:00
G.Ambatte
f03f2c36de
Merge branch 'master' into addEditorThemes-#362
2023-07-27 13:59:05 +12:00
G.Ambatte
a1e663bc32
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-07-27 13:58:01 +12:00
Trevor Buckner
16c842e08f
Merge pull request #2939 from naturalcrit/dependabot/npm_and_yarn/eslint-8.45.0
...
Bump eslint from 8.44.0 to 8.45.0
2023-07-25 19:05:00 -04:00
Trevor Buckner
1c0edce6f6
Merge pull request #2941 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.14.2
...
Bump react-router-dom from 6.14.1 to 6.14.2
2023-07-25 19:04:47 -04:00
Trevor Buckner
8ec6e66c92
Merge pull request #2947 from naturalcrit/dependabot/npm_and_yarn/npm-9.8.1
...
Bump npm from 9.8.0 to 9.8.1
2023-07-25 19:04:37 -04:00
Trevor Buckner
330cdb35f4
Merge pull request #2948 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.10.2
...
Bump stylelint from 15.10.1 to 15.10.2
2023-07-25 19:04:29 -04:00
Trevor Buckner
f93fbab754
Merge pull request #2950 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-react-7.33.0
...
Bump eslint-plugin-react from 7.32.2 to 7.33.0
2023-07-25 19:04:21 -04:00
Trevor Buckner
b9498e49fc
Merge pull request #2952 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.4.1
...
Bump mongoose from 7.3.4 to 7.4.1
2023-07-25 19:04:09 -04:00
dependabot[bot]
4a434bb161
Bump mongoose from 7.3.4 to 7.4.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.3.4 to 7.4.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.3.4...7.4.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-25 03:49:00 +00:00
dependabot[bot]
a339cb036f
Bump eslint-plugin-react from 7.32.2 to 7.33.0
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.32.2 to 7.33.0.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.32.2...v7.33.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-21 03:14:09 +00:00
dependabot[bot]
91eef51fb5
Bump stylelint from 15.10.1 to 15.10.2
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.10.1 to 15.10.2.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.10.1...15.10.2 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-20 03:52:49 +00:00
dependabot[bot]
46b050ae7d
Bump npm from 9.8.0 to 9.8.1
...
Bumps [npm](https://github.com/npm/cli ) from 9.8.0 to 9.8.1.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.8.0...v9.8.1 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-20 03:52:26 +00:00
Víctor Losada Hernández
b433691596
exclude covers from TOC generation
2023-07-19 21:38:14 +02:00
G.Ambatte
cef7f98176
Use existing makeActive function
2023-07-19 20:43:49 +12:00
G.Ambatte
b869d086ea
Add default to New Page
2023-07-19 20:39:33 +12:00
G.Ambatte
64a361e06c
Determine default state and set in local storage
2023-07-19 20:36:55 +12:00
G.Ambatte
9e7e646296
Add username to save key
2023-07-19 20:34:10 +12:00
G.Ambatte
7274d788c5
Clean up comments, change to actual G-Drive check
2023-07-19 19:39:07 +12:00
G.Ambatte
7942f1caed
Initial functionality pass
2023-07-19 19:36:14 +12:00
G.Ambatte
343e176b83
Merge branch 'master' into addEditorThemes-#362
2023-07-19 17:19:44 +12:00
G.Ambatte
3db5959cfa
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-07-19 17:19:35 +12:00
dependabot[bot]
62f9781c8e
Bump react-router-dom from 6.14.1 to 6.14.2
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.14.1 to 6.14.2.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@6.14.2/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.14.2/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-18 03:05:33 +00:00
dependabot[bot]
9d53002874
Bump eslint from 8.44.0 to 8.45.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.44.0 to 8.45.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.44.0...v8.45.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-17 03:48:12 +00:00
dependabot[bot]
4e7e6f8105
Bump @babel/plugin-transform-runtime from 7.22.7 to 7.22.9
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.7 to 7.22.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.9/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-17 03:25:35 +00:00
Trevor Buckner
cea1157eb2
Merge pull request #2934 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.3.4
...
Bump mongoose from 7.3.2 to 7.3.4
2023-07-16 23:24:37 -04:00
Trevor Buckner
d535328eb8
Merge pull request #2938 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.2.3
...
Bump eslint-plugin-jest from 27.2.2 to 27.2.3
2023-07-16 23:24:24 -04:00
Trevor Buckner
627e9ec7d8
Merge pull request #2937 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.9
...
Bump @babel/preset-env from 7.22.7 to 7.22.9
2023-07-16 23:24:17 -04:00
dependabot[bot]
ab9b5b7487
Bump eslint-plugin-jest from 27.2.2 to 27.2.3
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.2.2 to 27.2.3.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.2.2...v27.2.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-14 03:12:13 +00:00
dependabot[bot]
957a8bf05c
Bump @babel/preset-env from 7.22.7 to 7.22.9
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.7 to 7.22.9.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.9/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-13 03:43:52 +00:00
dependabot[bot]
509390ae03
Bump mongoose from 7.3.2 to 7.3.4
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.3.2 to 7.3.4.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.3.2...7.3.4 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-13 03:43:01 +00:00
G.Ambatte
d3a70c3d75
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-07-13 12:20:15 +12:00
G.Ambatte
1806854969
Add onMouseDown handler for Firefox functionality
2023-07-12 20:16:36 +12:00
G.Ambatte
c2570fec6b
Merge branch 'master' into addEditorThemes-#362
2023-07-12 19:04:14 +12:00
Trevor Buckner
9d64740678
Merge pull request #2931 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recess-order-4.3.0
...
Bump stylelint-config-recess-order from 4.2.0 to 4.3.0
2023-07-10 23:52:35 -04:00
dependabot[bot]
053aadeff4
Bump stylelint-config-recess-order from 4.2.0 to 4.3.0
...
Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order ) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases )
- [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.2.0...v4.3.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recess-order
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-11 03:45:53 +00:00
Trevor Buckner
d3763beb15
Merge pull request #2927 from naturalcrit/dependabot/npm_and_yarn/marked-5.1.1
...
Bump marked from 5.1.0 to 5.1.1
2023-07-10 22:23:20 -04:00
Trevor Buckner
8281051797
Merge pull request #2928 from naturalcrit/dependabot/npm_and_yarn/stylelint-stylistic-0.4.3
...
Bump stylelint-stylistic from 0.4.2 to 0.4.3
2023-07-10 22:23:12 -04:00
Trevor Buckner
5b0104fc10
Merge pull request #2929 from naturalcrit/dependabot/npm_and_yarn/semver-5.7.2
...
Bump semver from 5.7.1 to 5.7.2
2023-07-10 19:45:54 -04:00
dependabot[bot]
b3fa902d85
Bump semver from 5.7.1 to 5.7.2
...
Bumps [semver](https://github.com/npm/node-semver ) from 5.7.1 to 5.7.2.
- [Release notes](https://github.com/npm/node-semver/releases )
- [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md )
- [Commits](https://github.com/npm/node-semver/compare/v5.7.1...v5.7.2 )
---
updated-dependencies:
- dependency-name: semver
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-10 23:38:16 +00:00
G.Ambatte
cf3635bccc
Merge branch 'master' into addEditorThemes-#362
2023-07-11 07:38:13 +12:00
dependabot[bot]
a22d223927
Bump stylelint-stylistic from 0.4.2 to 0.4.3
...
Bumps [stylelint-stylistic](https://github.com/elirasza/stylelint-stylistic ) from 0.4.2 to 0.4.3.
- [Commits](https://github.com/elirasza/stylelint-stylistic/compare/0.4.2...0.4.3 )
---
updated-dependencies:
- dependency-name: stylelint-stylistic
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-10 03:07:34 +00:00
dependabot[bot]
5c08926576
Bump marked from 5.1.0 to 5.1.1
...
Bumps [marked](https://github.com/markedjs/marked ) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v5.1.0...v5.1.1 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-10 03:07:24 +00:00
G.Ambatte
7aa374e529
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-07-08 19:07:55 +12:00
Trevor Buckner
797ca7e64e
Merge pull request #2543 from naturalcrit/dependabot/npm_and_yarn/react-and-react-dom-18.2.0
...
Bump react and react-dom
2023-07-08 02:53:15 -04:00
dependabot[bot]
5b8f2d8e3c
Bump react and react-dom
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ). These dependencies needed to be updated together.
Updates `react` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react )
Updates `react-dom` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react-dom )
---
updated-dependencies:
- dependency-name: react
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: react-dom
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-08 06:31:42 +00:00
Trevor Buckner
bd0ef5da48
Merge pull request #2406 from G-Ambatte/addStyleSanitization-#1437
...
Add sanitization of Style content
2023-07-08 02:23:56 -04:00
Trevor Buckner
fe324d6822
Merge pull request #2417 from G-Ambatte/addSmartPageBreak-#2289
...
Add smarter footer shortcut/snippet
2023-07-08 02:17:37 -04:00
Trevor Buckner
3140299d73
Renderer is always V3. No need to check.
2023-07-08 01:48:49 -04:00
Trevor Buckner
96d04ad75a
Fix TOC generators
2023-07-08 01:43:08 -04:00
Trevor Buckner
62532f788e
Remove extra param sent to execute()
2023-07-08 01:42:47 -04:00
Trevor Buckner
69a3d04bb7
Merge branch 'master' into pr/2417
2023-07-08 01:11:45 -04:00
Trevor Buckner
21017e45fe
Merge pull request #2901 from G-Ambatte/experimentalClickToOpen-#2702
...
Change dropdowns to stay open when clicked
2023-07-07 20:46:05 -04:00
Trevor Buckner
48474c6f7b
Simplify dropdown & convert to Functional Component
2023-07-07 20:38:56 -04:00
Trevor Buckner
3d318f8863
Merge pull request #2926 from naturalcrit/dependabot/npm_and_yarn/jest-29.6.1
...
Bump jest from 29.6.0 to 29.6.1
2023-07-06 23:21:52 -04:00
Trevor Buckner
2b798f4ecb
Merge pull request #2925 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.7
...
Bump @babel/plugin-transform-runtime from 7.22.6 to 7.22.7
2023-07-06 23:21:43 -04:00
Trevor Buckner
938802e1a3
Merge pull request #2924 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.3.2
...
Bump mongoose from 7.3.1 to 7.3.2
2023-07-06 23:21:32 -04:00
Trevor Buckner
14f825f3b5
Merge pull request #2923 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.10.1
...
Bump stylelint from 15.10.0 to 15.10.1
2023-07-06 23:21:03 -04:00
dependabot[bot]
37241a70eb
Bump jest from 29.6.0 to 29.6.1
...
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest ) from 29.6.0 to 29.6.1.
- [Release notes](https://github.com/facebook/jest/releases )
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/jest/commits/v29.6.1/packages/jest )
---
updated-dependencies:
- dependency-name: jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-07 03:08:55 +00:00
dependabot[bot]
bcd86a7f0c
Bump @babel/plugin-transform-runtime from 7.22.6 to 7.22.7
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.6 to 7.22.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.7/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-07 03:08:33 +00:00
dependabot[bot]
cf54594a4c
Bump mongoose from 7.3.1 to 7.3.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.3.1 to 7.3.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.3.1...7.3.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-07 03:08:12 +00:00
dependabot[bot]
535fdeaf62
Bump stylelint from 15.10.0 to 15.10.1
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.10.0 to 15.10.1.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.10.0...15.10.1 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-07 03:07:59 +00:00
Trevor Buckner
77bf1b5258
Merge pull request #2922 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.8
...
Bump @babel/core from 7.22.5 to 7.22.8
2023-07-06 14:41:49 -04:00
Trevor Buckner
63da418b60
Merge pull request #2921 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.7
...
Bump @babel/preset-env from 7.22.5 to 7.22.7
2023-07-06 14:41:40 -04:00
dependabot[bot]
67f5e53160
Bump @babel/core from 7.22.5 to 7.22.8
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.5 to 7.22.8.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.8/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-06 18:41:20 +00:00
dependabot[bot]
c6103d51c5
Bump @babel/preset-env from 7.22.5 to 7.22.7
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.5 to 7.22.7.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.7/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-06 18:41:14 +00:00
Trevor Buckner
a4a10783f6
Merge pull request #2915 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recommended-13.0.0
...
Bump stylelint-config-recommended from 12.0.0 to 13.0.0
2023-07-06 14:41:05 -04:00
Trevor Buckner
5ed53f75c5
Merge pull request #2912 from naturalcrit/dependabot/npm_and_yarn/jest-29.6.0
...
Bump jest from 29.5.0 to 29.6.0
2023-07-06 14:40:38 -04:00
Trevor Buckner
81b289923a
Merge pull request #2911 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.6
...
Bump @babel/plugin-transform-runtime from 7.22.5 to 7.22.6
2023-07-06 14:40:30 -04:00
Trevor Buckner
c3d8364789
Merge pull request #2910 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.10.0
...
Bump stylelint from 15.9.0 to 15.10.0
2023-07-06 14:40:24 -04:00
Trevor Buckner
82fec9901d
Merge pull request #2916 from naturalcrit/dependabot/npm_and_yarn/npm-9.8.0
...
Bump npm from 9.7.2 to 9.8.0
2023-07-06 14:40:16 -04:00
Trevor Buckner
173d0a726b
restore livereload
...
It might work after all. Takes some fiddling.
2023-07-06 00:55:00 -04:00
Trevor Buckner
e064219ca0
Merge pull request #2919 from naturalcrit/FixNodemonbehavior
...
Fix Nodemon config in `buildHomebrew.js`
2023-07-06 00:33:27 -04:00
Trevor Buckner
ec339f2717
Fix Nodemon config
2023-07-06 00:29:45 -04:00
Trevor Buckner
d9d27808a8
Merge pull request #2918 from naturalcrit/FixGoogleLinksWith10-charShareId
...
Fix google links with10 char shareid
2023-07-06 00:29:08 -04:00
Trevor Buckner
a4584dc78e
Fix spec tests
2023-07-06 00:19:23 -04:00
Trevor Buckner
6344eaa17d
Handle Old Google Drive links that used 10-char shareID
...
When the Homebrewery was first made, editIds and ShareIds only had 10 characters. We later increased this to 12.
However this means some old, old Google Drive links (in the form of `googleId + editId`) were being split incorrectly because they assumed the newer 12-char length, accidentally cutting the last 2 chars from the googleId.
2023-07-06 00:10:07 -04:00
dependabot[bot]
5c41110e50
Bump npm from 9.7.2 to 9.8.0
...
Bumps [npm](https://github.com/npm/cli ) from 9.7.2 to 9.8.0.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.7.2...v9.8.0 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-06 03:11:38 +00:00
G.Ambatte
085cb99562
Merge branch 'master' into addStyleSanitization-#1437
2023-07-06 12:41:14 +12:00
G.Ambatte
568586541a
Merge branch 'master' into addSmartPageBreak-#2289
2023-07-06 12:40:05 +12:00
G.Ambatte
0d44e1778f
Emit click event when iFrame clicked
2023-07-05 15:48:54 +12:00
dependabot[bot]
4a5269e1f3
Bump stylelint-config-recommended from 12.0.0 to 13.0.0
...
Bumps [stylelint-config-recommended](https://github.com/stylelint/stylelint-config-recommended ) from 12.0.0 to 13.0.0.
- [Release notes](https://github.com/stylelint/stylelint-config-recommended/releases )
- [Changelog](https://github.com/stylelint/stylelint-config-recommended/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint-config-recommended/compare/12.0.0...13.0.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recommended
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-05 03:33:11 +00:00
dependabot[bot]
62cf0a4483
Bump jest from 29.5.0 to 29.6.0
...
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest ) from 29.5.0 to 29.6.0.
- [Release notes](https://github.com/facebook/jest/releases )
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/jest/commits/v29.6.0/packages/jest )
---
updated-dependencies:
- dependency-name: jest
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-05 03:32:27 +00:00
dependabot[bot]
07c7352aa2
Bump @babel/plugin-transform-runtime from 7.22.5 to 7.22.6
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.5 to 7.22.6.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.6/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-05 03:32:05 +00:00
dependabot[bot]
cf6c8bce88
Bump stylelint from 15.9.0 to 15.10.0
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.9.0 to 15.10.0.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.9.0...15.10.0 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-05 03:31:53 +00:00
G.Ambatte
9cb8b46930
Merge branch 'master' into addEditorThemes-#362
2023-07-05 14:24:36 +12:00
G.Ambatte
467b6ff8de
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-07-05 14:24:27 +12:00
G.Ambatte
45d32ebfc3
Merge branch 'master' into experimentalClickToOpen-#2702
2023-07-05 14:24:24 +12:00
Trevor Buckner
84496f51ba
Merge pull request #2904 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.14.1
...
Bump react-router-dom from 6.14.0 to 6.14.1
2023-07-03 15:48:45 -04:00
Trevor Buckner
4cf659e711
Merge pull request #2903 from naturalcrit/dependabot/npm_and_yarn/eslint-8.44.0
...
Bump eslint from 8.43.0 to 8.44.0
2023-07-03 15:48:38 -04:00
dependabot[bot]
e0bfef5231
Bump react-router-dom from 6.14.0 to 6.14.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.14.0 to 6.14.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.14.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-03 03:25:11 +00:00
dependabot[bot]
afb6962407
Bump eslint from 8.43.0 to 8.44.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.43.0 to 8.44.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.43.0...v8.44.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-03 03:24:46 +00:00
Trevor Buckner
8d2945ee5c
Fix changelog.md typos
2023-06-29 20:25:57 -04:00
G.Ambatte
1dad009298
Merge branch 'experimentalClickToOpen-#2702' of https://github.com/G-Ambatte/homebrewery into experimentalClickToOpen-#2702
2023-06-30 07:57:38 +12:00
G.Ambatte
aadf663623
Add scrollbar on dropdowns
2023-06-30 07:57:33 +12:00
G.Ambatte
8685f32b49
Merge branch 'master' into experimentalClickToOpen-#2702
2023-06-30 00:03:35 +12:00
G.Ambatte
678ac90cd0
Shift Recent Items to use Nav.dropdown
2023-06-29 23:58:52 +12:00
G.Ambatte
3cb5e8ed42
Initial functionality pass
2023-06-29 21:59:42 +12:00
G.Ambatte
a41553637a
Add trim to brew description
2023-06-29 16:43:30 +12:00
G.Ambatte
636f2f9372
Add title trim before new saves and updates
2023-06-29 16:35:26 +12:00
G.Ambatte
4ded080a58
Trim titles before alphabetical ListPage sorting
2023-06-29 16:30:06 +12:00
G.Ambatte
a5885c8f4f
Merge branch 'master' into trimBrewTitlesOnUserPage-#2775
2023-06-29 13:26:48 +12:00
G.Ambatte
273f0ca05d
Merge branch 'master' into addStyleSanitization-#1437
2023-06-29 13:26:21 +12:00
G.Ambatte
3c929870cb
Merge branch 'master' into addSmartPageBreak-#2289
2023-06-29 13:25:11 +12:00
G.Ambatte
4cb2a9ef76
Merge branch 'master' into addEditorThemes-#362
2023-06-29 13:24:56 +12:00
Trevor Buckner
36df5a3212
Merge pull request #2899 from naturalcrit/v3.9.1
...
Up version to v3.9.1
2023-06-28 16:13:14 -04:00
Trevor Buckner
cea5f2e43a
Up version to v3.9.1
2023-06-28 16:13:01 -04:00
Trevor Buckner
046845885d
Merge pull request #2892 from G-Ambatte/experimentalErrorPage
...
Basic ErrorPage functionality
2023-06-28 16:05:23 -04:00
G.Ambatte
9713cc4be9
Merge branch 'master' into experimentalErrorPage
2023-06-27 15:35:28 +12:00
Trevor Buckner
8baf0fc849
Add additional test for when logged in, but not in author list
2023-06-26 23:26:59 -04:00
Sean Robertson
a7040e554a
Fix test
2023-06-27 15:19:33 +12:00
Trevor Buckner
ba43055f32
another text tweak
2023-06-26 23:14:08 -04:00
Trevor Buckner
d0de7ca28c
Rephrasing of error texts
2023-06-26 22:48:58 -04:00
Trevor Buckner
c0164dce6a
Fix for username undefined (not logged in)
2023-06-26 17:02:28 -04:00
Trevor Buckner
9e2b8477a8
Merge pull request #2898 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.14.0
...
Bump react-router-dom from 6.13.0 to 6.14.0
2023-06-26 16:44:09 -04:00
Trevor Buckner
5a32ae5cd4
Merge pull request #2897 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.9.0
...
Bump stylelint from 15.8.0 to 15.9.0
2023-06-26 16:44:00 -04:00
G.Ambatte
e88e7f852c
Add account check to Google File not found error
2023-06-26 20:40:11 +12:00
G.Ambatte
a3b2c6987f
Fix test
2023-06-26 18:08:52 +12:00
G.Ambatte
3d47b5a0bc
Fix test
2023-06-26 18:06:37 +12:00
G.Ambatte
c5f4793c23
Add owner info to missing Google file message
2023-06-26 17:43:19 +12:00
dependabot[bot]
10e14bfcfd
Bump react-router-dom from 6.13.0 to 6.14.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.13.0 to 6.14.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@6.14.0/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.14.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-26 03:57:17 +00:00
dependabot[bot]
f3c36ffb0a
Bump stylelint from 15.8.0 to 15.9.0
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.8.0 to 15.9.0.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.8.0...15.9.0 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-26 03:56:53 +00:00
G.Ambatte
cff4f8eae5
Catch duplicate delete requests
2023-06-25 21:26:02 +12:00
G.Ambatte
4799e8b443
Fix test
2023-06-25 21:10:28 +12:00
G.Ambatte
fa38d5c892
Additional info in errors
2023-06-25 20:39:36 +12:00
G.Ambatte
04eb7d0556
Add brew title to Not an Author page
2023-06-25 20:13:13 +12:00
G.Ambatte
f175323221
Use common error object to reduce DRY
2023-06-25 18:22:22 +12:00
G.Ambatte
9f4de3c66e
Fix test
2023-06-25 18:16:57 +12:00
G.Ambatte
800bff611a
Fix test
2023-06-25 18:14:12 +12:00
G.Ambatte
e28b6e7a19
Differentiate Not an Author from Not logged in
2023-06-25 18:10:31 +12:00
G.Ambatte
4c6de90d82
Fix test
2023-06-25 17:13:37 +12:00
G.Ambatte
e5ef0aedd3
Pass all error properties to message generator
2023-06-25 17:10:25 +12:00
G.Ambatte
da8e7ec610
Change Not an Author to 401
2023-06-25 16:51:17 +12:00
G.Ambatte
d1412abe03
Increase specificity of ErrorPage.less
2023-06-25 16:48:50 +12:00
G.Ambatte
9de4a82977
Remove unneeded HR
2023-06-25 15:24:10 +12:00
G.Ambatte
9ddae7bbea
Update UIPage.less to increase specificity
2023-06-25 15:23:58 +12:00
G.Ambatte
4fdc6b79ea
Use Less var to not break server build process
2023-06-25 15:11:12 +12:00
G.Ambatte
0001cf16d9
Change UIPage width calculation
2023-06-25 15:00:10 +12:00
G.Ambatte
438cb7f26d
Fix test
2023-06-25 14:41:15 +12:00
G.Ambatte
ffa240f78d
Fix test
2023-06-25 14:39:42 +12:00
G.Ambatte
782aa8e658
Increase ESLint max lines in app.js
2023-06-25 14:23:14 +12:00
G.Ambatte
7efe8964f1
Change throw method, update HBErrors
2023-06-25 14:21:35 +12:00
G.Ambatte
853515e09e
Switch Error gen from spread operator to func
2023-06-25 12:56:22 +12:00
Trevor Buckner
f6c5354ce0
Add support for custom HBErrorCodes
2023-06-24 02:57:03 -04:00
Trevor Buckner
6353341738
styleLint
2023-06-24 01:50:57 -04:00
Trevor Buckner
66b9a792e7
Change Missing Google error text
2023-06-24 01:47:07 -04:00
Trevor Buckner
2775614eab
Add styling to errorPage
2023-06-24 01:46:44 -04:00
Trevor Buckner
32229c6e6e
Change json file to js so we can use multiline strings
2023-06-24 00:40:10 -04:00
Trevor Buckner
37c88b83f1
Don't redirect/use cookies. Just render page.
2023-06-23 17:24:31 -04:00
Trevor Buckner
2fa1b2bb8b
Break out page rendering into function
2023-06-23 16:29:17 -04:00
G.Ambatte
949d763e35
Detect heading from Markdown Lexer tokens
2023-06-23 17:58:54 +12:00
G.Ambatte
661872f332
Merge branch 'master' into addEditorThemes-#362
2023-06-23 09:44:18 +12:00
G.Ambatte
46cb2e6b5b
Merge branch 'master' into addStyleSanitization-#1437
2023-06-23 09:44:05 +12:00
G.Ambatte
e7224e97ef
Merge branch 'master' into addSmartPageBreak-#2289
2023-06-23 09:43:24 +12:00
G.Ambatte
e07d53aa5f
Merge branch 'master' into experimentalErrorPage
2023-06-23 09:42:04 +12:00
Víctor Losada Hernández
dbb4476eb4
newline necessary
2023-06-22 23:32:26 +02:00
Víctor Losada Hernández
65f55dfc12
duplicated .page
2023-06-22 23:29:01 +02:00
Víctor Losada Hernández
95322595bf
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into FAQ-update
2023-06-22 23:18:44 +02:00
Trevor Buckner
1e004977be
Merge pull request #2895 from naturalcrit/dependabot/npm_and_yarn/npm-9.7.2
...
Bump npm from 9.7.1 to 9.7.2
2023-06-22 15:29:24 -04:00
Trevor Buckner
9110e7cf7e
Merge pull request #2894 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.3.1
...
Bump mongoose from 7.3.0 to 7.3.1
2023-06-22 15:29:17 -04:00
dependabot[bot]
27e8b54528
Bump npm from 9.7.1 to 9.7.2
...
Bumps [npm](https://github.com/npm/cli ) from 9.7.1 to 9.7.2.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.7.1...v9.7.2 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-22 19:11:53 +00:00
dependabot[bot]
aa31919563
Bump mongoose from 7.3.0 to 7.3.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.3.0 to 7.3.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.3.0...7.3.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-22 19:11:27 +00:00
Trevor Buckner
7bf3295fc2
Merge pull request #2893 from naturalcrit/dependabot/npm_and_yarn/eslint-plugin-jest-27.2.2
...
Bump eslint-plugin-jest from 27.2.1 to 27.2.2
2023-06-22 15:10:31 -04:00
dependabot[bot]
9fd3f47689
Bump eslint-plugin-jest from 27.2.1 to 27.2.2
...
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest ) from 27.2.1 to 27.2.2.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases )
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v27.2.1...v27.2.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-22 18:33:26 +00:00
Trevor Buckner
0ca7e43d73
Merge pull request #2896 from naturalcrit/extractMarkedSmartypantsIntoPackage
...
extract smartypants into package
2023-06-22 14:32:01 -04:00
Trevor Buckner
b33b3cd49b
extract smartypants into package
2023-06-22 14:31:14 -04:00
G.Ambatte
71c384ee0b
Fix tests
2023-06-20 16:45:36 +12:00
G.Ambatte
546b8d5725
Merge branch 'experimentalErrorPage' of https://github.com/G-Ambatte/homebrewery into experimentalErrorPage
2023-06-20 13:45:04 +12:00
G.Ambatte
4d6ac2b142
Update ErrorPage to use basePage/UIPage
2023-06-20 13:45:01 +12:00
G.Ambatte
ce538ebbfd
Add errorIndex.json
2023-06-20 13:44:41 +12:00
G.Ambatte
cf17e73dfa
Merge branch 'master' into experimentalErrorPage
2023-06-20 11:20:02 +12:00
Trevor Buckner
69ef4d7653
Merge pull request #2888 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.13.0
...
Bump react-router-dom from 6.12.1 to 6.13.0
2023-06-19 11:03:13 -04:00
Trevor Buckner
c98224f3e4
Merge pull request #2887 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.3.0
...
Bump mongoose from 7.2.3 to 7.3.0
2023-06-19 11:03:03 -04:00
Trevor Buckner
4f870de68f
Merge pull request #2891 from naturalcrit/dependabot/npm_and_yarn/eslint-8.43.0
...
Bump eslint from 8.42.0 to 8.43.0
2023-06-19 11:02:54 -04:00
Trevor Buckner
2cfee2e8ad
Merge pull request #2890 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.8.0
...
Bump stylelint from 15.7.0 to 15.8.0
2023-06-19 11:02:46 -04:00
G.Ambatte
9e1d53a30c
Basic ErrorPage functionality
2023-06-19 21:06:38 +12:00
dependabot[bot]
1fe9f0c8d0
Bump eslint from 8.42.0 to 8.43.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.42.0 to 8.43.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.42.0...v8.43.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-19 03:57:15 +00:00
dependabot[bot]
adc7233cab
Bump stylelint from 15.7.0 to 15.8.0
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.7.0 to 15.8.0.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.7.0...15.8.0 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-19 03:56:34 +00:00
G.Ambatte
1b2fc746d3
Remove script check from basic Markdown tests
2023-06-17 22:45:09 +12:00
G.Ambatte
b472fc1115
Move script tag sanitization to BrewRenderer
2023-06-17 20:25:15 +12:00
G.Ambatte
a7a47afaae
Merge branch 'master' into addStyleSanitization-#1437
2023-06-17 20:09:45 +12:00
G.Ambatte
8c0ca988ae
Trim brew.title on UserPage
2023-06-17 19:50:05 +12:00
dependabot[bot]
509c7d8832
Bump react-router-dom from 6.12.1 to 6.13.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.12.1 to 6.13.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.13.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-15 03:57:17 +00:00
dependabot[bot]
caff1d8e2b
Bump mongoose from 7.2.3 to 7.3.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.2.3 to 7.3.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.2.3...7.3.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-15 03:57:03 +00:00
G.Ambatte
e06f5e17d9
Relocate from 5ePHB to Blank theme
2023-06-15 13:42:10 +12:00
G.Ambatte
ade61971d0
Remove snippet.params
2023-06-15 11:50:38 +12:00
G.Ambatte
e1a22ed76c
Merge branch 'master' into addEditorThemes-#362
2023-06-14 08:39:18 +12:00
Trevor Buckner
6451d79d92
Merge branch 'master' into pr/2417
2023-06-12 22:26:10 -04:00
Trevor Buckner
9202f9c8eb
Merge pull request #2881 from naturalcrit/dependabot/npm_and_yarn/marked-5.1.0
...
Bump marked from 5.0.5 to 5.1.0
2023-06-12 16:42:18 -04:00
Trevor Buckner
097cc220f8
Merge pull request #2882 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.2.3
...
Bump mongoose from 7.2.2 to 7.2.3
2023-06-12 16:42:07 -04:00
G.Ambatte
7e660aad45
Add styling for columnSplite and pageLine
2023-06-12 20:49:15 +12:00
G.Ambatte
c8df449aac
Style custom blocks in editor on dark themes
2023-06-12 19:52:13 +12:00
dependabot[bot]
2e3c10c35b
Bump mongoose from 7.2.2 to 7.2.3
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.2.2 to 7.2.3.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.2.2...7.2.3 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-12 03:57:24 +00:00
dependabot[bot]
a5aeb7dccd
Bump marked from 5.0.5 to 5.1.0
...
Bumps [marked](https://github.com/markedjs/marked ) from 5.0.5 to 5.1.0.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v5.0.5...v5.1.0 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-12 03:56:39 +00:00
G.Ambatte
7681be2e9c
Merge branch 'master' into addEditorThemes-#362
2023-06-10 14:25:23 +12:00
Trevor Buckner
92ff776270
Merge pull request #2877 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.5
...
Bump @babel/plugin-transform-runtime from 7.22.4 to 7.22.5
2023-06-09 11:11:20 -04:00
dependabot[bot]
bf1fb97789
Bump @babel/plugin-transform-runtime from 7.22.4 to 7.22.5
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.4 to 7.22.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.5/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 15:10:52 +00:00
Trevor Buckner
2cddc2debe
Merge pull request #2876 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.5
...
Bump @babel/preset-env from 7.22.4 to 7.22.5
2023-06-09 11:09:42 -04:00
dependabot[bot]
0d4a1a11c1
Bump @babel/preset-env from 7.22.4 to 7.22.5
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.4 to 7.22.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.5/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 15:04:42 +00:00
Trevor Buckner
aa3cf1d9c1
Merge pull request #2875 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.5
...
Bump @babel/core from 7.22.1 to 7.22.5
2023-06-09 11:02:39 -04:00
Trevor Buckner
5d0062f610
Merge pull request #2874 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.12.1
...
Bump react-router-dom from 6.11.2 to 6.12.1
2023-06-09 11:02:28 -04:00
Trevor Buckner
7976917bb9
Merge pull request #2873 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.22.5
...
Bump @babel/preset-react from 7.22.3 to 7.22.5
2023-06-09 11:02:16 -04:00
Trevor Buckner
023071c874
Merge pull request #2869 from naturalcrit/dependabot/npm_and_yarn/stylelint-config-recess-order-4.2.0
...
Bump stylelint-config-recess-order from 4.0.0 to 4.2.0
2023-06-09 11:01:03 -04:00
dependabot[bot]
7da42d3742
Bump stylelint-config-recess-order from 4.0.0 to 4.2.0
...
Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order ) from 4.0.0 to 4.2.0.
- [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases )
- [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.0.0...v4.2.0 )
---
updated-dependencies:
- dependency-name: stylelint-config-recess-order
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 15:00:36 +00:00
Trevor Buckner
3269e94757
Merge pull request #2872 from naturalcrit/dependabot/npm_and_yarn/npm-9.7.1
...
Bump npm from 9.6.7 to 9.7.1
2023-06-09 10:59:26 -04:00
Trevor Buckner
c69f4289ed
Merge pull request #2867 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.7.0
...
Bump stylelint from 15.6.3 to 15.7.0
2023-06-09 10:59:13 -04:00
Trevor Buckner
8752a32626
Merge pull request #2863 from naturalcrit/dependabot/npm_and_yarn/marked-gfm-heading-id-3.0.4
...
Bump marked-gfm-heading-id from 3.0.3 to 3.0.4
2023-06-09 10:58:54 -04:00
Trevor Buckner
8735d1f222
Merge pull request #2862 from naturalcrit/dependabot/npm_and_yarn/eslint-8.42.0
...
Bump eslint from 8.41.0 to 8.42.0
2023-06-09 10:58:42 -04:00
Trevor Buckner
21929e676d
Merge pull request #2871 from naturalcrit/dependabot/npm_and_yarn/marked-5.0.5
...
Bump marked from 5.0.4 to 5.0.5
2023-06-09 10:58:30 -04:00
dependabot[bot]
5ca61935a8
Bump @babel/core from 7.22.1 to 7.22.5
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.22.1 to 7.22.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.5/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 03:57:54 +00:00
dependabot[bot]
10143cec93
Bump react-router-dom from 6.11.2 to 6.12.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.11.2 to 6.12.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.12.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 03:57:22 +00:00
dependabot[bot]
643c8503c0
Bump @babel/preset-react from 7.22.3 to 7.22.5
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.22.3 to 7.22.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.5/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-09 03:57:04 +00:00
dependabot[bot]
e92d3ecd68
Bump npm from 9.6.7 to 9.7.1
...
Bumps [npm](https://github.com/npm/cli ) from 9.6.7 to 9.7.1.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.6.7...v9.7.1 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-08 03:57:47 +00:00
dependabot[bot]
4f092828ac
Bump marked from 5.0.4 to 5.0.5
...
Bumps [marked](https://github.com/markedjs/marked ) from 5.0.4 to 5.0.5.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v5.0.4...v5.0.5 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-08 03:57:08 +00:00
dependabot[bot]
2d4c211483
Bump stylelint from 15.6.3 to 15.7.0
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.6.3 to 15.7.0.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.6.3...15.7.0 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-06 03:56:50 +00:00
Trevor Buckner
7d30abc4d9
Merge pull request #2865 from G-Ambatte/bumpNodeInDocker-#2861
...
[Docker] - Bump Node from 16.13 to 18
2023-06-05 07:47:29 -04:00
G.Ambatte
1d513f7a0e
Bump Node from 16.13 to 18
2023-06-05 20:33:46 +12:00
Trevor Buckner
44922f5261
Merge pull request #2860 from G-Ambatte/fixTestFailure-#2859
...
Fix test failure
2023-06-05 00:17:05 -04:00
dependabot[bot]
f695cc6948
Bump marked-gfm-heading-id from 3.0.3 to 3.0.4
...
Bumps [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id ) from 3.0.3 to 3.0.4.
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases )
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs )
- [Commits](https://github.com/markedjs/marked-gfm-heading-id/compare/v3.0.3...v3.0.4 )
---
updated-dependencies:
- dependency-name: marked-gfm-heading-id
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-05 04:13:33 +00:00
dependabot[bot]
3722387f1f
Bump eslint from 8.41.0 to 8.42.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.41.0 to 8.42.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.41.0...v8.42.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-05 04:13:30 +00:00
Trevor Buckner
8950cb944f
Merge pull request #2864 from naturalcrit/dependabot/npm_and_yarn/stylelint-15.6.3
...
Bump stylelint from 15.6.2 to 15.6.3
2023-06-05 00:12:10 -04:00
dependabot[bot]
66fb70a5f8
Bump stylelint from 15.6.2 to 15.6.3
...
Bumps [stylelint](https://github.com/stylelint/stylelint ) from 15.6.2 to 15.6.3.
- [Release notes](https://github.com/stylelint/stylelint/releases )
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/stylelint/stylelint/compare/15.6.2...15.6.3 )
---
updated-dependencies:
- dependency-name: stylelint
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-06-05 03:57:36 +00:00
G.Ambatte
69c242425b
Update test output
2023-06-03 14:20:45 +12:00
G.Ambatte
9093f610bd
Add params from snippet to function
2023-06-03 14:09:50 +12:00
G.Ambatte
d2b2e69123
Shift Footer generation to snippet
2023-06-03 13:30:32 +12:00
G.Ambatte
052c255068
Lint fixes
2023-06-03 13:23:39 +12:00
G.Ambatte
e6ad8aefde
Lint fix
2023-06-03 12:18:22 +12:00
G.Ambatte
43ae80e80d
Merge branch 'master' into addSmartPageBreak-#2289
2023-06-03 12:16:18 +12:00
Trevor Buckner
e6e04ad21d
Fix changelog.md typos
2023-06-02 17:48:01 -04:00
Trevor Buckner
7be6b913b0
Merge pull request #2858 from naturalcrit/v3.9.0
...
Up version to v3.9.0
2023-06-02 17:14:05 -04:00
Trevor Buckner
94b7c89252
Up version to v3.9.0
2023-06-02 17:13:45 -04:00
Trevor Buckner
c2e8967ed9
Merge pull request #2857 from naturalcrit/FixSlowSmartypants
...
Replace SmartyPants plugin with custom
2023-06-02 17:03:30 -04:00
Trevor Buckner
942fdb8095
Replace SmartyPants plugin with custom
2023-06-02 17:02:45 -04:00
Trevor Buckner
95873ac158
Update coverpage.gen.js
2023-06-02 15:01:03 -04:00
Trevor Buckner
3b4b0583cf
Merge pull request #2856 from naturalcrit/dependabot/npm_and_yarn/marked-5.0.4
...
Bump marked from 4.3.0 to 5.0.4
2023-05-31 11:51:45 -04:00
Trevor Buckner
2c9e3d2f2f
Update package-lock.json
2023-05-31 11:51:07 -04:00
Trevor Buckner
5fca0a77d3
Merge branch 'dependabot/npm_and_yarn/marked-5.0.4' of https://github.com/naturalcrit/homebrewery into dependabot/npm_and_yarn/marked-5.0.4
2023-05-31 11:50:43 -04:00
Trevor Buckner
2c73e59eb0
Remove deprecated options
2023-05-31 11:14:57 -04:00
Trevor Buckner
f5db5c7bf2
Merge pull request #2755 from 5e-Cleric/Index-snippet
...
Index Snippet - PHB
2023-05-31 09:33:21 -04:00
Trevor Buckner
37abc38426
Move snippet to "Text Editor" group
2023-05-31 09:33:01 -04:00
dependabot[bot]
855fabb89e
Bump marked from 4.3.0 to 5.0.4
...
Bumps [marked](https://github.com/markedjs/marked ) from 4.3.0 to 5.0.4.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v4.3.0...v5.0.4 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-31 13:26:37 +00:00
Trevor Buckner
bc35490ba2
Merge pull request #2855 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.2.2
...
Bump mongoose from 7.2.1 to 7.2.2
2023-05-31 09:25:20 -04:00
Trevor Buckner
8b5404606e
Merge pull request #2854 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.4
...
Bump @babel/preset-env from 7.22.2 to 7.22.4
2023-05-31 09:25:11 -04:00
dependabot[bot]
c5d3605c11
Bump @babel/preset-env from 7.22.2 to 7.22.4
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.22.2 to 7.22.4.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.4/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-31 13:21:19 +00:00
Trevor Buckner
43ab292391
Merge pull request #2853 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.4
...
Bump @babel/plugin-transform-runtime from 7.22.2 to 7.22.4
2023-05-31 09:20:27 -04:00
dependabot[bot]
3ed9702ef2
Bump marked from 4.3.0 to 5.0.4
...
Bumps [marked](https://github.com/markedjs/marked ) from 4.3.0 to 5.0.4.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v4.3.0...v5.0.4 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-31 03:57:03 +00:00
dependabot[bot]
755b43179b
Bump mongoose from 7.2.1 to 7.2.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.2.1 to 7.2.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.2.1...7.2.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-31 03:56:45 +00:00
Trevor Buckner
66b827ee2f
linting
2023-05-30 17:20:17 -04:00
Trevor Buckner
483a1c44ef
Merge branch 'master' into pr/2755
2023-05-30 17:18:03 -04:00
Trevor Buckner
47680f07df
Change to nested lists, shrink font to match PHB
2023-05-30 17:17:17 -04:00
dependabot[bot]
9e43986d24
Bump @babel/plugin-transform-runtime from 7.22.2 to 7.22.4
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.22.2 to 7.22.4.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.4/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-30 03:56:54 +00:00
Trevor Buckner
7a198fe8b8
Merge pull request #2850 from naturalcrit/dependabot/npm_and_yarn/babel/plugin-transform-runtime-7.22.2
...
Bump @babel/plugin-transform-runtime from 7.21.4 to 7.22.2
2023-05-29 00:17:31 -04:00
dependabot[bot]
e3e5cb1dff
Bump @babel/plugin-transform-runtime from 7.21.4 to 7.22.2
...
Bumps [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime ) from 7.21.4 to 7.22.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.2/packages/babel-plugin-transform-runtime )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-runtime"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-29 04:16:23 +00:00
Trevor Buckner
f44ea92d4f
Merge pull request #2851 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.22.1
...
Bump @babel/core from 7.21.8 to 7.22.1
2023-05-29 00:15:32 -04:00
Trevor Buckner
5781b9d177
Merge pull request #2849 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.22.2
...
Bump @babel/preset-env from 7.21.5 to 7.22.2
2023-05-29 00:15:13 -04:00
dependabot[bot]
817539dfda
Bump @babel/preset-env from 7.21.5 to 7.22.2
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.21.5 to 7.22.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.2/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-29 04:13:21 +00:00
dependabot[bot]
4e083aece8
Bump @babel/core from 7.21.8 to 7.22.1
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.21.8 to 7.22.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.1/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-29 04:13:19 +00:00
Trevor Buckner
27a12dfa79
Merge pull request #2852 from naturalcrit/dependabot/npm_and_yarn/babel/preset-react-7.22.3
...
Bump @babel/preset-react from 7.18.6 to 7.22.3
2023-05-29 00:07:31 -04:00
dependabot[bot]
3b5ebf8f60
Bump @babel/preset-react from 7.18.6 to 7.22.3
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.18.6 to 7.22.3.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.22.3/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-29 03:58:54 +00:00
Trevor Buckner
daea4419ff
Merge pull request #2847 from naturalcrit/FixStylelint
...
Fix stylelint
2023-05-27 21:34:28 -04:00
Trevor Buckner
3b76a12505
merge with master
2023-05-27 14:11:36 -04:00
Trevor Buckner
dda3ba8215
Merge branch 'master' into FixStylelint
2023-05-27 13:59:17 -04:00
Trevor Buckner
6ea05d8ec2
Tweak rule order, rename custom plugin
2023-05-27 13:58:39 -04:00
Trevor Buckner
71ec9034b7
Change snippet to nested list
2023-05-26 17:17:56 -04:00
Trevor Buckner
86dce0ae24
Merge pull request #2845 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.2.1
...
Bump mongoose from 7.2.0 to 7.2.1
2023-05-26 17:05:20 -04:00
Trevor Buckner
1ebdf318bf
Add some "avoid errors" rules
2023-05-26 03:00:25 -04:00
Trevor Buckner
f05e0db14b
Fix single-line detection rule. Linting.
2023-05-26 01:10:49 -04:00
dependabot[bot]
43fd6c451e
Bump mongoose from 7.2.0 to 7.2.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.2.0 to 7.2.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.2.0...7.2.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-25 03:56:41 +00:00
Trevor Buckner
e621f2d19b
Merge pull request #2839 from naturalcrit/ChangeTabToSpaces
...
Custom function to use spaces for indent
2023-05-22 22:40:52 -04:00
Trevor Buckner
ca34ca499d
Remove duplicate tabs
2023-05-22 22:40:18 -04:00
Trevor Buckner
0715e365f1
Merge pull request #2843 from Gazook89/StringArrayEditor-Unique-ID-Fix
...
Fix StringArrayEditor unique `key` error
2023-05-22 22:38:48 -04:00
Trevor Buckner
55d265069c
Merge pull request #2844 from naturalcrit/FixNodemonWatchfileForBuildScript
...
Fix redundant build/ properly watch .less
2023-05-22 22:20:35 -04:00
Trevor Buckner
52ee7d9dbf
Fix redundant build/ properly watch .less
2023-05-22 22:17:32 -04:00
Gazook89
d0346650c4
add key to <p> in notes
2023-05-22 14:19:23 -05:00
Trevor Buckner
96b26d72fd
Merge pull request #2842 from naturalcrit/dependabot/npm_and_yarn/eslint-8.41.0
...
Bump eslint from 8.40.0 to 8.41.0
2023-05-22 00:02:57 -04:00
Trevor Buckner
d51757b8b9
Merge pull request #2841 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.2.0
...
Bump mongoose from 7.1.2 to 7.2.0
2023-05-22 00:02:00 -04:00
dependabot[bot]
beccef2685
Bump eslint from 8.40.0 to 8.41.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.40.0 to 8.41.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.40.0...v8.41.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-22 03:57:58 +00:00
dependabot[bot]
06f74c6b64
Bump mongoose from 7.1.2 to 7.2.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.1.2 to 7.2.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.1.2...7.2.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-22 03:57:23 +00:00
Trevor Buckner
288b407e3e
Turn off smartIndent
2023-05-20 01:32:07 -04:00
Trevor Buckner
57eea5c69f
Custom function to use spaces for indent
2023-05-20 01:24:36 -04:00
Trevor Buckner
fbfb92735c
Merge branch 'master' into pr/2755
2023-05-19 19:28:14 -04:00
Trevor Buckner
95376db055
Merge pull request #2838 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.1.2
...
Bump mongoose from 7.1.1 to 7.1.2
2023-05-19 00:21:20 -04:00
Trevor Buckner
01d3ec9d58
Merge pull request #2837 from naturalcrit/dependabot/npm_and_yarn/npm-9.6.7
...
Bump npm from 9.6.6 to 9.6.7
2023-05-19 00:20:43 -04:00
dependabot[bot]
a1eb09225a
Bump mongoose from 7.1.1 to 7.1.2
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.1.1 to 7.1.2.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.1.1...7.1.2 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-19 03:57:46 +00:00
dependabot[bot]
5c2e2edbed
Bump npm from 9.6.6 to 9.6.7
...
Bumps [npm](https://github.com/npm/cli ) from 9.6.6 to 9.6.7.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.6.6...v9.6.7 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-19 03:57:09 +00:00
Trevor Buckner
4bb7d143aa
Merge pull request #2835 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.11.2
...
Bump react-router-dom from 6.11.1 to 6.11.2
2023-05-18 00:07:42 -04:00
dependabot[bot]
f5cefc4db4
Bump react-router-dom from 6.11.1 to 6.11.2
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.11.1 to 6.11.2.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.11.2/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-18 03:56:49 +00:00
Trevor Buckner
efbde81853
typo
2023-05-17 21:36:29 -04:00
Trevor Buckner
69a18d365a
Merge pull request #2828 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.1.1
...
Bump mongoose from 7.1.0 to 7.1.1
2023-05-17 20:02:41 -04:00
dependabot[bot]
34e73ee69b
Bump mongoose from 7.1.0 to 7.1.1
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.1.0 to 7.1.1.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.1.0...7.1.1 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-17 23:35:01 +00:00
Trevor Buckner
ee1ee801a7
Merge pull request #2834 from naturalcrit/styleLint
...
Set up Stylelint and add custom plugins
2023-05-17 19:33:47 -04:00
Trevor Buckner
99d441d9ff
command line options
2023-05-17 19:31:03 -04:00
Trevor Buckner
d2be324bb0
One more custom plugin
2023-05-17 19:30:50 -04:00
Trevor Buckner
6ceba54631
Fix merge conflict
2023-05-17 18:55:24 -04:00
Trevor Buckner
53e77718e1
Merge branch 'master' into styleLint
2023-05-17 18:54:14 -04:00
Trevor Buckner
0342dfed4c
Merge pull request #2833 from naturalcrit/BumpToNode18
...
Bump node version to 18.16.x
2023-05-17 18:52:29 -04:00
Trevor Buckner
0864f4ced0
Bump node version to 18.16.x
2023-05-17 18:50:40 -04:00
Trevor Buckner
ebd729b78f
Set up Stylelint and add custom plugins
2023-05-17 18:48:25 -04:00
Trevor Buckner
32454a3f12
Merge pull request #2711 from 5e-Cleric/back-cover-snippet
...
Back cover snippet
2023-05-13 23:03:37 -04:00
Trevor Buckner
9781c8e633
Add some randomness to the snippet
2023-05-13 23:01:53 -04:00
Trevor Buckner
8a2aacebeb
Add white version of Naturalcrit logo
2023-05-13 22:45:00 -04:00
Trevor Buckner
5889c2f1e0
Tweak CSS sizes and spacing
2023-05-13 22:44:38 -04:00
Trevor Buckner
b135ce2ae9
compress and resize backgroundCover image
2023-05-13 22:36:32 -04:00
Trevor Buckner
8f2a114e1c
Add wide version of NodestoCaps font
2023-05-13 22:30:06 -04:00
G.Ambatte
455b364160
Merge branch 'master' into addEditorThemes-#362
2023-05-10 08:40:51 +12:00
Trevor Buckner
11c8446c9c
Merge pull request #2823 from naturalcrit/GoogleDriveQueryNextPage
...
Get next page if GDrive file listing is incomplete
2023-05-09 10:48:16 -04:00
Trevor Buckner
0e1b30eced
Get next page if end of files not reached
2023-05-09 10:44:18 -04:00
G.Ambatte
56dbfc032c
Merge branch 'master' into addEditorThemes-#362
2023-05-09 10:19:35 +12:00
Trevor Buckner
b8372ebdcc
tweak snippet
2023-05-08 14:06:44 -04:00
Trevor Buckner
42fdb0ebb1
Fix build error
2023-05-08 14:06:28 -04:00
Trevor Buckner
b2ebf724f5
Merge pull request #2822 from naturalcrit/dependabot/npm_and_yarn/eslint-8.40.0
...
Bump eslint from 8.39.0 to 8.40.0
2023-05-08 13:50:55 -04:00
dependabot[bot]
a4bea1c3be
Bump eslint from 8.39.0 to 8.40.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.39.0 to 8.40.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.39.0...v8.40.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-08 03:57:06 +00:00
Trevor Buckner
c800195e95
Merge pull request #2819 from naturalcrit/dependabot/npm_and_yarn/marked-extended-tables-1.0.6
...
Bump marked-extended-tables from 1.0.5 to 1.0.6
2023-05-05 07:09:04 -04:00
dependabot[bot]
26ec222a33
Bump marked-extended-tables from 1.0.5 to 1.0.6
...
Bumps [marked-extended-tables](https://github.com/calculuschild/marked-extended-tables ) from 1.0.5 to 1.0.6.
- [Release notes](https://github.com/calculuschild/marked-extended-tables/releases )
- [Changelog](https://github.com/calculuschild/marked-extended-tables/blob/main/release.config.cjs )
- [Commits](https://github.com/calculuschild/marked-extended-tables/commits/v1.0.6 )
---
updated-dependencies:
- dependency-name: marked-extended-tables
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-05 03:56:42 +00:00
Trevor Buckner
618e594acf
Merge pull request #2817 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.11.1
...
Bump react-router-dom from 6.11.0 to 6.11.1
2023-05-04 14:38:41 -04:00
Trevor Buckner
dde500004d
Merge pull request #2818 from naturalcrit/dependabot/npm_and_yarn/npm-9.6.6
...
Bump npm from 9.6.5 to 9.6.6
2023-05-04 13:46:55 -04:00
dependabot[bot]
1cf1750887
Bump npm from 9.6.5 to 9.6.6
...
Bumps [npm](https://github.com/npm/cli ) from 9.6.5 to 9.6.6.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.6.5...v9.6.6 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-04 03:57:00 +00:00
dependabot[bot]
cbf281f211
Bump react-router-dom from 6.11.0 to 6.11.1
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.11.0 to 6.11.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.11.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-04 03:56:31 +00:00
Trevor Buckner
34c73c3d09
Merge pull request #2811 from 5e-Cleric/text-color-change
...
correct highlight of .cm-comment elements in editor
2023-05-03 12:48:28 -04:00
Trevor Buckner
9d61fc85a0
Merge pull request #2814 from naturalcrit/dependabot/npm_and_yarn/googleapis/drive-5.1.0
...
Bump @googleapis/drive from 5.0.2 to 5.1.0
2023-05-03 12:47:57 -04:00
Trevor Buckner
6825bb3bac
Merge pull request #2815 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.21.8
...
Bump @babel/core from 7.21.5 to 7.21.8
2023-05-03 12:47:49 -04:00
dependabot[bot]
0cb96f6fe6
Bump @babel/core from 7.21.5 to 7.21.8
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.21.5 to 7.21.8.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.21.8/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-03 03:58:01 +00:00
dependabot[bot]
2b7e0c3fb8
Bump @googleapis/drive from 5.0.2 to 5.1.0
...
Bumps [@googleapis/drive](https://github.com/googleapis/google-api-nodejs-client ) from 5.0.2 to 5.1.0.
- [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases )
- [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/5.1.0/CHANGELOG.md )
- [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/drive-v5.0.2...5.1.0 )
---
updated-dependencies:
- dependency-name: "@googleapis/drive"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-03 03:57:05 +00:00
Víctor Losada Hernández
38c20430a9
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-05-02 22:39:46 +02:00
Victor Losada Hernandez
2cce7aebfc
correct highlight of curly elements
2023-05-02 21:25:00 +02:00
Trevor Buckner
b5508b7a24
Merge pull request #2810 from naturalcrit/dependabot/npm_and_yarn/babel/preset-env-7.21.5
...
Bump @babel/preset-env from 7.21.4 to 7.21.5
2023-05-01 11:15:47 -04:00
dependabot[bot]
273dfdce40
Bump @babel/preset-env from 7.21.4 to 7.21.5
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.21.4 to 7.21.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.21.5/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-01 03:58:10 +00:00
Trevor Buckner
1848dc8182
Merge pull request #2808 from naturalcrit/dependabot/npm_and_yarn/babel/core-7.21.5
...
Bump @babel/core from 7.21.4 to 7.21.5
2023-04-30 23:58:02 -04:00
Trevor Buckner
6fd26a2d0b
Merge pull request #2809 from naturalcrit/dependabot/npm_and_yarn/react-router-dom-6.11.0
...
Bump react-router-dom from 6.10.0 to 6.11.0
2023-04-30 23:57:48 -04:00
dependabot[bot]
528efc8b98
Bump react-router-dom from 6.10.0 to 6.11.0
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.10.0 to 6.11.0.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.11.0/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-01 03:57:04 +00:00
dependabot[bot]
ef50b1966b
Bump @babel/core from 7.21.4 to 7.21.5
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.21.4 to 7.21.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.21.5/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-01 03:56:47 +00:00
Victor Losada Hernandez
2397f41b52
image change
2023-04-28 23:17:02 +02:00
Victor Losada Hernandez
5554ad9c26
engaging text
2023-04-28 23:13:33 +02:00
Victor Losada Hernandez
f5a07cac44
merge cover gen files
2023-04-28 23:07:02 +02:00
Victor Losada Hernandez
51dfd9a38c
merging headache
2023-04-28 22:59:45 +02:00
Victor Losada Hernandez
11da8b1dac
Merge master into back cover
2023-04-28 22:57:13 +02:00
Trevor Buckner
22aed68200
Merge branch 'master' into pr/2711
2023-04-28 16:56:49 -04:00
Trevor Buckner
1da329fb78
Merge pull request #2654 from 5e-Cleric/part-cover-snippet
...
Part cover - PHB + DMG
2023-04-28 16:52:29 -04:00
Trevor Buckner
d455e8c270
Add icon
2023-04-28 16:52:03 -04:00
Trevor Buckner
e235c705ae
Move snippet to common CoverPage.gen
2023-04-28 16:51:53 -04:00
Trevor Buckner
f771e24788
Simplify CSS
2023-04-28 16:51:29 -04:00
Trevor Buckner
55941f0318
Merge branch 'master' into pr/2654
2023-04-28 15:39:12 -04:00
Trevor Buckner
ea38540e3b
Merge pull request #2799 from naturalcrit/dependabot/npm_and_yarn/eslint-8.39.0
...
Bump eslint from 8.38.0 to 8.39.0
2023-04-28 15:06:10 -04:00
Trevor Buckner
1500ed071f
Merge pull request #2807 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.1.0
...
Bump mongoose from 7.0.4 to 7.1.0
2023-04-28 15:06:01 -04:00
Trevor Buckner
a568ab3b8a
Merge pull request #2806 from G-Ambatte/fixFlyIn-#2790
...
Stop image movement in Image Masks
2023-04-28 15:05:51 -04:00
dependabot[bot]
3c8660442b
Bump mongoose from 7.0.4 to 7.1.0
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.0.4 to 7.1.0.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.0.4...7.1.0 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-04-28 03:56:59 +00:00
Trevor Buckner
2525fa2a53
Merge pull request #2805 from G-Ambatte/experimentalDockerBuildChanges-#2801
...
Dockerfile - Change to npm
2023-04-27 13:38:54 -04:00
G.Ambatte
3f7aff587c
Remove transition rules from style.less
2023-04-27 21:23:55 +12:00
G.Ambatte
00dd030ee2
Change to npm from yarn
2023-04-27 17:54:30 +12:00
dependabot[bot]
a8179cae7b
Bump eslint from 8.38.0 to 8.39.0
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.38.0 to 8.39.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v8.38.0...v8.39.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-04-24 03:56:53 +00:00
Victor Losada Hernandez
86823b43b1
generated quotes, correct small caps
2023-04-23 15:53:35 +02:00
Victor Losada Hernandez
0abfb23ef2
first line difference phb vs dmg
2023-04-23 15:28:43 +02:00
Victor Losada Hernandez
da5d4236b6
initial styling
2023-04-23 15:21:48 +02:00
Victor Losada Hernandez
963236f961
tables within notes & drop caps
2023-04-23 15:11:29 +02:00
Victor Losada Hernandez
2d4a3ec910
landing page update
2023-04-22 15:30:22 +02:00
Trevor Buckner
0425e61be2
Merge pull request #2794 from naturalcrit/dependabot/npm_and_yarn/npm-9.6.5
...
Bump npm from 9.6.4 to 9.6.5
2023-04-21 09:41:27 -04:00
dependabot[bot]
a2ebb025a2
Bump npm from 9.6.4 to 9.6.5
...
Bumps [npm](https://github.com/npm/cli ) from 9.6.4 to 9.6.5.
- [Release notes](https://github.com/npm/cli/releases )
- [Changelog](https://github.com/npm/cli/blob/latest/CHANGELOG.md )
- [Commits](https://github.com/npm/cli/compare/v9.6.4...v9.6.5 )
---
updated-dependencies:
- dependency-name: npm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-04-20 03:56:46 +00:00
Trevor Buckner
a43ea5abb9
Merge pull request #2792 from naturalcrit/dependabot/npm_and_yarn/mongoose-7.0.4
...
Bump mongoose from 7.0.3 to 7.0.4
2023-04-19 11:14:52 -04:00
Trevor Buckner
1ceb1dccca
Merge pull request #2754 from 5e-Cleric/image-monster-block
...
Image Inside Blocks
2023-04-19 11:14:43 -04:00
Trevor Buckner
d375cdf10b
Move rule to the ".block" section
2023-04-19 11:14:29 -04:00
dependabot[bot]
24639f1c29
Bump mongoose from 7.0.3 to 7.0.4
...
Bumps [mongoose](https://github.com/Automattic/mongoose ) from 7.0.3 to 7.0.4.
- [Release notes](https://github.com/Automattic/mongoose/releases )
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Automattic/mongoose/compare/7.0.3...7.0.4 )
---
updated-dependencies:
- dependency-name: mongoose
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-04-18 03:57:16 +00:00
Trevor Buckner
62a9901676
Merge pull request #2788 from naturalcrit/TidyNavbarLess
...
Tidy NavBar Less
2023-04-17 16:18:14 -04:00
Trevor Buckner
c48dccb0d3
spaces to tabs
2023-04-17 16:16:47 -04:00
Victor Losada Hernandez
40afdf18d6
editor width bug q removed
2023-04-15 22:01:00 +02:00
Victor Losada Hernandez
13944d3a76
Log out question removed
2023-04-15 21:41:44 +02:00
Victor Losada Hernandez
65c738d3b2
css cleanup
2023-04-15 21:37:00 +02:00
G.Ambatte
3c168065ee
Merge branch 'master' into addEditorThemes-#362
2023-04-16 07:13:39 +12:00
Victor Losada Hernandez
08ee142f6e
Upstream master into back cover snippet
2023-04-13 23:08:30 +02:00
Trevor Buckner
891bf528cd
Tidy NavBar Less
2023-04-12 17:35:18 -04:00
Trevor Buckner
45b7d7da88
Merge pull request #2785 from naturalcrit/v3.8.0
...
Update to v3.8.0
2023-04-12 16:13:58 -04:00
G.Ambatte
cf42520305
Merge branch 'master' into addEditorThemes-#362
2023-04-12 14:05:19 +12:00
Victor Losada Hernandez
78ca5f5107
undo isolation, raising image z-index
2023-04-09 15:32:03 +02:00
G.Ambatte
d5ac237d40
Merge branch 'master' into addEditorThemes-#362
2023-04-05 12:24:56 +12:00
G.Ambatte
c666d6acb9
Merge branch 'master' into addEditorThemes-#362
2023-04-05 07:45:03 +12:00
G.Ambatte
2869726efd
Merge branch 'master' into addEditorThemes-#362
2023-04-04 13:00:04 +12:00
G.Ambatte
ae9a29c28c
Merge branch 'master' into addEditorThemes-#362
2023-04-02 17:59:36 +12:00
G.Ambatte
c660f87dff
Load from & save to local storage
2023-04-02 17:57:11 +12:00
G.Ambatte
a86c728710
Remove obsolete styling
2023-04-02 16:53:41 +12:00
G.Ambatte
b28e183f95
Remove obsolete dev function
2023-04-02 16:53:30 +12:00
G.Ambatte
dc55880544
Initial theme selector functionality
2023-04-02 16:42:45 +12:00
G.Ambatte
5e9b451e29
Pass current editor theme to SnippetBar as prop
2023-04-02 16:17:50 +12:00
G.Ambatte
977cbeed43
Load available CM themes to global config
2023-04-02 15:17:44 +12:00
G.Ambatte
da6fcb297a
Compile list of available themes during build
2023-04-02 15:17:30 +12:00
G.Ambatte
b2546d908a
Shift CSS link to CodeEditor render
2023-04-02 13:19:43 +12:00
G.Ambatte
7dd1368c09
Add editorTheme to editor.jsx and downstream
2023-04-02 12:53:26 +12:00
G.Ambatte
51f657d2c5
Add CM Themes to build folder
2023-04-02 12:22:06 +12:00
Victor Losada Hernandez
d278c52571
Initial draft
2023-03-26 23:28:29 +02:00
Victor Losada Hernandez
1c38d30665
type error
2023-03-25 23:47:25 +01:00
Victor Losada Hernandez
ab058b31b1
icons
2023-03-25 22:56:45 +01:00
Victor Losada Hernandez
cdcd68bc92
upstream master into branch
2023-03-25 22:56:35 +01:00
Victor Losada Hernandez
2ed669d95e
upstream master into part cover
2023-03-25 21:36:56 +01:00
Victor Losada Hernandez
5bce76bcba
isolation stacking context
2023-03-25 19:28:32 +01:00
Victor Losada Hernandez
9870ff369e
title variation included
2023-03-23 23:26:15 +01:00
Victor Losada Hernandez
d46736b7e6
update - DMG svg
2023-03-17 00:12:48 +01:00
Victor Losada Hernandez
810a5b295d
actual icon
2023-03-01 17:40:15 +01:00
Victor Losada Hernandez
a956f57a56
delete fa-file-c
2023-03-01 17:11:00 +01:00
Victor Losada Hernandez
9b4577c65b
Merge upstream 'master' into back-cover-snippet
2023-03-01 17:10:34 +01:00
Victor Losada Hernandez
a5a59ac058
initial draft
2023-03-01 17:04:21 +01:00
Victor Losada Hernandez
7df2d39a6d
second markdown fix(sorry)
2023-02-28 22:32:07 +01:00
Victor Losada Hernandez
3cdb15ba79
fix mask
2023-02-28 22:30:45 +01:00
Victor Losada Hernandez
7c09956d7d
last draft
2023-02-28 22:27:51 +01:00
Victor Losada Hernandez
63b088762e
Merge upstream 'master' into part-cover-snippet
2023-02-28 22:27:37 +01:00
Victor Losada Hernandez
ac8c79ee63
unit change and has update
2023-02-25 22:39:25 +01:00
Victor Losada Hernandez
3d71799469
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-02-07 13:16:06 +01:00
Victor Losada Hernandez
f7783aba07
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into part-cover-snippet
2023-02-04 17:23:40 +01:00
Victor Losada Hernandez
fe402bc211
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-02-04 16:29:34 +01:00
Victor Losada Hernandez
3380befe21
Diff mask for even/odd pages
2023-02-04 12:13:48 +01:00
Victor Losada Hernandez
14507c388e
Merge branch 'master' of https://github.com/naturalcrit/homebrewery into part-cover-snippet
2023-02-04 11:53:04 +01:00
Victor Losada Hernandez
5cc654a908
Part cover first draft
2023-01-31 17:11:46 +01:00
Victor Losada Hernandez
dc7e4cd192
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-01-31 15:53:10 +01:00
Victor Losada Hernandez
7fd7230e15
Merge branch 'master' of https://github.com/naturalcrit/homebrewery
2023-01-30 20:34:15 +01:00
G.Ambatte
c30eb9056a
Break up text generation for legibility
2022-10-05 22:11:03 +13:00
G.Ambatte
ee3cd21486
Add to base snippets
2022-10-05 21:29:49 +13:00
G.Ambatte
5de63799c2
Update default footnote text
2022-10-05 21:20:39 +13:00
G.Ambatte
dfa8aea1ec
Add newPageWithFooter function
2022-10-05 20:37:05 +13:00
G.Ambatte
8e26161244
Add sanitization of Style content
2022-09-28 17:27:11 +13:00