Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CGAL/cgal-web
Browse files Browse the repository at this point in the history
  • Loading branch information
efifogel committed Feb 13, 2024
2 parents 7328cc7 + 6a2eb49 commit 676bf62
Show file tree
Hide file tree
Showing 62 changed files with 457 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Deploy_web_site_with_ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Change BASE_PATH
run: yq -i '.JB.BASE_PATH = "${{ vars.CGAL_WEB_SITE_URL }}"' _config.yml
- name: Remove demo/ (temporarily)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Receive_PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Change BASE_PATH
run: yq -i '.JB.BASE_PATH = "https://cgal.github.io/cgal-web"' _config.yml
- name: Remove demo/ (temporarily)
run: rm -rf demo/
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
- name: Create PR number file
run: |
echo "${{ github.event.number }}" > pr_number.txt
- name: Upload PR number file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr_number
path: pr_number.txt
8 changes: 4 additions & 4 deletions .github/workflows/jekyll-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
steps:
- name: 'Download artifact github pages'
uses: actions/github-script@v6
uses: actions/github-script@v7
id: artifactgh-pages
with:
script: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
steps:
- name: get PR number
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Expand All @@ -88,7 +88,7 @@ jobs:
unzip pr_number.zip
echo "number=$(cat pr_number.txt)" >> $GITHUB_OUTPUT
- name: Post address
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ success()}}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -100,7 +100,7 @@ jobs:
issue_number: ${{steps.prnumber.outputs.number}}
});
- name: Post error
uses: actions/github-script@v6
uses: actions/github-script@v7
if: ${{ failure()}}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions April11/FirstOfApril.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
permalink: /April11/FirstOfApril.html
layout:
title: The Computational Geometry Algorithms Library
tagline:
Expand Down
1 change: 1 addition & 0 deletions April2015.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
permalink: /April2015.html
layout: default
title: The Computational Geometry Algorithms Library
tagline:
Expand Down
1 change: 1 addition & 0 deletions April2019.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
permalink: /April2019.html
layout: default
title: The Computational Geometry Algorithms Library
tagline:
Expand Down
9 changes: 5 additions & 4 deletions FAQ.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
permalink: /FAQ.html
layout: page
title: Frequently Asked Questions
header: Frequently Asked Questions</H1>
Expand Down Expand Up @@ -172,13 +173,13 @@
<LI> <A NAME="debian_packages"></A>
<B>Are there packages for Debian / Ubuntu available?</B>
<P>Packages for Debian unstable (sid) are available from the official
Debian repository. Debian stable (bullseye) and Debian testing (bookworm)
Debian repository. Debian stable (bookworm) and Debian testing (trixie)
might not contain the latest version of CGAL. In that case, add</P>
<PRE> deb <A href="http://debian.cgal.org/">http://debian.cgal.org</A> bullseye main
deb-src <A href="http://debian.cgal.org/">http://debian.cgal.org</A> bullseye main</PRE>
or
<PRE> deb <A href="http://debian.cgal.org/">http://debian.cgal.org</A> bookworm main
deb-src <A href="http://debian.cgal.org/">http://debian.cgal.org</A> bookworm main</PRE>
or
<PRE> deb <A href="http://debian.cgal.org/">http://debian.cgal.org</A> trixie main
deb-src <A href="http://debian.cgal.org/">http://debian.cgal.org</A> trixie main</PRE>
to <TT>/etc/apt/sources.list</TT> (note that you only need the pair of lines
corresponding to the release you are using) and make sure that the package
<TT>apt-transport-https</TT> is installed. The packages are called
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the default format.
# For more see: http://jekyllrb.com/docs/permalinks/
permalink: /:categories/:year/:month/:day/:title
permalink: /:categories/:year/:month/:day/:title/

include: [.htaccess]
exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md", "web_old"]
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-02-28-cgal552.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: post
title: "CGAL 5.5.2 released"
description: "CGAL 5.5.2"
category:
tags: ["latest-release"]
tags: ["release"]
---
{% include JB/setup %}

Expand Down
8 changes: 7 additions & 1 deletion _posts/2023-04-07-SoCG-Test-of-Time-Award.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ tags: []
</blockquote>


<p>End of June there will be a follow-up post.</p>
<p>Update on June 19: The Award Ceremony is now <a href="https://youtu.be/vqhX-HzWYBw?t=11118">online</a>.</p>

<br><br>
<div style="text-align:center;">
<a href="../../../../../images/SoCG_2023_ToT_CGAL.pdf"><img src="../../../../../images/SoCG_2023_ToT_CGAL.png" style="max-width:95%"/></a><br>
<br><small>Certificate (click for the pdf).</small>
</div>
2 changes: 1 addition & 1 deletion _posts/2023-06-13-cgal56-beta1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: post
title: "CGAL 5.6 beta1 released"
description: "CGAL 5.6 beta1"
category:
tags: ["active-beta-release"]
tags: ["beta-release"]
---
{% include JB/setup %}

Expand Down
17 changes: 0 additions & 17 deletions _posts/2023-06-13-new-release-cgal56-beta1.md

This file was deleted.

18 changes: 18 additions & 0 deletions _posts/2023-07-28-cgal5.4.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: post
title: "CGAL 5.4.5 released"
description: "CGAL 5.4.5"
category:
tags: ["release"]
---
{% include JB/setup %}

<i class="glyphicon glyphicon-download"></i>
<a href="https://github.com/CGAL/cgal/releases/tag/v5.4.5">Download CGAL-5.4.5</a>

<i class="glyphicon glyphicon-book"></i>
<a href="https://doc.cgal.org/5.4.5/Manual/index.html">CGAL-5.4.5 documentation</a>

<p>CGAL 5.4.5 is a bug-fix release for <a href="../../../../2022/01/31/cgal54">CGAL 5.4</a>.
The list of fixed bugs since <a href="../../../../2023/02/28/cgal5.4.4/">CGAL 5.4.4</a>
can be accessed <a href="https://github.com/CGAL/cgal/issues?q=label%3AMerged_in_5.4.5+-label%3AMerged_in_5.4.4">on Github</a>.</p>
18 changes: 18 additions & 0 deletions _posts/2023-07-28-cgal553.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: post
title: "CGAL 5.5.3 released"
description: "CGAL 5.5.3"
category:
tags: ["release"]
---
{% include JB/setup %}

<i class="glyphicon glyphicon-download"></i>
<a href="https://github.com/CGAL/cgal/releases/tag/v5.5.3">Download CGAL-5.5.3</a>

<i class="glyphicon glyphicon-book"></i>
<a href="https://doc.cgal.org/5.5.3/Manual/index.html">CGAL-5.5.3 documentation</a>

<p>CGAL 5.5.3 is a bug-fix release for <a href="../../../../2022/07/15/cgal55">CGAL 5.5</a>.
The list of fixed bugs since <a href="../../../../2023/02/28/cgal552">CGAL 5.5.2</a>
can be accessed <a href="https://github.com/CGAL/cgal/issues?q=sort%3Aupdated-desc+label%3AMerged_in_5.5.3+-label%3AMerged_in_5.5.2">on Github</a>.</p>
Loading

0 comments on commit 676bf62

Please sign in to comment.