Compare commits

...

4 Commits

Author SHA1 Message Date
Emelie Graven d1a8c2cbbc
Add 5.2.0
continuous-integration/drone/push Build is passing Details
2021-11-24 13:30:16 +01:00
Geoff McLane abb03163ae Issue #394 - Add CHANGELOG in RELEASE.html 2016-04-07 14:34:37 +02:00
Geoff McLane e058b6a1b2 Issue #394 - Update verhist.log 2016-04-07 14:33:02 +02:00
Geoff McLane 67068ff778 Issue #394 - Bump to 5.2.0 for release/5.2 creation 2016-04-07 14:31:07 +02:00
5 changed files with 1345 additions and 3 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
repo: egraven/tidy-html5
username: egraven
password:
from_secret: DOCKER_TOKEN
tags:
- '5.2.0'

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM debian:stable-slim AS builder
RUN apt-get update -y && \
apt-get install -y git cmake make build-essential gcc
WORKDIR /build
COPY . .
RUN cd build/cmake
RUN cmake /build -DCMAKE_BUILD_TYPE=Release
RUN make
RUN make install
FROM debian:stable-slim AS runtime
COPY --from=builder /usr/local/bin/tidy /usr/local/bin/tidy
ENTRYPOINT [ "/usr/local/bin/tidy" ]

1279
README/RELEASE.html Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,39 @@
# Version history at 2015/11/23 15:04:00
# Version history at 2016/04/07
5.1.52 0db9b32e22 Geoff McLane Mon Apr 4 18:14:33 2016 +0200
5.1.51 3e5e07ea18 Geoff McLane Thu Mar 31 14:50:47 2016 +0200
5.1.50 005f36106a Geoff McLane Wed Mar 30 16:28:45 2016 +0200
5.1.49 c19d221ddc Geoff McLane Wed Mar 30 14:19:07 2016 +0200
5.1.48 aa1fc197d5 Geoff McLane Sun Mar 27 19:57:41 2016 +0200
5.1.47fr fb95ea2ed2 Geoff McLane Wed Mar 23 19:53:51 2016 +0100
5.1.47 3c8d9bf3f6 Geoff McLane Sun Mar 20 01:03:25 2016 +0100
5.1.46 8a31aad0e3 Geoff McLane Sat Mar 19 19:32:39 2016 +0100
5.1.45-Exp3 06215769aa Geoff McLane Fri Mar 18 18:48:08 2016 +0100
5.1.45-Exp2 98f32ddebb Geoff McLane Sun Mar 6 17:38:48 2016 +0100
5.1.45-Exp1 b83d5ffb03 Geoff McLane Sat Mar 5 17:40:32 2016 +0100
5.1.45 b2c591c138 Geoff McLane Fri Mar 4 19:39:21 2016 +0100
5.1.44 1dd06aa4b2 Geoff McLane Mon Feb 29 19:59:41 2016 +0100
5.1.43 9a80938246 Geoff McLane Mon Feb 29 18:49:52 2016 +0100
5.1.42 b41318724c Geoff McLane Wed Feb 24 19:24:46 2016 +0100
5.1.41issue-373 9ba80b864e Geoff McLane Thu Feb 18 15:12:11 2016 +0100
5.1.41 be0e5f3a8b Jim Derry Thu Feb 18 10:20:40 2016 +0800
5.1.40 6c181d5689 Jim Derry Wed Feb 17 12:43:44 2016 +0800
5.1.40 97abad0c05 Jim Derry Tue Feb 16 11:11:36 2016 +0800
5.1.38 7df66c45da Jim Derry Tue Feb 16 10:20:34 2016 +0800
5.1.36_attr_phase2 2ade3357a9 Jim Derry Sat Feb 13 11:31:16 2016 +0800
5.1.36_attr_phase1 429703dce4 Jim Derry Fri Feb 12 19:34:19 2016 +0800
5.1.36 0f3cab930a Geoff McLane Mon Feb 1 20:10:23 2016 +0100
5.1.35 e8ca2aa5f3 Geoff McLane Mon Feb 1 19:45:43 2016 +0100
5.1.34 dca50d4077 Jim Derry Sat Jan 30 16:02:00 2016 +0800
5.1.33localizing d505869910 Jim Derry Fri Jan 15 12:06:15 2016 +0800
5.1.33 ce6c7de2d9 Jim Derry Thu Jan 7 11:52:58 2016 +0800
5.1.32 9942856164 Geoff McLane Mon Dec 7 12:42:13 2015 +0100
5.1.31 5f8aac98df Geoff McLane Sat Dec 5 13:02:33 2015 +0100
5.1.30 121fe86bc6 Geoff McLane Fri Dec 4 18:32:48 2015 +0100
5.1.29 34eb16b5da Geoff McLane Thu Dec 3 19:38:13 2015 +0100
5.1.28 4c848c57bc Jim Derry Sun Nov 29 13:24:01 2015 +0800
5.1.28 501c3fb616 Jim Derry Fri Nov 27 09:47:09 2015 +0800
5.1.27 db4f6473ed Geoff McLane Thu Nov 26 00:58:07 2015 +0100
5.1.26 0ef4493ae8 Geoff McLane Tue Nov 24 19:29:52 2015 +0100
5.1.25 2388fb0175 Geoff McLane Sun Nov 22 18:46:00 2015 +0100
5.1.24 496c81c48d Geoff McLane Wed Nov 18 20:02:54 2015 +0100
5.1.23 06e4311189 Geoff McLane Wed Nov 18 17:08:26 2015 +0100

View File

@ -1,2 +1,2 @@
5.1.52
2016.04.04
5.2.0
2016.04.07