Skip to content

Commit

Permalink
fix: api change
Browse files Browse the repository at this point in the history
  • Loading branch information
li-guohao committed Aug 14, 2023
1 parent 5e0727a commit 14c849c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
compileOnly "io.projectreactor:reactor-core:3.5.1"
compileOnly "org.springframework:spring-webflux:6.0.3"
compileOnly "org.springdoc:springdoc-openapi-starter-webflux-api:2.0.2"
compileOnly files('lib/api-0.6.0.jar')
compileOnly files('lib/api-0.6.1.jar')

// lombok
compileOnly "org.projectlombok:lombok:$lombok"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=run.ikaros.jellyfin
description=A jellyfin plugin for ikaros.
version=0.6.1
version=0.6.2
Binary file not shown.
Binary file renamed lib/api-0.6.0.jar → lib/api-0.6.1.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/run/ikaros/jellyfin/MediaDirInit.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void linkEpisodeFileAndGenerateNfo(Optional<String> bgmTvIdOp,
episode.getDescription(),
StringUtils.hasText(episode.getNameCn()) ? episode.getNameCn() :
episode.getName(),
EpisodeGroup.MAIN.name().equalsIgnoreCase(episode.getGroup()) ? "1" : "0",
EpisodeGroup.MAIN.equals(episode.getGroup()) ? "1" : "0",
String.valueOf(DoubleUtils.castInt(sequence)), bgmTvIdOp.orElse(""));
log.debug("create episode nfo file, episode:[{}], nfo file path:[{}].",
episode.getName(), episodeNfoFile.getAbsolutePath());
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: PluginJellyfin
# plugin entry class that extends BasePlugin
clazz: run.ikaros.jellyfin.JellyfinPlugin
# plugin 'version' is a valid semantic version string (see semver.org).
version: 0.6.1
requires: ">=0.6.0"
version: 0.6.2
requires: ">=0.6.1"
author:
name: Ikaros OSS Team
website: https://github.com/ikaros-dev
Expand Down

0 comments on commit 14c849c

Please sign in to comment.