Skip to content

Commit

Permalink
Version 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
minoki committed Feb 6, 2020
1 parent 162618a commit 2708c70
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Version 0.5 (2020-02-06)
-----

Changes:

* New option: `--check-driver`
* Driver options for some packages are always checked when the output format is PDF.
* The color for EXEC messages are now cyan ([Issue #2](https://github.com/minoki/cluttex/issues/2)).
* Some bug-fixes.

Version 0.4 (2019-08-21)
-----

Expand Down
24 changes: 21 additions & 3 deletions bin/cluttex
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ return {
end
package.preload["texrunner.handleoption"] = function(...)
local COPYRIGHT_NOTICE = [[
Copyright (C) 2016,2018-2019 ARATA Mizuki
Copyright (C) 2016-2020 ARATA Mizuki

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -2702,6 +2702,24 @@ return {
}
end
package.preload["texrunner.checkdriver"] = function(...)
--[[
Copyright 2020 ARATA Mizuki

This file is part of ClutTeX.

ClutTeX is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

ClutTeX is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]
local assert = assert
local ipairs = ipairs
local error = error
Expand Down Expand Up @@ -2870,7 +2888,7 @@ return {
}
end
--[[
Copyright 2016,2018-2019 ARATA Mizuki
Copyright 2016-2020 ARATA Mizuki

This file is part of ClutTeX.

Expand All @@ -2888,7 +2906,7 @@ end
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]

CLUTTEX_VERSION = "v0.4"
CLUTTEX_VERSION = "v0.5"

-- Standard libraries
local coroutine = coroutine
Expand Down
24 changes: 21 additions & 3 deletions bin/cluttex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,7 @@ return {
end
package.preload["texrunner.handleoption"] = function(...)
local COPYRIGHT_NOTICE = [[
Copyright (C) 2016,2018-2019 ARATA Mizuki
Copyright (C) 2016-2020 ARATA Mizuki

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -2705,6 +2705,24 @@ return {
}
end
package.preload["texrunner.checkdriver"] = function(...)
--[[
Copyright 2020 ARATA Mizuki

This file is part of ClutTeX.

ClutTeX is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

ClutTeX is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]
local assert = assert
local ipairs = ipairs
local error = error
Expand Down Expand Up @@ -2873,7 +2891,7 @@ return {
}
end
--[[
Copyright 2016,2018-2019 ARATA Mizuki
Copyright 2016-2020 ARATA Mizuki

This file is part of ClutTeX.

Expand All @@ -2891,7 +2909,7 @@ end
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]

CLUTTEX_VERSION = "v0.4"
CLUTTEX_VERSION = "v0.5"

-- Standard libraries
local coroutine = coroutine
Expand Down
Binary file modified doc/cluttex-ja.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/cluttex-ja.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
\renewcommand\sectionautorefname{セクション}
\renewcommand\subsectionautorefname{サブセクション}

\title{\ClutTeX{}マニュアル\\(バージョン0.4.1)}
\title{\ClutTeX{}マニュアル\\(バージョン0.5)}
\author{ARATA Mizuki}
\date{2020年2月3日}
\date{2020年2月6日}

\begin{document}
\maketitle
Expand Down
Binary file modified doc/cluttex.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/cluttex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
\newcommand\texpkg[1]{\texttt{#1}}
\newcommand\metavar[1]{\textnormal{\textsf{#1}}}

\title{\ClutTeX\ manual\\(Version 0.4.1)}
\title{\ClutTeX\ manual\\(Version 0.5)}
\author{ARATA Mizuki}
\date{2020-02-03}
\date{2020-02-06}

\begin{document}
\maketitle
Expand Down
4 changes: 2 additions & 2 deletions src/cluttex.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env texlua
--[[
Copyright 2016,2018-2019 ARATA Mizuki
Copyright 2016-2020 ARATA Mizuki
This file is part of ClutTeX.
Expand All @@ -18,7 +18,7 @@
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]

CLUTTEX_VERSION = "v0.4"
CLUTTEX_VERSION = "v0.5"

-- Standard libraries
local table = table
Expand Down
18 changes: 18 additions & 0 deletions src/texrunner/checkdriver.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
--[[
Copyright 2020 ARATA Mizuki
This file is part of ClutTeX.
ClutTeX is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ClutTeX is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ClutTeX. If not, see <http://www.gnu.org/licenses/>.
]]
local assert = assert
local ipairs = ipairs
local error = error
Expand Down
2 changes: 1 addition & 1 deletion src/texrunner/handleoption.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local COPYRIGHT_NOTICE = [[
Copyright (C) 2016,2018-2019 ARATA Mizuki
Copyright (C) 2016-2020 ARATA Mizuki
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 2708c70

Please sign in to comment.