narou 3.2.5 → 3.2.5.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of narou might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85c5a94d6bd509b454e4a0f67ef43130d653bdeb3a39530b9f18bcd175e9f9ea
4
- data.tar.gz: 03b2b6beb7b0fe4a16144603141cd52a9dfcba0145daf92b9567a43bfb319a52
3
+ metadata.gz: 5d8f4654871a4c05f66192f46ec3eb2db8007200c38a6b8a1fff81b1472a3878
4
+ data.tar.gz: b6511c48be1cba23130325e94668425175fd93efb649c1b22e999ece36e10437
5
5
  SHA512:
6
- metadata.gz: 626b64e86beccf64597fb23ba72cd747857c2337aec36e1ee61d0e6f2b6da0b9f08bf818d7af814b34f17a413c247c677e5244e595e9fae7f0a54e2edee6e69e
7
- data.tar.gz: 9bc3044da8d0365e44932f7eafb9fc36eb6473de7430239cdf90118d319b8dd92f86c08e804e9074652ae44773e41b7ff978ede8cb957dc0ca992b233e8ac8aa
6
+ metadata.gz: 30a2c1c79e6bab81d10bbd2951f48cd387aad7312bc98c08a1787e058643a3a892e3eecd25f180f6ea7243bd8feb4915435714fcb39c35c0a5b55afbeb6a7bef
7
+ data.tar.gz: ba867abdf7bbf2f4558f2a59f31f0794d60984ee73240481929c0788c2cd0dac1b16f9fbe322584bd2fdc9649ad33483e307526cf04818c0220e9fcf1675e169
data/ChangeLog.md CHANGED
@@ -1,6 +1,12 @@
1
1
  更新履歴 - ChangeLog
2
2
  ====================
3
3
 
4
+ 3.2.5.1: 2018/08/21
5
+ ------------------
6
+ #### 修正内容
7
+ - WEB UI の小説リストの幅が、一部項目で極端にでかくなる場合があるのを修正
8
+
9
+
4
10
  3.2.5: 2018/08/21
5
11
  ------------------
6
12
  #### 追加機能
data/README.md CHANGED
@@ -33,6 +33,12 @@ Narou.rb ― 「小説家になろう」「小説を読もう!」ダウンロ
33
33
  更新履歴 - ChangeLog
34
34
  --------------------
35
35
 
36
+ 3.2.5.1: 2018/08/21
37
+ ------------------
38
+ #### 修正内容
39
+ - WEB UI の小説リストの幅が、一部項目で極端にでかくなる場合があるのを修正
40
+
41
+
36
42
  3.2.5: 2018/08/21
37
43
  ------------------
38
44
  #### 追加機能
data/lib/version.rb CHANGED
@@ -4,5 +4,5 @@
4
4
  #
5
5
 
6
6
  module Narou
7
- VERSION = "3.2.5"
7
+ VERSION = "3.2.5.1"
8
8
  end
@@ -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: "25px"
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
- { title: "種別",
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
- { title: "タグ",
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
- { title: "話数",
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: "40px"
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
@@ -32,6 +32,12 @@ Gem::Specification.new do |gem|
32
32
  install_message = <<-EOS
33
33
  #{"*" * 60}
34
34
 
35
+ 3.2.5.1: 2018/08/21
36
+ ------------------
37
+ #### 修正内容
38
+ - WEB UI の小説リストの幅が、一部項目で極端にでかくなる場合があるのを修正
39
+
40
+
35
41
  3.2.5: 2018/08/21
36
42
  ------------------
37
43
  #### 追加機能
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
  #### 追加機能