Skip to content

Commit

Permalink
docs: generate changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Jan 28, 2023
1 parent 99046cd commit dec744d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.0.6

## Fixed
- fix the possibility to disable the cln proxy ([commit](https://github.com/clightning4j/btcli4j/commit/99046cd04609a8a0c9dfcbb56e1a0de57150a9aa)). @vincenzopalazzo 28-01-2023


# v0.0.5

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "btcli4j",
"version": "v0.0.5",
"version": "v0.0.6",
"api": {
"name": "github",
"repository": "clightning4j/btcli4j",
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/vincenzopalazzo/btcli4j/Plugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class Plugin : CLightningPlugin() {
// TODO: The plugin have some proxy enabled and proxy url propriety to give the possibility to the user
// to specify a custom proxy only of the http client used by the plugin. Implement this view.
val optionsManager = OptionsManager(endpointUrl, waitingTime, null, !this.proxyDisabled, proxy)
if (!pluginInit && configs.isProxyEnabled) {
if (!pluginInit && configs.isProxyEnabled && !this.proxyDisabled) {
val proxyIp = configs.proxy.address
val proxyPort = configs.proxy.port
val torVersion = when (configs.proxy.type) {
Expand Down

0 comments on commit dec744d

Please sign in to comment.