| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Add full version string (and no AGPL violation detection)
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Currently we only provide the version from `package.json`. This means
that during updates of instances, e.g. the demo instance, which runs
latest master instead of a stable release, changes are not reflected to
the webclient.
This patch adds a fullversion string that contains the current commit
and this way makes that clients are notified about changes.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\
| |
| | |
Fix menu when gitlab is enabled
|
| |
| |
| |
| | |
Signed-off-by: Cédric Couralet <cedric.couralet@gmail.com>
|
|/
|
|
| |
Signed-off-by: Cédric Couralet <cedric.couralet@gmail.com>
|
|\
| |
| | |
Upgrade some package versions
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
`npm audit` reports a ton of issues on CodiMD. Most of them are minor
issues, but these are still things that should be fixed.
This changes were created by running `npm audit fix`.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \
| | |
| | | |
Again: Replace emoji-plugin regex
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The Regex introduced in the last commit[1], was already working quite
good. But still resulted in false positives for all URL that contained a
second `:`.
To fix this once and for all, we craft a simple, but long regex based on
all emoji names and use this to match them.
We could probably optimize it, but that should also be something the
regex engine itself can and should do.
[1]: 7e45533c75a3697c916e52e5f4ddff42a38bd3d5 (in this source tree)
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \
| | | |
| | | | |
removing global site layout vars from individual routers
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
app.local
Signed-off-by: Claudius <opensource@amenthes.de>
|
|\ \ \
| | | |
| | | | |
add option reset in bin/manage_users
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Erona <erona@loli.bz>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Erona <erona@loli.bz>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Erona <erona@loli.bz>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Erona <erona@loli.bz>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Erona <erona@loli.bz>
|
| | |/
| |/|
| | |
| | | |
Signed-off-by: Erona <erona@loli.bz>
|
|\ \ \
| |/ /
|/| /
| |/ |
Fix emoji regex
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The old regex, adapted from the other plugins, was a bit too open for
matching. This leads to matching something like: `This is a sentence:
[And something with a: in it.]()` which doesn't become a link anymore.
Because the match is: ` [And something with a`.
This patch provides a fix for the regex to only match non-space string
within the `:`'s.
References:
- Introducing commit:
https://github.com/hackmdio/codimd/commit/2063eb8bdf9c0537e9fcfadd7f587658c72bd281
- Inspirational source of the original RegEx:
https://github.com/hackmdio/codimd/blob/2063eb8bdf9c0537e9fcfadd7f587658c72bd281/public/js/extra.js#L1095
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
| |
|
| |
|
|\
| |
| | |
slide example: Add link to slide printing instructions
|
| |
| |
| |
| |
| |
| |
| | |
The printing instructions seem to not be really clear. Linking the
reveal.js offical docs should help.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \
| | |
| | | |
Fix not rendered autocomplete emojis
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Currently we have some emojis that are autocompleted but won't show up
in the resulting document.
This patch adds all emojis that are pushed to Codemirror and applies
them to the markdown rendering process, so they become usable.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \
| | | |
| | | | |
Webpack: Cleanup common config
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
|\ \ \
| | | |
| | | | |
Remove Gitter from codebase
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We no longer use Gitter for development talk and similar. So we might
want to remove it?
This patch removes Gitter from README, help page and features page. And
replaces it in the help modal with POEditor, our translation platform.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \
| | | |
| | | | |
Fix #1016: webpack include defect for scripts and header files.
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: MartB <mart.b@outlook.de>
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add autocomplete for highlight.js languages into codemirror
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Right now we support code highlighting for rust, but it doesn't appear
in autocomplete of codemirror, because codemirror is not aware of it.
This patch lets highlightjs simply tell codemirror, what it supports and
adds this to the autocomplete list.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \
| | | |
| | | | |
Add `data:` URL to CSP and upgrade helmet
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Seems like the old version of helmet had a problem with `data:`. This
patch upgrades to the latest version and adds the CSP rule to allow
Google Fonts and the offline version of it, to properly include the
fonts and no longer throw ugly error messages at us.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \ \
| | | | |
| | | | | |
Remove dead package octicon
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Octicon no longer provides its CSS classes and this way is useless in
CodiMD. Replacing all used classes in the UI and remove it from build
system.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \ \
| |_|/ /
|/| | | |
Webpack 4 refactor & docs
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Move html export config to own file.
Delete unnecessary config options.
Use cheap source maps.
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: David Mehren <dmehren1@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
|
|\ \ \
| | | |
| | | | |
Replace font-awesome with fork-awesome
|