Skip to content

Commit

Permalink
Version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
minoki committed Feb 22, 2019
1 parent 4ee6018 commit 6256375
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 0.2 (2019-02-22)
-----

Changes:

* Added manual.
* Added `--make-depends` option.
* Better support for older Windows; don't emit ANSI escape sequences on older Command Prompts.

Version 0.1 (2018-10-10)
-----

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ If necessary, it re-runs (La)TeX program to resolve cross-references and everyth

One of its main feature is that, it does not clutter your working directory (but the final `.pdf` file is still brought for you).

Japanese blog: [TeX 実行の自動化ツールを作った (ClutTeX)](https://blog.miz-ar.info/2016/12/cluttex/)
Blog:

* [TeX 実行の自動化ツールを作った (ClutTeX)](https://blog.miz-ar.info/2016/12/cluttex/)
* [LaTeX処理自動化ツール ClutTeX をリリースした](https://blog.miz-ar.info/2018/10/cluttex-release/)

Features
-----
Expand Down
6 changes: 3 additions & 3 deletions bin/cluttex
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ return {
end
package.preload["texrunner.handleoption"] = function(...)
local COPYRIGHT_NOTICE = [[
Copyright (C) 2016,2018 ARATA Mizuki
Copyright (C) 2016,2018-2019 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 @@ -2125,7 +2125,7 @@ return {
}
end
--[[
Copyright 2016,2018 ARATA Mizuki
Copyright 2016,2018-2019 ARATA Mizuki

This file is part of ClutTeX.

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

CLUTTEX_VERSION = "v0.1"
CLUTTEX_VERSION = "v0.2"

-- Standard libraries
local coroutine = coroutine
Expand Down
6 changes: 3 additions & 3 deletions bin/cluttex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ return {
end
package.preload["texrunner.handleoption"] = function(...)
local COPYRIGHT_NOTICE = [[
Copyright (C) 2016,2018 ARATA Mizuki
Copyright (C) 2016,2018-2019 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 @@ -2128,7 +2128,7 @@ return {
}
end
--[[
Copyright 2016,2018 ARATA Mizuki
Copyright 2016,2018-2019 ARATA Mizuki

This file is part of ClutTeX.

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

CLUTTEX_VERSION = "v0.1"
CLUTTEX_VERSION = "v0.2"

-- Standard libraries
local coroutine = coroutine
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 ARATA Mizuki
Copyright 2016,2018-2019 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.1"
CLUTTEX_VERSION = "v0.2"

-- Standard libraries
local table = table
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 ARATA Mizuki
Copyright (C) 2016,2018-2019 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 6256375

Please sign in to comment.