narou 1.4.1 → 1.4.1.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 +5 -1
- data/README.md +8 -0
- data/lib/command/init.rb +2 -3
- data/lib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f9acd2c32953f999fa05542ee880063b338a577
|
|
4
|
+
data.tar.gz: 26f36b7388a838aa334ba9aa16dad3fd50a69a29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b69ebd3d737b2acf83a7eac4ac963209f48bb0a54fc2b6e80b67b2139ca7577e56f6ccbe5f9fee3851cff7a688299f9dd17d794311aa9a84bce817844bef8307
|
|
7
|
+
data.tar.gz: fe80c8370e965207525243ba5359c535cb72300938dab2b19aa752237f374bfe710297664e07ea1469130eaf54daad50c0c3e179a966b124add350c56d3f2710
|
data/ChangeLog.md
CHANGED
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
更新履歴 - ChangeLog
|
|
3
3
|
--------------------
|
|
4
4
|
|
|
5
|
+
2014/02/20 : **1.4.1.1**
|
|
6
|
+
* Bug Fix
|
|
7
|
+
- `narou init` 時にエラーが出るようになっていたのを修正
|
|
8
|
+
|
|
5
9
|
2014/02/20 : **1.4.1**
|
|
6
10
|
* Bug Fix
|
|
7
|
-
1.4.0 で章情報が取得できていなかったのを修正
|
|
11
|
+
- 1.4.0 で章情報が取得できていなかったのを修正
|
|
8
12
|
|
|
9
13
|
2014/02/20 : **1.4.0**
|
|
10
14
|
* 重要な修正
|
data/README.md
CHANGED
|
@@ -21,6 +21,14 @@ Narou.rb ― 「小説家になろう」「小説を読もう!」ダウンロ
|
|
|
21
21
|
更新履歴 - ChangeLog
|
|
22
22
|
--------------------
|
|
23
23
|
|
|
24
|
+
2014/02/20 : **1.4.1.1**
|
|
25
|
+
* Bug Fix
|
|
26
|
+
- `narou init` 時にエラーが出るようになっていたのを修正
|
|
27
|
+
|
|
28
|
+
2014/02/20 : **1.4.1**
|
|
29
|
+
* Bug Fix
|
|
30
|
+
- 1.4.0 で章情報が取得できていなかったのを修正
|
|
31
|
+
|
|
24
32
|
2014/02/20 : **1.4.0**
|
|
25
33
|
* 重要な修正
|
|
26
34
|
- 小説家になろうのレイアウト変更によって更新処理ができなくなっていたものを修正しました
|
data/lib/command/init.rb
CHANGED
|
@@ -99,9 +99,8 @@ module Command
|
|
|
99
99
|
puts chuki_tag_path
|
|
100
100
|
puts
|
|
101
101
|
# ファイルコピー
|
|
102
|
-
src = ["AozoraEpub3.ini", "vertical_font.css", "DMincho.ttf"
|
|
103
|
-
dst = ["AozoraEpub3.ini", "template/OPS/css_custom/vertical_font.css", "template/OPS/fonts/DMincho.ttf"
|
|
104
|
-
"template/OPS/xhtml/xhtml_nav.vm"]
|
|
102
|
+
src = ["AozoraEpub3.ini", "vertical_font.css", "DMincho.ttf"]
|
|
103
|
+
dst = ["AozoraEpub3.ini", "template/OPS/css_custom/vertical_font.css", "template/OPS/fonts/DMincho.ttf"]
|
|
105
104
|
puts "(次のファイルをコピーor上書きしました)"
|
|
106
105
|
src.count.times do |i|
|
|
107
106
|
src_full_path = File.join(Narou.get_preset_dir, src[i])
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: narou
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.1
|
|
4
|
+
version: 1.4.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- whiteleaf7
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: termcolor
|