From 5314f0d0bc4d655ac23f2d06e8fc2c8cf7721129 Mon Sep 17 00:00:00 2001 From: Biran Yucel Date: Wed, 16 Dec 2020 03:20:15 +0300 Subject: [PATCH 1/2] Add jDSP library to supported libraries. --- docs/README.md | 1 + libraries/jdsp.json | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 libraries/jdsp.json diff --git a/docs/README.md b/docs/README.md index 39c70e366..0dd5b15e6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -166,6 +166,7 @@ List of supported libraries: - [exposed](https://github.com/JetBrains/Exposed) - Kotlin SQL framework - [fuel](https://github.com/kittinunf/fuel) - HTTP networking library - [gral](https://github.com/eseifert/gral) - Java library for displaying plots + - [jdsp](https://github.com/psambit9791/jDSP) - Java library for signal processing - [kaliningraph](https://github.com/breandan/kaliningraph) - Graph library with a DSL for constructing graphs and visualizing the behavior of graph algorithms - [khttp](https://github.com/jkcclemens/khttp) - HTTP networking library - [klaxon](https://github.com/cbeust/klaxon) - JSON parser for Kotlin diff --git a/libraries/jdsp.json b/libraries/jdsp.json new file mode 100644 index 000000000..bb1a123bd --- /dev/null +++ b/libraries/jdsp.json @@ -0,0 +1,10 @@ +{ + "description": "Signal processing", + "properties": { + "v": "0.5.1" + }, + "link": "https://github.com/psambit9791/jDSP", + "dependencies": [ + "com.github.psambit9791:jdsp:$v" + ] +} \ No newline at end of file From b2b64e05311a4abdcfe8918f631757f6a6a5e5e5 Mon Sep 17 00:00:00 2001 From: Ilya Muradyan Date: Wed, 16 Dec 2020 03:48:44 +0300 Subject: [PATCH 2/2] Fix description --- libraries/jdsp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/jdsp.json b/libraries/jdsp.json index bb1a123bd..5a84b849f 100644 --- a/libraries/jdsp.json +++ b/libraries/jdsp.json @@ -1,5 +1,5 @@ { - "description": "Signal processing", + "description": "Java library for signal processing", "properties": { "v": "0.5.1" },