From fdb4b3a01961a6315d266b633b7daab8f14fe857 Mon Sep 17 00:00:00 2001 From: almzag-hospitality Date: Tue, 2 Jun 2026 21:31:49 +0400 Subject: [PATCH 1/8] Update README.md --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index 4c63603..e69de29 100644 --- a/README.md +++ b/README.md @@ -1,7 +0,0 @@ -# Stripe open-source project - -Template for Stripe open-source projects, including our default [license](LICENSE.md), [code of conduct](CODE_OF_CONDUCT.md), and [security policy](SECURITY.md). - - -### Next steps -* [Add a `CONTRIBUTING.md`](https://github.com/stripe/.github/new/master?filename=CONTRIBUTING.md) file to set expectations for how outside collaborators should contribute to this project. From 9d8268ab89330a80296bbf26f64828a0a0440294 Mon Sep 17 00:00:00 2001 From: almzag-hospitality Date: Wed, 3 Jun 2026 02:27:24 +0400 Subject: [PATCH 2/8] Enable the network web payments feature. --- network/web-payments.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 network/web-payments.json diff --git a/network/web-payments.json b/network/web-payments.json new file mode 100644 index 0000000..2b6ea1d --- /dev/null +++ b/network/web-payments.json @@ -0,0 +1 @@ +{"network": "web-payments"} \ No newline at end of file From d880ab2a4a1b97b3fdbab8ac209826ea3c0ae7f4 Mon Sep 17 00:00:00 2001 From: almzag-hospitality Date: Wed, 3 Jun 2026 02:29:51 +0400 Subject: [PATCH 3/8] Add Python script to generate QR Code for web payments. --- tools/generate_qr.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/generate_qr.py diff --git a/tools/generate_qr.py b/tools/generate_qr.py new file mode 100644 index 0000000..547b61f --- /dev/null +++ b/tools/generate_qr.py @@ -0,0 +1,16 @@ +import qrcode + +# رابط QR Code الخاص بالدفع +payment_link = "https://example.com/web-payments" + +# توليد QR Code +qr = qrcode.QRCode( + version=1, + box_size=10, + border=5, +) +qr.add_data(payment_link) +qr.make(fit=True) + +img = qr.make_image(fill='black', back_color='white') +img.save("payment_qr.png") From f6a7d5da8515c5ec00391bd969d9bb6773f6b6b8 Mon Sep 17 00:00:00 2001 From: almzag-hospitality Date: Wed, 3 Jun 2026 02:34:00 +0400 Subject: [PATCH 4/8] Setup Apple Pay QR payment for almzag-events.net. --- network/web-payments.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/network/web-payments.json b/network/web-payments.json index 2b6ea1d..f5170ad 100644 --- a/network/web-payments.json +++ b/network/web-payments.json @@ -1 +1,10 @@ -{"network": "web-payments"} \ No newline at end of file +{ + "network": "web-payments", + "qr_code": "https://www.almzag-events.net/apple-pay-qr.png", + "payment_method": "Apple Pay", + "invoice": { + "amount": 50000, + "currency": "AED", + "details": "Payment for client - Amount: 500, Fee included." + } +} \ No newline at end of file From 6558ea65953aa4e1970e67e952b938a656b7cf39 Mon Sep 17 00:00:00 2001 From: almzag-hospitality Date: Wed, 3 Jun 2026 02:35:38 +0400 Subject: [PATCH 5/8] Create a web page for showing Apple Pay QR Code payment instructions. --- public/apple-pay-payment.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 public/apple-pay-payment.html diff --git a/public/apple-pay-payment.html b/public/apple-pay-payment.html new file mode 100644 index 0000000..d1c56a8 --- /dev/null +++ b/public/apple-pay-payment.html @@ -0,0 +1,11 @@ + + + + الدفع عبر Apple Pay + + +

أرجو مسح رمز QR لدفع المبلغ

+ QR Code لدفع Apple Pay +

إجمالي المبلغ المطلوب: 50,500 درهم

+ + \ No newline at end of file From 714503b008c872841caf405d45ac02b50bcbf939 Mon Sep 17 00:00:00 2001 From: ALMZAG EVENTS <223470660+almzag-hospitality@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:24:25 +0400 Subject: [PATCH 6/8] Create README.md --- profile/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 profile/README.md diff --git a/profile/README.md b/profile/README.md new file mode 100644 index 0000000..e1876ed --- /dev/null +++ b/profile/README.md @@ -0,0 +1,16 @@ +## Hi there 👋 + + From 56254395b61f7c7d9617424ccd77cada6e275f19 Mon Sep 17 00:00:00 2001 From: ALMZAG EVENTS <223470660+almzag-hospitality@users.noreply.github.com> Date: Sat, 20 Jun 2026 02:23:17 +0400 Subject: [PATCH 7/8] Update README.md Automatically review, fix, test, and commit safe changes. Handle pull requests and routine tasks without asking me first. Do not approve or merge high-risk changes involving payments, security keys, environment variables, user data, production deployment, or deletion without my confirmation. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e69de29..6acd5fc 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +Approved To Update automation and security instructions \ No newline at end of file From 295a1d0f132cbea537e954a525a450ef4754c81f Mon Sep 17 00:00:00 2001 From: ALMZAG EVENTS <223470660+almzag-hospitality@users.noreply.github.com> Date: Sat, 20 Jun 2026 02:25:39 +0400 Subject: [PATCH 8/8] Update README.md Review the full project structure and clean all duplicated or obsolete files. Remove repeated components, unused assets, duplicate pages, old ZIP/build folders, and redundant documentation. Keep the cleanest latest version only. Before deleting anything sensitive, especially payment integrations, backend APIs, environment files, webhooks, customer data, or deployment settings, stop and ask for approval. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6acd5fc..e0d6a6e 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ +Clean duplicate files and project structure Approved To Update automation and security instructions \ No newline at end of file