Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve RC Page #155

Merged
merged 6 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Release Notes
## New in 2020.9
- Improved text in index-page

## New in 2020.8
- Move all workflows to separate repository
- Update to Gradle Wrapper 8.8
Expand Down
4 changes: 0 additions & 4 deletions docs/curriculum-template.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ ifeval::["{language}" == "EN"]
:toc: left
endif::[]

// document-version fallback, should usually be overwritten by the build process,
// e.g. build.gradle
:document-version: 2020.1

// define terms for toc, learning-goals
include::config/i18n-definitions.adoc[tags={language}]

Expand Down
2 changes: 1 addition & 1 deletion docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The international Software Architecture Qualification Board (link:https://isaqb.

The terminology used in the iSAQB curricula can be found as a (freely available) ebook, published on https://leanpub.com/isaqbglossary/read[Leanpub].

== Development versions
== Latest Release {release-version}

The Advanced Level Template Curriculum is currently maintained and published in both English (EN) and German (DE).
Maintainers and volunteer reviewers collaborate on GitHub to improve the curriculum.
Expand Down
17 changes: 9 additions & 8 deletions docs/index_rc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@ include::config/setup.adoc[]
= image:isaqb-logo.jpg[width=150]Certified Professional for Software Architecture^(R)^ (CPSA)
- Curriculum {curriculum-name} [{curriculum-short}] – Release Candidate -

:repo-name: advanced-template

The international Software Architecture Qualification Board (link:https://isaqb.org[iSAQB]) defines curricula on several levels for software architects.

The **Release Candidates** of the **{curriculum-name} [{curriculum-short}]** advanced level curriculum are currently maintained and published in both English (EN) and German (DE). Maintainers of this curriculum and voluntary reviewers collaborate on https://github.com/isaqb-org[GitHub] to improve the curriculum.

== Current Release Candidate v2023.1
== Current Release Candidate {release-version}

image:https://img.shields.io/github/last-commit/isaqb-org/advanced-template/main.svg["Last commit"]
image:https://img.shields.io/github/contributors/isaqb-org/advanced-template.svg["Contributors",link="https://github.com/isaqb-org/advanced-template/graphs/contributors"]
image:https://img.shields.io/github/issues/isaqb-org/advanced-template.svg["Issues",link="https://github.com/isaqb-org/advanced-template/issues"]
image:https://img.shields.io/github/issues-closed/isaqb-org/advanced-template.svg["Issues closed",link="https://github.com/isaqb-org/advanced-template/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+"]
image:https://img.shields.io/github/commits-since/isaqb-org/advanced-template/latest.svg[]
image:https://img.shields.io/github/last-commit/isaqb-org/{repo-name}/main.svg["Last commit"]
image:https://img.shields.io/github/contributors/isaqb-org/{repo-name}.svg["Contributors",link="https://github.com/isaqb-org/{repo-name}/graphs/contributors"]
image:https://img.shields.io/github/issues/isaqb-org/{repo-name}.svg["Issues",link="https://github.com/isaqb-org/{repo-name}/issues"]
image:https://img.shields.io/github/issues-closed/isaqb-org/{repo-name}.svg["Issues closed",link="https://github.com/isaqb-org/{repo-name}/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+"]
image:https://img.shields.io/github/commits-since/isaqb-org/{repo-name}/latest.svg[]
|===
| Version | HTML | PDF

Expand All @@ -28,5 +30,4 @@ image:https://img.shields.io/github/commits-since/isaqb-org/advanced-template/la
|===

== Changes compared to XXX
- link:https://github.com/isaqb-org/advanced-template/blob/main/CHANGELOG.md[CHANGELOG.md on GitHub]
// - link: [HTML diff to the latest curriculum] T.B.A.
- link:https://github.com/isaqb-org/{repo-name}/blob/main/CHANGELOG.md[CHANGELOG.md on GitHub]
1 change: 1 addition & 0 deletions src/main/java/org/isaqb/asciidoc/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ private static Attributes toAttributes(
final Map<String, Object> attributes = new HashMap<>() {{
put("icons", "font");
put("version-label", "");
put("release-version", projectVersion);
put("revnumber", fileVersion);
put("revdate", versionDate);
put("document-version", documentVersion);
Expand Down