From 67a0438656620869dc0359f136cb363ccde8d7bf Mon Sep 17 00:00:00 2001 From: Emre Date: Thu, 12 Sep 2019 01:10:15 -0700 Subject: [PATCH 01/43] 2.0 --- CHANGELOG.md | 7 ++++++- VERSION | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f06ae2..e3da873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,4 +27,9 @@ Added share button share indicator always shown ## 1.35 -show inactive instance warning with grou.ps feeds \ No newline at end of file +show inactive instance warning with grou.ps feeds + +## 2.0 +list-private-contents function added +login/register with custom-fields +login/register with moderation/verification queue \ No newline at end of file diff --git a/VERSION b/VERSION index 71437d0..415b19f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.37 \ No newline at end of file +2.0 \ No newline at end of file From 638ed43b643c2b0529763f63c5e3aa4ea9c75d5c Mon Sep 17 00:00:00 2001 From: Emre Date: Thu, 12 Sep 2019 02:03:54 -0700 Subject: [PATCH 02/43] added listPrivateContents --- prepare.js | 1 + 1 file changed, 1 insertion(+) diff --git a/prepare.js b/prepare.js index 3aa66b6..087d7aa 100644 --- a/prepare.js +++ b/prepare.js @@ -190,6 +190,7 @@ const import_scripts={ "removePrivateContent", "editPrivateContent", "addPrivateContent", + "listPrivateContents", ], stripe: [ "createSubscription", From 5896a5f977ae209c35f6bb6b02744a23afa0bc63 Mon Sep 17 00:00:00 2001 From: Emre Date: Thu, 12 Sep 2019 02:06:31 -0700 Subject: [PATCH 03/43] 2.1 --- VERSION | 2 +- lib/tagsImports.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 415b19f..42f7d23 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0 \ No newline at end of file +2.1 \ No newline at end of file diff --git a/lib/tagsImports.js b/lib/tagsImports.js index 785dcbc..1b86aef 100644 --- a/lib/tagsImports.js +++ b/lib/tagsImports.js @@ -167,6 +167,7 @@ import getPrivateContent from './scripts/getPrivateContent.js'; import removePrivateContent from './scripts/removePrivateContent.js'; import editPrivateContent from './scripts/editPrivateContent.js'; import addPrivateContent from './scripts/addPrivateContent.js'; +import listPrivateContents from './scripts/listPrivateContents.js'; // stripe import createSubscription from './scripts/createSubscription.js'; @@ -197,7 +198,7 @@ export default { // star star, getStar, getStars, getUserStars, removeStar, // private - getPrivateContent, removePrivateContent, editPrivateContent, addPrivateContent, + getPrivateContent, removePrivateContent, editPrivateContent, addPrivateContent, listPrivateContents, // stripe createSubscription, checkSubscription, tokenLogin, } \ No newline at end of file From 3d770ae43bbb497b94620f1da039c0416cbe2800 Mon Sep 17 00:00:00 2001 From: Chaitanya Raju Date: Sun, 29 Sep 2019 16:04:21 +0530 Subject: [PATCH 04/43] Feed styles fix for Iframe --- lib/styles/components/feed-item.less | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/styles/components/feed-item.less b/lib/styles/components/feed-item.less index dafe868..a05c487 100644 --- a/lib/styles/components/feed-item.less +++ b/lib/styles/components/feed-item.less @@ -43,17 +43,10 @@ .@{prefix}-embed-iframe { position: relative; - padding-bottom: 56.25%; padding-top: 2em; - height: 0; - overflow: hidden; - iframe { width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; + min-height: 360px; } } From 1de182feb99b89e231ad159448a3289fbebded00 Mon Sep 17 00:00:00 2001 From: Emre Date: Sun, 29 Sep 2019 18:20:02 -0700 Subject: [PATCH 05/43] 2.4 --- .gitignore | 2 +- VERSION | 2 +- bin/release.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 314b49d..faca506 100755 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,6 @@ npm-debug.log* package-lock.json vendor .env - +build dist/graph.js dist/graph.js.gz \ No newline at end of file diff --git a/VERSION b/VERSION index 42f7d23..7208c21 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1 \ No newline at end of file +2.4 \ No newline at end of file diff --git a/bin/release.php b/bin/release.php index 7717555..a8607b9 100644 --- a/bin/release.php +++ b/bin/release.php @@ -21,10 +21,10 @@ file_put_contents($me."/VERSION", $version); -$groupsv2_op = "cd {$me} && NEWVERSION={$version} && modules=groupsv2 npm run build && cp {$dist_dir}/graph* {$groups_frontend_path}/site/vendor/graphjs/ && cd {$groups_frontend_path} && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tag"; +$groupsv2_op = "cd {$groups_frontend_path} && git pull && cd {$me} && NEWVERSION={$version} && modules=groupsv2 npm run build && cp {$dist_dir}/graph* {$groups_frontend_path}/site/vendor/graphjs/ && cd {$groups_frontend_path} && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tag"; exec($groupsv2_op); -$graphjs_website_op = "cd {$me} && NEWVERSION={$version} && modules=all npm run build && mkdir {$graphjs_website_path}/app/dist/\$NEWVERSION && cp {$dist_dir}/graph* {$graphjs_website_path}/app/dist/\$NEWVERSION && cd {$graphjs_website_path} && git add app/dist/\$NEWVERSION && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tags"; +$graphjs_website_op = "cd {$graphjs_website_path} && git pull && cd {$me} && NEWVERSION={$version} && modules=all npm run build && mkdir {$graphjs_website_path}/app/dist/\$NEWVERSION && cp {$dist_dir}/graph* {$graphjs_website_path}/app/dist/\$NEWVERSION && cd {$graphjs_website_path} && git add app/dist/\$NEWVERSION && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tags"; exec($graphjs_website_op); exec("cd {$me} && git commit -am {$version} && git tag {$version} && git push && git push --tags"); From 26ffeef0cd7dffd9932856d6fbd045e150bae51e Mon Sep 17 00:00:00 2001 From: Chaitanya Raju Date: Sat, 23 Nov 2019 11:20:00 +0530 Subject: [PATCH 06/43] Firefox fix --- lib/tags/feed-item.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tags/feed-item.tag b/lib/tags/feed-item.tag index f2dfb6a..45ace57 100644 --- a/lib/tags/feed-item.tag +++ b/lib/tags/feed-item.tag @@ -170,7 +170,7 @@ import {downsizeImage, getThumbnail} from '../scripts/client.js'; this.downsizeImage = downsizeImage; this.getThumbnail = getThumbnail; - this.embedRegex = new RegExp('(?<=\\[embed\\]\\s*).*?(?=\\s*\\[\\/embed\\])','gs'); + this.embedRegex = new RegExp('(<=\\[embed\\]\\s*).*?(?=\\s*\\[\\/embed\\])','gi'); let self = this; this.linkTemplate= this.parent.itemLinkTemplate; From 9ae3e030cb86604913b4b2ad6d1098a97d5870dd Mon Sep 17 00:00:00 2001 From: Emre Date: Fri, 22 Nov 2019 22:56:26 -0800 Subject: [PATCH 07/43] 2.5 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 7208c21..68151b2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4 \ No newline at end of file +2.5 \ No newline at end of file From 1992f9a8e16ec6c918e6156b73cec0a641533f9a Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Tue, 18 Feb 2020 11:03:19 +0300 Subject: [PATCH 08/43] 2.6 --- CHANGELOG.md | 5 ++++- VERSION | 2 +- lib/tags/auth-login.tag | 3 ++- lib/tags/auth-register.tag | 3 ++- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3da873..44d7731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,4 +32,7 @@ show inactive instance warning with grou.ps feeds ## 2.0 list-private-contents function added login/register with custom-fields -login/register with moderation/verification queue \ No newline at end of file +login/register with moderation/verification queue + +## 2.6 +auto-focus="off" for auth-login and auth-register tags \ No newline at end of file diff --git a/VERSION b/VERSION index 68151b2..c20c8ac 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5 \ No newline at end of file +2.6 \ No newline at end of file diff --git a/lib/tags/auth-login.tag b/lib/tags/auth-login.tag index 0d700e6..ce14b6b 100644 --- a/lib/tags/auth-login.tag +++ b/lib/tags/auth-login.tag @@ -149,6 +149,7 @@ } } - this.on('mount', () => this.refs.username.focus()); + if(!opts.autoFocus||opts.autoFocus!="off") + this.on('mount', () => this.refs.username.focus()); \ No newline at end of file diff --git a/lib/tags/auth-register.tag b/lib/tags/auth-register.tag index 2edc15c..b683a56 100644 --- a/lib/tags/auth-register.tag +++ b/lib/tags/auth-register.tag @@ -320,6 +320,7 @@ } } - this.on('mount', () => this.refs.username.focus()); + if(!opts.autoFocus||opts.autoFocus!="off") + this.on('mount', () => this.refs.username.focus()); From 9ffca93d07e9167e03d906677a3859db4dc51417 Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Tue, 18 Feb 2020 11:05:25 +0300 Subject: [PATCH 09/43] script update --- bin/release.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bin/release.php b/bin/release.php index a8607b9..b614d11 100644 --- a/bin/release.php +++ b/bin/release.php @@ -20,13 +20,20 @@ echo "Starting\n"; file_put_contents($me."/VERSION", $version); +echo "Version file written\n"; +echo "Starting Groups Frontend Ops\n"; $groupsv2_op = "cd {$groups_frontend_path} && git pull && cd {$me} && NEWVERSION={$version} && modules=groupsv2 npm run build && cp {$dist_dir}/graph* {$groups_frontend_path}/site/vendor/graphjs/ && cd {$groups_frontend_path} && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tag"; exec($groupsv2_op); +echo "Ended Groups Frontend Ops\n"; +echo "Starting GraphJS Website Ops\n"; $graphjs_website_op = "cd {$graphjs_website_path} && git pull && cd {$me} && NEWVERSION={$version} && modules=all npm run build && mkdir {$graphjs_website_path}/app/dist/\$NEWVERSION && cp {$dist_dir}/graph* {$graphjs_website_path}/app/dist/\$NEWVERSION && cd {$graphjs_website_path} && git add app/dist/\$NEWVERSION && git commit -am \$NEWVERSION && git tag graphjs-\$NEWVERSION && git push && git push --tags"; exec($graphjs_website_op); +echo "Ended GraphJS Website Ops\n"; +echo "Starting GraphJS Ops\n"; exec("cd {$me} && git commit -am {$version} && git tag {$version} && git push && git push --tags"); +echo "Ended GraphJS Ops\n"; echo "Complete...\n"; \ No newline at end of file From 3f3dc4e5b78aecf14a4084d81490d4b37b65e68d Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Tue, 18 Feb 2020 13:59:39 +0300 Subject: [PATCH 10/43] 2.7 --- VERSION | 2 +- lib/tags/auth-login.tag | 5 +++-- lib/tags/auth-register.tag | 5 +++-- test/index.html | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index c20c8ac..e6b7b62 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6 \ No newline at end of file +2.7 \ No newline at end of file diff --git a/lib/tags/auth-login.tag b/lib/tags/auth-login.tag index ce14b6b..2e025d1 100644 --- a/lib/tags/auth-login.tag +++ b/lib/tags/auth-login.tag @@ -11,7 +11,7 @@
- +
@@ -39,6 +39,7 @@ analytics('auth-login'); this.language = language('auth-login', opts); + this.autoFocus = !(opts.autoFocus&&opts.autoFocus=="off"); this.boxStyle = opts.box == 'disabled' ? 'graphjs-inline graphjs-promo-pad' @@ -149,7 +150,7 @@ } } - if(!opts.autoFocus||opts.autoFocus!="off") + if(this.autoFocus) this.on('mount', () => this.refs.username.focus()); \ No newline at end of file diff --git a/lib/tags/auth-register.tag b/lib/tags/auth-register.tag index b683a56..a690cc7 100644 --- a/lib/tags/auth-register.tag +++ b/lib/tags/auth-register.tag @@ -11,7 +11,7 @@
- + @@ -46,6 +46,7 @@ analytics("auth-register"); this.language = language('auth-register', opts); + this.autoFocus = !(opts.autoFocus&&opts.autoFocus=="off"); this.boxStyle = opts.box == 'disabled' ? 'graphjs-inline graphjs-promo-pad' @@ -320,7 +321,7 @@ } } - if(!opts.autoFocus||opts.autoFocus!="off") + if(this.autoFocus) this.on('mount', () => this.refs.username.focus()); diff --git a/test/index.html b/test/index.html index 976bdd0..188eae7 100644 --- a/test/index.html +++ b/test/index.html @@ -140,7 +140,7 @@

