Skip to content

Commit

Permalink
bump version to v1.78.1 to fix LinkHints on Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
gdh1995 committed Oct 6, 2019
1 parent 7ef8b08 commit 8807479
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -781,8 +781,7 @@ function postUglify(file, needToPatchExtendClick) {
&& !(btypes & BrowserType.Edge)) {
toRemovedGlobal += "requestIdleCallback|";
}
if ((!(btypes & BrowserType.Chrome) || minCVer >= /* MinEnsured$visualViewport$ */ 61)
&& !(btypes & BrowserType.Edge)) {
if (!(btypes & ~BrowserType.Chrome) && minCVer >= /* MinEnsured$visualViewport$ */ 61) {
toRemovedGlobal += "visualViewport|";
}
toRemovedGlobal = toRemovedGlobal.slice(0, -1);
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
========

[![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.txt)
[![Version 1.78.0](https://img.shields.io/badge/release-1.78.0-orange.svg
[![Version 1.78.1](https://img.shields.io/badge/release-1.78.1-orange.svg
)](https://github.com/gdh1995/vimium-c/releases)
[![Current Build Status](https://travis-ci.org/gdh1995/vimium-c.svg?branch=master
)](https://travis-ci.org/gdh1995/vimium-c)
Expand Down Expand Up @@ -60,6 +60,9 @@ __Other extensions supporting Vimium C:__

# Release Notes

1.78.1
* Firefox: fix broken `LinkHints`

1.78.0:
* its UI uses Simplified Chinese (简体中文) for all `zh-*` language regions
* the default value of `ignore keyboard layout` option rolls back to `false` again
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
],
"short_name": "Vimium C",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.78.0",
"version": "1.78.1",
"web_accessible_resources": [
"content/*",
"front/vomnibar.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vimium-c",
"version": "1.78.0",
"version": "1.78.1",
"description": "A keyboard shortcut tool for keyboard-based page navigation and browser tab operations with an advanced omnibar and global shortcuts",
"private": true,
"config": {
Expand Down

0 comments on commit 8807479

Please sign in to comment.