mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-15 08:07:08 +00:00
Add :stable command to show Rust schedule release date
This commit is contained in:
parent
8d1d148b84
commit
9b45e86d9d
2 changed files with 25 additions and 1 deletions
|
@ -5,6 +5,7 @@ function Command() {
|
|||
"help": "Show the help messages.",
|
||||
"yet": "Show all the Are We X Yet websites.",
|
||||
"book": "Show all the Rust official books.",
|
||||
"stable": "Show stable Rust scheduled release date in the next year.",
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -27,7 +28,7 @@ Command.prototype.execute = function(query) {
|
|||
// as the content is required by omnibox api.
|
||||
Command.prototype.wrap = function(result) {
|
||||
return result.map((description, index) => {
|
||||
return {content: `help${index + 1}`, description};
|
||||
return {content: `${index + 1}`, description};
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -90,4 +91,20 @@ Command.prototype.book = function() {
|
|||
description: `${c.match(name)} - ${c.dim(url)}`,
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
Command.prototype.stable = function() {
|
||||
let dates = [];
|
||||
let startVersion = 42;
|
||||
let end = new Date();
|
||||
end.setFullYear(end.getFullYear() + 1);
|
||||
for (let n = 0, v = 0; ; v++) {
|
||||
let date = new Date("2020-01-30");
|
||||
date.setDate(date.getDate() + v * 42);
|
||||
if (date >= end) break;
|
||||
if (date >= new Date()) {
|
||||
dates.push(`Version ${c.match("1." + (startVersion + n++) + ".0")} scheduled release on ${c.match(c.normalizeDate(date))}`);
|
||||
}
|
||||
}
|
||||
return this.wrap(dates);
|
||||
};
|
|
@ -25,4 +25,11 @@ Compat.prototype.escape = function(str) {
|
|||
// Compatibly get extension's background page.
|
||||
Compat.prototype.getBackgroundPage = function() {
|
||||
return this.browser.extension.getBackgroundPage();
|
||||
};
|
||||
|
||||
Compat.prototype.normalizeDate = function(date) {
|
||||
let month = '' + (date.getMonth() + 1),
|
||||
day = '' + date.getDate(),
|
||||
year = date.getFullYear();
|
||||
return [year, month.padStart(2, "0"), day.padStart(2, "0")].join('-');
|
||||
};
|
Loading…
Reference in a new issue