Skip to content

Commit

Permalink
Start v2.3.40 + Fix FA categories in form
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdicarlo committed Nov 27, 2021
1 parent cbf2781 commit 1e7aa9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb",
"version": "2.3.39",
"version": "2.3.40",
"description": "PostyBirb is an application that helps artists post art and other multimedia to multiple websites more quickly.",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -87,7 +87,7 @@
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"electron": "12.2.1",
"electron": "^12.2.3",
"electron-builder": "22.11.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.0.2",
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",
"version": "2.3.39",
"version": "2.3.40",
"scripts": {
"ng": "ng",
"compile": "ng build --vendor-chunk=false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ <h6>{{ 'Tags' | translate }}</h6>
<div class="row no-gutters">
<div class="col-md col-lg col-xl">
<mat-form-field color="accent" class="w-100">
<mat-select formControlName="species" [placeholder]="'Species' | translate">
<mat-select formControlName="category" [placeholder]="'Category' | translate">
<mat-optgroup label="Visual Art">
<mat-option value="1" selected="selected">All</mat-option>
<mat-option value="1">All</mat-option>
<mat-option value="2">Artwork (Digital)</mat-option>
<mat-option value="3">Artwork (Traditional)</mat-option>
<mat-option value="4">Cellshading</mat-option>
Expand Down Expand Up @@ -168,7 +168,7 @@ <h6>{{ 'Tags' | translate }}</h6>
<div class="col-md col-lg col-xl">
<mat-form-field color="accent" class="w-100">
<mat-select formControlName="species" [placeholder]="'Species' | translate">
<mat-option value="1" selected="selected">Unspecified / Any</mat-option>
<mat-option value="1" selected>Unspecified / Any</mat-option>
<mat-optgroup label="General">
<mat-option value="10001">Airborne Vehicle</mat-option>
<mat-option value="5001">Alien (Other)</mat-option>
Expand Down

0 comments on commit 1e7aa9e

Please sign in to comment.