Skip to content

Commit

Permalink
Merge pull request #1398 from RunOnFlux/development
Browse files Browse the repository at this point in the history
v5.25.0
  • Loading branch information
TheTrunk authored Sep 10, 2024
2 parents 461812c + edc039c commit e68f4ad
Show file tree
Hide file tree
Showing 20 changed files with 56 additions and 19 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion HomeUI/dist/css/6575.css → HomeUI/dist/css/3209.css

Large diffs are not rendered by default.

File renamed without changes.
1 change: 0 additions & 1 deletion HomeUI/dist/css/7585.css

This file was deleted.

1 change: 1 addition & 0 deletions HomeUI/dist/css/9563.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion HomeUI/dist/js/3137.js → HomeUI/dist/js/1732.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HomeUI/dist/js/7070.js → HomeUI/dist/js/3112.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions HomeUI/dist/js/3209.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion HomeUI/dist/js/5086.js

This file was deleted.

2 changes: 1 addition & 1 deletion HomeUI/dist/js/5861.js → HomeUI/dist/js/5918.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion HomeUI/dist/js/6575.js

This file was deleted.

1 change: 1 addition & 0 deletions HomeUI/dist/js/762.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions HomeUI/dist/js/7585.js → HomeUI/dist/js/9563.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion HomeUI/dist/js/index.js

Large diffs are not rendered by default.

16 changes: 14 additions & 2 deletions HomeUI/src/views/apps/Management.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10660,8 +10660,14 @@ export default {
}
this.fiatCheckoutURL = checkoutURL.data.data;
this.checkoutLoading = false;
this.openSite(checkoutURL.data.data);
try {
this.openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to open Stripe checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to create stripe checkout');
this.checkoutLoading = false;
}
Expand Down Expand Up @@ -10714,8 +10720,14 @@ export default {
}
this.fiatCheckoutURL = checkoutURL.data.data;
this.checkoutLoading = false;
this.openSite(checkoutURL.data.data);
try {
this.openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to open Paypal checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to create PayPal checkout');
this.checkoutLoading = false;
}
Expand Down
16 changes: 14 additions & 2 deletions HomeUI/src/views/apps/RegisterFluxApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3861,8 +3861,14 @@ export default {
}
this.fiatCheckoutURL = checkoutURL.data.data;
this.checkoutLoading = false;
this.openSite(checkoutURL.data.data);
try {
this.openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to open Stripe checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to create stripe checkout');
this.checkoutLoading = false;
}
Expand Down Expand Up @@ -3915,8 +3921,14 @@ export default {
}
this.fiatCheckoutURL = checkoutURL.data.data;
this.checkoutLoading = false;
this.openSite(checkoutURL.data.data);
try {
this.openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to open Paypal checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
this.showToast('error', 'Failed to create PayPal checkout');
this.checkoutLoading = false;
}
Expand Down
16 changes: 14 additions & 2 deletions HomeUI/src/views/apps/marketplace/AppView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1147,8 +1147,14 @@ export default {
}
fiatCheckoutURL.value = checkoutURL.data.data;
checkoutLoading.value = false;
openSite(checkoutURL.data.data);
try {
openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
showToast('error', 'Failed to open Stripe checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
showToast('error', 'Failed to create stripe checkout');
checkoutLoading.value = false;
}
Expand Down Expand Up @@ -1206,8 +1212,14 @@ export default {
}
fiatCheckoutURL.value = checkoutURL.data.data;
checkoutLoading.value = false;
openSite(checkoutURL.data.data);
try {
openSite(checkoutURL.data.data);
} catch (error) {
console.log(error);
showToast('error', 'Failed to open PayPal checkout, pop-up blocked?');
}
} catch (error) {
console.log(error);
showToast('error', 'Failed to create PayPal checkout');
checkoutLoading.value = false;
}
Expand Down
5 changes: 3 additions & 2 deletions HomeUI/src/views/apps/marketplace/Marketplace.vue
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,10 @@ export default {
filteredApps.value = filteredApps.value.filter((appData) => appData.extraDetail.name.toLowerCase() === router.currentRoute.params.filter.toLowerCase());
}
if (searchQuery.value) {
const normalizedSearchQuery = searchQuery.value.toLowerCase();
filteredApps.value = filteredApps.value.filter((appData) => {
if (appData.name.toLowerCase().includes(searchQuery.value)) return true;
if (appData.description.toLowerCase().includes(searchQuery.value)) return true;
if (appData.name.toLowerCase().includes(normalizedSearchQuery)) return true;
if (appData.description.toLowerCase().includes(normalizedSearchQuery)) return true;
return false;
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flux",
"version": "5.24.0",
"version": "5.25.0",
"description": "Flux, Your Gateway to a Decentralized World",
"repository": {
"type": "git",
Expand Down

0 comments on commit e68f4ad

Please sign in to comment.