I was about to tell you about that, but since it’s a known issue now I guess we will have to wait…
Also i don’t see anymore the dismiss button in the notifications tab, only appears when i click twice either notification button so that it shows the longer list of notifications…
Is it possible to go back to the All Categories being the homepage? I usually skip all the artworks and only quickly glance over the featured ones. So why am I now forced to click to go to the all categories? I also don’t see a way to turn this back on in the preferences…
As for the site categories @Fweeb isn’t procedural (modeling/ texturing) a process in and of its own?
I would say, create Mesh modeling, Sculpting, Grease Pencil and Procedural categories, if possible, since then it’s much easier to find things regarding a certain workflow. The name is a feature, but it entails a workflow (process).
This @obsurveyor summed up perflectly my frustration about this “” link in the sidebar.
For me, It is currently completely useless as I never never see any counter on this line (ie: 2 unread).
I’ve been fine with my solution(the Tampermonkey script I posted higher up) to add a menu to the dropdown on my Profile:
I lost the ability to see how many Unreads are left in this menu but oh well, I get what I need access to from any pages on the site with the same muscle memory. I don’t really use the Tracked Tags link now that I know if I track tags, those threads I enter are automatically tracked which I don’t want but it balances out the menu. I hid the sidebar completely.
I had to add .user-menu.revamped .quick-access-panel { min-height: 500px; } in order to display all the usual links in the “Profile area” but somehow, it broke the padding between the Summary, Activity, Invites, Drafts, … links.
// ==UserScript==
// @name Blender Artists - Add Nav Menu
// @namespace http://tampermonkey.net/
// @version 0.2
// @description No need for the sidebar
// @author You
// @match https://blenderartists.org/*
// @grant none
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==
(function() {
'use strict';
waitForKeyElements('#quick-access-all-notifications', function(el) {
let markup = $(`
<style>
#obs-common-links {
display: flex;
flex-wrap: wrap;
justify-content: right;
}
#obs-common-links a {
color: var(--primary);
font-size: var(--font-up-1);
}
#obs-common-links div {
width: 50%;
}
#obs-common-links div:hover {
background: var(--highlight-medium);
}
/* Required to make the Profile area on the right panel display all usual links, otherwise they would be cut off */
.user-menu.revamped .quick-access-panel {
min-height: 500px;
}
</style>
<div id="obs-common-links">
<div><a href="/latest">Latest</a></div>
<div><a href="https://blenderartists.org/search?expanded=true&q=in%3Alikes%20order%3Alatest">I liked</a></div>
<div><a href="/unread">Unread</a></div>
<div><a href="https://blenderartists.org/search?expanded=true&q=in%3Aseen%20order%3Alatest">I read</a></div>
<div><a href="/latest?state=tracking">Tracked</a></div>
<div><a href="https://blenderartists.org/u/obsurveyor/activity/bookmarks">My Bookmarks</a></div>
<div><a href="https://blenderartists.org/u/obsurveyor/activity/topics">My Topics</a></div>
<div><a href="https://blenderartists.org/search?expanded=true&q=%40obsurveyor%20order%3Alatest">My Replies</a></div>
</div>
<hr>
`);
$(el).prepend(markup);
});
})();