Skip to content

Commit 4a3dd53

Browse files
committed
1 parent 7cc1cd3 commit 4a3dd53

File tree

92 files changed

+172
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+172
-172
lines changed

android/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
<span>Cryptomator on GitHub</span></a></div></nav><div class="bg-gray-100 min-h-[80vh] pt-24 md:pt-18"><div class="container py-12"><header class=mb-6><h1 class="font-h1 mb-8">Cryptomator for Android</h1><p class=lead>Purchase Cryptomator for Android without going through Google Play.</p></header><div class="rounded-md bg-blue-100 p-4 mb-6"><div class="flex items-center"><div class=shrink-0><i class="fa-solid fa-info-circle text-blue-500"></i></div><div class="ml-3 text-sm text-dark"><p>The Android license key is only valid for the sources mentioned here. It is not valid for the version on Google Play and also not for Desktop or iOS. A detailed comparison of all variants can be found in our <a class="text-blue-500 no-underline hover:underline" href=https://docs.cryptomator.org/android/setup/>docs</a>.</p></div></div></div><div class="flex flex-col space-y-6 md:flex-row md:space-x-6 md:space-y-0"><section class="w-full md:w-1/2"><div x-data="{checkoutData: {price: null, email: '', errorMessage: '', success: false, inProgress: false, licenseKey: null, acceptNewsletter: false}, acceptTerms: false, androidLicense: null}" x-init="androidLicense = new AndroidLicense($refs.form, checkoutData); androidLicense.loadPrice()" class=white-box><div class="px-4 py-2 border-b border-primary text-center"><h3 class="font-h3 text-lg">Buy a license key</h3></div><form x-show=!checkoutData.success x-ref=form class="px-4 py-8"><div class=mb-4><label class="label-uppercase mb-2">Price</label><div class="relative input-box flex items-center gap-2 w-full lg:w-1/2"><span x-show="checkoutData.price && checkoutData.price.amount != checkoutData.price.listAmount" x-text="checkoutData.price ? checkoutData.price.listAmount.toLocaleString('en', { style: 'currency', currency: checkoutData.price.currency }) : '…'" class="text-gray-500 line-through decoration-red-600" x-cloak></span>
3030
<span x-text="checkoutData.price ? checkoutData.price.amount.toLocaleString('en', { style: 'currency', currency: checkoutData.price.currency }) : '…'"></span>
3131
<span x-show="checkoutData.price && checkoutData.price.amount != checkoutData.price.listAmount" class="absolute top-0 left-0 -translate-2 -rotate-5 px-1 rounded-xs text-xs text-white bg-red-600 z-10" x-cloak>-<span x-text="checkoutData.price && checkoutData.price.listAmount > 0 ? ((1 - checkoutData.price.amount / checkoutData.price.listAmount) * 100).toFixed(0) : '0'"></span>%</span></div></div><div class=mb-4><label class="label-uppercase mb-2">Email</label>
32-
<input x-model=checkoutData.email x-ref=email @blur="$refs.email.classList.add('show-invalid')" type=email class="input-box w-full" placeholder="Email address" required></div><div class="text-center mt-8"><p class="font-p mb-4">Payments are securely handled by Paddle.</p><p class="font-p mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-652834719 x-model=acceptTerms>
33-
<label for=id-652834719>I accept the <a class=text-link href=/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p mb-4"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-738496152 x-model=checkoutData.acceptNewsletter>
34-
<label for=id-738496152>I agree to get updates from Cryptomator via email (optional).</label></p><button :disabled="checkoutData.inProgress || !acceptTerms" @click.prevent="androidLicense.checkout('en')" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=android-getkey-checkout>
32+
<input x-model=checkoutData.email x-ref=email @blur="$refs.email.classList.add('show-invalid')" type=email class="input-box w-full" placeholder="Email address" required></div><div class="text-center mt-8"><p class="font-p mb-4">Payments are securely handled by Paddle.</p><p class="font-p mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-215893476 x-model=acceptTerms>
33+
<label for=id-215893476>I accept the <a class=text-link href=/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p mb-4"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-134782569 x-model=checkoutData.acceptNewsletter>
34+
<label for=id-134782569>I agree to get updates from Cryptomator via email (optional).</label></p><button :disabled="checkoutData.inProgress || !acceptTerms" @click.prevent="androidLicense.checkout('en')" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=android-getkey-checkout>
3535
<i x-show=!checkoutData.inProgress class="fa-solid fa-shopping-cart" aria-hidden=true></i><i x-show=checkoutData.inProgress class="fa-solid fa-spinner fa-spin" aria-hidden=true></i> Checkout</button><p :class="{'hidden': !checkoutData.errorMessage}" class="text-sm text-red-600 mt-2" x-text=checkoutData.errorMessage></p></div></form><div x-show=checkoutData.success x-cloak class="px-4 py-8"><h3 class="font-h3 mb-4">👍 Your payment was successful!</h3><label class="label-uppercase mb-2">License Key</label>
3636
<textarea x-model=checkoutData.licenseKey class="input-box w-full text-sm md:text-base leading-relaxed break-all mb-2" rows=6 placeholder=Loading… readonly></textarea><p :class="{'hidden': !checkoutData.errorMessage}" class="text-sm text-red-600 mb-2" x-text=checkoutData.errorMessage></p><p class=font-p>This is your license key. Enter it in the Cryptomator app. The license key has also been sent to your email address.</p></div></div></section><div class="flex flex-col space-y-6 w-full md:w-1/2"><section><div class=text-center itemscope itemtype=http://schema.org/SoftwareApplication><meta itemprop=name content="Cryptomator"><meta itemprop=description content="A free software to encrypt your cloud files."><meta itemprop=applicationCategory content="Productivity"><meta itemprop=softwareVersion content="1.11.1"><meta itemprop=applicationSubCategory content="Encryption"><meta itemprop=image content="https://staging.cryptomator.org/img/logo.png"><meta itemprop=operatingSystem content="Android"><div class=white-box><div class="px-4 py-2 border-b border-primary"><h3 class="font-h3 text-lg">Download APK</h3></div><div class="px-4 py-8" x-data="{showShaSignature: false}"><p class="font-p text-sm mb-4">Version 1.11.1 • Minimum: Android 8.0</p><a class="btn btn-primary w-full md:w-56 mb-2" href=https://static.cryptomator.org/android/1.11.1/Cryptomator-1.11.1.apk role=button data-umami-event=android-download><span class="fa-solid fa-download" aria-hidden=true></span> Download
3737
</a><a class="block text-link text-xs" href=# data-umami-event=android-download-sha256-signature @click.prevent="showShaSignature = !showShaSignature"><i :class="{ 'fa-eye': !showShaSignature, 'fa-eye-slash': showShaSignature }" class=fa-solid></i> SHA256 Signature</a><div x-show=showShaSignature x-cloak class=mt-4><p class="font-p text-xs"><code class="font-code break-all">cd779e929277920e65b282f166e9c693fe560927215428796e100bcc7427132a</code></p></div></div></div></div></section><section><div class=text-center itemscope itemtype=http://schema.org/SoftwareApplication x-data="{fdroidVariant: 'cryptomator-repo'}"><meta itemprop=name content="Cryptomator"><meta itemprop=description content="A free software to encrypt your cloud files."><meta itemprop=applicationCategory content="Productivity"><meta itemprop=softwareVersion content="1.11.1"><meta itemprop=applicationSubCategory content="Encryption"><meta itemprop=image content="https://staging.cryptomator.org/img/logo.png"><meta itemprop=operatingSystem content="Android"><div class=white-box><div class="px-4 py-2 border-b border-primary"><h3 class="font-h3 text-lg">Get it on F-Droid</h3></div><div class="flex justify-center p-4"><button class="w-1/2 ms:w-1/4 p-2 border border-gray-300 rounded-l bg-gray-300 text-gray-700 hover:border-gray-400 hover:bg-gray-400 focus:bg-gray-400 focus:border-secondary" data-umami-event=android-fdroid-cryptomator-repo-tab :class="{'border-gray-400 bg-gray-400 text-gray-800 font-medium': fdroidVariant === 'cryptomator-repo'}" @click="fdroidVariant = 'cryptomator-repo'">

