Is there a target release date for v3?
Iβve been updating my child theme for v3 alpha, and are quite looking forward to the upgrade.
Great work
Is there a target release date for v3?
Iβve been updating my child theme for v3 alpha, and are quite looking forward to the upgrade.
Great work
done done
upgraded from beta 2 without issues on my test forum, and also my Production server.
nice work guys
I only just noticed this after updating to 3.2.1, did it land in 3.2? β
Itβs looking great!
This is epic, great work guys. My build times went from close to a min I think... to around 16s.
This makes quickly iterating so much more enjoyable.
I upgraded yesterday as soon as I saw the update posted.
so far so good.
@baris said in January 2023 Developer Update:
@sweetp said in January 2023 Developer Update:
The following addition to the css seem to work well:
.line-clamp-2 {
height: 3em;
}.line-clamp-3 {
height: 4.5em;
}I've added this and updated the theme on this forum, let us know how it behaves on safari now.
yup, working for me on macOS Safari 16.3
Ive just updated to v2.0, and now the navigation/user menus don't work on mobile?
here's my site:
support.sweetpproductions.com
and, here's the repo for my theme, all I am doing is adding custom css, with also some custom javascript:
github.com/sweetppro/nodebb-theme-sweetp
can anyone see anything obvious I am doing wrong?
Ive been running NodeBB for my support forum for a little over a year now, and are super happy with it:
support.sweetpproductions.com
I also included css support for dark mode in my custom theme.
-webkit-line-clamp
isn't working on macOS 13.1 Safari 16.2
The following addition to the css seem to work well:
.line-clamp-2 {
height: 3em;
}
.line-clamp-3 {
height: 4.5em;
}
@phenomlab this is so odd....
I use a VPN, and the menus weren't working via VPN.
as soon as I disabled it, removed the cache and reloaded... the menus worked.
thanks for the second set of eyes
This may be just a coincidence. But since updating to NodeBB v3.beta.2 on my production server user engagement has improved.
Harmony is a vast improvement over the v2 default theme in my opinion. Iβm really enjoying the new UI. I also have the impression that v3 runs slightly faster than b2, but I have no real data. Regardless, NodeBb v3 + Harmony theme is a super nice upgrade. Looking forward to the final release.
Thanks for all the hard work guys!
@baris said in NodeBB v3.0.0-rc.2 β the second release candidate:
I pushed this change to this forum so let me know if you notice any issues.
It looks fine on my end,
I updated my test forum, and all looks well there too.
Ill push it to my production forum now
This is what I do for updates:
git fetch
git stash
git checkout v3.x
git merge origin/v3.x
./nodebb upgrade
git stash drop
Looking forward to v3 and harmony. Iβve been running the alpha and beta in Production for quite some time now. Super solid update.
yup the updated Dark admin theme is super nice
@scottalanmiller my support forum has pretty low traffic, so itβs not really an issue
Actually the version of postgresql I had to install on my server doesnβt seem to be compatible with my install of Plesk either.
But it works well, and I donβt have to mess around learning how to support mongodb.
I had the same issue, and fixed it by changing the Skin in my user settings
@julian nice one!
Iβve a actually been running one of the later betas in production for a week or so with no issues.
Looking forward to the final release.
I managed to get the uploads working by adding the following to my Apache & nginx Settings
on the Additional nginx directives
in my Plesk Onyx panel:
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:4567;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}