Transfer the repository to Huhu

This commit is contained in:
Folyd 2020-04-19 21:31:12 +08:00
parent a7913dceb9
commit 591af48266
8 changed files with 16 additions and 17 deletions

View file

@ -12,8 +12,8 @@ give us the chance to discuss any potential changes first.
## Important links
* [Open issues](https://github.com/Folyd/rust-search-extension/issues)
* [Open pull requests](https://github.com/Folyd/rust-search-extension/pulls)
* [Read README](https://github.com/Folyd/rust-search-extension/blob/master/README.md)
* [LICENSE-APACHE](https://github.com/Folyd/rust-search-extension/blob/master/LICENSE-APACHE) and [LICENSE-MIT](https://github.com/Folyd/rust-search-extension/blob/master/LICENSE-MIT)
* [Open issues](https://github.com/huhu/rust-search-extension/issues)
* [Open pull requests](https://github.com/huhu/rust-search-extension/pulls)
* [Read README](https://github.com/huhu/rust-search-extension/blob/master/README.md)
* [LICENSE-APACHE](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-APACHE) and [LICENSE-MIT](https://github.com/huhu/rust-search-extension/blob/master/LICENSE-MIT)

View file

@ -9,9 +9,9 @@
![Mozilla Add-on](https://img.shields.io/amo/v/rust-search-extension?color=%2320123A)
![Microsoft Edge](https://img.shields.io/badge/microsoft--edge-0.8.1-1D4F8C)
[![rust-doc](https://img.shields.io/badge/stable-1.42.0-yellow.svg)](https://doc.rust-lang.org/1.42.0/std/)
[![license-mit](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Folyd/rust-search-extension/blob/master/LICENSE-MIT)
[![license-apache](https://img.shields.io/badge/license-Apache-yellow.svg)](https://github.com/Folyd/rust-search-extension/blob/master/LICENSE-APACHE)
![Build Status](https://github.com/folyd/rust-search-extension/workflows/build/badge.svg)
[![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)
![Build Status](https://github.com/huhu/rust-search-extension/workflows/build/badge.svg)
Search std **docs**, **crates**, builtin **attributes**, official **books**, and **error codes**, etc in your address bar instantly.

View file

@ -5,9 +5,9 @@ weight = 3
+++
-- Last updated: 2020-03-05
-- Last updated: 2020-04-19
[Folyd](https://github.com/folyd) and [the contributors](https://github.com/folyd/rust-search-extension/graphs/contributors), ("we",or "us") operates the **Rust Search Extension** (including Chrome and Firefox versions) and the website [https://rust-search-extension.now.sh](/) (collectively, the “Service” or “Products”).
[Huhu.io](https://huhu.io), ("we",or "us") operates the **Rust Search Extension** (including Chrome and Firefox versions) and the website [https://rust-search-extension.now.sh](/) (collectively, the “Service” or “Products”).
We believe that your privacy is a fundamental right. This page informs you of our policies and practices regarding the collection, use and disclosure of information which personally identifies you ("Personal Information") when you use our Service.
# Information collection
@ -26,4 +26,4 @@ The "Last updated" legend at the top of this Privacy Policy indicates when this
# Contact us
If You have any questions about this Privacy Policy, please contact us at [lyshuhow@gmail.com](mailto:lyshuhow@gmail.com).
If You have any questions about this Privacy Policy, please contact us at [legal@huhu.io](mailto:legal@huhu.io).

View file

@ -11,6 +11,6 @@
{% for page in section.pages %}
<a class="nav-item subtitle-text" href="{{ page.permalink }}">{{ page.title }}</a>
{% endfor %}
<a class="nav-item subtitle-text" href="https://github.com/Folyd/rust-search-extension">Github</a>
<a class="nav-item subtitle-text" href="https://github.com/huhu/rust-search-extension">Github</a>
</nav>
{% endmacro render_header %}

View file

@ -31,7 +31,7 @@
</h3>
<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/Folyd/rust-search-extension/releases">
href="https://github.com/huhu/rust-search-extension/releases">
Current version 0.8.1
</a>
<a class="btn-download chrome"
@ -96,8 +96,7 @@
<footer>
<small class="subtext">
© 2020 — <a href="https://folyd.com">Folyd</a> and
<a href="https://github.com/folyd/rust-search-extension/graphs/contributors">contributors</a> .
<a href="https://huhu.io">Huhu.io</a> © 2020
</small>
</footer>
</body>

View file

@ -7,7 +7,7 @@ chrome.runtime.onInstalled.addListener((installReason) => {
let fileNewIssue = "title=Have you found a bug? Did you feel something was missing?&body=Whatever it was, we'd love to hear from you.";
chrome.runtime.setUninstallURL(
`https://github.com/Folyd/rust-search-extension/issues/new?${encodeURI(fileNewIssue)}`
`https://github.com/huhu/rust-search-extension/issues/new?${encodeURI(fileNewIssue)}`
);
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {

View file

@ -52,7 +52,7 @@
</div>
<div style="margin-top: 30px; font-size: 11px;text-align: center">
<a href="https://rust-search-extension.now.sh" target="_blank">Website</a>
<a href="https://github.com/folyd/rust-search-extension" target="_blank">Github</a>
<a href="https://github.com/huhu/rust-search-extension" target="_blank">Github</a>
</div>
</div>
</body>

View file

@ -11,7 +11,7 @@ trigger() {
-H "Authorization: token ${ACCESS_TOKEN}" \
--request POST \
--data "${data}" \
https://api.github.com/repos/folyd/rust-search-extension/dispatches
https://api.github.com/repos/huhu/rust-search-extension/dispatches
echo "Trigger action of ${event_type} success!"
}