5.3.6 (2024-10-11)
5.3.5 (2024-10-11)
5.3.4 (2024-10-11)
5.3.3 (2024-10-11)
5.3.2 (2024-07-31)
- Removed debug code (c7b0fd0)
5.3.1 (2024-06-19)
5.3.0 (2024-06-16)
5.2.0 (2024-06-09)
5.1.4 (2024-05-17)
- removed accidental change that enabled code display modes (e.g. javascript, python, html) (692d01f)
5.1.3 (2024-05-06)
5.1.2 (2024-05-06)
5.1.1 (2024-03-11)
- #183: fixes undefined 'k' due to scoped 'let' (02e383d)
5.1.0 (2023-08-27)
- support CM modes: go, javascript, htmlmixed, markdown, python (827487a)
5.0.4 (2023-08-27)
- updated CDN example (dec1e95)
5.0.3 (2023-08-27)
- Updated docs with CDN example (254adf1)
5.0.2 (2023-04-24)
- scroll: fixed issue where first rhs scroll was unlinked (7b2040c)
5.0.1 (2023-04-23)
- update release (a8b497b)
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
5.0.0 (2023-04-23)
- Mergely is no longer a jQuery plugin.
- Removed options.autoresize
- Removed options.editor_width
- Removed options.editor_height
- Removed options.fadein
- Removed options.fgcolor
- Removed options.resize
- Removed options.width
- Removed options.height
- Removed options.loaded callback
- Removed options.resized callback
- Removed styles .mergely-resizer, .mergely-full-screen-0, and .mergely-full-screen-8
- Changed default for options.change_timeout changed from 150 to 50.
- No longer automatically scrolls to first change.
- removed unused dev-deps (4d5c6fa)
4.3.5 (2021-11-21)
- #132: added option to ignore accented characters (#136) (5a0cd15), closes #132 #132
- #137: added 'summary' method (4610ed3), closes #137
- updated dependencies (85b02ad)
- patch: fixed issue with build
- patch: Fixes inline diff rendering issue with whitespace #139.
- patch: Fixes resize issue when using zoom #152.
- patch: Updated README.md to fix incorrect option name.
- feat: Added
summary
method
- patch: fixes #142. Added README.md to examples.
- patch: fixes #147. Fixes the css style for the currently selected change.
- patch: fixes issue where initial change was not being set causing next/prev and merge actions to not work as expected.
- chore: updated dependencies, cleared security issues
- minor: added new option
ignoreaccents
to ignore accented characters.
- patch: fixes issue #134 where the readme had broken links.
- patch: fixes issue #95 where cursor was not focusing correctly on init.
- minor: emits 'updated' event after every change.
- patch: fixes
scrollTo
that no longer functioned after a codemirror update. - patch: fixes
loaded
being called prematurely and after every resize, and is now is called once, after the 'updated' event.
- patch: fixes rendering beyond change constraint
- patch: removed unnecessary addon mark-selected
- patch: fixes issue #104 where diff text conflicted with selected text
- patch: fixed issue where
lhs_cmsettings
andlhs_cmsettings
were ignored - patch: updated documentation
- patch: fixed typos
- patch: fixes issue #115 merging deleted line(s) from lhs would munge rhs text
- patch: fixes two typos in README.md
- patch: fixes typo in example ajax.html
- patch: fixes bad 4.0.9 artifacts
- patch: fixes issue #106 merge edge-case with add
- chore: updated webpack
- chore: updated documentation
- patch: fixes issue #89 missing merge buttons
- patch: fixes issue #85 XSS vulnerability with DOM id
- patch: fixes issue #83 poor rendering performance
- Now using
npm
as the preferred distribution method. - Improved width/height options. Removed options
editor_width
andeditor_height
, and addedwidth
andheight
. The options are equivalent. - Added license option to indicate which type of license to use.
- Only distributing the minimized version as
mergely.js
(wasmergely.min.js
). - No longer bundling CodeMirror. You will need to get the appropriate source files from a CDN.
- Created
mergely-webpack
example. - Lighter distribution (no longer bundling CodeMirror or the Mergely editor).
- Made it easier to set CodeMirror settings via
cmsettings
for both editors, then applieslhs_cmsettings
for the left-hand editor, andrhs_cmsettings
for the right-hand editor.
- Previously
width: 'auto'
would unnecessarily account for a scroll bar width, now it does not.