Merge pull request #24 from Trivernis/develop

Develop
main v1.0.3
Julius Riegel 2 years ago committed by GitHub
commit 75bc9821b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,6 +36,9 @@ RUN python3 scripts/check.py --install
FROM sources AS build_daemon FROM sources AS build_daemon
WORKDIR /usr/src WORKDIR /usr/src
RUN python3 scripts/build.py daemon --verbose RUN python3 scripts/build.py daemon --verbose
RUN mkdir ./test-repo
RUN ./out/mediarepo-daemon --repo ./test-repo init
FROM sources AS build_ui FROM sources AS build_ui
WORKDIR /usr/src WORKDIR /usr/src

File diff suppressed because it is too large Load Diff

@ -4,7 +4,7 @@ default-members = ["mediarepo-core", "mediarepo-database", "mediarepo-logic", "m
[package] [package]
name = "mediarepo-daemon" name = "mediarepo-daemon"
version = "1.0.2" version = "1.0.3"
edition = "2018" edition = "2018"
license = "gpl-3" license = "gpl-3"
repository = "https://github.com/Trivernis/mediarepo-daemon" repository = "https://github.com/Trivernis/mediarepo-daemon"
@ -16,7 +16,7 @@ name = "mediarepo-daemon"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
tracing = "0.1.32" tracing = "0.1.33"
toml = "0.5.8" toml = "0.5.8"
structopt = "0.3.26" structopt = "0.3.26"
glob = "0.3.0" glob = "0.3.0"
@ -25,7 +25,7 @@ tracing-appender = "0.2.2"
tracing-log = "0.1.2" tracing-log = "0.1.2"
rolling-file = "0.1.0" rolling-file = "0.1.0"
num-integer = "0.1.44" num-integer = "0.1.44"
console-subscriber = "0.1.3" console-subscriber = "0.1.4"
log = "0.4.16" log = "0.4.16"
opentelemetry = { version = "0.17.0", features = ["rt-tokio"] } opentelemetry = { version = "0.17.0", features = ["rt-tokio"] }
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] } opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] }
@ -48,5 +48,5 @@ version = "1.17.0"
features = ["macros", "rt-multi-thread", "io-std", "io-util"] features = ["macros", "rt-multi-thread", "io-std", "io-util"]
[dependencies.tracing-subscriber] [dependencies.tracing-subscriber]
version = "0.3.9" version = "0.3.11"
features = ["env-filter", "ansi", "json"] features = ["env-filter", "ansi", "json"]

@ -8,7 +8,7 @@ workspace = ".."
[dependencies] [dependencies]
thiserror = "1.0.30" thiserror = "1.0.30"
multihash = "0.16.1" multihash = "0.16.2"
multibase = "0.9.1" multibase = "0.9.1"
base64 = "0.13.0" base64 = "0.13.0"
toml = "0.5.8" toml = "0.5.8"
@ -16,12 +16,12 @@ serde = "1.0.136"
futures = "0.3.21" futures = "0.3.21"
itertools = "0.10.3" itertools = "0.10.3"
glob = "0.3.0" glob = "0.3.0"
tracing = "0.1.32" tracing = "0.1.33"
data-encoding = "2.3.2" data-encoding = "2.3.2"
tokio-graceful-shutdown = "0.5.0" tokio-graceful-shutdown = "0.5.0"
thumbnailer = "0.4.0" thumbnailer = "0.4.0"
bincode = "1.3.3" bincode = "1.3.3"
tracing-subscriber = "0.3.9" tracing-subscriber = "0.3.11"
trait-bound-typemap = "0.3.3" trait-bound-typemap = "0.3.3"
[dependencies.sea-orm] [dependencies.sea-orm]
@ -38,7 +38,7 @@ version = "1.17.0"
features = ["fs", "io-util", "io-std"] features = ["fs", "io-util", "io-std"]
[dependencies.config] [dependencies.config]
version = "0.12.0" version = "0.13.1"
features = ["toml"] features = ["toml"]
[dependencies.mediarepo-api] [dependencies.mediarepo-api]

@ -8,7 +8,7 @@ workspace = ".."
[dependencies] [dependencies]
chrono = "0.4.19" chrono = "0.4.19"
tracing = "0.1.32" tracing = "0.1.33"
[dependencies.mediarepo-core] [dependencies.mediarepo-core]
path = "../mediarepo-core" path = "../mediarepo-core"

