Skip to content

Commit

Permalink
CTAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
jperon authored Nov 1, 2022
1 parent 374e598 commit fb306cd
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tmp-ly
ctan
\#*\#
.\#*
.vscode

## Core latex/pdflatex auxiliary files:
*.aux
Expand Down
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
% lyluatex Changelog file.
%
% Copyright (C) 2015-2019 jperon and others (see CONTRIBUTORS.md)
% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015--2019 jperon and others
Copyright (c) 2015--2022 jperon and others

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ ctan: manual
echo 'Main author: [Fr. Jacques Peron](mailto:[email protected])\nThis material is subject to the MIT license.\n' \
> ./ctan/lyluatex/README.md
echo '# Lyluatex' >> ./ctan/lyluatex/README.md
sed -n -e '/## Usage/,$$p' README.md | sed '/test.en.tex/d' >> ./ctan/lyluatex/README.md
sed -n -e '/## Usage/,$$p' README.md >> ./ctan/lyluatex/README.md
(cd ctan/ ; zip -r lyluatex lyluatex)
6 changes: 3 additions & 3 deletions lyluatex.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-- luacheck: ignore ly log self luatexbase internalversion font fonts tex token kpse status ly_opts
local err, warn, info, log = luatexbase.provides_module({
name = "lyluatex",
version = '1.0f', --LYLUATEX_VERSION
date = "2019/05/27", --LYLUATEX_DATE
version = '1.1', --LYLUATEX_VERSION
date = "2022/10/30", --LYLUATEX_DATE
description = "Module lyluatex.",
author = "The Gregorio Project − (see Contributors.md)",
copyright = "2015-2019 - jperon and others",
copyright = "2015-2022 - jperon and others",
license = "MIT",
})

Expand Down
2 changes: 1 addition & 1 deletion lyluatex.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
documentclass: lyluatexmanual
title: "\\lyluatex"
subtitle: "1.0f"
subtitle: "1.1"
date: \lyluatexmanualdate
author:
- Fr. Jacques Peron
Expand Down
4 changes: 2 additions & 2 deletions lyluatex.sty
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
%Lyluatex LaTeX style.
%
% Copyright (C) 2015-2019 jperon and others (see CONTRIBUTORS.md)
% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.

\NeedsTeXFormat{LaTeX2e}%
\ProvidesPackage{lyluatex}[2019/05/27 v1.0f] %%LYLUATEX_DATE LYLUATEX_VERSION
\ProvidesPackage{lyluatex}[2022/10/30 v1.1] %%LYLUATEX_DATE LYLUATEX_VERSION

% Dependencies
\RequirePackage{graphicx}
Expand Down
4 changes: 2 additions & 2 deletions lyluatexbase.cls
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
%Lyluatex LaTeX class.
%
% Copyright (C) 2015-2019 jperon and others (see CONTRIBUTORS.md)
% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{lyluatexbase}[2019/05/27 v1.0f] %%LYLUATEX_DATE LYLUATEX_VERSION
\ProvidesClass{lyluatexbase}[2022/10/30 v1.1] %%LYLUATEX_DATE LYLUATEX_VERSION

\LoadClass[DIV=11]{scrartcl}
\RequirePackage{lyluatex}
Expand Down
4 changes: 2 additions & 2 deletions lyluatexmanual.cls
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
%Lyluatex LaTeX class for the manual.
%
% Copyright (C) 2015-2019 jperon and others (see CONTRIBUTORS.md)
% Copyright (C) 2015-2022 jperon and others (see CONTRIBUTORS.md)
% License: MIT
% This file is part of lyluatex.

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{lyluatexmanual}[2019/05/27 v1.0f] %%LYLUATEX_DATE LYLUATEX_VERSION
\ProvidesClass{lyluatexmanual}[2022/10/30 v1.1] %%LYLUATEX_DATE LYLUATEX_VERSION

\LoadClass{lyluatexbase}

Expand Down
4 changes: 2 additions & 2 deletions new_release.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/env lua
local lfs = require"lfs"

local VERSION = '1.0f'
local DATE = '2019/05/27'
local VERSION = '1.1'
local DATE = '2022/10/30'

local function read(stream)
if not stream then return end
Expand Down

0 comments on commit fb306cd

Please sign in to comment.