Skip to content
This repository was archived by the owner on Jul 12, 2021. It is now read-only.

Commit 81f77e6

Browse files
committed
Add back information about Mac App Store version
1 parent a6a4433 commit 81f77e6

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

website/index.html

-13
Original file line numberDiff line numberDiff line change
@@ -258,19 +258,6 @@ <h2>FAQ</h2>
258258
accessible on all other devices with the same setup.
259259
</p>
260260
</li>
261-
<li>
262-
<p class="faq-question">
263-
Why is the Mac App Store version not receiving updates anymore?
264-
</p>
265-
<p class="faq-answer">
266-
Since November 2019, Apple no longer accepts apps based on the Electron framework in
267-
its App Store. That's why the App Store version of Mini Diary unfortunately cannot be
268-
updated anymore. Mac users can uninstall the App Store version and reinstall the app
269-
from
270-
<a class="download-mac">here</a>. Your diary entries will be carried over
271-
automatically.
272-
</p>
273-
</li>
274261
</ul>
275262
</section>
276263
</main>

website/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const PLATFORM_EXTENSIONS: Partial<Record<Platform, Extension>> = {
4040
function getCurrentPlatform(): Platform {
4141
const userAgent = navigator.userAgent.toLowerCase();
4242
if (userAgent.match(/(mac|os x)/)) {
43-
return Platform.Mac;
43+
return Platform.Mas;
4444
}
4545
if (userAgent.match(/windows/)) {
4646
return Platform.Windows;

0 commit comments

Comments
 (0)