Danbooru

Danbooru 2 Issues Topic

Posted under General

This topic has been locked.

2.14.0:

  • Notes with unsaved changed will be marked with a red border.
  • Notes and other Javascript functions not working on mobiles and other old browsers should be fixed.
  • Added translation mode. Pressing the N shortcut or clicking "Add notes" will toggle it on/off. When its on, you can click or drag on the image to create new notes. The former behavior was that you must turn it on manually once for every note.
  • Added pool categories. A pool can either be a series or a collection.
    • A collection is a group of posts related by their theme (eg. Disgustingly Adorable, Badass, Heart-Warming).
    • A series could be a comic, a group of related images released by a single artist, or similar things. Series is the default, and is more common.

I dont see it listed with search so I am gonna add a bug. I can't search for any flash, that tag will show empty pages instead of flash images. I am pretty sure it worked in old danbooru. I am currently on firefox & linux 64bit.

Enerccio said:

I dont see it listed with search so I am gonna add a bug. I can't search for any flash, that tag will show empty pages instead of flash images. I am pretty sure it worked in old danbooru. I am currently on firefox & linux 64bit.

Nothing is returned at all, you mean? That's strange. Try:

  • Do you have flash in your blacklist?
  • Are you searching for just the flash tag without any other tags? Like this: flash
  • Does this search return anything?: id:549356 (it should return one result)
  • Can you view a particular post given the link? post #549356 (warning: has sound)

Toks said:

Nothing is returned at all, you mean? That's strange. Try:

  • Do you have flash in your blacklist?
  • Are you searching for just the flash tag without any other tags? Like this: flash
  • Does this search return anything?: id:549356 (it should return one result)
  • Can you view a particular post given the link? post #549356 (warning: has sound)

Hmm, okay, nevermind, forgot that I had adblock plus on default instead of disabled on linux browser, and if I disable it on danbooru it shows correctly.

StriderTuna said:

Has there been any problems editing artists? as I can't seem to make changes to one as it keeps on bringing me back to the edit screen and the preview function doesn't work.

I'm trying to add group and other name to aisa_(micuma)

My guess is that it has to do with the 'Body' field being empty.

StriderTuna said:

Has there been any problems editing artists? as I can't seem to make changes to one as it keeps on bringing me back to the edit screen and the preview function doesn't work.

I'm trying to add group and other name to aisa_(micuma)

souryuu9 said:

My guess is that it has to do with the 'Body' field being empty.

Should be fixed for the next version.

EB said:

Not sure what's up with pool #7035 being made. I used pool:#### tags a few times today to add posts to pools, but this unnecessary automatically generated pool seems to have only happened once.

Is it possible that you accidentally typed "pool:pool:5942" when you meant to type "pool:5942"?

Is anyone else having a problem where the the "Find Artist" function doesn't immediately work? Also the first tag you click takes you to a page showing images with that tag, forcing you to have to load the page then go back before being able to add tags and see the artist name?

Also whenever checking artist names it always shows it as taken, even if it isn't.

Anonymous9000 said:

Is anyone else having a problem where the the "Find Artist" function doesn't immediately work?

What do you mean by "doesn't immediately work"? Is there a delay, and then it works?

Anonymous9000 said:

Also the first tag you click takes you to a page showing images with that tag, forcing you to have to load the page then go back before being able to add tags and see the artist name?

You mean that clicking a tag in the related tags form will bring you to a new page, instead of adding the tag to the text field? Does disabling any userscripts you use help? And what browser+version are you using?

Okay, suddenly I can't make new wiki pages. There's no place to put a page title, and submitting it gives the error "Title can't be blank".

edit: Workaround: Edit an existing wiki page and replace the title and content with desired title and content of the new page.

edit 2: Okay, that doesn't work because it deletes the page you edit.

edit 3: Looks like there was a Github issue for this marked as "fixed" 2 hours ago: issue #1706.

Updated

jjj14 said:

Okay, suddenly I can't make new wiki pages. There's no place to put a page title, and submitting it gives the error "Title can't be blank".

edit: Workaround: Edit an existing wiki page and replace the title and content with desired title and content of the new page.

edit 2: Okay, that doesn't work because it deletes the page you edit.

edit 3: Looks like there was a Github issue for this marked as "fixed" 2 hours ago: issue #1706.

I fixed it in the code, so you'll be able to create wikis when Albert next updates the server.

You could use something like this in a userscript to get it back sooner:

if (/\/wiki_pages\/new/.test(window.location)) {
  var html = '<div class="input string required wiki_page_title"><label class="string required" for="wiki_page_title"><abbr title="required">*</abbr> Title</label><input class="string required" id="wiki_page_title" name="wiki_page[title]" required="required" size="30" type="text"/></div>';

  $("#new_wiki_page").prepend($(html));
}

Updated

henmere said:

I can't use "Edit name" function for artists that don't have wiki bodies. It always fails.

Fixed.

Here's another userscript hack if you need to rename artists before the next version:

if (/\/artists\/\d+\/edit_name/.test(window.location)) {
  var $form = $("#a-edit form");
  var action = $form.attr("action");
  $form.attr("action", action.slice(0, action.length - 12));
}

2.15.1:

  • Aforementioned bugs were fixed.
  • order:rank2 has been added. It works like order:rank, but depends on favorite count rather than score.
  • The W and S shortcuts work everywhere.
  • Deleting artists is now done by clicking the "Delete" link in the subnavbar while viewing the artist's page.
1 26 27 28 29 30 31 32 33 34 315