Skip to content

Commit 8ff52f0

Browse files
committedMay 9, 2015
v7.4.1
1 parent a8a2236 commit 8ff52f0

10 files changed

+94
-12
lines changed
 

Diff for: ‎listings/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
# This is a dict. The keys are languages, and values are tuples.
104104
#
105105
# For regular links:
106-
# ('http://getnikola.com/', 'Nikola Homepage')
106+
# ('https://getnikola.com/', 'Nikola Homepage')
107107
#
108108
# For submenus:
109109
# (
@@ -442,7 +442,7 @@
442442
# Nikola’s templates. All other filters must be enabled through FILTERS.
443443
#
444444
# Many filters are shipped with Nikola. A list is available in the manual:
445-
# <http://getnikola.com/handbook.html#post-processing-filters>
445+
# <https://getnikola.com/handbook.html#post-processing-filters>
446446
#
447447
# from nikola import filters
448448
# FILTERS = {
@@ -646,7 +646,7 @@
646646

647647
# A small copyright notice for the page footer (in HTML).
648648
# (translatable)
649-
CONTENT_FOOTER = 'Contents &copy; {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a> {license}'
649+
CONTENT_FOOTER = 'Contents &copy; {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="https://getnikola.com" rel="nofollow">Nikola</a> {license}'
650650

651651
# Things that will be passed to CONTENT_FOOTER.format(). This is done
652652
# for translatability, as dicts are not formattable. Nikola will

Diff for: ‎stories/CHANGES.txt

