1.0.2
parent
a1f5e065b4
commit
6ac40d81c3
|
@ -41,6 +41,10 @@ cal -m 5 # 打印当前年份的 指定月份
|
||||||
|
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
|
### v1.0.2
|
||||||
|
* 修复当天农历是3个字时的排版异常
|
||||||
|
* 周末的农历增加暗红色显示
|
||||||
|
|
||||||
### v1.0.0
|
### v1.0.0
|
||||||
* 完成农历显示、公历节日及农历节日的显示
|
* 完成农历显示、公历节日及农历节日的显示
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "bash-calendar",
|
"name": "bash-calendar",
|
||||||
"description": "终端版万年历",
|
"description": "终端版万年历",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"author": "yutent <yutent.io@gmail.com>",
|
"author": "yutent <yutent.io@gmail.com>",
|
||||||
"bin": {
|
"bin": {
|
||||||
"calendar": "index.js",
|
"calendar": "index.js",
|
||||||
|
|
|
@ -137,7 +137,7 @@ function drawTbody(year, month) {
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
if (tmp.picked) {
|
if (tmp.picked) {
|
||||||
tr += chalk.bgRed.whiteBright.bold(' '.repeat(4) + tmp.day + ' '.repeat(4)) + VLINE
|
tr += ' ' + chalk.bgRed.whiteBright.bold(' ' + tmp.day + ' ') + ' ' + VLINE
|
||||||
} else {
|
} else {
|
||||||
// 有grey字段的, 优先置灰, 这种为 非本月份的日期
|
// 有grey字段的, 优先置灰, 这种为 非本月份的日期
|
||||||
if (tmp.grey) {
|
if (tmp.grey) {
|
||||||
|
@ -154,15 +154,25 @@ function drawTbody(year, month) {
|
||||||
break
|
break
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
|
let pad = 5
|
||||||
|
if (tmp.lunar) {
|
||||||
|
pad = (10 - tmp.lunar.length * 2) / 2 - 2
|
||||||
|
}
|
||||||
if (tmp.picked) {
|
if (tmp.picked) {
|
||||||
tr += chalk.bgRed.white.bold(' '.repeat(3) + tmp.lunar + ' '.repeat(3)) + VLINE
|
tr +=
|
||||||
|
' ' +
|
||||||
|
chalk.bgRed.white.bold(' '.repeat(pad) + tmp.lunar + ' '.repeat(pad)) +
|
||||||
|
' ' +
|
||||||
|
VLINE
|
||||||
} else {
|
} else {
|
||||||
let pad = 5
|
|
||||||
if (tmp.lunar) {
|
if (tmp.lunar) {
|
||||||
pad = (10 - tmp.lunar.length * 2) / 2
|
tmp.lunar = tmp.highlight
|
||||||
tmp.lunar = tmp.highlight ? chalk.cyan.dim(tmp.lunar) : chalk.grey(tmp.lunar)
|
? chalk.cyan.dim(tmp.lunar)
|
||||||
|
: tmp.weekend
|
||||||
|
? chalk.red.dim(tmp.lunar)
|
||||||
|
: chalk.grey(tmp.lunar)
|
||||||
}
|
}
|
||||||
tr += ' '.repeat(pad) + tmp.lunar + ' '.repeat(pad) + VLINE
|
tr += ' '.repeat(pad + 2) + tmp.lunar + ' '.repeat(pad + 2) + VLINE
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
|
@ -285,7 +285,7 @@ export const FESTIVALS = {
|
||||||
|
|
||||||
// 公历节日(不全, 仅国内常用的)
|
// 公历节日(不全, 仅国内常用的)
|
||||||
export const SOLAR_FESTIVALS = {
|
export const SOLAR_FESTIVALS = {
|
||||||
'1.1': '元旦节',
|
'1.1': '元旦',
|
||||||
'2.14': '情人节',
|
'2.14': '情人节',
|
||||||
'3.8': '妇女节',
|
'3.8': '妇女节',
|
||||||
'3.12': '植树节',
|
'3.12': '植树节',
|
||||||
|
|
Loading…
Reference in New Issue