Skip to content

Commit

Permalink
Merge pull request #188 from lkw199711/version/3.6.6
Browse files Browse the repository at this point in the history
Version/3.6.6
  • Loading branch information
lkw199711 authored Mar 3, 2024
2 parents 95080b2 + 086b471 commit fc79450
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ Telegram 交流群:https://t.me/+FFgQ7AMIdrg2M2Y1
- 3.6.3 存储封面时将进行压缩.
- 3.6.4 修复ssl证书路径回显以及封面压缩大小设置.
- 3.6.5 新增文件保存时长设置.
- 3.6.6 页码文字增加阴影.

## 开发注意事项

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smanga",
"version": "3.6.5",
"version": "3.6.6",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
10 changes: 6 additions & 4 deletions src/views/browse-view/components/page-number.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: lkw199711 lkw199711@163.com
* @Date: 2023-09-25 19:09:52
* @LastEditors: lkw199711 lkw199711@163.com
* @LastEditTime: 2023-09-26 12:43:27
* @LastEditTime: 2024-02-28 02:40:06
* @FilePath: /smanga/src/views/browse-view/components/page-number.vue
-->
<template>
Expand All @@ -22,8 +22,10 @@ const props = defineProps(['page', 'count']);
left: 50%;
bottom: 4rem;

font-size: 1.8rem;
color: white;
opacity: 0.7;
font-size: 2.2rem;
color: #fff;
// opacity: 0.7;

text-shadow: 0 0 10px #000;
}
</style>
2 changes: 1 addition & 1 deletion src/views/serve-setting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<!--自动解压-->
<el-form-item label="自动解压">
<el-switch class="auto-compress" v-model.number="form.autoCompress" :active-value="1" :inactive-value="0" />
<el-switch class="auto-compress" v-model="form.autoCompress" :active-value="'1'" :inactive-value="'0'" />
<el-button type="primary" @click="comfirm_auto_compressl">确定</el-button>
</el-form-item>

Expand Down

0 comments on commit fc79450

Please sign in to comment.