simpread/src/service/version.js
2018-08-17 11:18:09 +08:00

209 lines
7.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

console.log( "=== simpread version load ===" )
import {browser} from 'browser';
/**
* Manifest.json version
*/
const version = browser.runtime.getManifest().version.replace( /.\d{2,}/, "" ), // get x.x.x,
sub_ver = browser.runtime.getManifest().version.replace( /(\d{1,2}.){2}\d.?/, "" ), // get *.*.*.xxxx
versions = new Map([
[ "1.0.0", "Sun Jun 11 2017 12:30:00 GMT+0800 (CST)" ],
[ "1.0.1", "Fri Jun 30 2017 09:27:18 GMT+0800 (CST)" ],
[ "1.0.2", "Mon Aug 07 2017 19:03:50 GMT+0800 (CST)" ],
[ "1.0.3", "Mon Aug 21 2017 04:09:23 GMT+0800 (CST)" ],
[ "1.0.4", "Mon Sep 25 2017 14:40:27 GMT+0800 (CST)" ],
[ "1.0.5", "Wed Nov 15 2017 11:39:23 GMT+0800 (CST)" ],
[ "1.0.6", "Thu Dec 07 2017 14:48:44 GMT+0800 (CST)" ],
[ "1.1.0", "Sat Dec 23 2017 15:09:30 GMT+0800 (CST)" ],
[ "1.1.1", "Mon Jun 11 2018 15:10:12 GMT+0800 (CST)" ],
[ "1.1.2", "Tue Jun 19 2018 14:15:12 GMT+0800 (CST)" ],
]),
details = new Map([
[ "1.0.0", "" ],
[ "1.0.1", "新增「高级设定」选项页," ],
[ "1.0.2", "新增「自定义样式,论坛类页面与分页功能」," ],
[ "1.0.3", "新增「导出到生产力工具,发送到 Kindle自定义样式论坛类页面分页等」" ],
[ "1.0.4", "新增「高级聚焦模式、主动适配与临时阅读模式」," ],
[ "1.0.5", "新增「导出 epubTXT 阅读器,阅读模式增加目录功能,白名单等」," ],
[ "1.0.6", "新增「添加新站到阅读模式,导入第三方适配站点等」," ],
[ "1.1.0", "新增「站点编辑器,站点适配源,站点管理器等」," ],
[ "1.1.1", "新增「黑名单,全新的控制栏面板,更丰富的中文定制化,无障碍阅读等」," ],
[ "1.1.2", "新增「扩展中心,站点集市等」," ],
]);
/**
* Verify version
*
* @param {string} local version
* @param {object} simpread data structure
*/
function Verify( curver, data ) {
if ( curver == "1.0.0" ) {
data.option.esc = true;
data.option.menu = { focus: true, read: true, link: true };
data.focus.controlbar= true;
data.focus.mask = true;
data.read.progress = true;
data.read.auto = false;
data.read.controlbar = true;
data.read.exclusion = [
"v2ex.com","issue.github.com","readme.github.com","question.zhihu.com","douban.com","nationalgeographic.com.cn","tech.163.com","docs.microsoft.com","msdn.microsoft.com","baijia.baidu.com","code.oschina.net","http://www.ifanr.com","http://www.ifanr.com/news","http://www.ifanr.com/app","http://www.ifanr.com/minapp","http://www.ifanr.com/dasheng","http://www.ifanr.com/data","https://www.ifanr.com/app","http://www.ifanr.com/weizhizao","http://www.thepaper.cn","http://www.pingwest.com","http://tech2ipo.com","https://www.waerfa.com/social"
];
curver = "1.0.1";
}
if ( curver == "1.0.1" ) {
data.read.custom = {
global: {
fontFamily : "",
marginLeft : "",
marginRight: "",
},
title : {
fontFamily : "",
fontSize : "",
color : "",
},
desc : {
fontFamily : "",
fontSize : "",
color : "",
},
art : {
fontFamily : "",
fontSize : "",
color : "",
fontWeight : "",
wordSpacing: "",
letterSpacing: "",
lineHeight : "",
textIndent : "",
},
pre : {
textShadow : "",
},
code : {
fontFamily : "",
fontSize : "",
},
css : "",
};
curver = "1.0.2";
}
if ( curver == "1.0.2" ) {
data.option.sync = "";
curver = "1.0.3";
}
if ( curver == "1.0.3" ) {
data.focus.highlight = true;
data.read.highlight = true;
data.option.menu.list = false;
data.option.br_exit = false;
data.option.secret = false;
curver = "1.0.4";
}
if ( curver == "1.0.4" ) {
data.read.toc = true;
data.read.toc_hide = true;
data.read.whitelist = [];
curver = "1.0.5";
}
if ( curver == "1.0.5" ) {
data.option.origins = [];
data.websites = {
custom : [],
local : []
};
curver = "1.0.6";
}
if ( curver == "1.0.6" ) {
data.websites.local = data.read.sites.concat( data.focus.sites );
delete data.focus.sites;
delete data.read.sites;
curver = "1.1.0";
}
if ( curver == "1.1.0" ) {
data.option.blacklist = [ "google.com" ];
data.read.fap = true;
data.read.custom.global.fontFamily && ( data.read.fontfamily = data.read.custom.global.fontFamily );
data.read.custom.global.marginLeft && ( data.read.layout = data.read.custom.global.marginLeft );
delete data.read.custom.global;
data.statistics = {"focus":0,"read":0,"service":{"linnk":0,"instapaper":0,"pocket":0,"readlater":0,"epub":0,"pdf":0,"png":0,"markdown":0,"html":0,"evernote":0,"yinxiang":0,"dropbox":0,"onenote":0,"gdrive":0,"kindle":0,"temp":0}}
data.statistics.focus = data.option.focus;
data.statistics.read = data.option.read;
delete data.option.focus;
delete data.option.read;
curver = "1.1.1";
}
if ( curver == "1.1.1" ) {
data.user = { "uid": "","name": "","email": "","avatar": "","permission": "" };
data.option.plugins = [];
data.websites.person = [];
curver = "1.1.2";
}
/*
if ( curver == "1.0.1" ) {
data.option.pocket = { "consumer": "", "access": "" };
data.read.custom = "";
curver = "2.0.0";
}
*/
data.version = version;
return data;
}
/**
* Notify with type and version
* 1.0.4 before usage http://ksria.com/simpread/changelog.html#{ver}
* 1.0.4 after usage http://ksria.com/simpread/version_${ver}.html
*
* @param {boolean} is first load
* @param {string} type, include: firstload, update
* @param {string} ver, e.g. 1.0.0, 1.0.1
*/
function Notify( first, type, ver ) {
const str = type == "firstload" ? "安装" : "更新",
detail = type == "firstload" ? "" : details.get(ver),
link = first ? `${detail}如何使用请看 <a href="https://github.com/Kenshin/simpread/wiki/" target="_blank">入门指南</a>` : `${detail}请看 <a href="http://ksria.com/simpread/welcome/version_${ver}.html" target="_blank">更新说明</a>`;
return `${str} 到最新版本 ${ver} ${ link }`;
}
/**
* Compare current version and target version
*
* @param {string} target version
* @return {number} -2: not exist; -1: old version; 1: new version; 0: current version
*/
function Compare( target ) {
let result = -2;
if ( versions.has( target ) ) {
result = Date.parse( versions.get( version )) - Date.parse( versions.get( target ));
if ( result > 0 ) {
result = 1;
} else if ( result < 0 ) {
result = -1;
}
}
return result;
}
export {
version,
sub_ver,
Verify,
Notify,
Compare,
}