From 3f8bbd6f3ce50d4d22c5c23b8298e5d1009250b9 Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Thu, 29 May 2014 15:40:01 +0200 Subject: [PATCH 1/4] remvoe pagination and css improvements from the contribution page --- docs/contribute.rst | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docs/contribute.rst b/docs/contribute.rst index b7c22c3..8a3886d 100644 --- a/docs/contribute.rst +++ b/docs/contribute.rst @@ -61,12 +61,3 @@ definitely need help: - close threads and remove threads completely - edit comments - -* `Pagination `_ – while Isso is - generally a lot faster than Disqus, after approx. 50 comments you will - notice roughly 1 second rendering time. It would be nice if the client - fetches only N comments and continues when the user scrolls down (or click - on a button to fetch more). - -* CSS improvements. For some websites, the Isso integration just looks ugly. - If you can improve it, please do it :) From ad3224370880b83d12506caef0ae319873a79edb Mon Sep 17 00:00:00 2001 From: Schoewilliam Date: Thu, 29 May 2014 06:48:31 -0700 Subject: [PATCH 2/4] Fix issue #97 : Alignment problem with the submission forms fields --- isso/css/isso.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/isso/css/isso.css b/isso/css/isso.css index 46edbcd..380fd90 100644 --- a/isso/css/isso.css +++ b/isso/css/isso.css @@ -172,7 +172,7 @@ .isso-postbox > .form-wrapper > .auth-section .input-wrapper { display: inline-block; position: relative; - max-width: 30%; + max-width: 25%; margin: 0; } .isso-postbox > .form-wrapper > .auth-section .input-wrapper input { @@ -185,9 +185,11 @@ } .isso-postbox > .form-wrapper > .auth-section .input-wrapper:first-child input { border-radius: 3px 0 0 3px; + border-right: 0; } .isso-postbox > .form-wrapper > .auth-section .input-wrapper:nth-last-child(2) input { border-radius: 0 3px 3px 0; + border-left: 0; } .isso-postbox > .form-wrapper > .auth-section .post-action { display: inline-block; @@ -225,4 +227,4 @@ float: none; text-align: right; } -} \ No newline at end of file +} From d5a30bc09f2d03fbb576f11d39cc8d4bb0c5c0c0 Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Thu, 29 May 2014 15:52:38 +0200 Subject: [PATCH 3/4] Preparing release 0.9.1 --- CHANGES.rst | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a28aefb..c313a73 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ Changelog for Isso ================== -0.9 (2014-05-29) ----------------- +0.9.1 (2014-05-29) +------------------ - comment pagination by Srijan Choudhary, #15 diff --git a/setup.py b/setup.py index 14c6d63..96a474e 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ else: setup( name='isso', - version='0.9', + version='0.9.1', author='Martin Zimmermann', author_email='info@posativ.org', packages=find_packages(), From 41dd7d8173ba21e3a17bfe4727c3eda9a70ecf13 Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Thu, 29 May 2014 15:52:47 +0200 Subject: [PATCH 4/4] Back to development: 0.9.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 96a474e..eae335c 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ else: setup( name='isso', - version='0.9.1', + version='0.9.2.dev0', author='Martin Zimmermann', author_email='info@posativ.org', packages=find_packages(),