Changelog History
Page 5
-
v0.13.0 Changes
๐ This release removes jQuery dependency from Thredded JavaScripts, reducing the size of the Thredded JavaScript bundle from 67 KiB to 22 KiB gzipped.
๐ Changed
- 0๏ธโฃ rails-ujs is used instead of jquery_ujs by default. #592 See the README for more information.
- select2 -> textcomplete, split by commas. #597
- jquery.textcomplete -> [textcomplete] #596
- jquery.timeago -> timeago.js #591
-
v0.12.4 Changes
๐ This release adds the ability to tell Thredded with version of Rails UJS to use. 0๏ธโฃ Since Rails v5.1, the default is
rails-ujs
but Thredded for now still usesjquery_ujs
by default. This will change in Thredded v0.13.๐ If you'd like to tell Thredded to use
rails-ujs
now, update to this release and run the following command from your app directory:mkdir -p app/assets/javascripts/thredded/dependencies/ echo '//= require rails-ujs' > app/assets/javascripts/thredded/dependencies/ujs.js
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.12.3...v0.12.4.
-
v0.12.3 Changes
๐ This release adds a minor fix for Rails 5.1 compatibility. #b5669c61
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.12.2...v0.12.3.
-
v0.12.2 Changes
๐ This release brings Rails 5.1 support to Thredded.
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.12.1...v0.12.2.
-
v0.12.1 Changes
The quote action now only appears on the topic page (and not in moderation, user's posts, etc). #fc960483
๐ This is the only the change in this release.
-
v0.12.0 Changes
๐ Changed
- Topic slugs are now unique across messageboards. This allows us to correctly redirect to the new topic URL when the topic's messageboard has changed. #573 #576
โ Added
- Basic "Quote" reply action. #585
- Navigation to individual messageboard settings from the global settings page. #581
๐ Fixed
- Private topics page for blocked users. #3a4d7032
- ๐ Support for Turbolinks v5.0.1 and the upcoming v5.1.0. #25269979
Internals
- ๐
The unmaintained
autosize-rails
gem replaced with a vendored version of jackmoore/autosize. #1023c215
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.11.1...v0.12.0.
NB: If updating to this version from 0.11.x, you must copy and run the upgrade migration after updating the gem:
cp "$(bundle show thredded)"/db/upgrade_migrations/20170420163138_upgrade_thredded_v0_11_to_v0_12.rb db/migrate rake db:migrate
-
v0.11.1 Changes
๐ Changed
- ๐ User navigation is now shown on the right, and search is on the left. #563
- On desktop screen sizes, messageboard breadcrumbs are no longer bold. #574
โ Added
- 0๏ธโฃ Sanitization defaults now allow
<abbr>
and a few ARIA attributes. #2d29ef21 #df38d9e4 - Kramdown options can now be passed to the ContentFormatter. #c25d8765
๐ Fixed
- Topic URLs that use old slugs are now redirected to the current version. #564
- PostPolicy no longer allows anonymous users to edit posts of deleted users. #092d40b5
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.11.0...v0.11.1.
NB: If updating to this version from 0.10.x, you must copy and run the upgrade migration after updating the gem:
cp "$(bundle show thredded)"/db/upgrade_migrations/20170312131417_upgrade_thredded_v0_10_to_v0_11.rb db/migrate rake db:migrate
-
v0.11.0 Changes
โ Added
Oneboxes: URLs to supported resources placed on their own line are replaced with a "onebox". Oneboxes replace the previous YouTube and Vimeo implementations and add support for dozens more sites, including Tweets, Google Maps, and so on. The implementation is powered by the onebox gem. #545
๐ Email styles: the emails now come in style. See the wiki article on how to enable the email styles. In the emails, interactive content (such as Google Maps, YouTube Videos) is shown as a static image. #550
๐ Russian translation. #556
๐ Fixed
๐ป Minor UI fixes throughout.
Internals
- Removed the now-redundant
thredded_post_notifications
table. #547
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.10.1...v0.11.0.
-
v0.10.1 Changes
๐ Changed
- ๐ Post actions moved to a dropdown menu. #533
โ Added
- Posts can be marked as unread. #533
๐ More Sass variables for style customization:
$thredded-messageboards-grid-item-border-(width|color)
$thredded-messageboards-grid-item-(padding|gutter)-(x|y)
$thredded-overlay-(background-color|box-shadow)
๐ Support PostgreSQL UUID primary keys. #538
A divider line between sticky and non-sticky topic. #537
๐ Fixed
Internals
- ๐ป Thredded now caches only the posts' contents (and not the UI around them). #536
- The
Thredded::ApplicationController#signed_in?
method has been renamed tothredded_signed_in?
, to avoid conflicts with the parent (application) controller. #543
๐ See the full list of changes here: https://github.com/thredded/thredded/compare/v0.10.0...v0.10.1.