Inline

- +

Messages

- +

Test Elements with Target Option

From 97d91274cea765565736b1edcaaa32d03c0e17e6 Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Tue, 3 Mar 2020 15:58:11 +0300 Subject: [PATCH 13/43] added ref attribute to star-button --- lib/tags/star-button.tag | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/tags/star-button.tag b/lib/tags/star-button.tag index dd1778b..3b99641 100644 --- a/lib/tags/star-button.tag +++ b/lib/tags/star-button.tag @@ -34,10 +34,11 @@ this.boxStyle = opts.box == 'disabled' ? 'graphjs-inline' : 'graphjs-box'; this.count = 0; this.hideZero = (opts.hideZero && opts.hideZero == "on") + this.ref = opts.href || window.location.href; this.on('before-mount', function() { let self = this; - getStar(window.location.href, function(response) { + getStar(self.ref, function(response) { if(response.success) { if(response.starred) { self.active = true; @@ -57,7 +58,7 @@ self.count++; self.update(); star( - window.location.href, + self.ref, function(response) { if(!response.success) { self.active = false; @@ -72,7 +73,7 @@ self.count--; self.update(); removeStar( - window.location.href, + self.ref, function(response) { if(!response.success) { self.active = true; From f75dcb55e8fc734dfd1a43ba76969cb470ab7731 Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Tue, 3 Mar 2020 16:00:41 +0300 Subject: [PATCH 14/43] 2.10 --- CHANGELOG.md | 5 ++++- VERSION | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c1b445..3f9149c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,4 +41,7 @@ auto-focus="off" for auth-login and auth-register tags star-button hide-zero="on" (off by default) ## 2.9 -filter-out attribute for Messages \ No newline at end of file +filter-out attribute for Messages + +## 2.10 +ref attribute for star-button \ No newline at end of file diff --git a/VERSION b/VERSION index 0a35d8c..f246360 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.9 \ No newline at end of file +2.10 \ No newline at end of file From 89022f489d24e2966d7e5e42c3e51e95c813b2e9 Mon Sep 17 00:00:00 2001 From: Emre Sokullu Date: Sun, 8 Mar 2020 15:17:28 +0300 Subject: [PATCH 15/43] 2.11 --- VERSION | 2 +- lib/tags/star-button.tag | 67 +++++++++++++++++++++++----------------- package.json | 8 ++--- test/index-single.html | 5 ++- 4 files changed, 47 insertions(+), 35 deletions(-) diff --git a/VERSION b/VERSION index f246360..372f20b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.10 \ No newline at end of file +2.11 \ No newline at end of file diff --git a/lib/tags/star-button.tag b/lib/tags/star-button.tag index 3b99641..f4d50c1 100644 --- a/lib/tags/star-button.tag +++ b/lib/tags/star-button.tag @@ -26,6 +26,7 @@ import getStar from '../scripts/getStar.js'; import getStars from '../scripts/getStars.js'; import removeStar from '../scripts/removeStar.js'; + import getSession from '../scripts/getSession.js'; analytics("star-button"); @@ -35,6 +36,7 @@ this.count = 0; this.hideZero = (opts.hideZero && opts.hideZero == "on") this.ref = opts.href || window.location.href; + this.authenticationText = opts.authenticationText || "Authentication Required"; this.on('before-mount', function() { let self = this; @@ -53,38 +55,45 @@ this.handleStar = (event) => { event.preventDefault(); let self = this; - if(!self.active) { - self.active = true; - self.count++; - self.update(); - star( - self.ref, - function(response) { - if(!response.success) { - self.active = false; - self.count--; - } - self.count = response.count; + getSession(function(response) { + if(response.success) { + if(!self.active) { + self.active = true; + self.count++; self.update(); - } - ); - } else { - self.active = false; - self.count--; - self.update(); - removeStar( - self.ref, - function(response) { - if(!response.success) { - self.active = true; - self.count++; - } - self.count = response.count; + star( + self.ref, + function(response) { + if(!response.success) { + self.active = false; + self.count--; + } + self.count = response.count || 0; + self.update(); + } + ); + } else { + self.active = false; + self.count--; self.update(); + removeStar( + self.ref, + function(response) { + if(!response.success) { + self.active = true; + self.count++; + } + self.count = response.count || 0; + self.update(); + } + ); } - ); - } - + } else { + GraphJS.showRegister({ + title: self.authenticationText + }); + } + }); } \ No newline at end of file diff --git a/package.json b/package.json index e7d2c5b..5085fb4 100755 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "graphjs", "version": "", - "description": "", - "repository": "", + "description": "A set of widgets for a meaningfully social web", + "repository": "https://github.com/phonetworks/graphjs", "main": "webpack.config.js", - "author": "", - "license": "", + "author": "Emre Sokullu", + "license": "AGPL-3.0", "engines": { "node": ">=4.0.0" }, diff --git a/test/index-single.html b/test/index-single.html index 84f32c1..e604608 100644 --- a/test/index-single.html +++ b/test/index-single.html @@ -16,6 +16,9 @@




+ +




+




@@ -37,7 +40,7 @@ \ No newline at end of file diff --git a/test/index.html b/test/index.html index b87354e..22eb75f 100644 --- a/test/index.html +++ b/test/index.html @@ -154,8 +154,8 @@

Placeholders

+ + + \ No newline at end of file From 1e7f3d431c933f3c381d7fad873a3e6c40de272a Mon Sep 17 00:00:00 2001 From: Emre Sokullu <> Date: Sun, 20 Sep 2020 19:18:00 -0700 Subject: [PATCH 39/43] 3.3 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9761f73..f30101c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.20 \ No newline at end of file +3.3 \ No newline at end of file From 80f3eae5e184286ecd8bf318c9f8acea19751a78 Mon Sep 17 00:00:00 2001 From: Emre Sokullu <> Date: Sun, 20 Sep 2020 19:51:04 -0700 Subject: [PATCH 40/43] fixed the dependencies --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 02b36cb..b47f261 100755 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "nanoevents": "^1.0.5", "opencollective-postinstall": "^2.0.2", "pell": "^1.0.4", + "q": "^1.5.1", "riot": "^3.13.2", "sanitize-html": "^1.19.2", "tiny-date-picker": "^3.2.8", From c59f76f76e40010761c61f4aa9cb5cd673ed8ecb Mon Sep 17 00:00:00 2001 From: Emre Sokullu <> Date: Mon, 28 Sep 2020 20:17:45 +0300 Subject: [PATCH 41/43] bugfix --- lib/tags/auth-login.tag | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/tags/auth-login.tag b/lib/tags/auth-login.tag index 2e025d1..51aea78 100644 --- a/lib/tags/auth-login.tag +++ b/lib/tags/auth-login.tag @@ -109,9 +109,11 @@ self.checked = true; self.refs.submit.classList.remove('graphjs-loading'); self.update(); - Array.from(document.getElementsByClassName('graphjs-element')).forEach((item) => { - item._tag && item._tag.restart && item._tag.restart(); - }); + setTimeout(function() { + Array.from(document.getElementsByClassName('graphjs-element')).forEach((item) => { + item._tag && item._tag.restart && item._tag.restart(); + }); + }, 500); if(opts.minor) { opts.callback(); opts.refresh(); From 2716a9dd306ef760c665c265f69f2f6979ba2de3 Mon Sep 17 00:00:00 2001 From: Emre Sokullu <> Date: Mon, 28 Sep 2020 20:20:08 +0300 Subject: [PATCH 42/43] 3.4 --- CHANGELOG.md | 5 ++++- VERSION | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d9fbf..ca56310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,4 +85,7 @@ chaining is now possible (star only) chaining with all functions ## 3.3 -bugfixes with login logout \ No newline at end of file +bugfixes with login logout + +# 3.4 +bugfix with auth-login after login (delay in state change, taken into account) \ No newline at end of file diff --git a/VERSION b/VERSION index f30101c..af1817b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3 \ No newline at end of file +3.4 \ No newline at end of file From d85a7cf7a5f4dad0777d9992af804d39df7ae490 Mon Sep 17 00:00:00 2001 From: Emre Sokullu <> Date: Wed, 7 Oct 2020 20:03:41 +0300 Subject: [PATCH 43/43] 3.5 --- CHANGELOG.md | 6 +++++- VERSION | 2 +- lib/tags/forum-list.tag | 4 ++-- test/index-comments.html | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca56310..54824c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,4 +88,8 @@ chaining with all functions bugfixes with login logout # 3.4 -bugfix with auth-login after login (delay in state change, taken into account) \ No newline at end of file +bugfix with auth-login after login (delay in state change, taken into account) + +# 3.5 +bugfix forum title +forum-list to handle login \ No newline at end of file diff --git a/VERSION b/VERSION index af1817b..56e972a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4 \ No newline at end of file +3.5 \ No newline at end of file diff --git a/lib/tags/forum-list.tag b/lib/tags/forum-list.tag index 499e0e5..65fc179 100644 --- a/lib/tags/forum-list.tag +++ b/lib/tags/forum-list.tag @@ -1,5 +1,5 @@
-
{language.title}
+
{opts.title ?? language.title}
pageLimit ? ' graphjs-pagination' : '')}>
diff --git a/test/index-comments.html b/test/index-comments.html index ae8cc30..98427b4 100644 --- a/test/index-comments.html +++ b/test/index-comments.html @@ -13,7 +13,7 @@ - +