Skip to content

Commit fa596c7

Browse files
committed
Merge branch 'develop' into feature/subpage-for-teams
2 parents e4b35d6 + 9cf7934 commit fa596c7

32 files changed

+355
-39
lines changed

assets/css/custom.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ ul.list-primary li::marker {
140140
}
141141

142142
.input-box {
143-
@apply rounded-sm border-gray-300 focus:ring-0 focus:border-secondary;
143+
@apply rounded-sm border border-gray-300 focus:ring-0 focus:border-secondary px-3 py-2;
144144
}
145145

146146
.pre-box {
@@ -200,7 +200,7 @@ textarea:read-only {
200200
[id]::before {
201201
content: '';
202202
display: block;
203-
height: 96px;
204-
margin-top: -96px;
203+
height: 138px;
204+
margin-top: -138px;
205205
visibility: hidden;
206206
}

assets/js/androidkey.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,18 @@ class AndroidLicense {
2121
}
2222

2323
loadPrice() {
24-
this._paddle.then(paddle => {
25-
paddle.Product.Prices(PADDLE_ANDROID_PRODUCT_ID, prices => {
26-
this._checkoutData.price = prices.price.gross;
27-
});
24+
$.ajax({
25+
url: PADDLE_PRICES_URL,
26+
dataType: 'jsonp',
27+
data: {
28+
product_ids: PADDLE_ANDROID_PRODUCT_ID
29+
},
30+
}).done(data => {
31+
this._checkoutData.price = {
32+
amount: data.response.products[0].price.gross,
33+
listAmount: data.response.products[0].list_price.gross,
34+
currency: data.response.products[0].currency
35+
};
2836
});
2937
}
3038

assets/js/desktopkey.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class DesktopLicense {
3232
return {
3333
productId: product.product_id,
3434
amount: product.price.gross,
35+
listAmount: product.list_price.gross,
3536
currency: product.currency
3637
}
3738
});
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: "Cryptomator 2.7.0 für iOS: Jetzt mit SharePoint-Integration!"
3+
slug: ios-2.7.0
4+
date: 2025-03-19
5+
tags: [cryptomator, ios]
6+
7+
summary: "Mit Cryptomator 2.7.0 für iOS kannst du jetzt deine Dateien in Microsoft SharePoint und Teams mit Ende-zu-Ende-Verschlüsselung sichern und so die volle Kontrolle über deine sensiblen Daten in Microsoft 365 behalten."
8+
9+
ogimage:
10+
relsrc: /img/blog/[email protected]
11+
width: 1472
12+
height: 736
13+
---
14+
15+
Wir freuen uns, ein wichtiges Update für die Cryptomator iOS-App anzukündigen: **Ab sofort unterstützt Cryptomator SharePoint!** Dies bedeutet nicht nur, dass Unternehmen und Organisationen ihre verschlüsselten Tresore direkt in SharePoint speichern können, sondern auch, dass **Microsoft Teams mit Cryptomator genutzt werden kann**. Da Dateien in Teams standardmäßig in SharePoint gespeichert werden, können Nutzer:innen ihre Team-Dokumente nun mit **Ende-zu-Ende-Verschlüsselung** schützen.
16+
17+
<figure class="text-center">
18+
<a href="https://apps.apple.com/de/app/cryptomator/id1560822163" target="_blank" rel="noopener">
19+
<img class="inline-block rounded-sm" src="/img/blog/ios-2.7.0.png" srcset="/img/blog/ios-2.7.0.png 1x, /img/blog/[email protected] 2x" alt="Screenshot von Cryptomator für iOS zeigt den neuen SharePoint (inkl. Microsoft Teams) Eintrag" />
20+
</a>
21+
</figure>
22+
23+
## Warum ist das wichtig?
24+
25+
Unternehmen, Universitäten und NGOs setzen zunehmend auf Cloud-Dienste wie Microsoft 365, um flexibel und effizient zusammenzuarbeiten. Mit der SharePoint-Integration können Nutzende jetzt sicherstellen, dass **sensible Dokumente nicht nur in der Cloud gespeichert, sondern auch mit Zero-Knowledge-Verschlüsselung geschützt werden**. Selbst Microsoft hat keinen Zugriff auf die unverschlüsselten Inhalte.
26+
27+
## So funktioniert die Integration mit SharePoint
28+
29+
Die Nutzung von Cryptomator mit SharePoint ist genauso einfach wie mit anderen Cloud-Diensten:
30+
31+
- **Neuen Vault erstellen oder bestehenden Vault hinzufügen:** Wähle SharePoint als Speicherort in der Cryptomator iOS-App.
32+
- **Verschlüsselte Dateien in Microsoft 365 nutzen:** Arbeite sicher mit verschlüsselten Dokumenten innerhalb von SharePoint oder Microsoft Teams.
33+
- **Flexibler Zugriff auf allen Geräten:** Deine verschlüsselten Dateien sind sowohl auf dem Desktop als auch mobil abrufbar.
34+
35+
## Maximale Sicherheit für Microsoft 365-Nutzer
36+
37+
Die Integration von SharePoint in Cryptomator 2.7.0 ist ein **entscheidender Schritt für Unternehmen, die Datenschutz und Compliance ernst nehmen**. Mit dieser Lösung kannst du:
38+
39+
- Die Sicherheit vertraulicher Daten erhöhen, ohne auf die Vorteile von Microsoft 365 zu verzichten.
40+
- Compliance-Anforderungen, wie die **DSGVO** oder **NIS-2**, einfacher erfüllen.
41+
- Die Kontrolle über deine sensiblen Informationen behalten, unabhängig davon, wo sie gespeichert sind.
42+
43+
## Jetzt ausprobieren!
44+
45+
Das **neue Update 2.7.0 ist ab sofort [im App Store](https://apps.apple.com/de/app/cryptomator/id1560822163)** verfügbar. Aktualisiere deine Cryptomator iOS-App und **nutze SharePoint für maximale Sicherheit in der Cloud**!
46+
47+
Hast du Fragen oder Feedback? Wir freuen uns auf den Austausch mit unserer Community!
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: "Cryptomator 2.7.0 for iOS: Now with SharePoint Integration!"
3+
slug: ios-2.7.0
4+
date: 2025-03-19
5+
tags: [cryptomator, ios]
6+
7+
summary: "With Cryptomator 2.7.0 for iOS, you can now securely encrypt your files in Microsoft SharePoint and Teams with end-to-end encryption, ensuring full control over your sensitive data within Microsoft 365."
8+
9+
ogimage:
10+
relsrc: /img/blog/[email protected]
11+
width: 1472
12+
height: 736
13+
---
14+
15+
We’re excited to announce a major update for the Cryptomator iOS app: **Cryptomator now supports SharePoint!** This means that businesses and organizations can now store their encrypted vaults directly in SharePoint. Additionally, **Microsoft Teams is also supported**, as files in Teams are stored in SharePoint by default. With this integration, users can now protect their team documents with **end-to-end encryption**.
16+
17+
<figure class="text-center">
18+
<a href="https://apps.apple.com/us/app/cryptomator/id1560822163" target="_blank" rel="noopener">
19+
<img class="inline-block rounded-sm" src="/img/blog/ios-2.7.0.png" srcset="/img/blog/ios-2.7.0.png 1x, /img/blog/[email protected] 2x" alt="Screenshot of Cryptomator for iOS showing the new SharePoint (incl. Microsoft Teams) entry" />
20+
</a>
21+
</figure>
22+
23+
## Why is this important?
24+
25+
Companies, universities, and NGOs increasingly rely on cloud services like Microsoft 365 for flexible and efficient collaboration. With SharePoint integration, users can ensure that **sensitive documents are not only stored in the cloud but also protected with zero-knowledge encryption**. Even Microsoft has no access to the unencrypted content.
26+
27+
## How the SharePoint Integration Works
28+
29+
Using Cryptomator with SharePoint is just as easy as with other cloud services:
30+
31+
- **Create a new vault or add an existing one**: Select SharePoint as the storage location in the Cryptomator iOS app.
32+
- **Work securely with encrypted files in Microsoft 365**: Access your protected documents within SharePoint or Microsoft Teams.
33+
- **Flexible access across all devices**: Your encrypted files are available on both desktop and mobile devices.
34+
35+
## Maximum Security for Microsoft 365 Users
36+
37+
The integration of SharePoint in Cryptomator 2.7.0 is a **major step forward for businesses that prioritize data protection and compliance**. With this solution, you can:
38+
39+
- Enhance the security of confidential data while continuing to benefit from Microsoft 365.
40+
- Meet compliance requirements such as **GDPR** and **NIS-2** more easily.
41+
- Maintain full control over your sensitive information, no matter where it is stored.
42+
43+
## Try It Now!
44+
45+
The **new 2.7.0 update is now available [on the App Store](https://apps.apple.com/us/app/cryptomator/id1560822163)**. Update your Cryptomator iOS app today and enjoy **secure SharePoint encryption in the cloud**!
46+
47+
Do you have any questions or feedback? We’d love to hear from our community!
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: "Spring Sale: 25 %* Rabatt auf Cryptomator – Bis zum World Backup Day!"
3+
slug: spring-sale
4+
date: 2025-03-20
5+
notice: "*Hinweis: Der Rabatt und der Preis können je nach Region variieren."
6+
tags: [cryptomator, sale]
7+
8+
summary: "Der Spring Sale ist da! Spare 25 % auf Cryptomator und Cryptomator Hub vom 20. bis 31. März – pünktlich zum World Backup Day! Sichere deine Daten mit Zero-Knowledge-Verschlüsselung zum einmaligen Preis."
9+
10+
ogimage:
11+
relsrc: /img/blog/spring-2025-sale.png
12+
width: 1200
13+
height: 675
14+
---
15+
16+
Der Frühling ist da – und mit ihm unser Spring Sale! Vom 20. bis 31. März erhaltet ihr 25 %\* Rabatt auf alle kostenpflichtigen Cryptomator-Versionen sowie auf das Supporter Certificate.
17+
18+
Jetzt [Cryptomator](/de/for-individuals/) sichern – für nur 14,99 €\*!
19+
20+
Auch [Cryptomator Hub](/de/for-teams/) gibt es für das erste Jahr 25 %\* günstiger! Kontaktiert uns für genauere Konditionen oder werft einen Blick in unsere [Preisliste](/de/pricing/).
21+
22+
<figure class="text-center">
23+
<a href="/de/pricing/" target="_blank" rel="noopener">
24+
<img class="inline-block rounded-sm" src="/img/blog/spring-2025-sale.png" alt="25 % Rabatt auf Cryptomator" />
25+
</a>
26+
</figure>
27+
28+
## Warum jetzt der beste Zeitpunkt ist
29+
30+
Am 31. März ist World Backup Day – die perfekte Gelegenheit, um eure Daten nicht nur zu sichern, sondern auch zu verschlüsseln! Denn ein Backup allein schützt nicht vor unbefugtem Zugriff. Erst mit einer starken Verschlüsselung bleibt eure Privatsphäre wirklich gewahrt.
31+
32+
Macht den World Backup Day zum Anlass, eure Datensicherheit auf das nächste Level zu heben!
33+
34+
### Warum Cryptomator?
35+
36+
- Einfache Ende-zu-Ende-Verschlüsselung für Cloud-Dienste wie Dropbox, Google Drive, OneDrive oder iCloud Drive.
37+
- Open Source für volle Transparenz und Sicherheit.
38+
- Plattformübergreifend nutzbar auf Windows, macOS, Linux, Android und iOS.
39+
- Kein Abo, keine versteckten Kosten – einmal zahlen, dauerhaft nutzen!
40+
41+
### Warum Cryptomator Hub?
42+
43+
- Zentrale Verwaltung verschlüsselter Tresore für Teams und Unternehmen.
44+
- Zugriffsrechte flexibel steuern – ideal für NGOs, Forschungseinrichtungen & Unternehmen.
45+
- Zero-Knowledge-Architektur – niemand außer euch hat Zugriff auf die verschlüsselten Daten.
46+
47+
## Jetzt zugreifen und sparen!
48+
49+
Der Spring Sale ist die perfekte Gelegenheit, um eure Cloud-Daten zu schützen – mit einer einmaligen Investition und ohne Abo-Modell. Sichert euch Cryptomator für nur 14,99 €\* oder nutze Cryptomator Hub für euer Team mit 25 %\* Rabatt im ersten Jahr.
50+
51+
Doch beeilt euch: Das Angebot gilt nur bis zum 31. März!
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: "Spring Sale: 25%* Off Cryptomator – Until World Backup Day!"
3+
slug: spring-sale
4+
date: 2025-03-20
5+
notice: "*Note: The discount and price may vary by region."
6+
tags: [cryptomator, sale]
7+
8+
summary: "Spring Sale is here! Get 25% off Cryptomator and Cryptomator Hub from March 20 to 31 – just in time for World Backup Day! Secure your data with zero-knowledge encryption at a one-time price."
9+
10+
ogimage:
11+
relsrc: /img/blog/spring-2025-sale.png
12+
width: 1200
13+
height: 675
14+
---
15+
16+
Spring is here – and so is our Spring Sale! From March 20 to 31, get 25%\* off all paid Cryptomator versions and the Supporter Certificate.
17+
18+
Get [Cryptomator](/for-individuals/) now – for only €14.99!\*
19+
20+
[Cryptomator Hub](/for-teams/) is also 25%\* off for the first year! Contact us for more details or check out our [pricing](/pricing/).
21+
22+
<figure class="text-center">
23+
<a href="/pricing/" target="_blank" rel="noopener">
24+
<img class="inline-block rounded-sm" src="/img/blog/spring-2025-sale.png" alt="25% Off Cryptomator" />
25+
</a>
26+
</figure>
27+
28+
## Why Now Is the Best Time
29+
30+
March 31 is World Backup Day – the perfect opportunity to not only back up your data but also encrypt it! After all, a backup alone won’t protect you from unauthorized access. Only strong encryption truly safeguards your privacy.
31+
32+
Take World Backup Day as an opportunity to level up your data security!
33+
34+
### Why Cryptomator?
35+
36+
- Simple end-to-end encryption for cloud services like Dropbox, Google Drive, OneDrive, and iCloud Drive.
37+
- Open source for full transparency and security.
38+
- Available on Windows, macOS, Linux, Android, and iOS.
39+
- No subscription, no hidden costs – pay once, use forever!
40+
41+
### Why Cryptomator Hub?
42+
43+
- Centralized management of encrypted vaults for teams and organizations.
44+
- Flexible access control – ideal for NGOs, research institutions, and companies.
45+
- Zero-knowledge architecture – no one but you can access your encrypted data.
46+
47+
## Get It Now and Save!
48+
49+
The Spring Sale is the perfect opportunity to protect your cloud data – with a one-time purchase and no subscription model. Get Cryptomator for just €14.99\* or enjoy 25%\* off Cryptomator Hub for your team in the first year.
50+
51+
But hurry – this offer is only valid until March 31!

content/downloads/android.de.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ <h3 class="font-h3 text-lg">Google Play</h3>
2222
<a href="https://play.google.com/store/apps/details?id=org.cryptomator&hl=de" role="button" class="plausible-event-name=downloads-android-googleplay" data-umami-event="downloads-android-googleplay">
2323
<img class="h-10 mx-auto lazyload" data-src="/de/img/downloads/googleplay-badge.png">
2424
</a>
25+
<p class="text-sm md:text-base leading-relaxed text-gray-700 rounded bg-primary-l2 p-2 mt-4">🌸 Der Einmalpreis ist um 25 %* reduziert!</p>
2526
</div>
2627
</div>
28+
<p class="prose prose-sm max-w-none">*Hinweis: Die Höhe des Rabatts kann je nach Region variieren.</p>
2729

2830
<div class="white-box my-4">
2931
<div class="px-4 py-2 border-b border-primary">

content/downloads/android.en.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ <h3 class="font-h3 text-lg">Google Play</h3>
2424
<a href="https://play.google.com/store/apps/details?id=org.cryptomator&hl=en" role="button" class="plausible-event-name=downloads-android-googleplay" data-umami-event="downloads-android-googleplay">
2525
<img class="h-10 mx-auto lazyload" data-src="/img/downloads/googleplay-badge.png">
2626
</a>
27+
<p class="text-sm md:text-base leading-relaxed text-gray-700 rounded bg-primary-l2 p-2 mt-4">🌸 One-time price is 25%* off!</p>
2728
</div>
2829
</div>
30+
<p class="prose prose-sm max-w-none">*Note: The discount amount may vary by region.</p>
2931

3032
<div class="white-box my-4">
3133
<div class="px-4 py-2 border-b border-primary">

content/downloads/ios.de.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ <h3 class="font-h3 text-lg">App Store</h3>
2323
<img class="h-10 mx-auto mb-4 lazyload" data-src="/de/img/downloads/appstore-badge.svg">
2424
</a>
2525
<p class="font-p text-sm">Eine Vollversion ohne In-App-Käufe für Apple School/Business Manager ist <a class="text-link" href="https://apps.apple.com/de/app/cryptomator-full-version/id1665616242">im App Store</a> erhältlich.</p>
26+
<p class="text-sm md:text-base leading-relaxed text-gray-700 rounded bg-primary-l2 p-2 mt-4">🌸 Die lebenslange Lizenz ist um 25 %* reduziert!</p>
2627
</div>
2728
</div>
29+
<p class="prose prose-sm max-w-none">*Hinweis: Die Höhe des Rabatts kann je nach Region variieren.</p>
2830
</div>

0 commit comments

Comments
 (0)