become-a-partner/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
</label><input type=text id=company name=company x-model=submitData.company class="block input-box w-full" maxlength=200 required aria-required=true @blur="$el.classList.add('show-invalid')"></div><div class=mb-6><label for=website class="block text-sm font-medium text-gray-700 mb-2">Company Website (optional)
3434
</label><input type=url id=website name=website x-model=submitData.website class="block input-box w-full" maxlength=200 placeholder=https://></div><div class=mb-6><label for=partnershipType class="block text-sm font-medium text-gray-700 mb-2">Partnership Type
3535
</label><select id=partnershipType name=partnershipType x-model=submitData.partnershipType class="block input-box w-full"><option value>Please select a partnership type</option><option value=reseller>Reseller Partner</option><option value=technology>Technology Partner</option><option value=consulting>Consulting Partner</option><option value=distribution>Distribution Partner</option><option value=other>Other</option></select></div><div class=mb-6><label for=message class="block text-sm font-medium text-gray-700 mb-2">Partnership Description
36-
</label><textarea id=message name=message x-model=submitData.message rows=4 class="block input-box w-full" maxlength=2000 placeholder="Please describe your company, services, and how you would like to partner with Cryptomator..."></textarea></div><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-517498623 x-model=acceptTerms>
37-
<label for=id-517498623>I accept the <a class=text-link href=/hub/managed/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-961845372 x-model=submitData.acceptNewsletter>
38-
<label for=id-961845372>I agree to get updates from Cryptomator Hub via email (optional).</label></p><div class=mt-8><p :class="{'hidden': !feedbackData.errorMessage}" class="text-sm text-red-600 mb-2" x-text=feedbackData.errorMessage></p><button :disabled="feedbackData.inProgress || !acceptTerms || captchaState == 'verifying'" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=become-partner-form x-cloak>
36+
</label><textarea id=message name=message x-model=submitData.message rows=4 class="block input-box w-full" maxlength=2000 placeholder="Please describe your company, services, and how you would like to partner with Cryptomator..."></textarea></div><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-952763841 x-model=acceptTerms>
37+
<label for=id-952763841>I accept the <a class=text-link href=/hub/managed/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-325748961 x-model=submitData.acceptNewsletter>
38+
<label for=id-325748961>I agree to get updates from Cryptomator Hub via email (optional).</label></p><div class=mt-8><p :class="{'hidden': !feedbackData.errorMessage}" class="text-sm text-red-600 mb-2" x-text=feedbackData.errorMessage></p><button :disabled="feedbackData.inProgress || !acceptTerms || captchaState == 'verifying'" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=become-partner-form x-cloak>
3939
<i :class="{'fa-paper-plane': !feedbackData.inProgress, 'fa-spinner fa-spin': feedbackData.inProgress}" class=fa-solid aria-hidden=true></i>
4040
Submit Request
4141
</button>

