mirror of https://github.com/vtrois/kratos
parent
c011ffe5fe
commit
a1708f792a
|
@ -1,5 +1,5 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://cdn.jsdelivr.net/gh/vtrois/kratos@3.2.0/assets/img/options/about.png">
|
<img src="https://cdn.jsdelivr.net/gh/vtrois/kratos@3.2.1/assets/img/options/about.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
@ -131,7 +131,7 @@ Detailed changes for each release are documented in the [release notes](https://
|
||||||
If you find Kratos useful, you can buy us a cup of coffee
|
If you find Kratos useful, you can buy us a cup of coffee
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img width="700" src="https://cdn.jsdelivr.net/gh/vtrois/kratos@3.2.0/assets/img/options/donate.png">
|
<img width="700" src="https://cdn.jsdelivr.net/gh/vtrois/kratos@3.2.1/assets/img/options/donate.png">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -2,186 +2,222 @@
|
||||||
* Kratos
|
* Kratos
|
||||||
* Seaton Jiang <seaton@vtrois.com>
|
* Seaton Jiang <seaton@vtrois.com>
|
||||||
*/
|
*/
|
||||||
; (function () {
|
(function () {
|
||||||
'use strict'
|
"use strict";
|
||||||
|
|
||||||
var KRATOS_VERSION = '3.2.0'
|
var KRATOS_VERSION = "3.2.1";
|
||||||
|
|
||||||
var navbarConfig = function () {
|
var navbarConfig = function () {
|
||||||
$('#navbutton').on('click', function () {
|
$("#navbutton").on("click", function () {
|
||||||
$('.navbar-toggler').toggleClass('nav-close')
|
$(".navbar-toggler").toggleClass("nav-close");
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var tooltipConfig = function () {
|
var tooltipConfig = function () {
|
||||||
$(function () {
|
$(function () {
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip();
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var gotopConfig = function () {
|
var gotopConfig = function () {
|
||||||
$(window).on('load', function () {
|
$(window).on("load", function () {
|
||||||
var $win = $(window)
|
var $win = $(window);
|
||||||
if ($win.scrollTop() > 200) {
|
if ($win.scrollTop() > 200) {
|
||||||
$('.gotop').addClass('active')
|
$(".gotop").addClass("active");
|
||||||
} else {
|
} else {
|
||||||
$('.gotop').removeClass('active')
|
$(".gotop").removeClass("active");
|
||||||
}
|
}
|
||||||
$win.scroll(function () {
|
$win.scroll(function () {
|
||||||
if ($win.scrollTop() > 200) {
|
if ($win.scrollTop() > 200) {
|
||||||
$('.gotop').addClass('active')
|
$(".gotop").addClass("active");
|
||||||
} else {
|
} else {
|
||||||
$('.gotop').removeClass('active')
|
$(".gotop").removeClass("active");
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
$('.gotop').on('click', function (event) {
|
|
||||||
event.preventDefault()
|
|
||||||
$('html, body').animate({
|
|
||||||
scrollTop: $('html').offset().top
|
|
||||||
}, 500)
|
|
||||||
return false
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$(".gotop").on("click", function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
$("html, body").animate(
|
||||||
|
{
|
||||||
|
scrollTop: $("html").offset().top,
|
||||||
|
},
|
||||||
|
500
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var searchConfig = function () {
|
var searchConfig = function () {
|
||||||
$('.search').on('click', function (e) {
|
$(".search").on("click", function (e) {
|
||||||
$('.search-form').animate({
|
$(".search-form").animate(
|
||||||
width: '200px'
|
{
|
||||||
}, 200), $('.search-form input').css('display', 'block')
|
width: "200px",
|
||||||
$(document).one('click', function () {
|
},
|
||||||
$('.search-form').animate({
|
200
|
||||||
width: '0'
|
),
|
||||||
}, 100), $('.search-form input').hide()
|
$(".search-form input").css("display", "block");
|
||||||
})
|
$(document).one("click", function () {
|
||||||
e.stopPropagation()
|
$(".search-form").animate(
|
||||||
})
|
{
|
||||||
$('.search-form').on('click', function (e) {
|
width: "0",
|
||||||
e.stopPropagation()
|
},
|
||||||
})
|
100
|
||||||
}
|
),
|
||||||
|
$(".search-form input").hide();
|
||||||
|
});
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
|
$(".search-form").on("click", function (e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var wechatConfig = function () {
|
var wechatConfig = function () {
|
||||||
$('.wechat').mouseout(function () {
|
$(".wechat").mouseout(function () {
|
||||||
$('.wechat-pic')[0].style.display = 'none'
|
$(".wechat-pic")[0].style.display = "none";
|
||||||
})
|
});
|
||||||
$('.wechat').mouseover(function () {
|
$(".wechat").mouseover(function () {
|
||||||
$('.wechat-pic')[0].style.display = 'block'
|
$(".wechat-pic")[0].style.display = "block";
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var smiliesConfig = function () {
|
var smiliesConfig = function () {
|
||||||
$('#addsmile').on("click", function (e) {
|
$("#addsmile").on("click", function (e) {
|
||||||
$('.smile').toggleClass('open')
|
$(".smile").toggleClass("open");
|
||||||
$(document).one("click", function () {
|
$(document).one("click", function () {
|
||||||
$('.smile').toggleClass('open')
|
$(".smile").toggleClass("open");
|
||||||
})
|
});
|
||||||
e.stopPropagation()
|
e.stopPropagation();
|
||||||
return false
|
return false;
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var postlikeConfig = function () {
|
var postlikeConfig = function () {
|
||||||
$.fn.postLike = function () {
|
$.fn.postLike = function () {
|
||||||
if ($(this).hasClass('done')) {
|
if ($(this).hasClass("done")) {
|
||||||
layer.msg(kratos.repeat, function () { })
|
layer.msg(kratos.repeat, function () {});
|
||||||
return false
|
return false;
|
||||||
} else {
|
} else {
|
||||||
$(this).addClass('done')
|
$(this).addClass("done");
|
||||||
layer.msg(kratos.thanks)
|
layer.msg(kratos.thanks);
|
||||||
var id = $(this).data("id"),
|
var id = $(this).data("id"),
|
||||||
action = $(this).data('action')
|
action = $(this).data("action");
|
||||||
var ajax_data = {
|
var ajax_data = {
|
||||||
action: "love",
|
action: "love",
|
||||||
um_id: id,
|
um_id: id,
|
||||||
um_action: action
|
um_action: action,
|
||||||
}
|
};
|
||||||
$.post(kratos.site + '/wp-admin/admin-ajax.php', ajax_data, function (data) { })
|
$.post(kratos.site + "/wp-admin/admin-ajax.php", ajax_data, function (
|
||||||
return false
|
data
|
||||||
}
|
) {});
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
$(document).on("click", ".btn-thumbs", function () {
|
$(document).on("click", ".btn-thumbs", function () {
|
||||||
$(this).postLike()
|
$(this).postLike();
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
var donateConfig = function () {
|
var donateConfig = function () {
|
||||||
$("#donate").on('click', function () {
|
$("#donate").on("click", function () {
|
||||||
layer.open({
|
layer.open({
|
||||||
type: 1,
|
type: 1,
|
||||||
area: ['300px', '370px'],
|
area: ["300px", "370px"],
|
||||||
title: kratos.donate,
|
title: kratos.donate,
|
||||||
resize: false,
|
resize: false,
|
||||||
scrollbar: false,
|
scrollbar: false,
|
||||||
content: '<div class="donate-box"><div class="meta-pay text-center my-2"><strong>' + kratos.scan + '</strong></div><div class="qr-pay text-center"><img class="pay-img" id="alipay_qr" src="' + kratos.alipay + '"><img class="pay-img d-none" id="wechat_qr" src="' + kratos.wechat + '"></div><div class="choose-pay text-center mt-2"><input id="alipay" type="radio" name="pay-method" checked><label for="alipay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/wechat.png"></label></div></div>'
|
content:
|
||||||
})
|
'<div class="donate-box"><div class="meta-pay text-center my-2"><strong>' +
|
||||||
|
kratos.scan +
|
||||||
|
'</strong></div><div class="qr-pay text-center"><img class="pay-img" id="alipay_qr" src="' +
|
||||||
|
kratos.alipay +
|
||||||
|
'"><img class="pay-img d-none" id="wechat_qr" src="' +
|
||||||
|
kratos.wechat +
|
||||||
|
'"></div><div class="choose-pay text-center mt-2"><input id="alipay" type="radio" name="pay-method" checked><label for="alipay" class="pay-button"><img src="' +
|
||||||
|
kratos.directory +
|
||||||
|
'/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' +
|
||||||
|
kratos.directory +
|
||||||
|
'/assets/img/payment/wechat.png"></label></div></div>',
|
||||||
|
});
|
||||||
$(".choose-pay input[type='radio']").click(function () {
|
$(".choose-pay input[type='radio']").click(function () {
|
||||||
var id = $(this).attr("id")
|
var id = $(this).attr("id");
|
||||||
if (id == 'alipay') { $(".qr-pay #alipay_qr").removeClass('d-none'); $(".qr-pay #wechat_qr").addClass('d-none') };
|
if (id == "alipay") {
|
||||||
if (id == 'wechatpay') { $(".qr-pay #alipay_qr").addClass('d-none'); $(".qr-pay #wechat_qr").removeClass('d-none') };
|
$(".qr-pay #alipay_qr").removeClass("d-none");
|
||||||
})
|
$(".qr-pay #wechat_qr").addClass("d-none");
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
if (id == "wechatpay") {
|
||||||
|
$(".qr-pay #alipay_qr").addClass("d-none");
|
||||||
|
$(".qr-pay #wechat_qr").removeClass("d-none");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var accordionConfig = function () {
|
var accordionConfig = function () {
|
||||||
$(document).on('click', '.acheader', function (event) {
|
$(document).on("click", ".acheader", function (event) {
|
||||||
var $this = $(this)
|
var $this = $(this);
|
||||||
$this.closest('.accordion').find('.contents').slideToggle(300)
|
$this.closest(".accordion").find(".contents").slideToggle(300);
|
||||||
if ($this.closest('.accordion').hasClass('active')) {
|
if ($this.closest(".accordion").hasClass("active")) {
|
||||||
$this.closest('.accordion').removeClass('active')
|
$this.closest(".accordion").removeClass("active");
|
||||||
} else {
|
} else {
|
||||||
$this.closest('.accordion').addClass('active')
|
$this.closest(".accordion").addClass("active");
|
||||||
}
|
|
||||||
event.preventDefault()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
var consoleConfig = function () {
|
var consoleConfig = function () {
|
||||||
console.log('\n Kratos v' + KRATOS_VERSION + '\n\n https://github.com/vtrois/kratos \n\n')
|
console.log(
|
||||||
}
|
"\n Kratos v" +
|
||||||
|
KRATOS_VERSION +
|
||||||
|
"\n\n https://github.com/vtrois/kratos \n\n"
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
accordionConfig()
|
accordionConfig();
|
||||||
navbarConfig()
|
navbarConfig();
|
||||||
tooltipConfig()
|
tooltipConfig();
|
||||||
gotopConfig()
|
gotopConfig();
|
||||||
searchConfig()
|
searchConfig();
|
||||||
wechatConfig()
|
wechatConfig();
|
||||||
smiliesConfig()
|
smiliesConfig();
|
||||||
postlikeConfig()
|
postlikeConfig();
|
||||||
donateConfig()
|
donateConfig();
|
||||||
consoleConfig()
|
consoleConfig();
|
||||||
})
|
});
|
||||||
}())
|
})();
|
||||||
|
|
||||||
function grin(tag) {
|
function grin(tag) {
|
||||||
var myField
|
var myField;
|
||||||
tag = ' ' + tag + ' '
|
tag = " " + tag + " ";
|
||||||
if (document.getElementById('comment') && document.getElementById('comment').type == 'textarea') {
|
if (
|
||||||
myField = document.getElementById('comment')
|
document.getElementById("comment") &&
|
||||||
|
document.getElementById("comment").type == "textarea"
|
||||||
|
) {
|
||||||
|
myField = document.getElementById("comment");
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false;
|
||||||
}
|
}
|
||||||
if (document.selection) {
|
if (document.selection) {
|
||||||
myField.focus()
|
myField.focus();
|
||||||
sel = document.selection.createRange()
|
sel = document.selection.createRange();
|
||||||
sel.text = tag
|
sel.text = tag;
|
||||||
myField.focus()
|
myField.focus();
|
||||||
}
|
} else if (myField.selectionStart || myField.selectionStart == "0") {
|
||||||
else if (myField.selectionStart || myField.selectionStart == '0') {
|
var startPos = myField.selectionStart;
|
||||||
var startPos = myField.selectionStart
|
var endPos = myField.selectionEnd;
|
||||||
var endPos = myField.selectionEnd
|
var cursorPos = endPos;
|
||||||
var cursorPos = endPos
|
myField.value =
|
||||||
myField.value = myField.value.substring(0, startPos)
|
myField.value.substring(0, startPos) +
|
||||||
+ tag
|
tag +
|
||||||
+ myField.value.substring(endPos, myField.value.length)
|
myField.value.substring(endPos, myField.value.length);
|
||||||
cursorPos += tag.length
|
cursorPos += tag.length;
|
||||||
myField.focus()
|
myField.focus();
|
||||||
myField.selectionStart = cursorPos
|
myField.selectionStart = cursorPos;
|
||||||
myField.selectionEnd = cursorPos
|
myField.selectionEnd = cursorPos;
|
||||||
}
|
} else {
|
||||||
else {
|
myField.value += tag;
|
||||||
myField.value += tag
|
myField.focus();
|
||||||
myField.focus()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1 +1 @@
|
||||||
function grin (t) { var o; if (t = " " + t + " ", !document.getElementById("comment") || "textarea" != document.getElementById("comment").type) return !1; if (o = document.getElementById("comment"), document.selection) o.focus(), sel = document.selection.createRange(), sel.text = t, o.focus(); else if (o.selectionStart || "0" == o.selectionStart) { var e = o.selectionStart, a = o.selectionEnd, n = a; o.value = o.value.substring(0, e) + t + o.value.substring(a, o.value.length), n += t.length, o.focus(), o.selectionStart = n, o.selectionEnd = n } else o.value += t, o.focus() } (function () { "use strict"; var t = "3.2.0", o = function () { $("#navbutton").on("click", function () { $(".navbar-toggler").toggleClass("nav-close") }) }, e = function () { $(function () { $('[data-toggle="tooltip"]').tooltip() }) }, a = function () { $(window).on("load", function () { var t = $(window); t.scrollTop() > 200 ? $(".gotop").addClass("active") : $(".gotop").removeClass("active"), t.scroll(function () { t.scrollTop() > 200 ? $(".gotop").addClass("active") : $(".gotop").removeClass("active") }) }), $(".gotop").on("click", function (t) { return t.preventDefault(), $("html, body").animate({ scrollTop: $("html").offset().top }, 500), !1 }) }, n = function () { $(".search").on("click", function (t) { $(".search-form").animate({ width: "200px" }, 200), $(".search-form input").css("display", "block"), $(document).one("click", function () { $(".search-form").animate({ width: "0" }, 100), $(".search-form input").hide() }), t.stopPropagation() }), $(".search-form").on("click", function (t) { t.stopPropagation() }) }, c = function () { $(".wechat").mouseout(function () { $(".wechat-pic")[0].style.display = "none" }), $(".wechat").mouseover(function () { $(".wechat-pic")[0].style.display = "block" }) }, s = function () { $("#addsmile").on("click", function (t) { return $(".smile").toggleClass("open"), $(document).one("click", function () { $(".smile").toggleClass("open") }), t.stopPropagation(), !1 }) }, i = function () { $.fn.postLike = function () { if ($(this).hasClass("done")) return layer.msg(kratos.repeat, function () { }), !1; $(this).addClass("done"), layer.msg(kratos.thanks); var t = $(this).data("id"), o = $(this).data("action"), e = { action: "love", um_id: t, um_action: o }; return $.post(kratos.site + "/wp-admin/admin-ajax.php", e, function (t) { }), !1 }, $(document).on("click", ".btn-thumbs", function () { $(this).postLike() }) }, l = function () { $("#donate").on("click", function () { layer.open({ type: 1, area: ["300px", "370px"], title: kratos.donate, resize: !1, scrollbar: !1, content: '<div class="donate-box"><div class="meta-pay text-center my-2"><strong>' + kratos.scan + '</strong></div><div class="qr-pay text-center"><img class="pay-img" id="alipay_qr" src="' + kratos.alipay + '"><img class="pay-img d-none" id="wechat_qr" src="' + kratos.wechat + '"></div><div class="choose-pay text-center mt-2"><input id="alipay" type="radio" name="pay-method" checked><label for="alipay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/wechat.png"></label></div></div>' }), $(".choose-pay input[type='radio']").click(function () { var t = $(this).attr("id"); "alipay" == t && ($(".qr-pay #alipay_qr").removeClass("d-none"), $(".qr-pay #wechat_qr").addClass("d-none")), "wechatpay" == t && ($(".qr-pay #alipay_qr").addClass("d-none"), $(".qr-pay #wechat_qr").removeClass("d-none")) }) }) }, r = function () { $(document).on("click", ".acheader", function (t) { var o = $(this); o.closest(".accordion").find(".contents").slideToggle(300), o.closest(".accordion").hasClass("active") ? o.closest(".accordion").removeClass("active") : o.closest(".accordion").addClass("active"), t.preventDefault() }) }, d = function () { console.log("\n Kratos v" + t + "\n\n https://github.com/vtrois/kratos \n\n") }; $(function () { r(), o(), e(), a(), n(), c(), s(), i(), l(), d() }) })()
|
function grin (t) { var o; if (t = " " + t + " ", !document.getElementById("comment") || "textarea" != document.getElementById("comment").type) return !1; if (o = document.getElementById("comment"), document.selection) o.focus(), sel = document.selection.createRange(), sel.text = t, o.focus(); else if (o.selectionStart || "0" == o.selectionStart) { var e = o.selectionStart, a = o.selectionEnd, n = a; o.value = o.value.substring(0, e) + t + o.value.substring(a, o.value.length), n += t.length, o.focus(), o.selectionStart = n, o.selectionEnd = n } else o.value += t, o.focus() } (function () { "use strict"; var t = "3.2.1", o = function () { $("#navbutton").on("click", function () { $(".navbar-toggler").toggleClass("nav-close") }) }, e = function () { $(function () { $('[data-toggle="tooltip"]').tooltip() }) }, a = function () { $(window).on("load", function () { var t = $(window); t.scrollTop() > 200 ? $(".gotop").addClass("active") : $(".gotop").removeClass("active"), t.scroll(function () { t.scrollTop() > 200 ? $(".gotop").addClass("active") : $(".gotop").removeClass("active") }) }), $(".gotop").on("click", function (t) { return t.preventDefault(), $("html, body").animate({ scrollTop: $("html").offset().top }, 500), !1 }) }, n = function () { $(".search").on("click", function (t) { $(".search-form").animate({ width: "200px" }, 200), $(".search-form input").css("display", "block"), $(document).one("click", function () { $(".search-form").animate({ width: "0" }, 100), $(".search-form input").hide() }), t.stopPropagation() }), $(".search-form").on("click", function (t) { t.stopPropagation() }) }, c = function () { $(".wechat").mouseout(function () { $(".wechat-pic")[0].style.display = "none" }), $(".wechat").mouseover(function () { $(".wechat-pic")[0].style.display = "block" }) }, s = function () { $("#addsmile").on("click", function (t) { return $(".smile").toggleClass("open"), $(document).one("click", function () { $(".smile").toggleClass("open") }), t.stopPropagation(), !1 }) }, i = function () { $.fn.postLike = function () { if ($(this).hasClass("done")) return layer.msg(kratos.repeat, function () { }), !1; $(this).addClass("done"), layer.msg(kratos.thanks); var t = $(this).data("id"), o = $(this).data("action"), e = { action: "love", um_id: t, um_action: o }; return $.post(kratos.site + "/wp-admin/admin-ajax.php", e, function (t) { }), !1 }, $(document).on("click", ".btn-thumbs", function () { $(this).postLike() }) }, l = function () { $("#donate").on("click", function () { layer.open({ type: 1, area: ["300px", "370px"], title: kratos.donate, resize: !1, scrollbar: !1, content: '<div class="donate-box"><div class="meta-pay text-center my-2"><strong>' + kratos.scan + '</strong></div><div class="qr-pay text-center"><img class="pay-img" id="alipay_qr" src="' + kratos.alipay + '"><img class="pay-img d-none" id="wechat_qr" src="' + kratos.wechat + '"></div><div class="choose-pay text-center mt-2"><input id="alipay" type="radio" name="pay-method" checked><label for="alipay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/alipay.png"></label><input id="wechatpay" type="radio" name="pay-method"><label for="wechatpay" class="pay-button"><img src="' + kratos.directory + '/assets/img/payment/wechat.png"></label></div></div>' }), $(".choose-pay input[type='radio']").click(function () { var t = $(this).attr("id"); "alipay" == t && ($(".qr-pay #alipay_qr").removeClass("d-none"), $(".qr-pay #wechat_qr").addClass("d-none")), "wechatpay" == t && ($(".qr-pay #alipay_qr").addClass("d-none"), $(".qr-pay #wechat_qr").removeClass("d-none")) }) }) }, r = function () { $(document).on("click", ".acheader", function (t) { var o = $(this); o.closest(".accordion").find(".contents").slideToggle(300), o.closest(".accordion").hasClass("active") ? o.closest(".accordion").removeClass("active") : o.closest(".accordion").addClass("active"), t.preventDefault() }) }, d = function () { console.log("\n Kratos v" + t + "\n\n https://github.com/vtrois/kratos \n\n") }; $(function () { r(), o(), e(), a(), n(), c(), s(), i(), l(), d() }) })()
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "3.2.0",
|
"version": "3.2.1",
|
||||||
"details_url": "https://github.com/vtrois/kratos/releases/tag/v3.2.0",
|
"details_url": "https://github.com/vtrois/kratos/releases/tag/v3.2.1",
|
||||||
"download_url": "https://mirrors.vtrois.com/kratos/v3.2.0.zip"
|
"download_url": "https://mirrors.vtrois.com/kratos/v3.2.1.zip"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
Theme Name: Kratos
|
Theme Name: Kratos
|
||||||
Text Domain: kratos
|
Text Domain: kratos
|
||||||
Version: 3.2.0
|
Version: 3.2.1
|
||||||
Requires PHP: 7.0
|
Requires PHP: 7.0
|
||||||
Description: 主题提供了多种针对自媒体博客需求的侧栏工具,删繁就简专注于用户的阅读体验,优化的邮件中心为你的网站留存加分添彩。
|
Description: 主题提供了多种针对自媒体博客需求的侧栏工具,删繁就简专注于用户的阅读体验,优化的邮件中心为你的网站留存加分添彩。
|
||||||
Tags: 博客, 双栏, 响应式, 自定义背景, 自定义颜色, 自定义图标, 自定义菜单, 特色图像, 收录优化, 邮件中心, 主题选项, 小工具, 文章置顶, 无障碍友好
|
Tags: 博客, 双栏, 响应式, 自定义背景, 自定义颜色, 自定义图标, 自定义菜单, 特色图像, 收录优化, 邮件中心, 主题选项, 小工具, 文章置顶, 无障碍友好
|
||||||
|
|
Loading…
Reference in New Issue