@ -11,7 +11,7 @@ chrono = "0.4.19"
serde = "1.0.136" serde = "1.0.136"
mime_guess = "2.0.4" mime_guess = "2.0.4"
mime = "0.3.16" mime = "0.3.16"
tracing = "0.1.32" tracing = "0.1.33"
async-trait = "0.1.53" async-trait = "0.1.53"
[dependencies.mediarepo-core] [dependencies.mediarepo-core]

@ -8,10 +8,10 @@ workspace = ".."
[dependencies] [dependencies]
serde = "1.0.136" serde = "1.0.136"
tracing = "0.1.32" tracing = "0.1.33"
compare = "0.1.0" compare = "0.1.0"
port_check = "0.1.5" port_check = "0.1.5"
rayon = "1.5.1" rayon = "1.5.2"
[dependencies.mediarepo-core] [dependencies.mediarepo-core]
path = "../mediarepo-core" path = "../mediarepo-core"

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
async-trait = "0.1.53" async-trait = "0.1.53"
tracing = "0.1.32" tracing = "0.1.33"
[dependencies.mediarepo-core] [dependencies.mediarepo-core]
path = "../mediarepo-core" path = "../mediarepo-core"

@ -1,6 +1,6 @@
{ {
"name": "mediarepo-ui", "name": "mediarepo-ui",
"version": "1.0.2", "version": "1.0.3",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",

@ -64,7 +64,7 @@ checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
[[package]] [[package]]
name = "app" name = "app"
version = "1.0.1" version = "1.0.2"
dependencies = [ dependencies = [
"mediarepo-api", "mediarepo-api",
"serde", "serde",

@ -1,6 +1,6 @@
[package] [package]
name = "app" name = "app"
version = "1.0.2" version = "1.0.3"
description = "The UI for the mediarepo media management tool" description = "The UI for the mediarepo media management tool"
authors = ["you"] authors = ["you"]
license = "" license = ""

@ -1,7 +1,7 @@
{ {
"package": { "package": {
"productName": "mediarepo-ui", "productName": "mediarepo-ui",
"version": "1.0.2" "version": "1.0.3"
}, },
"build": { "build": {
"distDir": "../dist/mediarepo-ui", "distDir": "../dist/mediarepo-ui",

@ -17,7 +17,7 @@ import {MatSelectModule} from "@angular/material/select";
import {MatCheckboxModule} from "@angular/material/checkbox"; import {MatCheckboxModule} from "@angular/material/checkbox";
import {MatDividerModule} from "@angular/material/divider"; import {MatDividerModule} from "@angular/material/divider";
import {NgIconsModule} from "@ng-icons/core"; import {NgIconsModule} from "@ng-icons/core";
import * as materialIcons from "@ng-icons/material-icons"; import {MatPlus} from "@ng-icons/material-icons/baseline";
import {MatMenuModule} from "@angular/material/menu"; import {MatMenuModule} from "@angular/material/menu";
import {InputModule} from "../shared/input/input.module"; import {InputModule} from "../shared/input/input.module";
import {SidebarModule} from "../shared/sidebar/sidebar.module"; import {SidebarModule} from "../shared/sidebar/sidebar.module";
@ -72,7 +72,7 @@ import {AboutDialogComponent} from "./repositories-tab/repository-overview/about
MatProgressBarModule, MatProgressBarModule,
MatCheckboxModule, MatCheckboxModule,
ScrollingModule, ScrollingModule,
NgIconsModule.withIcons({ ...materialIcons }), NgIconsModule.withIcons({ MatPlus }),
FlexModule, FlexModule,
MatButtonModule, MatButtonModule,
MatMenuModule, MatMenuModule,

@ -7,6 +7,7 @@ import {
MatAddCircle, MatAddCircle,
MatChangeCircle, MatChangeCircle,
MatDeleteSweep, MatDeleteSweep,
MatEdit,
MatExpandLess, MatExpandLess,
MatExpandMore, MatExpandMore,
MatFilterAlt, MatFilterAlt,
@ -91,6 +92,7 @@ import {SortPresetItemComponent} from "./file-search/sort-preset-item/sort-prese
MatFilterAlt, MatFilterAlt,
MatExpandMore, MatExpandMore,
MatExpandLess, MatExpandLess,
MatEdit
}), }),
MatRippleModule, MatRippleModule,
MatButtonModule, MatButtonModule,

Loading…
Cancel
Save