Skip to content

Commit

Permalink
Update BTCPay Server
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Nov 6, 2024
1 parent 5587440 commit 3d3933b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/btcpayserver
Submodule btcpayserver updated 58 files
+1 −0 .gitignore
+35 −0 BTCPayServer.Client/Models/AppItem.cs
+1 −1 BTCPayServer.Client/Models/CrowdfundAppData.cs
+3 −0 BTCPayServer.Client/Models/HistogramData.cs
+1 −3 BTCPayServer.Client/Models/PointOfSaleAppData.cs
+9 −43 BTCPayServer.Tests/AltcoinTests/AltcoinTests.cs
+32 −5 BTCPayServer.Tests/GreenfieldAPITests.cs
+4 −4 BTCPayServer.Tests/POSTests.cs
+10 −3 BTCPayServer/Components/AppSales/Default.cshtml.js
+8 −6 BTCPayServer/Components/StoreLightningBalance/Default.cshtml
+10 −19 BTCPayServer/Components/StoreLightningBalance/Default.cshtml.js
+16 −16 BTCPayServer/Components/StoreLightningBalance/StoreLightningBalance.cs
+3 −3 BTCPayServer/Components/StoreLightningBalance/StoreLightningBalanceViewModel.cs
+34 −27 BTCPayServer/Components/StoreWalletBalance/Default.cshtml
+8 −2 BTCPayServer/Components/StoreWalletBalance/StoreWalletBalance.cs
+5 −4 BTCPayServer/Components/StoreWalletBalance/StoreWalletBalanceViewModel.cs
+4 −19 BTCPayServer/Controllers/GreenField/GreenfieldAppsController.cs
+1 −0 BTCPayServer/Controllers/GreenField/GreenfieldLightningNodeApiController.Internal.cs
+1 −0 BTCPayServer/Controllers/GreenField/GreenfieldLightningNodeApiController.Store.cs
+2 −2 BTCPayServer/Controllers/GreenField/GreenfieldLightningNodeApiController.cs
+2 −2 BTCPayServer/Controllers/GreenField/GreenfieldStoreOnChainWalletsController.cs
+0 −2 BTCPayServer/Controllers/GreenField/LocalBTCPayServerClient.cs
+5 −11 BTCPayServer/Controllers/UILNURLController.cs
+1 −3 BTCPayServer/Controllers/UIStoresController.Dashboard.cs
+5 −8 BTCPayServer/Controllers/UIStoresController.LightningLike.cs
+1 −2 BTCPayServer/Controllers/UIWalletsController.cs
+10 −16 BTCPayServer/Hosting/MigrationStartupTask.cs
+1 −1 BTCPayServer/Payments/Lightning/LightningPendingPayoutListener.cs
+70 −85 BTCPayServer/PayoutProcessors/Lightning/LightningAutomatedPayoutProcessor.cs
+6 −17 BTCPayServer/Plugins/Crowdfund/Controllers/UICrowdfundController.cs
+9 −6 BTCPayServer/Plugins/Crowdfund/CrowdfundPlugin.cs
+2 −3 BTCPayServer/Plugins/Crowdfund/Models/ViewCrowdfundViewModel.cs
+12 −0 BTCPayServer/Plugins/PluginBuilderClient.cs
+4 −2 BTCPayServer/Plugins/PluginService.cs
+5 −11 BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs
+3 −41 BTCPayServer/Plugins/PointOfSale/Models/ViewPointOfSaleViewModel.cs
+5 −6 BTCPayServer/Services/Apps/AppService.cs
+15 −16 BTCPayServer/Services/Apps/PointOfSaleSettings.cs
+0 −1 BTCPayServer/Services/Invoices/PosAppData.cs
+11 −11 BTCPayServer/Services/LightningHistogramService.cs
+11 −28 BTCPayServer/Services/Wallets/WalletHistogramService.cs
+5 −4 BTCPayServer/Views/Shared/Crowdfund/Public/ContributeForm.cshtml
+7 −7 BTCPayServer/Views/Shared/PointOfSale/Public/Cart.cshtml
+13 −12 BTCPayServer/Views/Shared/PointOfSale/Public/Print.cshtml
+8 −8 BTCPayServer/Views/Shared/PointOfSale/Public/Static.cshtml
+6 −5 BTCPayServer/Views/Shared/PointOfSale/Public/VueLight.cshtml
+2 −2 BTCPayServer/Views/UIPullPayment/ViewPullPayment.cshtml
+1 −1 BTCPayServer/Views/UIReports/StoreReports.cshtml
+1 −1 BTCPayServer/Views/UIStores/Dashboard.cshtml
+4 −29 BTCPayServer/wwwroot/crowdfund/app.js
+1 −1 BTCPayServer/wwwroot/js/store-reports.js
+72 −15 BTCPayServer/wwwroot/swagger/v1/swagger.template.apps.json
+43 −0 BTCPayServer/wwwroot/swagger/v1/swagger.template.json
+48 −0 BTCPayServer/wwwroot/swagger/v1/swagger.template.lightning.internal.json
+57 −0 BTCPayServer/wwwroot/swagger/v1/swagger.template.lightning.store.json
+50 −0 BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json
+1 −1 Build/Version.csproj
+13 −0 Changelog.md

0 comments on commit 3d3933b

Please sign in to comment.