Release version 1.9.0

This commit is contained in:
Folyd 2022-11-20 22:10:55 +08:00
parent f2a25e4ad0
commit fd8bdcee5c
7 changed files with 27 additions and 5 deletions

View file

@ -7,7 +7,7 @@
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/ennpfpdlaclocpomkiablnmbppdnlhoh.svg)](https://chrome.google.com/webstore/detail/rust-search-extension/ennpfpdlaclocpomkiablnmbppdnlhoh)
[![Mozilla Add-on](https://img.shields.io/amo/v/rust-search-extension?color=%2320123A)](https://addons.mozilla.org/firefox/addon/rust-search-extension/)
[![Microsoft Edge](https://img.shields.io/badge/microsoft--edge-v1.8.2-1D4F8C)](https://microsoftedge.microsoft.com/addons/detail/olemfibpaicdoooacpfffccidjjagmoe)
[![Microsoft Edge](https://img.shields.io/badge/microsoft--edge-v1.9.0-1D4F8C)](https://microsoftedge.microsoft.com/addons/detail/olemfibpaicdoooacpfffccidjjagmoe)
[![license-mit](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-MIT)
[![license-apache](https://img.shields.io/badge/license-Apache-yellow.svg)](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-APACHE)
[![Discord](https://img.shields.io/discord/711895914494558250?label=chat&logo=discord)](https://discord.gg/xucZNVd)

View file

@ -9,7 +9,7 @@
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/ennpfpdlaclocpomkiablnmbppdnlhoh.svg)](https://chrome.google.com/webstore/detail/rust-search-extension/ennpfpdlaclocpomkiablnmbppdnlhoh)
[![Mozilla Add-on](https://img.shields.io/amo/v/rust-search-extension?color=%2320123A)](https://addons.mozilla.org/firefox/addon/rust-search-extension/)
[![Microsoft Edge](https://img.shields.io/badge/microsoft--edge-v1.8.2-1D4F8C)](https://microsoftedge.microsoft.com/addons/detail/olemfibpaicdoooacpfffccidjjagmoe)
[![Microsoft Edge](https://img.shields.io/badge/microsoft--edge-v1.9.0-1D4F8C)](https://microsoftedge.microsoft.com/addons/detail/olemfibpaicdoooacpfffccidjjagmoe)
[![license-mit](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-MIT)
[![license-apache](https://img.shields.io/badge/license-Apache-yellow.svg)](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-APACHE)
[![Discord](https://img.shields.io/discord/711895914494558250?label=chat&logo=discord)](https://discord.gg/xucZNVd)

View file

@ -161,6 +161,8 @@ Those commands including but not limited to:
- **:update** - Open the [update page](/update) to sync the latest index automatically.
- **:release** - Open rust-lang repository [release page](https://github.com/rust-lang/rust/blob/master/RELEASES.md).
- **:rfc** - Search Rust RFCs.
- **:rustc** - Search rustc codegen options and lints.
- **:target** - Search rust target for three tiers.
- **:history** - Show your local search history.
![IMG](/command-system.gif)

View file

@ -4,6 +4,27 @@ description = "Changelog"
weight = 3
+++
# v1.9.0 - 2022-11-20
- Migrate to `chrome.storage.onChange` event to avoid add docs index failure ({{ issue(id=206) }}).
- Support search space-separated keywords.
- Cache feature flags in session storage.
- New commands:
- `:rustc` - Search rustc codegen options and lints.
- `:target` - Search rust target for three tiers.
- Add a pagination tip in the last page item.
- Remove prefix for RFC (??) & Improve docs ({{ issue(id=197) }}).
- Condense attributes and crates index size.
- Make feature flag's name sticky left.
- Bugfix:
- Fix error code regex.
- Fix incorrect export of stats/history ({{ issue(id=203) }}) ({{ issue(id=204) }}).
- fix docs.rs show features ({{ issue(id=209) }}).
- Fix source code navigate bug. Fix ({{ issue(id=212) }}).
- Fix GitHub release page TOC compatibility ({{ issue(id=214) }}).
Thanks for the contributions from [@shwin0901](https://github.com/shwin0901), [@light4](https://github.com/light4), and [@xxchan](https://github.com/xxchan).
# v1.8 - 2022-08-15
- Migrate to Manifest V3 ({{ issue(id=179) }}).

View file

@ -41,7 +41,7 @@
<div style="margin-top: 50px; display: flex; flex-direction: column; align-items: center">
<a class="subtitle-text" style="text-decoration: underline; margin: 10px"
href="https://github.com/huhu/rust-search-extension/releases">
Current version 1.8.2
Current version 1.9.0
</a>
<a class="btn-download chrome"
href="https://chrome.google.com/webstore/detail/rust-search-extension/ennpfpdlaclocpomkiablnmbppdnlhoh"

View file

@ -67,7 +67,6 @@ function fixStickyNotWorking() {
while (parent) {
const overflow = getComputedStyle(parent).overflow;
if (overflow !== 'visible') {
console.log(overflow, parent);
break;
}
parent = parent.parentElement;

View file

@ -8,7 +8,7 @@ local icons() = {
};
local name = 'Rust Search Extension';
local version = '1.8.2';
local version = '1.9.0';
local keyword = 'rs';
local description = 'Rust Search Extension - the ultimate search extension for Rust';