Changelog.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div class="web-wrapper">
  3. <div class="container-fluid mt-3">
  4. <div class="row">
  5. <div class="col-md-3 d-md-block">
  6. <sidebar :user="profile" />
  7. </div>
  8. <div class="col-md-6">
  9. <div class="jumbotron shadow-sm bg-white">
  10. <div class="text-center">
  11. <h1 class="font-weight-bold">What's New</h1>
  12. <p class="lead mb-0">A log of changes in our new UI (Metro 2.0)</p>
  13. </div>
  14. </div>
  15. <div class="mt-4 pb-3">
  16. <p class="lead">Apr 3, 2022</p>
  17. <ul>
  18. <li class="font-weight-bold">
  19. Dark Mode <br />
  20. <p class="small">To enable dark or light mode, click on the top nav menu and then select UI Settings</p>
  21. </li>
  22. <li>Improved internationalization support with the addition of 7 new languages</li>
  23. </ul>
  24. </div>
  25. <div class="mt-4 pb-3">
  26. <p class="lead">March 2022</p>
  27. <ul>
  28. <li class="font-weight-bold">Full screen previews on photo albums</li>
  29. <li class="font-weight-bold">Filter notifications by type on notifications tab</li>
  30. <li>Add "Shared by" link to posts that opens a list of accounts that reblogged the post</li>
  31. <li>Fix private profile feed not loading for owner</li>
  32. </ul>
  33. </div>
  34. <div class="mt-4 pb-3">
  35. <p class="lead">Febuary 2022</p>
  36. <ul>
  37. <li class="font-weight-bold">New Discover layout with My Hashtags, My Memories, Account Insights, Find Friends and Server Timelines</li>
  38. <li class="font-weight-bold">Mobile app drawer menu</li>
  39. <li class="font-weight-bold">Add Preferred Profile Layout UI setting</li>
  40. <li>Add search bar to mobile breakpoints and adjust avatar size when necessary</li>
  41. <li>Improved profile layout on mobile breakpoints</li>
  42. <li class="font-weight-bold">Threaded Comments Beta</li>
  43. <li>Changed default media preview setting to non-fixed height media</li>
  44. <li>Improved Compose Location search, will display popular locations first</li>
  45. <li>Added "Comment" button to comment reply form and changed textarea/multiline icon toggle</li>
  46. <li>Fixed incorrect avatar in profile post comment drawers</li>
  47. <li>Hashtags will now include remote/federated posts on hashtag feeds</li>
  48. <li>Moved media license to post header</li>
  49. <li class="font-weight-bold">Improved Media Previews - disable to restore original preview aspect ratios</li>
  50. <li class="font-weight-bold">Comments + Hovercards - comment usernames now support hovercards</li>
  51. <li class="font-weight-bold">Quick Avatar Updates - click the <i class="far fa-cog"></i> button on your avatar. Supports drag-n-drop and updates without page refresh in most places.</li>
  52. <li class="font-weight-bold">Follows You badge on hovercards when applicable</li>
  53. <li>Add Hide Counts & Stats setting</li>
  54. <li>Fix nsfw videos not displaying sensitive warning</li>
  55. <li>Added mod tools button to posts for admin accounts</li>
  56. </ul>
  57. </div>
  58. <div class="mt-4 pb-3">
  59. <p class="lead">January 2022</p>
  60. <ul>
  61. <li>Fixed comment deletion</li>
  62. <li class="font-weight-bold">New Reaction bar on posts - to disable toggle this option in UI Settings menu</li>
  63. <li class="font-weight-bold">Fresher Comments - fixed bug that prevented new comments from appearing and added a Refresh button to do it manually in the event it's needed</li>
  64. <li>Added Comment Autoloading setting, enabled by default, it loads the first 3 comments</li>
  65. <li>Added Likes feed to your own profile to view posts you liked</li>
  66. <li>Fixed custom emoji rendering on sidebar, profiles and hover cards</li>
  67. <li>Fixed duplicate notifications on feeds</li>
  68. <li>New onboarding home feed with 6 popular accounts to help newcomers find accounts to follow</li>
  69. <li>Added pronouns to hovercards</li>
  70. <li>Fixed custom emoji rendering on home timeline</li>
  71. <li class="font-weight-bold">Added Hovercards to usernames on timelines</li>
  72. <li class="font-weight-bold">Improved search bar, now resolves (and imports) remote accounts and posts, including webfinger addresses</li>
  73. <li>Added full account usernames to notifications on hover</li>
  74. <li>Discover page will default to the Yearly tab if Daily tab is empty</li>
  75. <li>Hashtag feed improvements (fix pagination placeholders, use 4x4 grid on larger screens)</li>
  76. <li class="font-weight-bold">New report modal for posts & comments</li>
  77. <li>Fixed profile <i class="far fa-bars px-1"></i> feed status interactions</li>
  78. <li>Improved profile mobile layout</li>
  79. </ul>
  80. </div>
  81. <div class="pb-3">
  82. <p class="lead">Older</p>
  83. <p>To view the full list of changes, view the project changelog <a href="https://raw.githubusercontent.com/pixelfed/pixelfed/dev/CHANGELOG.md">here</a>.</p>
  84. </div>
  85. </div>
  86. <div class="col-md-3">
  87. <div class="alert alert-primary">
  88. <p class="mb-0 small">We know some of our UI changes are controversial. We value your feedback and are working hard to incorporate it. Your patience is greatly appreciated!</p>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. <drawer />
  94. </div>
  95. </template>
  96. <script type="text/javascript">
  97. import Drawer from './partials/drawer.vue';
  98. import Sidebar from './partials/sidebar.vue';
  99. export default {
  100. components: {
  101. "drawer": Drawer,
  102. "sidebar": Sidebar,
  103. },
  104. data() {
  105. return {
  106. isLoaded: false,
  107. profile: undefined,
  108. instance: undefined,
  109. nodeinfo: undefined,
  110. config: window.App.config
  111. }
  112. },
  113. mounted() {
  114. this.profile = window._sharedData.user;
  115. }
  116. }
  117. </script>