From 81d087fa9b961b6acd7c2cfc363c7a1642e64f73 Mon Sep 17 00:00:00 2001 From: Christopher Schnick Date: Sat, 13 Aug 2022 09:29:26 +0200 Subject: [PATCH] Release fixes --- README.md | 7 +++++-- api/README.md | 3 +-- beacon/README.md | 1 - core/README.md | 1 - extension/README.md | 1 - jreleaser.gradle | 4 ---- misc/changelogs/{0.0.1.txt => 0.0.1.3.txt} | 0 misc/version | 2 +- 8 files changed, 7 insertions(+), 12 deletions(-) rename misc/changelogs/{0.0.1.txt => 0.0.1.3.txt} (100%) diff --git a/README.md b/README.md index 0c61ae14..139f7788 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ +[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/build.yml) +[![Publish Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/publishb.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/publish.yml) + ## X-Pipe Java -The fundamental components of the [X-Pipe project](). +The fundamental components of the [X-Pipe project](https://docs.xpipe.io). This repository contains the following four modules: - Core - Shared core classes of the Java API and the X-Pipe daemon implementation @@ -12,7 +15,7 @@ This repository contains the following four modules: ## Installation / Usage The *core* and *extension* libraries are used in X-Pipe extension development. -For setup instructions, see the [X-Pipe extension development]() section. +For setup instructions, see the [X-Pipe extension development](https://xpipe-io.readthedocs.io/en/latest/dev/extensions.html) section. The *beacon* library handles all communication and serves as a reference when implementing an API or program that communicates with the X-Pipe daemon. diff --git a/api/README.md b/api/README.md index 4a48d447..00579864 100644 --- a/api/README.md +++ b/api/README.md @@ -1,6 +1,5 @@ [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api) [![javadoc](https://javadoc.io/badge2/io.xpipe/api/javadoc.svg)](https://javadoc.io/doc/io.xpipe/api) -[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/api-build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/api-build.yml) ## X-Pipe Java API @@ -13,6 +12,6 @@ The X-Pipe API for Java allows you to use most of the X-Pipe functionality from ## Setup Either install the [dependency](https://maven-badges.herokuapp.com/maven-central/io.xpipe/api) from Maven Central -using your favourite build tool or alternatively download the `xpipe-api.jar`, `xpipe-core.jar`, and `xpipe-beacon.jar` +using your favourite build tool or alternatively download the `api.jar`, `core.jar`, and `beacon.jar` from the [releases page](https://github.com/xpipe-io/xpipe_java/releases/latest) and add them to the classpath. diff --git a/beacon/README.md b/beacon/README.md index 3b53b67b..32f8c1a6 100644 --- a/beacon/README.md +++ b/beacon/README.md @@ -1,6 +1,5 @@ [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/beacon/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/beacon) [![javadoc](https://javadoc.io/badge2/io.xpipe/beacon/javadoc.svg)](https://javadoc.io/doc/io.xpipe/beacon) -[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/beacon.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/beacon.yml) ## X-Pipe Beacon diff --git a/core/README.md b/core/README.md index c868b0ce..978f42c1 100644 --- a/core/README.md +++ b/core/README.md @@ -1,6 +1,5 @@ [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/core) [![javadoc](https://javadoc.io/badge2/io.xpipe/core/javadoc.svg)](https://javadoc.io/doc/io.xpipe/core) -[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/core-build.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/core-build.yml) ## X-Pipe Core diff --git a/extension/README.md b/extension/README.md index b266b432..ca7ef839 100644 --- a/extension/README.md +++ b/extension/README.md @@ -1,6 +1,5 @@ [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.xpipe/extension/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.xpipe/extension) [![javadoc](https://javadoc.io/badge2/io.xpipe/extension/javadoc.svg)](https://javadoc.io/doc/io.xpipe/extension) -[![Build Status](https://github.com/xpipe-io/xpipe_java/actions/workflows/extension.yml/badge.svg)](https://github.com/xpipe-io/xpipe_java/actions/workflows/extension.yml) ## X-Pipe Extension API diff --git a/jreleaser.gradle b/jreleaser.gradle index 0c52e522..80d84554 100644 --- a/jreleaser.gradle +++ b/jreleaser.gradle @@ -50,7 +50,6 @@ jreleaser { artifact { distributionType = 'SINGLE_JAR' path = 'api/build/libs/api-{{version}}.jar' - transform = 'build/xpipe-api-{{version}}.jar' } } @@ -58,7 +57,6 @@ jreleaser { artifact { distributionType = 'SINGLE_JAR' path = 'core/build/libs/core-{{version}}.jar' - transform = 'build/xpipe-core-{{version}}.jar' } } @@ -66,7 +64,6 @@ jreleaser { artifact { distributionType = 'SINGLE_JAR' path = 'beacon/build/libs/beacon-{{version}}.jar' - transform = 'build/xpipe-beacon-{{version}}.jar' } } @@ -74,7 +71,6 @@ jreleaser { artifact { distributionType = 'SINGLE_JAR' path = 'extension/build/libs/extension-{{version}}.jar' - transform = 'build/xpipe-extension-{{version}}.jar' } } } diff --git a/misc/changelogs/0.0.1.txt b/misc/changelogs/0.0.1.3.txt similarity index 100% rename from misc/changelogs/0.0.1.txt rename to misc/changelogs/0.0.1.3.txt diff --git a/misc/version b/misc/version index 87037c72..dc9a74ed 100644 --- a/misc/version +++ b/misc/version @@ -1 +1 @@ -0.0.1.2 \ No newline at end of file +0.0.1.3 \ No newline at end of file