diff --git a/.gitignore b/.gitignore deleted file mode 100644 index fd282db..0000000 --- a/.gitignore +++ /dev/null @@ -1,148 +0,0 @@ -# ---> TeX -## class files for examples -examples/acmart.cls -examples/entcs.cls -examples/IEEEtran.cls -examples/llncs.cls -examples/lni.cls -examples/sig-alternate.cls -examples/*.pdf - -## Core latex/pdflatex auxiliary files: -*.aux -*.lof -*.log -*.lot -*.fls -*.out -*.toc - -## Intermediate documents: -*.dvi -*-converted-to.* -# these rules might exclude image files for figures etc. -# *.ps -# *.eps -# *.pdf - -## Bibliography auxiliary files (bibtex/biblatex/biber): -*.bbl -*.bcf -*.blg -*-blx.aux -*-blx.bib -*.brf -*.run.xml - -## Build tool auxiliary files: -*.fdb_latexmk -*.synctex -*.synctex.gz -*.synctex.gz(busy) -*.pdfsync - -## Auxiliary and intermediate files from other packages: - - -# algorithms -*.alg -*.loa - -# achemso -acs-*.bib - -# amsthm -*.thm - -# beamer -*.nav -*.snm -*.vrb - -#(e)ledmac/(e)ledpar -*.end -*.[1-9] -*.[1-9][0-9] -*.[1-9][0-9][0-9] -*.[1-9]R -*.[1-9][0-9]R -*.[1-9][0-9][0-9]R -*.eledsec[1-9] -*.eledsec[1-9]R -*.eledsec[1-9][0-9] -*.eledsec[1-9][0-9]R -*.eledsec[1-9][0-9][0-9] -*.eledsec[1-9][0-9][0-9]R - -# glossaries -*.acn -*.acr -*.glg -*.glo -*.gls - -# gnuplottex -*-gnuplottex-* - -# hyperref -*.brf - -# knitr -*-concordance.tex -*.tikz -*-tikzDictionary - -# listings -*.lol - -# makeidx -*.idx -*.ilg -*.ind -*.ist - -# minitoc -*.maf -*.mtc -*.mtc[0-9] -*.mtc[1-9][0-9] - -# minted -_minted* -*.pyg - -# morewrites -*.mw - -# mylatexformat -*.fmt - -# nomencl -*.nlo - -# sagetex -*.sagetex.sage -*.sagetex.py -*.sagetex.scmd - -# sympy -*.sout -*.sympy -sympy-plots-for-*.tex/ - -# TikZ & PGF -*.dpth -*.md5 -*.auxlock - -# todonotes -*.tdo - -# xindy -*.xdy - -# WinEdt -*.bak -*.sav - -authorarchive.zip diff --git a/.woodpecker/Makefile b/.woodpecker/Makefile deleted file mode 100644 index 75c1ac3..0000000 --- a/.woodpecker/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -authorarchive.zip: ../* ../examples/*.tex - rm -rf authorarchive - mkdir -p authorarchive/examples - cp -r ../icons authorarchive - (cd ../examples; for i in *.tex; do pdflatex $$i; pdflatex $$i; pdflatex $$i; done) - cp ../examples/*.tex authorarchive/examples/ - cp ../examples/*.pdf authorarchive/examples/ - cp ../examples/*.config authorarchive/examples/ - cp -r ../examples/bib authorarchive/examples/ - cp ../*.sty authorarchive - cp ../LICENSE authorarchive - cp ../*.md authorarchive - chmod -R go+u-w authorarchive - zip -r authorarchive.zip authorarchive - rm -rf authorarchive - diff --git a/.woodpecker/README.md b/.woodpecker/README.md deleted file mode 100644 index cdb2867..0000000 --- a/.woodpecker/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# Continuous Build and Release Setup - -[![status-badge](https://ci.logicalhacking.com/api/badges/adbrucker/authorarchive/status.svg)](https://ci.logicalhacking.com/adbrucker/authorarchive) - -This directory contains the CI configuration for the [Woodpecker CI](https://woodpecker-ci.org/). -It may also contain additional tools and script that are useful for preparing a release. - -## Generated Artifacts - -### Latest Build - -* [brucker-authorarchive-2016-acmart.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-acmart.pdf) -* [brucker-authorarchive-2016-entcs.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-entcs.pdf) -* [brucker-authorarchive-2016-IEEEtran-nourl.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-IEEEtran-nourl.pdf) -* [brucker-authorarchive-2016-IEEEtran.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-IEEEtran.pdf) -* [brucker-authorarchive-2016-llncs-a4.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-llncs-a4.pdf) -* [brucker-authorarchive-2016-llncs.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-llncs.pdf) -* [brucker-authorarchive-2016-lni.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016-lni.pdf) -* [brucker-authorarchive-2016.pdf](https://artifacts.logicalhacking.com/ci/adbrucker/authorarchive/main/latest/brucker-authorarchive-2016.pdf) - diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml deleted file mode 100644 index d0a00e7..0000000 --- a/.woodpecker/build.yml +++ /dev/null @@ -1,37 +0,0 @@ -pipeline: - build: - image: docker.io/texlive/texlive - commands: - - export ARTIFACT_DIR=$CI_WORKSPACE/.artifacts/$CI_REPO/$CI_BRANCH/$CI_BUILD_NUMBER/ - - mkdir -p $ARTIFACT_DIR - - cd examples - - curl http://www.entcs.org/generic.zip --output generic.zip - - unzip -p generic.zip generic/entcs.cls > entcs.cls - - rm generic.zip - - latexmk -pdf - - cp *.pdf $ARTIFACT_DIR - - cd $ARTIFACT_DIR - - cd .. - - ln -s * latest - deploy: - image: docker.io/drillster/drone-rsync - settings: - hosts: [ "ci.logicalhacking.com"] - port: 22 - source: .artifacts/$CI_REPO_OWNER/* - target: $CI_REPO_OWNER - include: [ "**.*"] - key: - from_secret: artifacts_ssh - user: artifacts - notify: - image: drillster/drone-email - settings: - host: smtp.0x5f.org - username: woodpecker - password: - from_secret: email - from: ci@logicalhacking.com - when: - status: [ changed, failure ] - diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd7603..201aac2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,6 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] - -### Added - -### Changed - ## [1.2.0] - 2022-04-24 ### Changed diff --git a/examples/brucker-authorarchive-2016-IEEEtran-nourl.pdf b/examples/brucker-authorarchive-2016-IEEEtran-nourl.pdf new file mode 100644 index 0000000..385e710 Binary files /dev/null and b/examples/brucker-authorarchive-2016-IEEEtran-nourl.pdf differ diff --git a/examples/brucker-authorarchive-2016-IEEEtran.pdf b/examples/brucker-authorarchive-2016-IEEEtran.pdf new file mode 100644 index 0000000..03172ef Binary files /dev/null and b/examples/brucker-authorarchive-2016-IEEEtran.pdf differ diff --git a/examples/brucker-authorarchive-2016-acmart.pdf b/examples/brucker-authorarchive-2016-acmart.pdf new file mode 100644 index 0000000..6bff86a Binary files /dev/null and b/examples/brucker-authorarchive-2016-acmart.pdf differ diff --git a/examples/brucker-authorarchive-2016-entcs.pdf b/examples/brucker-authorarchive-2016-entcs.pdf new file mode 100644 index 0000000..c9713da Binary files /dev/null and b/examples/brucker-authorarchive-2016-entcs.pdf differ diff --git a/examples/brucker-authorarchive-2016-llncs-a4.pdf b/examples/brucker-authorarchive-2016-llncs-a4.pdf new file mode 100644 index 0000000..fab1b66 Binary files /dev/null and b/examples/brucker-authorarchive-2016-llncs-a4.pdf differ diff --git a/examples/brucker-authorarchive-2016-llncs.pdf b/examples/brucker-authorarchive-2016-llncs.pdf new file mode 100644 index 0000000..ffe6b86 Binary files /dev/null and b/examples/brucker-authorarchive-2016-llncs.pdf differ diff --git a/examples/brucker-authorarchive-2016-lni.pdf b/examples/brucker-authorarchive-2016-lni.pdf new file mode 100644 index 0000000..6ad4884 Binary files /dev/null and b/examples/brucker-authorarchive-2016-lni.pdf differ diff --git a/examples/brucker-authorarchive-2016.pdf b/examples/brucker-authorarchive-2016.pdf new file mode 100644 index 0000000..f1f28e1 Binary files /dev/null and b/examples/brucker-authorarchive-2016.pdf differ