diff --git a/CHANGES.txt b/CHANGES.txt index 2f3e3a88df..4149be5869 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -New in master +New in v8.3.0 ============= Features diff --git a/docs/extending.rst b/docs/extending.rst index 210b7409cb..abd76e4472 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -6,7 +6,7 @@ .. description: .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 :Author: Roberto Alsina .. class:: alert alert-primary float-md-right diff --git a/docs/man/nikola.1.gz b/docs/man/nikola.1.gz index 2d95e8aba7..f24dc1e1fd 100644 Binary files a/docs/man/nikola.1.gz and b/docs/man/nikola.1.gz differ diff --git a/docs/man/nikola.rst b/docs/man/nikola.rst index 46571ddf54..53c3b9f37d 100644 --- a/docs/man/nikola.rst +++ b/docs/man/nikola.rst @@ -6,7 +6,7 @@ Nikola A Static Site and Blog Generator -------------------------------- -:Version: Nikola 8.2.4 +:Version: Nikola 8.3.0 :Manual section: 1 :Manual group: User Commands diff --git a/docs/manual.rst b/docs/manual.rst index 0ce6f19644..0ddc8776f3 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -7,7 +7,7 @@ .. has_math: true .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 .. class:: alert alert-primary float-md-right diff --git a/docs/social_buttons.rst b/docs/social_buttons.rst index 344dff5bb6..31c9c03bbf 100644 --- a/docs/social_buttons.rst +++ b/docs/social_buttons.rst @@ -6,7 +6,7 @@ .. description: .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 .. class:: alert alert-primary float-md-right diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index 1363afc329..44890f5f97 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '8.2.4' +version = '8.3.0' # The full version, including alpha/beta/rc tags. -release = '8.2.4' +release = '8.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/support.rst b/docs/support.rst index 2c9b1f6f94..cc803f90b8 100644 --- a/docs/support.rst +++ b/docs/support.rst @@ -4,7 +4,7 @@ .. description: Get help using Nikola, or contact us. .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 .. class:: alert alert-primary float-md-right diff --git a/docs/template-variables.rst b/docs/template-variables.rst index 511d677a9d..2d10f2717e 100644 --- a/docs/template-variables.rst +++ b/docs/template-variables.rst @@ -3,7 +3,7 @@ .. date: 2017-04-13 12:00:00 .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 :Author: Chris Warrick Variables available in templates are listed below. diff --git a/docs/theming.rst b/docs/theming.rst index c7fe7397ee..5beecd1f05 100644 --- a/docs/theming.rst +++ b/docs/theming.rst @@ -6,7 +6,7 @@ .. description: .. author: The Nikola Team -:Version: 8.2.4 +:Version: 8.3.0 :Author: Roberto Alsina .. class:: alert alert-primary float-md-right diff --git a/nikola/__init__.py b/nikola/__init__.py index 8d4b3b25ca..edf1c93bc2 100644 --- a/nikola/__init__.py +++ b/nikola/__init__.py @@ -29,7 +29,7 @@ import os import sys -__version__ = '8.2.4' +__version__ = '8.3.0' DEBUG = bool(os.getenv('NIKOLA_DEBUG')) SHOW_TRACEBACKS = bool(os.getenv('NIKOLA_SHOW_TRACEBACKS')) diff --git a/nikola/data/themes/base/messages/messages_bn.py b/nikola/data/themes/base/messages/messages_bn.py new file mode 100644 index 0000000000..316e4eca6d --- /dev/null +++ b/nikola/data/themes/base/messages/messages_bn.py @@ -0,0 +1,49 @@ +# -*- encoding:utf-8 -*- +"""Autogenerated file, do not edit. Submit translations on Transifex.""" + +MESSAGES = { + "%d min remaining to read": "", + "(active)": "", + "Also available in:": "", + "Archive": "", + "Atom feed": "", + "Authors": "", + "Categories": "", + "Comments": "", + "LANGUAGE": "", + "Languages:": "", + "More posts about %s": "", + "Newer posts": "", + "Next post": "", + "Next": "", + "No posts found.": "", + "Nothing found.": "", + "Older posts": "", + "Original site": "", + "Posted:": "", + "Posts about %s": "", + "Posts by %s": "", + "Posts for year %s": "", + "Posts for {month_day_year}": "", + "Posts for {month_year}": "", + "Previous post": "", + "Previous": "", + "Publication date": "", + "RSS feed": "", + "Read in English": "", + "Read more": "", + "Skip to main content": "", + "Source": "", + "Subcategories:": "", + "Tags and Categories": "", + "Tags": "", + "Toggle navigation": "", + "Uncategorized": "", + "Up": "", + "Updates": "", + "Write your page here.": "", + "Write your post here.": "", + "old posts, page %d": "", + "page %d": "", + "updated": "", +} diff --git a/scripts/release b/scripts/release index 38258cbd99..93f493f5d9 100755 --- a/scripts/release +++ b/scripts/release @@ -136,8 +136,6 @@ read bailout cleanup ./setup.py sdist bdist_wheel || exit $? -gpg --detach-sign -a dist/Nikola-$version.tar.gz.asc dist/Nikola-$version.tar.gz -gpg --detach-sign -a dist/Nikola-$version*.whl.asc dist/Nikola-$version*.whl twine upload dist/Nikola-$version.tar.gz dist/Nikola-$version*.whl || exit $? cleanup diff --git a/setup.py b/setup.py index 5db7f89474..adfbc9fa48 100755 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ def run(self): setup(name='Nikola', - version='8.2.4', + version='8.3.0', description='A modular, fast, simple, static website and blog generator', long_description=long_description, author='Roberto Alsina and others', diff --git a/snapcraft.yaml b/snapcraft.yaml index bd7ce8b5f8..21db9ede1c 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: nikola -version: 8.2.4 +version: 8.3.0 summary: A static website generator description: A static website generator confinement: strict diff --git a/translations/nikola.messages/bn.po b/translations/nikola.messages/bn.po new file mode 100644 index 0000000000..9b05161ef0 --- /dev/null +++ b/translations/nikola.messages/bn.po @@ -0,0 +1,163 @@ +# Messages in Nikola +# Copyright (C) 2012-2016 +# This file is distributed under the same license as the Nikola package. +# +# Translators: +# Translators: +# Translators: +# Translators: +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Nikola\n" +"Report-Msgid-Bugs-To: ralsina@netmanagers.com.ar\n" +"POT-Creation-Date: 2013-03-15 12:24-0300\n" +"PO-Revision-Date: 2013-03-15 15:29+0000\n" +"Last-Translator: Chris Warrick \n" +"Language-Team: Bengali (http://app.transifex.com/ralsina/nikola/language/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "More posts about %s" +msgstr "" + +#. Here your translation should NOT say English but the name of your language +#. instead +msgid "LANGUAGE" +msgstr "" + +msgid "Tags" +msgstr "" + +msgid "Categories" +msgstr "" + +msgid "Tags and Categories" +msgstr "" + +msgid "Comments" +msgstr "" + +msgid "Read more" +msgstr "" + +msgid "Posts about %s" +msgstr "" + +msgid "Next post" +msgstr "" + +msgid "old posts, page %d" +msgstr "" + +msgid "page %d" +msgstr "" + +msgid "Source" +msgstr "" + +#. Here your translation should NOT say English but the name of your language +#. instead +msgid "Read in English" +msgstr "" + +msgid "Posts for year %s" +msgstr "" + +msgid "Newer posts" +msgstr "" + +msgid "Previous post" +msgstr "" + +msgid "Also available in:" +msgstr "" + +msgid "Languages:" +msgstr "" + +msgid "Original site" +msgstr "" + +msgid "Older posts" +msgstr "" + +msgid "Archive" +msgstr "" + +msgid "Publication date" +msgstr "" + +msgid "Posted:" +msgstr "" + +msgid "Posts for {month_year}" +msgstr "" + +msgid "Posts for {month_day_year}" +msgstr "" + +msgid "Nothing found." +msgstr "" + +msgid "No posts found." +msgstr "" + +msgid "RSS feed" +msgstr "" + +msgid "%d min remaining to read" +msgstr "" + +msgid "Skip to main content" +msgstr "" + +msgid "Subcategories:" +msgstr "" + +#. Used for active navigation links, for screen readers only +msgid "(active)" +msgstr "" + +#. Default content for a new post +msgid "Write your post here." +msgstr "" + +#. Default content for a new page +msgid "Write your page here." +msgstr "" + +msgid "Uncategorized" +msgstr "" + +#. Used for feeds of any format +msgid "Updates" +msgstr "" + +msgid "Authors" +msgstr "" + +msgid "Posts by %s" +msgstr "" + +msgid "Toggle navigation" +msgstr "" + +msgid "Previous" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Next" +msgstr "" + +msgid "Atom feed" +msgstr "" + +#. {date} (updated {updated_date}) +msgid "updated" +msgstr ""