+82
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,85 @@
1+
New in v7.4.1
2+
=============
3+
4+
Features
5+
--------
6+
7+
* Better handling of missing/unconfigured compilers (Issue #1704)
8+
* New -r option for the link checker to check remote links (Issue #1684)
9+
* Use static navbars in bootstrap3 and bootstrap themes
10+
11+
Bugfixes
12+
--------
13+
14+
* Handle strange URLs, like ed2k:// (Issue #1695)
15+
* Fix very old metadata format support (Issue #1689)
16+
17+
New in v7.4.0
18+
=============
19+
20+
Features
21+
--------
22+
23+
* Substitutions for RSS_LINKS_APPEND_QUERY for identifying
24+
the source feed (feedRelUri) and the kind of feed (feedFormat).
25+
* New option GENERATE_ATOM, off by default
26+
* Current and archive Atom feeds for indexes; category, tag, and archive indexes (RFC-4287 and RFC-5005)
27+
* Atom feed auto-discovery in HTML indexes and category/tag indexes
28+
* .atom included in the sitemap index
29+
* New post metadata "updated", inherits "date" if unset
30+
* Allow IPv6 in `nikola auto` (Issue #1682)
31+
* Allow IPv6 in `nikola serve` (Issue #1682)
32+
* Set default new site URL to https://example.com/
33+
* Plugins can manipulate task dependencies (Issue #1679)
34+
* LINK_CHECK_WHITELIST now works with output relative and full fs paths
35+
* Four new filters: html_tidy_nowrap, html_tidy_wrap, html_tidy_wrap_attr,
36+
and html_tidy_mini for prettification and minification. Requires tidy5.
37+
* Multilingual sitemaps (Issue #1610)
38+
* Compatibility with doit v0.28.0 (Issue #1655)
39+
* AddThis is no longer added by default to users’ sites
40+
* New translations (az, fil, tl, uk, zh_TW)
41+
* Add reStructuredText transform support (Issue #1647)
42+
* Produce Unicode output in ``nikola init`` (via Issue #1644)
43+
* Add ``HIDDEN_TAGS`` and ``HIDDEN_CATEGORIES`` settings to hide some
44+
tags and categories (eg. ``mathjax``) from view (Issue #1640)
45+
* Instruct browsers to prefetch newest post when visiting the front page
46+
* Add a ``sort`` parameter to the post-list directive to sort posts in
47+
the list using natsort. (Issue #1635)
48+
49+
Bugfixes
50+
--------
51+
52+
* Make ``.islink`` work properly (via Issue #1536)
53+
* RSS_LINKS_APPEND_QUERY not working in RSS feeds for tags
54+
* `nikola check -l` didn’t scan posts
55+
* Don’t use sets for ``FAVICONS`` (Issue #1674)
56+
* Posts/Pages that use post-list will never be up to date (Issue #1671)
57+
* Support using post.text() in post_list_directive.tmpl (Issue #1671)
58+
* Avoid recursive dep when using post-list in a post (Issue #1671)
59+
* Encode IDNs to Punycode in ``nikola init`` and in links;
60+
show an error if the site URL is not Punycode (Issue #1644)
61+
* Make ``images`` the default output directory for IMAGE_FOLDERS
62+
(Issue #1663)
63+
* Don't default to any swatch in bootswatch_theme (Issue #1656)
64+
* Fix ``nikola check -l`` for absolute and full-path URL styles
65+
(Issue #1650)
66+
* Really add missing trailing slashes in ``BASE_URL`` (Issue #1651)
67+
* Check if files exists before adding them as post-list dependencies
68+
(Issue #1646)
69+
* Fix build command in ``nikola auto`` (Issue #1641)
70+
* Update Bootstrap to v3.3.4
71+
* Update jquery-colorbox
72+
* Fix symlinks for moment.js in Windows
73+
* Fix code.css bundling in Windows
74+
* Listings in posts now work in Windows (Issue #1631)
75+
* Add 20 seconds to reading time per embedded media
76+
77+
New in v7.3.1.1
78+
===============
79+
80+
* Emergency release to pin doit version to 0.27.0
81+
* No code changes since v7.3.1 (not even ``nikola --version``)
82+
183
New in v7.3.1
284
=============
385

Diff for: ‎stories/conf.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
.. title: Nikola v7.3.1 configuration file
1+
.. title: Nikola v7.4.1 configuration file
22
.. slug: conf
33
.. date: 2014-11-08 18:51:30 UTC
44
.. description: The Nikola configuration file.
55
.. type: text
66

7-
The default config file for Nikola v7.3.1 is reproduced below.
7+
The default config file for Nikola v7.4.1 is reproduced below.
88

99
.. listing:: conf.py python

Diff for: ‎stories/extending.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Extending Nikola
99
================
1010

11-
:Version: 7.4.0
11+
:Version: 7.4.1
1212
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1313

1414
.. class:: alert alert-info pull-right

Diff for: ‎stories/getting-help.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. date: 1970-01-01 15:00:00
44
.. description: Get help using Nikola, or contact us.
55

6-
:Version: 7.4.0
6+
:Version: 7.4.1
77

88
.. class:: alert alert-info pull-right
99

Diff for: ‎stories/manual.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The Nikola Handbook
99
===================
1010

11-
:Version: 7.4.0
11+
:Version: 7.4.1
1212

1313
.. class:: alert alert-info pull-right
1414

Diff for: ‎stories/social_buttons.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Using Alternative Social Buttons with Nikola
99
============================================
1010

11-
:Version: 7.4.0
11+
:Version: 7.4.1
1212

1313
.. class:: alert alert-info pull-right
1414

Diff for: ‎stories/theming.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Theming Nikola
99
==============
1010

11-
:Version: 7.4.0
11+
:Version: 7.4.1
1212
:Author: Roberto Alsina <ralsina@netmanagers.com.ar>
1313

1414
.. class:: alert alert-info pull-right

Diff for: ‎stories/upgrading-to-v6.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Upgrading to v6
99
===============
1010

11-
:Version: 7.4.0
11+
:Version: 7.4.1
1212

1313
.. class:: lead
1414

Diff for: ‎stories/welcome.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can read more about this in the `Nikola Handbook </handbook.html#why-static>
2020

2121
.. raw:: html
2222

23-
<a class="btn btn-danger btn-lg" href="https://github.com/getnikola/nikola/releases/latest"><i class="glyphicon glyphicon-download-alt"></i> Get Nikola (v7.4.0)</a>
23+
<a class="btn btn-danger btn-lg" href="https://github.com/getnikola/nikola/releases/latest"><i class="glyphicon glyphicon-download-alt"></i> Get Nikola (v7.4.1)</a>
2424

2525
.. class:: col-md-4
2626

0 commit comments

Comments
 (0)
Please sign in to comment.