Skip to content

Commit

Permalink
Merge branch 'hotfix/383'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMorganNZ committed Sep 5, 2016
2 parents 8411c26 + 2dd0225 commit b197199
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
3 changes: 2 additions & 1 deletion generateguide.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,8 @@ def create_landing_page(outputted_languages, html_generator, primary_guide):
'languages': outputted_languages,
'path_to_guide_root': outputted_languages[0][0] + '/',
'analytics_code': primary_guide.generator_settings['General']['Google Analytics Code'],
'version_number': primary_guide.generator_settings['General']['Version Number']
'version_number': primary_guide.generator_settings['General']['Version Number'],
'contributors_path': outputted_languages[0][0] + '/further-information/contributors.html'
}
output_folder = primary_guide.generator_settings['Output']['Base Folder']
write_html_file(html_generator, output_folder, 'index', 'website_page_landing', context)
Expand Down
2 changes: 1 addition & 1 deletion generator/generator-settings.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[General]
Version Number: v2.7.0
Version Number: v2.7.1
Google Analytics Code: UA-49289263-2
Domain: http://www.csfieldguide.org.nz/

Expand Down
2 changes: 1 addition & 1 deletion generator/html-templates.conf
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ MathJax.Hub.Config({
</div>
<div class='footer-second'>
<div class='container'>
<p>{{ translations.footer_contributor_text }}</p>
<p>{{ translations.footer_contributor_text | format(contributors_path)}}</p>
</div>
</div>
<div class='footer-third'>
Expand Down
15 changes: 13 additions & 2 deletions text/en/further-information/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ We have listed major changes for each release below.

## Current Release

### v2.7.1

**Release date:** 5th September 2016

**Downloads:** [Source available on GitHub](https://github.com/uccser/cs-field-guide/releases/tag/v2.7.1)

**Notable changes:**
- Fixed broken link in footer to contributors page.

A full list of changes in this version is [available on GitHub](https://github.com/uccser/cs-field-guide/compare/v2.7.0...v2.7.1).

## Older Releases

### v2.7.0

**Release date:** 23rd August 2016
Expand All @@ -36,8 +49,6 @@ We have listed major changes for each release below.

A full list of changes in this version is [available on GitHub](https://github.com/uccser/cs-field-guide/compare/v2.6.1...v2.7.0).

## Older Releases

### v2.6.1

**Release date:** 14th July 2016
Expand Down
2 changes: 1 addition & 1 deletion text/en/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ text_values:
footer_useful_links_sitemap: "Sitemap"
footer_useful_links_twitter: "Twitter"
footer_useful_links_github: "GitHub"
footer_contributor_text: "Produced by the <a href='http://www.cosc.canterbury.ac.nz/research/RG/CSE/'>CS Education Research Group</a>, <a href='http://www.canterbury.ac.nz/'>University of Canterbury</a>, New Zealand, and <a href='{{ contributors_path }}'>by many others</a>."
footer_contributor_text: "Produced by the <a href='http://www.cosc.canterbury.ac.nz/research/RG/CSE/'>CS Education Research Group</a>, <a href='http://www.canterbury.ac.nz/'>University of Canterbury</a>, New Zealand, and <a href='%s'>by many others</a>."
footer_license_text: "The Computer Science Field Guide uses a <a rel='license' href='https://creativecommons.org/licenses/by-nc-sa/4.0/'>Creative Commons (CC BY-NC-SA 4.0) license</a>."
homepage_chapters: "Chapters"
homepage_curriculum_guides: "Curriculum Guides"
Expand Down

0 comments on commit b197199

Please sign in to comment.