Skip to content

Commit 6b300d5

Browse files
committed
chore(release): 1.6.0
1 parent 2c5a939 commit 6b300d5

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.6.0](https://github.com/denolehov/obsidian-url-into-selection/compare/v1.1.0...v1.6.0) (2021-04-27)
6+
7+
8+
### Features
9+
10+
* move cursor to [^](url) ([8dee070](https://github.com/denolehov/obsidian-url-into-selection/commit/8dee070b2c50b40351ba4c6a5cb11d7bae1f25b2))
11+
* **core.ts:** add support for file path ([e4bd4f6](https://github.com/denolehov/obsidian-url-into-selection/commit/e4bd4f602eda766907ad7bcc30227f7873937c28)), closes [#3](https://github.com/denolehov/obsidian-url-into-selection/issues/3)
12+
* add img embed syntax whitelist ([012a588](https://github.com/denolehov/obsidian-url-into-selection/commit/012a5885fa796bf955ca34e636d7e06da9d5f6cf)), closes [#13](https://github.com/denolehov/obsidian-url-into-selection/issues/13)
13+
* add option to insert <url> ([de57f34](https://github.com/denolehov/obsidian-url-into-selection/commit/de57f348ca6684b0e6da17372af9fa5e6662a6c9))
14+
* add: insert inline url when nothing is selected ([6df2f5f](https://github.com/denolehov/obsidian-url-into-selection/commit/6df2f5f5dd4e22ee137f4352f3149a198178b326))
15+
* replace autoselect option with nothingSelected ([37f4259](https://github.com/denolehov/obsidian-url-into-selection/commit/37f4259085f6643f2375fee37d14c3550a66bc95))
16+
* switch to DOM Clipboard API ([da55fc0](https://github.com/denolehov/obsidian-url-into-selection/commit/da55fc0ac85c16910eba9d81f85766532cd64f1f))
17+
* update default regex ([bf3fcd8](https://github.com/denolehov/obsidian-url-into-selection/commit/bf3fcd818b31e41c718d56d6d27441c8a8e9881a))
18+
* update isUrl method to utilize browser URL API ([1254e5b](https://github.com/denolehov/obsidian-url-into-selection/commit/1254e5b513bb65af2d8415219c61ef4c5f6ff6e3)), closes [#3](https://github.com/denolehov/obsidian-url-into-selection/issues/3)
19+
20+
21+
### Bug Fixes
22+
23+
* don't use ![](url) syntax by default if whitelist rules-list is empty ([50df2a5](https://github.com/denolehov/obsidian-url-into-selection/commit/50df2a55cc731f8be592e94a36b6417510d0838f))
24+
* url with space, angle brackets and parentheses is no longer broken in markdown ([f9f678c](https://github.com/denolehov/obsidian-url-into-selection/commit/f9f678c98654b233c4f6c4d831371fa5c9a4143e)), closes [#16](https://github.com/denolehov/obsidian-url-into-selection/issues/16)
25+
* **isurl:** empty text is no longer recognized as url ([08d8b19](https://github.com/denolehov/obsidian-url-into-selection/commit/08d8b19b8db2a3f2aae5e0cda4640c2d6bfc6a30))
26+
527
## [1.5.0](https://github.com/denolehov/obsidian-url-into-selection/compare/v1.1.0...v1.5.0) (2021-04-26)
628

729

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"description": "Paste URL \"into\" selected text.",
55
"isDesktopOnly": false,
66
"js": "main.js",
7-
"version": "1.5.0"
7+
"version": "1.6.0"
88
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-url-into-selection",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Paste URL \"into\" selected text",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)