book-a-demo/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
<span class="text-sm text-gray-700">Procurement</span>
5050
</label><label class="flex items-start"><input type=checkbox name=attendees[] value=not-sure x-model=submitData.attendees class="mr-3 mt-0.5 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary">
5151
<span class="text-sm text-gray-700">Not sure</span></label></div></fieldset></div><div class=mb-6><label for=message class="block text-sm font-medium text-gray-700 mb-2">Message
52-
</label><textarea id=message name=message x-model=submitData.message rows=4 class="block input-box w-full" maxlength=2000 placeholder="Tell us more about your specific needs or questions..."></textarea></div><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-679325481 x-model=acceptTerms>
53-
<label for=id-679325481>I accept the <a class=text-link href=/hub/managed/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-143856279 x-model=submitData.acceptNewsletter>
54-
<label for=id-143856279>I agree to get updates from Cryptomator Hub via email (optional).</label></p><div class=mt-8><p :class="{'hidden': !feedbackData.errorMessage}" class="text-sm text-red-600 mb-2" x-text=feedbackData.errorMessage></p><button :disabled="feedbackData.inProgress || !acceptTerms || captchaState == 'verifying'" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=book-demo-form x-cloak>
52+
</label><textarea id=message name=message x-model=submitData.message rows=4 class="block input-box w-full" maxlength=2000 placeholder="Tell us more about your specific needs or questions..."></textarea></div><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-387624915 x-model=acceptTerms>
53+
<label for=id-387624915>I accept the <a class=text-link href=/hub/managed/terms/ target=_blank>Terms & Conditions</a> as well as the <a class=text-link href=/privacy/ target=_blank>Privacy Policy</a>.</label></p><p class="font-p text-sm mb-2"><input class="mr-1 rounded-sm text-primary focus:ring-0 focus:ring-offset-0 focus:border-secondary" type=checkbox id=id-527843619 x-model=submitData.acceptNewsletter>
54+
<label for=id-527843619>I agree to get updates from Cryptomator Hub via email (optional).</label></p><div class=mt-8><p :class="{'hidden': !feedbackData.errorMessage}" class="text-sm text-red-600 mb-2" x-text=feedbackData.errorMessage></p><button :disabled="feedbackData.inProgress || !acceptTerms || captchaState == 'verifying'" type=submit class="btn btn-primary w-full md:w-64" data-umami-event=book-demo-form x-cloak>
5555
<i :class="{'fa-paper-plane': !feedbackData.inProgress, 'fa-spinner fa-spin': feedbackData.inProgress}" class=fa-solid aria-hidden=true></i>
5656
Book Demo
5757
</button>

