narou 3.2.5 → 3.2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog.md +6 -0
- data/README.md +6 -0
- data/lib/version.rb +1 -1
- data/lib/web/public/resources/narou.ui.js +17 -10
- data/narou.gemspec +6 -0
- metadata +7 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d8f4654871a4c05f66192f46ec3eb2db8007200c38a6b8a1fff81b1472a3878
|
|
4
|
+
data.tar.gz: b6511c48be1cba23130325e94668425175fd93efb649c1b22e999ece36e10437
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30a2c1c79e6bab81d10bbd2951f48cd387aad7312bc98c08a1787e058643a3a892e3eecd25f180f6ea7243bd8feb4915435714fcb39c35c0a5b55afbeb6a7bef
|
|
7
|
+
data.tar.gz: ba867abdf7bbf2f4558f2a59f31f0794d60984ee73240481929c0788c2cd0dac1b16f9fbe322584bd2fdc9649ad33483e307526cf04818c0220e9fcf1675e169
|
data/ChangeLog.md
CHANGED
data/README.md
CHANGED
data/lib/version.rb
CHANGED
|
@@ -169,7 +169,7 @@ $(document).ready(function() {
|
|
|
169
169
|
{
|
|
170
170
|
title: "ID",
|
|
171
171
|
data: "id", className: "column-id text-center", visible: cell_visible.id,
|
|
172
|
-
width: "
|
|
172
|
+
width: "20px"
|
|
173
173
|
},
|
|
174
174
|
// UPDATEした日時
|
|
175
175
|
{
|
|
@@ -261,8 +261,7 @@ $(document).ready(function() {
|
|
|
261
261
|
// タイトル
|
|
262
262
|
{
|
|
263
263
|
title: "タイトル",
|
|
264
|
-
data: "title", visible: cell_visible.title
|
|
265
|
-
width: "300px",
|
|
264
|
+
data: "title", visible: cell_visible.title
|
|
266
265
|
},
|
|
267
266
|
// 作者名
|
|
268
267
|
{
|
|
@@ -295,17 +294,23 @@ $(document).ready(function() {
|
|
|
295
294
|
}
|
|
296
295
|
},
|
|
297
296
|
// 小説種別
|
|
298
|
-
{
|
|
297
|
+
{
|
|
298
|
+
title: "種別",
|
|
299
299
|
data: "novel_type", className: "text-center", width: "25px",
|
|
300
|
-
orderSequence: [ "desc", "asc" ], visible: cell_visible.novel_type
|
|
300
|
+
orderSequence: [ "desc", "asc" ], visible: cell_visible.novel_type
|
|
301
|
+
},
|
|
301
302
|
// タグ
|
|
302
|
-
{
|
|
303
|
+
{
|
|
304
|
+
title: "タグ",
|
|
303
305
|
data: "tags", orderSequence: [ "desc", "asc" ], width: "80px",
|
|
304
|
-
visible: cell_visible.tags
|
|
306
|
+
visible: cell_visible.tags
|
|
307
|
+
},
|
|
305
308
|
// 話数
|
|
306
|
-
{
|
|
309
|
+
{
|
|
310
|
+
title: "話数",
|
|
307
311
|
data: "general_all_no", visible: cell_visible.general_all_no,
|
|
308
312
|
className: "text-center", searchable: false, orderSequence: [ "desc", "asc" ],
|
|
313
|
+
width: "15px",
|
|
309
314
|
render: function(data, type, row) {
|
|
310
315
|
data = data | 0;
|
|
311
316
|
if (type === "display") {
|
|
@@ -319,6 +324,7 @@ $(document).ready(function() {
|
|
|
319
324
|
title: "文字数",
|
|
320
325
|
data: "length", visible: cell_visible.length,
|
|
321
326
|
className: "text-center", searchable: false, orderSequence: [ "desc", "asc" ],
|
|
327
|
+
width: "15px",
|
|
322
328
|
render: function(length, type, row) {
|
|
323
329
|
if (length && type === "display") {
|
|
324
330
|
return Narou.unitizeNumeric(length) + "字";
|
|
@@ -331,6 +337,7 @@ $(document).ready(function() {
|
|
|
331
337
|
title: "平均<br>文字数",
|
|
332
338
|
data: "average_length", visible: cell_visible.average_length,
|
|
333
339
|
className: "text-center", searchable: false, orderSequence: [ "desc", "asc" ],
|
|
340
|
+
width: "15px",
|
|
334
341
|
render: function(_data, type, row) {
|
|
335
342
|
var averageLength = row.length / row.general_all_no | 0;
|
|
336
343
|
if (averageLength && type === "display") {
|
|
@@ -343,7 +350,7 @@ $(document).ready(function() {
|
|
|
343
350
|
{
|
|
344
351
|
title: "状態",
|
|
345
352
|
data: "status", visible: cell_visible.status,
|
|
346
|
-
width: "
|
|
353
|
+
width: "30px"
|
|
347
354
|
},
|
|
348
355
|
// 掲載URL
|
|
349
356
|
{
|
|
@@ -376,7 +383,7 @@ $(document).ready(function() {
|
|
|
376
383
|
title: "DL",
|
|
377
384
|
data: "download", className: "text-center", orderable: false,
|
|
378
385
|
searchable: false, visible: cell_visible.download,
|
|
379
|
-
width: "25px"
|
|
386
|
+
width: "25px"
|
|
380
387
|
},
|
|
381
388
|
{
|
|
382
389
|
title: "保存先",
|
data/narou.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: narou
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.5
|
|
4
|
+
version: 3.2.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- whiteleaf7
|
|
@@ -521,6 +521,12 @@ metadata: {}
|
|
|
521
521
|
post_install_message: |
|
|
522
522
|
************************************************************
|
|
523
523
|
|
|
524
|
+
3.2.5.1: 2018/08/21
|
|
525
|
+
------------------
|
|
526
|
+
#### 修正内容
|
|
527
|
+
- WEB UI の小説リストの幅が、一部項目で極端にでかくなる場合があるのを修正
|
|
528
|
+
|
|
529
|
+
|
|
524
530
|
3.2.5: 2018/08/21
|
|
525
531
|
------------------
|
|
526
532
|
#### 追加機能
|