-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mark Whalley
committed
Feb 18, 2022
1 parent
328f10d
commit 48be1cb
Showing
48 changed files
with
416 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Determine build details | ||
|
||
let osDetails = { | ||
icon: 'fa-question-circle', | ||
name: 'Unknown OS' | ||
}; | ||
|
||
if (navigator.userAgent.indexOf('Win') != -1) { | ||
osDetails.icon = 'fa-windows'; | ||
if (navigator.userAgent.indexOf('x64') != -1) | ||
{ | ||
osDetails.name ='Windows 64' | ||
} else { | ||
osDetails.name = 'Windows 32' | ||
} | ||
} | ||
|
||
if (navigator.userAgent.indexOf('Mac') != -1) | ||
{ | ||
osDetails.icon = 'fa-apple'; | ||
osDetails.name = 'MacOS' | ||
} | ||
|
||
if (navigator.userAgent.indexOf('like Mac') != -1) | ||
{ | ||
osDetails.icon = 'fa-question-circle'; | ||
osDetails.name = 'Unknown OS' | ||
} | ||
|
||
updateOsDownloadButton(osDetails); | ||
|
||
|
||
function updateOsDownloadButton(osDetails) { | ||
let iconHtml = '<i class="fa-brands ' + osDetails.icon + '"></i>' | ||
document.querySelector('.btn-download-os').innerHTML = iconHtml + ' Download for ' + osDetails.name | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -199,4 +199,4 @@ $input-btn-focus-width: 0; | |
height: 3rem; | ||
width: 3rem; | ||
font-size: 1.5rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
--- | ||
title : "MoneyManager Ex" | ||
description: "Free, easy-to-use, personal finance software" | ||
lead: "Free, easy-to-use, personal finance software" | ||
date: 2020-10-06T08:47:36+00:00 | ||
lastmod: 2020-10-06T08:47:36+00:00 | ||
description: "Open-source, cross-platform, software that helps you organize your finances and keep track of where, when and to who the money goes. It is also a great tool to get a bird's eye view of your financial worth." | ||
date: 2022-02-18 | ||
draft: false | ||
images: [] | ||
--- | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
--- | ||
title: "Blog" | ||
description: "The MMEX Blog" | ||
date: 2020-10-06T08:49:55+00:00 | ||
lastmod: 2020-10-06T08:49:55+00:00 | ||
date: 2022-02-18 | ||
draft: false | ||
images: [] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
--- | ||
title : "Docs" | ||
description: "Docs Doks." | ||
description: "Docs" | ||
lead: "" | ||
date: 2020-10-06T08:48:23+00:00 | ||
lastmod: 2020-10-06T08:48:23+00:00 | ||
date: 2022-02-18 | ||
draft: false | ||
images: [] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.