Skip to content

Commit

Permalink
Start v3.0.27 + Fix furbooru/derpibooru tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdicarlo committed Mar 7, 2021
1 parent 82961cc commit dfe4645
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion electron-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb-plus",
"version": "3.0.26",
"version": "3.0.27",
"description": "(ClientServer) PostyBirb is an application that helps artists post art and other multimedia to multiple websites more quickly.",
"main": "dist/main.js",
"author": "Michael DiCarlo",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ export class Derpibooru extends Website {
}

formatTags(tags: string[]) {
return super
.formatTags(tags)
return tags
.join(', ')
.trim();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class Furbooru extends Website {
}

formatTags(tags: string[]) {
return super.formatTags(tags).join(', ').trim();
return tags.join(', ').trim();
}

validateFileSubmission(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb-plus",
"version": "3.0.26",
"version": "3.0.27",
"description": "PostyBirb is an application that helps artists post art and other multimedia to multiple websites more quickly..",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb-plus-ui",
"version": "3.0.26",
"version": "3.0.27",
"license": "BSD-3-Clause",
"private": true,
"Author": "Michael DiCarlo",
Expand Down

0 comments on commit dfe4645

Please sign in to comment.