categories/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Cryptomator Blog</title><description>Recent Blog Posts on cryptomator.org</description><link>https://staging.cryptomator.org/categories/</link><language>en</language><atom:link href="https://staging.cryptomator.org/feed.xml" rel="self" type="application/rss+xml"/><image><url>https://staging.cryptomator.org/img/logo.png</url><title>Cryptomator Blog</title><link>https://staging.cryptomator.org/categories/</link></image><lastBuildDate>Fri, 26 Sep 2025 12:34:25 +0000</lastBuildDate><generator>Hugo</generator><item><title>Cryptomator Desktop 1.18.0 Beta – Try it now!</title><description>&lt;figure class="text-center">
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Cryptomator Blog</title><description>Recent Blog Posts on cryptomator.org</description><link>https://staging.cryptomator.org/categories/</link><language>en</language><atom:link href="https://staging.cryptomator.org/feed.xml" rel="self" type="application/rss+xml"/><image><url>https://staging.cryptomator.org/img/logo.png</url><title>Cryptomator Blog</title><link>https://staging.cryptomator.org/categories/</link></image><lastBuildDate>Fri, 26 Sep 2025 12:50:32 +0000</lastBuildDate><generator>Hugo</generator><item><title>Cryptomator Desktop 1.18.0 Beta – Try it now!</title><description>&lt;figure class="text-center">
22
&lt;img class="inline-block rounded-sm" src="https://staging.cryptomator.org/img/blog/desktop-1-18-0.png" alt="Cryptomator Desktop 1.18.0 Beta" />
33
&lt;/figure>
44
&lt;p>The next release of Cryptomator Desktop is right around the corner – and before we publish the final version, we&amp;rsquo;d like to invite you to test the beta of version 1.18.0. Along with useful new features and important bug fixes, this release also comes with a special call to our community.&lt;/p>

0 commit comments

Comments
 (0)