mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
Merge branch 'develop' into update-neovim
This commit is contained in:
commit
688a1c5c5d
@ -1 +1 @@
|
||||
Subproject commit 10968e2931a2388ca6476d7eb37c2af95b83af1b
|
||||
Subproject commit 905d71fec5fe1c1a057f448d87e8eadbad2a7e86
|
@ -19,6 +19,30 @@ extension NvimView {
|
||||
self.mouse(event: event, vimName: "LeftDrag")
|
||||
}
|
||||
|
||||
override public func rightMouseDown(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "RightMouse")
|
||||
}
|
||||
|
||||
override public func rightMouseUp(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "RightRelease")
|
||||
}
|
||||
|
||||
override public func rightMouseDragged(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "RightDrag")
|
||||
}
|
||||
|
||||
override public func otherMouseUp(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "MiddleMouse")
|
||||
}
|
||||
|
||||
override public func otherMouseDown(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "MiddleRelease")
|
||||
}
|
||||
|
||||
override public func otherMouseDragged(with event: NSEvent) {
|
||||
self.mouse(event: event, vimName: "MiddleDrag")
|
||||
}
|
||||
|
||||
override public func scrollWheel(with event: NSEvent) {
|
||||
let (deltaX, deltaY) = (event.scrollingDeltaX, event.scrollingDeltaY)
|
||||
if deltaX == 0, deltaY == 0 { return }
|
||||
|
@ -1157,7 +1157,7 @@
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
CODE_SIGN_IDENTITY = "-";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 20220102.161018;
|
||||
CURRENT_PROJECT_VERSION = 20220212.162106;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
@ -1218,7 +1218,7 @@
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
CODE_SIGN_IDENTITY = "-";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 20220102.161018;
|
||||
CURRENT_PROJECT_VERSION = 20220212.162106;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
@ -1247,7 +1247,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
CURRENT_PROJECT_VERSION = 20220102.161018;
|
||||
CURRENT_PROJECT_VERSION = 20220212.162106;
|
||||
DEFINES_MODULE = YES;
|
||||
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/.deps/include";
|
||||
IBC_MODULE = VimR;
|
||||
@ -1275,7 +1275,7 @@
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
CURRENT_PROJECT_VERSION = 20220102.161018;
|
||||
CURRENT_PROJECT_VERSION = 20220212.162106;
|
||||
DEFINES_MODULE = YES;
|
||||
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/.deps/include";
|
||||
IBC_MODULE = VimR;
|
||||
|
@ -1224,7 +1224,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.36.0</string>
|
||||
<string>0.36.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
@ -1241,7 +1241,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>20220102.161018</string>
|
||||
<string>20220212.162106</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.productivity</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
@ -15,10 +15,10 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.36.0</string>
|
||||
<string>0.36.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>20220102.161018</string>
|
||||
<string>20220212.162106</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
28
appcast.xml
28
appcast.xml
@ -7,31 +7,23 @@
|
||||
<description>Most recent changes with links to updates for VimR.</description>
|
||||
<language>en</language>
|
||||
<item>
|
||||
<title>v0.36.0-20220102.161018</title>
|
||||
<title>v0.36.1-20220212.162106</title>
|
||||
<description><![CDATA[
|
||||
<ul>
|
||||
<li>Neovim 0.6.1 😀</li>
|
||||
<li>GH-876: Forward <code>Cmd-.</code> to Neovim. Thank you @imkerberos!</li>
|
||||
<li>GH-881: Make the <code>ESC</code> key cancel "Not yet saved"-dialogs. Thank you @jasonm!</li>
|
||||
<li>GH-874: Make Chinese input possible (and simplify input method handling in general), thank you very much, @SolaWing!</li>
|
||||
<li>GH-805 (GH-415): Vertically center-align text. Thank you @apaleslimghost!</li>
|
||||
<li>Improve menu item key equivalent handling.</li>
|
||||
<li>Dependencies updates:<ul>
|
||||
<li>sindresorhus/github-markdown-css@5.0.0</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>GH-895: Add support for right and middle mouse buttons. Thank you @atishay!</li>
|
||||
<li>GH-880: Copying non-ASCII characters results in garbled text.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<releaseNotesLink>
|
||||
https://github.com/qvacua/vimr/releases/tag/v0.36.0-20220102.161018
|
||||
https://github.com/qvacua/vimr/releases/tag/v0.36.1-20220212.162106
|
||||
</releaseNotesLink>
|
||||
<pubDate>2022-01-02T16:35:58.588674</pubDate>
|
||||
<pubDate>2022-02-12T16:33:38.198231</pubDate>
|
||||
<minimumSystemVersion>10.12.0</minimumSystemVersion>
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/v0.36.0-20220102.161018/VimR-v0.36.0.tar.bz2"
|
||||
sparkle:version="20220102.161018"
|
||||
sparkle:shortVersionString="v0.36.0"
|
||||
sparkle:dsaSignature="MC0CFHEvyyzD8q1zajoK6VMcs/khEl5ZAhUAmmKdj0mxp2lSCEc0u3HOKFXmgnc="
|
||||
length="20298797"
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/v0.36.1-20220212.162106/VimR-v0.36.1.tar.bz2"
|
||||
sparkle:version="20220212.162106"
|
||||
sparkle:shortVersionString="v0.36.1"
|
||||
sparkle:dsaSignature="MCwCFDtkwhCVfdhg8GaWnpHAonQHjuuDAhQ7eH/GAv+Gezl+aWsklABiI4H48g=="
|
||||
length="20300968"
|
||||
type="application/octet-stream"/>
|
||||
</item>
|
||||
</channel>
|
||||
|
@ -7,31 +7,23 @@
|
||||
<description>Most recent changes with links to updates for VimR.</description>
|
||||
<language>en</language>
|
||||
<item>
|
||||
<title>v0.36.0-20220102.161018</title>
|
||||
<title>v0.36.1-20220212.162106</title>
|
||||
<description><![CDATA[
|
||||
<ul>
|
||||
<li>Neovim 0.6.1 😀</li>
|
||||
<li>GH-876: Forward <code>Cmd-.</code> to Neovim. Thank you @imkerberos!</li>
|
||||
<li>GH-881: Make the <code>ESC</code> key cancel "Not yet saved"-dialogs. Thank you @jasonm!</li>
|
||||
<li>GH-874: Make Chinese input possible (and simplify input method handling in general), thank you very much, @SolaWing!</li>
|
||||
<li>GH-805 (GH-415): Vertically center-align text. Thank you @apaleslimghost!</li>
|
||||
<li>Improve menu item key equivalent handling.</li>
|
||||
<li>Dependencies updates:<ul>
|
||||
<li>sindresorhus/github-markdown-css@5.0.0</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>GH-895: Add support for right and middle mouse buttons. Thank you @atishay!</li>
|
||||
<li>GH-880: Copying non-ASCII characters results in garbled text.</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<releaseNotesLink>
|
||||
https://github.com/qvacua/vimr/releases/tag/v0.36.0-20220102.161018
|
||||
https://github.com/qvacua/vimr/releases/tag/v0.36.1-20220212.162106
|
||||
</releaseNotesLink>
|
||||
<pubDate>2022-01-02T16:35:58.588674</pubDate>
|
||||
<pubDate>2022-02-12T16:33:38.198231</pubDate>
|
||||
<minimumSystemVersion>10.12.0</minimumSystemVersion>
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/v0.36.0-20220102.161018/VimR-v0.36.0.tar.bz2"
|
||||
sparkle:version="20220102.161018"
|
||||
sparkle:shortVersionString="v0.36.0"
|
||||
sparkle:dsaSignature="MC0CFHEvyyzD8q1zajoK6VMcs/khEl5ZAhUAmmKdj0mxp2lSCEc0u3HOKFXmgnc="
|
||||
length="20298797"
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/v0.36.1-20220212.162106/VimR-v0.36.1.tar.bz2"
|
||||
sparkle:version="20220212.162106"
|
||||
sparkle:shortVersionString="v0.36.1"
|
||||
sparkle:dsaSignature="MCwCFDtkwhCVfdhg8GaWnpHAonQHjuuDAhQ7eH/GAv+Gezl+aWsklABiI4H48g=="
|
||||
length="20300968"
|
||||
type="application/octet-stream"/>
|
||||
</item>
|
||||
</channel>
|
||||
|
@ -5,6 +5,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"vimrDeps": "vimr-deps-2021-12-12",
|
||||
"nvimServer": "nvimserver-0.6.1-0"
|
||||
"nvimServer": "nvimserver-0.6.1-1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
# Next
|
||||
# 0.36.1-20220212.162106
|
||||
|
||||
* ...
|
||||
* GH-895: Add support for right and middle mouse buttons. Thank you @atishay!
|
||||
* GH-880: Copying non-ASCII characters results in garbled text.
|
||||
|
||||
# 0.36.0-20220102.161018
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user