From 48be1cbd3931360b6c021918b1f81de8bc977d4d Mon Sep 17 00:00:00 2001 From: Mark Whalley Date: Fri, 18 Feb 2022 20:31:43 +0000 Subject: [PATCH] First public release --- archetypes/docs/_index.md | 3 +- archetypes/docs/lorem/_index.md | 3 +- archetypes/docs/lorem/ipsum/index.md | 3 +- assets/js/getplatform.js | 37 ++++ assets/scss/common/_variables.scss | 2 +- config/_default/params.toml | 19 +- content/en/_index.md | 7 +- content/en/blog/2020-10-30 Downtime/index.md | 1 - content/en/blog/_index.md | 3 +- content/en/contact/index.md | 3 +- content/en/contributors/_index.md | 10 -- .../en/contributors/henk-verlinde/_index.md | 12 -- content/en/docs/MMEX/_index.md | 3 +- content/en/docs/MMEX/contributors/index.md | 3 +- content/en/docs/MMEX/donate/index.md | 3 +- content/en/docs/MMEX/license/index.md | 3 +- content/en/docs/MMEX/press/index.md | 3 +- content/en/docs/MMEX/privacy/index.md | 3 +- content/en/docs/_index.md | 5 +- content/en/docs/downloads/_index.md | 3 +- content/en/docs/downloads/all/index.md | 46 +++-- .../en/docs/downloads/development/index.md | 27 ++- content/en/docs/downloads/latest/index.md | 15 +- content/en/docs/features/_index.md | 3 +- content/en/docs/features/accounts/index.md | 4 +- content/en/docs/features/android/index.md | 4 +- content/en/docs/features/assets/index.md | 4 +- content/en/docs/features/attachments/index.md | 4 +- content/en/docs/features/budgeting/index.md | 4 +- .../en/docs/features/crossplatform/index.md | 4 +- .../en/docs/features/generalreports/index.md | 4 +- .../en/docs/features/importexport/index.md | 4 +- .../en/docs/features/multilanguage/index.md | 4 +- content/en/docs/features/openSource/index.md | 4 +- content/en/docs/features/payees/index.md | 4 +- content/en/docs/features/repeating/index.md | 4 +- content/en/docs/features/stocks/index.md | 4 +- .../en/docs/features/transactions/index.md | 4 +- content/en/privacy-policy/index.md | 3 +- content/en/versions.md | 11 -- data/consent.yml | 9 + layouts/_default/baseof.html | 2 + layouts/index.html | 21 --- layouts/partials/consent.html | 166 ++++++++++++++++++ layouts/partials/header/header.html | 5 + layouts/partials/index/opening.html | 40 +++++ layouts/partials/index/platform.html | 50 ++++++ layouts/shortcodes/latestdownload.html | 1 + 48 files changed, 416 insertions(+), 168 deletions(-) create mode 100644 assets/js/getplatform.js delete mode 100644 content/en/contributors/_index.md delete mode 100644 content/en/contributors/henk-verlinde/_index.md delete mode 100644 content/en/versions.md create mode 100644 data/consent.yml create mode 100644 layouts/partials/consent.html create mode 100644 layouts/partials/index/opening.html create mode 100644 layouts/partials/index/platform.html create mode 100644 layouts/shortcodes/latestdownload.html diff --git a/archetypes/docs/_index.md b/archetypes/docs/_index.md index 3ed05403..b400a64e 100644 --- a/archetypes/docs/_index.md +++ b/archetypes/docs/_index.md @@ -2,8 +2,7 @@ title: "Docs" description: "" lead: "" -date: 2022-01-25T14:40:56+01:00 -lastmod: 2022-01-25T14:40:56+01:00 +date: 2022-02-18 draft: false images: [] type: docs diff --git a/archetypes/docs/lorem/_index.md b/archetypes/docs/lorem/_index.md index c1b50ae6..b4d93f26 100644 --- a/archetypes/docs/lorem/_index.md +++ b/archetypes/docs/lorem/_index.md @@ -2,8 +2,7 @@ title: "Lorem" description: "" lead: "" -date: 2022-01-25T14:41:21+01:00 -lastmod: 2022-01-25T14:41:21+01:00 +date: 2022-02-18 draft: false images: [] type: docs diff --git a/archetypes/docs/lorem/ipsum/index.md b/archetypes/docs/lorem/ipsum/index.md index 2cc63950..b8be3be5 100644 --- a/archetypes/docs/lorem/ipsum/index.md +++ b/archetypes/docs/lorem/ipsum/index.md @@ -2,8 +2,7 @@ title: "Ipsum" description: "" lead: "" -date: 2022-01-25T14:41:39+01:00 -lastmod: 2022-01-25T14:41:39+01:00 +date: 2022-02-18 draft: false images: [] type: docs diff --git a/assets/js/getplatform.js b/assets/js/getplatform.js new file mode 100644 index 00000000..a3e4753a --- /dev/null +++ b/assets/js/getplatform.js @@ -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 = '' + document.querySelector('.btn-download-os').innerHTML = iconHtml + ' Download for ' + osDetails.name +} + diff --git a/assets/scss/common/_variables.scss b/assets/scss/common/_variables.scss index ded1888b..730d983c 100644 --- a/assets/scss/common/_variables.scss +++ b/assets/scss/common/_variables.scss @@ -199,4 +199,4 @@ $input-btn-focus-width: 0; height: 3rem; width: 3rem; font-size: 1.5rem; -} +} \ No newline at end of file diff --git a/config/_default/params.toml b/config/_default/params.toml index 5951f1fb..e316990a 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -1,10 +1,13 @@ -# Meta Data for SEO ## Homepage title = "MoneyManager Ex" +lead = "Free, easy-to-use, personal finance software" +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." titleSeparator = "-" -titleAddition = "Money Manager Ex" -description = "Free, easy-to-use, personal finance software" + +## Latest MMEX build +mmexBuild = "1.5.13" +mmexBuildBase = "https://github.com/moneymanagerex/moneymanagerex/releases/download/" ## Documentation # docsVersion = "0.3" @@ -50,9 +53,9 @@ footer = "Powered by Gi copyRight = "Copyright (c) 2022 MoneyManager Ex" # Alert -alert = false +alert = true alertDismissable = true -alertText = "" +alertText = "This is a beta of the new MoneyMangerEx home page. Some features may be absent or not fully working yet." # Edit Page # repoHost [Github | Gitea | GitLab | Bitbucket | BitbucketServer ] is used for building the edit link based on git hoster @@ -68,15 +71,15 @@ lastMod = false lazySizes = true clipBoard = true instantPage = true - flexSearch = false + flexSearch = true darkMode = false bootStrapJs = true - breadCrumb = false + breadCrumb = true highLight = true kaTex = false multilingualMode = false docsVersioning = false - fullWidth = false + fullWidth = true [menu] [menu.section] diff --git a/content/en/_index.md b/content/en/_index.md index 9d19af9d..893c921d 100644 --- a/content/en/_index.md +++ b/content/en/_index.md @@ -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: [] ---- +--- \ No newline at end of file diff --git a/content/en/blog/2020-10-30 Downtime/index.md b/content/en/blog/2020-10-30 Downtime/index.md index 6c541da1..9dac97bd 100644 --- a/content/en/blog/2020-10-30 Downtime/index.md +++ b/content/en/blog/2020-10-30 Downtime/index.md @@ -3,7 +3,6 @@ title: "Explanation on Downtime" description: "A short explanation of what happened." lead: "A short explanation of what happened." date: 2020-10-30 -lastmod: 2020-10-30 draft: false weight: 50 images: ["mmex_vps_down.png"] diff --git a/content/en/blog/_index.md b/content/en/blog/_index.md index 13a8b2dd..a984083e 100644 --- a/content/en/blog/_index.md +++ b/content/en/blog/_index.md @@ -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: [] --- diff --git a/content/en/contact/index.md b/content/en/contact/index.md index 795089f6..432848ff 100644 --- a/content/en/contact/index.md +++ b/content/en/contact/index.md @@ -1,8 +1,7 @@ --- title: "Contact" description: "Drop us an email." -date: 2020-08-27T19:25:12+02:00 -lastmod: 2020-08-27T19:25:12+02:00 +date: 2022-02-18 draft: true images: [] --- diff --git a/content/en/contributors/_index.md b/content/en/contributors/_index.md deleted file mode 100644 index e225f344..00000000 --- a/content/en/contributors/_index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "Contributors" -description: "The Doks contributors." -date: 2020-10-06T08:50:29+00:00 -lastmod: 2020-10-06T08:50:29+00:00 -draft: false -images: [] ---- - -The Doks contributors. diff --git a/content/en/contributors/henk-verlinde/_index.md b/content/en/contributors/henk-verlinde/_index.md deleted file mode 100644 index f775534e..00000000 --- a/content/en/contributors/henk-verlinde/_index.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Henk Verlinde" -description: "Creator of Hyas." -date: 2020-10-06T08:50:45+00:00 -lastmod: 2020-10-06T08:50:45+00:00 -draft: false -images: [] ---- - -Creator of Hyas. - -[@HenkVerlinde](https://twitter.com/henkverlinde) diff --git a/content/en/docs/MMEX/_index.md b/content/en/docs/MMEX/_index.md index 9b426ca3..a26ed250 100644 --- a/content/en/docs/MMEX/_index.md +++ b/content/en/docs/MMEX/_index.md @@ -2,8 +2,7 @@ title : "MMEX" description: "MoneyManager Ex Docs" lead: "" -date: 2020-10-06T08:48:45+00:00 -lastmod: 2020-10-06T08:48:45+00:00 +date: 2022-02-18 draft: false images: [] --- diff --git a/content/en/docs/MMEX/contributors/index.md b/content/en/docs/MMEX/contributors/index.md index 5c6d7f25..f5e6b6bd 100644 --- a/content/en/docs/MMEX/contributors/index.md +++ b/content/en/docs/MMEX/contributors/index.md @@ -2,8 +2,7 @@ title: "Contributors" description: "List of key contributors" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: diff --git a/content/en/docs/MMEX/donate/index.md b/content/en/docs/MMEX/donate/index.md index b41a9e4f..3620e171 100644 --- a/content/en/docs/MMEX/donate/index.md +++ b/content/en/docs/MMEX/donate/index.md @@ -2,8 +2,7 @@ title: "Donate" description: "How to donate to the project" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: diff --git a/content/en/docs/MMEX/license/index.md b/content/en/docs/MMEX/license/index.md index b72133a2..49a29be4 100644 --- a/content/en/docs/MMEX/license/index.md +++ b/content/en/docs/MMEX/license/index.md @@ -2,8 +2,7 @@ title: "License" description: "Usage License" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: diff --git a/content/en/docs/MMEX/press/index.md b/content/en/docs/MMEX/press/index.md index e42c4286..c503a726 100644 --- a/content/en/docs/MMEX/press/index.md +++ b/content/en/docs/MMEX/press/index.md @@ -2,8 +2,7 @@ title: "Press Reviews" description: "List of press reviews" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: diff --git a/content/en/docs/MMEX/privacy/index.md b/content/en/docs/MMEX/privacy/index.md index ee45dcf7..15c380ef 100644 --- a/content/en/docs/MMEX/privacy/index.md +++ b/content/en/docs/MMEX/privacy/index.md @@ -2,8 +2,7 @@ title: "Privacy" description: "Privacy Statememt" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: diff --git a/content/en/docs/_index.md b/content/en/docs/_index.md index f807c652..fcc6ab34 100644 --- a/content/en/docs/_index.md +++ b/content/en/docs/_index.md @@ -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: [] --- diff --git a/content/en/docs/downloads/_index.md b/content/en/docs/downloads/_index.md index df1831d3..3ea80559 100644 --- a/content/en/docs/downloads/_index.md +++ b/content/en/docs/downloads/_index.md @@ -2,8 +2,7 @@ title : "Downloads" description: "MMEX Downloads" lead: "" -date: 2020-10-06T08:48:45+00:00 -lastmod: 2020-10-06T08:48:45+00:00 +date: 2022-02-18 draft: false images: [] --- diff --git a/content/en/docs/downloads/all/index.md b/content/en/docs/downloads/all/index.md index 985dcdf3..bee85703 100644 --- a/content/en/docs/downloads/all/index.md +++ b/content/en/docs/downloads/all/index.md @@ -2,8 +2,7 @@ title: "All Builds" description: "All downloads" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: @@ -13,33 +12,28 @@ toc: true weight: 30 --- -## Full stable release downloads +Here is a list of older builds -Here is a selection of the most recent releases if you don't want to the take the current version or the current version is not yet available for your platform +### v1.5.12 (2022.01.30) [Release Notes](https://github.com/moneymanagerex/moneymanagerex/releases/tag/v1.5.12) -For the latest development/Beta builds click here. +- [Windows (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.12/mmex-1.5.12-win64.exe) +- [Windows (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.12/mmex-1.5.12-win32.exe) +- [MacOS (Universal)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.12/mmex-1.5.12-Darwin.dmg) +- [Windows Portable (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.12/mmex-1.5.12-win64-portable.zip) +- [Windows Portable (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.12/mmex-1.5.12-win32-portable.zip) -### v1.5.13 (2022.02.06) [Release Notes](https://github.com/moneymanagerex/moneymanagerex/releases/tag/v1.5.13) +### v1.5.11 (2021.12.07) [Release Notes](https://github.com/moneymanagerex/moneymanagerex/releases/tag/v1.5.11) -- [Windows (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win64.exe) -- [Windows (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win32.exe) -- [MacOS (Universal)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-Darwin.dmg) -- [Windows Portable (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win64-portable.zip) -- [Windows Portable (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win32-portable.zip) +- [Windows (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.11/mmex-1.5.11-win64.exe) +- [Windows (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.11/mmex-1.5.11-win32.exe) +- [MacOS (Universal)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.11/mmex-1.5.11-Darwin.dmg) +- [Windows Portable (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.11/mmex-1.5.11-win64-portable.zip) +- [Windows Portable (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.11/mmex-1.5.11-win32-portable.zip) -## Upgrading from v1.4.0? +### v1.5.10 (2021.01.30) [Release Notes](https://github.com/moneymanagerex/moneymanagerex/releases/tag/v1.5.10) -If you get the database error, "MMEX database version 13 doesn't work with this MMEX version," -then see [Steps to convert your database from 1.4.x](https://github.com/moneymanagerex/moneymanagerex/issues/2353) - -The latest Money Manager Ex release uses the database structure of the 1.3.x series and discontinued the structure of version 1.4.x. -This maintains compatibility with the mobile app. - -## Beta/Development Builds - -{{< alert "Use unstable builds for early testing before official release. Avoid everyday use unless you need a specific feature/fix or are willing to risk using the latest software" warning >}} - -| Windows | MacOS | -| ----------- | ----------- | -| | Title | -| Paragraph | Text | \ No newline at end of file +- [Windows (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.10/mmex-1.5.10-win64.exe) +- [Windows (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.10/mmex-1.5.10-win32.exe) +- [MacOS (Universal)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.10/mmex-1.5.10-Darwin.dmg) +- [Windows Portable (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.10/mmex-1.5.10-win64-portable.zip) +- [Windows Portable (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.10/mmex-1.5.10-win32-portable.zip) \ No newline at end of file diff --git a/content/en/docs/downloads/development/index.md b/content/en/docs/downloads/development/index.md index eb29f783..88dcde9d 100644 --- a/content/en/docs/downloads/development/index.md +++ b/content/en/docs/downloads/development/index.md @@ -2,8 +2,7 @@ title: "Development" description: "Development Builds" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: @@ -15,9 +14,23 @@ weight: 20 ## Beta/Development Builds -{{< alert "Use unstable builds for early testing before official release. Avoid everyday use unless you need a specific feature/fix or are willing to risk using the latest software" warning >}} +{{< alert context="warning" text="Use unstable builds for early testing before official release. Avoid everyday use unless you need a specific feature/fix or are willing to risk using the latest software" />}} -| Windows | MacOS | -| ----------- | ----------- | -| | Title | -| Paragraph | Text | \ No newline at end of file +###  Windows + +- [Access latest Appveyor development build](https://www.moneymanagerex.org/component/weblinks/weblink/30-download/35-download-unstable-windows?Itemid=435&task=weblink.go) + +Under "Job name," choose x64 or Win32 > Artifacts > Portable (version recommended for unstable builds). + +###  MacOS + +- [Repository of latest signed MacOS Universal builds](https://mmex.ipx.co.uk/) + + + +###  Linux + +- [Arch User Repo](https://aur.archlinux.org/packages/moneymanagerex-git/) +- [Arch x86_64 (Community)](https://www.archlinux.org/packages/community/x86_64/moneymanagerex/) +- [Install Linux - other instalaltion instructions](https://github.com/moneymanagerex/moneymanagerex/blob/master/INSTALL.md#linux) +- [Build Linux from Source](https://github.com/moneymanagerex/moneymanagerex/blob/master/BUILD.md#linux) \ No newline at end of file diff --git a/content/en/docs/downloads/latest/index.md b/content/en/docs/downloads/latest/index.md index 91124b14..dbb41401 100644 --- a/content/en/docs/downloads/latest/index.md +++ b/content/en/docs/downloads/latest/index.md @@ -1,9 +1,8 @@ --- -title: "Latest" +title: "Latest Builds" description: "Latest download" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: @@ -13,11 +12,7 @@ toc: true weight: 10 --- -## Full stable release downloads - -Here is a selection of the most recent releases if you don't want to the take the current version or the current version is not yet available for your platform - -For the latest development/Beta builds click here. +Here are the latest builds for various platforms. ### v1.5.13 (2022.02.06) [Release Notes](https://github.com/moneymanagerex/moneymanagerex/releases/tag/v1.5.13) @@ -27,6 +22,10 @@ For the latest development/Beta builds click here. - [Windows Portable (64-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win64-portable.zip) - [Windows Portable (32-bit)](https://github.com/moneymanagerex/moneymanagerex/releases/download/v1.5.13/mmex-1.5.13-win32-portable.zip) +For previous releases click [here](../all). + +For the latest development/Beta builds click [here](../development). + ## Upgrading from v1.4.0? If you get the database error, "MMEX database version 13 doesn't work with this MMEX version," diff --git a/content/en/docs/features/_index.md b/content/en/docs/features/_index.md index f5437940..44bbb4c6 100644 --- a/content/en/docs/features/_index.md +++ b/content/en/docs/features/_index.md @@ -2,8 +2,7 @@ title : "Features" description: "MMEX Features" lead: "" -date: 2020-10-06T08:48:45+00:00 -lastmod: 2020-10-06T08:48:45+00:00 +date: 2022-02-18 draft: false images: [] --- diff --git a/content/en/docs/features/accounts/index.md b/content/en/docs/features/accounts/index.md index a800a7be..32dbdc6e 100644 --- a/content/en/docs/features/accounts/index.md +++ b/content/en/docs/features/accounts/index.md @@ -2,14 +2,14 @@ title: "Accounts & Currencies" description: "Accounts & Currencies" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 10 --- Money Manager EX allows you to simply create a new bank account with a simple wizard. diff --git a/content/en/docs/features/android/index.md b/content/en/docs/features/android/index.md index fae36712..c901cb89 100644 --- a/content/en/docs/features/android/index.md +++ b/content/en/docs/features/android/index.md @@ -2,14 +2,14 @@ title: "Android" description: "Android" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 130 --- The Android version of MoneyManagerEx allows you to manage your expenses in full mobility, to verify the balance of your bank accounts, term accounts, stocks. diff --git a/content/en/docs/features/assets/index.md b/content/en/docs/features/assets/index.md index 9856893d..b4407265 100644 --- a/content/en/docs/features/assets/index.md +++ b/content/en/docs/features/assets/index.md @@ -2,14 +2,14 @@ title: "Assets" description: "Assets" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 60 --- Money Manager EX allows tracking fixed assets like cars, houses, land, and others. diff --git a/content/en/docs/features/attachments/index.md b/content/en/docs/features/attachments/index.md index feab1686..17405bd0 100644 --- a/content/en/docs/features/attachments/index.md +++ b/content/en/docs/features/attachments/index.md @@ -2,14 +2,14 @@ title: "Attachments" description: "Attachments" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 80 --- Money Manager EX allows adding every file as attachments for one of its elements (like transactions, accounts, assets, etc..) diff --git a/content/en/docs/features/budgeting/index.md b/content/en/docs/features/budgeting/index.md index a361f88d..b4de2090 100644 --- a/content/en/docs/features/budgeting/index.md +++ b/content/en/docs/features/budgeting/index.md @@ -2,14 +2,14 @@ title: "Budgeting" description: "Budgeting" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 70 --- Money Manager EX allows you to set up a budget for a year and/or a month. diff --git a/content/en/docs/features/crossplatform/index.md b/content/en/docs/features/crossplatform/index.md index 975c8315..54c4a9bf 100644 --- a/content/en/docs/features/crossplatform/index.md +++ b/content/en/docs/features/crossplatform/index.md @@ -2,14 +2,14 @@ title: "Cross Platform" description: "Cross Platform" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 120 --- Money Manager EX can run on practically every Operating System. diff --git a/content/en/docs/features/generalreports/index.md b/content/en/docs/features/generalreports/index.md index 37da2f29..977bd9ef 100644 --- a/content/en/docs/features/generalreports/index.md +++ b/content/en/docs/features/generalreports/index.md @@ -2,14 +2,14 @@ title: "General Reports" description: "General Reports" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [GeneralReport_Wizard.png] menu: docs: parent: "Features" toc: true +weight: 90 --- Money Manager EX allows to create custom and heavy personalized report without external tools but using an internal templating engine. diff --git a/content/en/docs/features/importexport/index.md b/content/en/docs/features/importexport/index.md index 95111763..ae5f48a4 100644 --- a/content/en/docs/features/importexport/index.md +++ b/content/en/docs/features/importexport/index.md @@ -2,14 +2,14 @@ title: "Import & export" description: "Import & Export" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 100 --- Money Manager EX allows to import and export data from different file types. diff --git a/content/en/docs/features/multilanguage/index.md b/content/en/docs/features/multilanguage/index.md index 4ff7c1c9..99bacfb7 100644 --- a/content/en/docs/features/multilanguage/index.md +++ b/content/en/docs/features/multilanguage/index.md @@ -2,14 +2,14 @@ title: "Multi-Language" description: "Multi-Language" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 110 --- Money Manager EX interface has been translated in more than 30 languages to provide the best user experience. Documentation and help are also accessible in 8 different languages. diff --git a/content/en/docs/features/openSource/index.md b/content/en/docs/features/openSource/index.md index 8e40362e..2e650377 100644 --- a/content/en/docs/features/openSource/index.md +++ b/content/en/docs/features/openSource/index.md @@ -2,14 +2,14 @@ title: "Open Source" description: "Open Source" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 140 --- Money Manager EX is free, OpenSource and usable without charges. A donation is always welcome. diff --git a/content/en/docs/features/payees/index.md b/content/en/docs/features/payees/index.md index 08a27b80..638a42ed 100644 --- a/content/en/docs/features/payees/index.md +++ b/content/en/docs/features/payees/index.md @@ -2,14 +2,14 @@ title: "Payees" description: "Payees" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 30 --- Money Manager EX allows assigning to every transaction a payee and one or more categories. diff --git a/content/en/docs/features/repeating/index.md b/content/en/docs/features/repeating/index.md index 104e7cf6..842ac387 100644 --- a/content/en/docs/features/repeating/index.md +++ b/content/en/docs/features/repeating/index.md @@ -2,14 +2,14 @@ title: "Repeating Transactions" description: "Repeating Transactions" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 40 --- Money Manager EX allows creating recurring transactions to track financial activities that occur at regular intervals, such as the payment of a bill or a monthly mortgage. diff --git a/content/en/docs/features/stocks/index.md b/content/en/docs/features/stocks/index.md index 45cd1219..0d1b3b5c 100644 --- a/content/en/docs/features/stocks/index.md +++ b/content/en/docs/features/stocks/index.md @@ -2,14 +2,14 @@ title: "Stocks & Shares" description: "Stocks & Shares" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: ["Stock-Edit-Screen.png", "Share-Edit-Screen.png"] menu: docs: parent: "Features" toc: true +weight: 50 --- Money Manager Ex allows the tracking of Stocks and Shares to be incorporated with our general day to day transactions. Stocks and Shares have been updated to allow money from our general accounts to be transferred to and from our investments. This also allows the payment of dividends to be recorded against our stock. To allow this to occur, a Share account is created when we create new stock. This also allows us to purchase more shares against this stock, or sell shares from a particular stock. diff --git a/content/en/docs/features/transactions/index.md b/content/en/docs/features/transactions/index.md index 44105d2c..bac251f0 100644 --- a/content/en/docs/features/transactions/index.md +++ b/content/en/docs/features/transactions/index.md @@ -2,14 +2,14 @@ title: "Transactions" description: "Transactions" lead: "" -date: 2020-10-06T08:49:15+00:00 -lastmod: 2020-10-06T08:49:15+00:00 +date: 2022-02-18 draft: false images: [] menu: docs: parent: "Features" toc: true +weight: 20 --- Money Manager EX allows tracking incomes and expenses inserting new transactions for every money movement. diff --git a/content/en/privacy-policy/index.md b/content/en/privacy-policy/index.md index 63150240..2e2a790f 100644 --- a/content/en/privacy-policy/index.md +++ b/content/en/privacy-policy/index.md @@ -1,8 +1,7 @@ --- title: "Privacy Policy" description: "We do not use cookies and we do not collect any personal data." -date: 2020-08-27T19:23:18+02:00 -lastmod: 2020-08-27T19:23:18+02:00 +date: 2022-02-18 draft: true images: [] --- diff --git a/content/en/versions.md b/content/en/versions.md deleted file mode 100644 index ddbe0020..00000000 --- a/content/en/versions.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Versions" -description: "" -lead: "An appendix of hosted documentation for nearly every release of Doks, from v0 through v3." -date: 2021-09-24T08:50:23+02:00 -lastmod: 2021-09-24T08:50:23+02:00 -draft: true -images: [] -layout: versions -url: "/docs/versions/" ---- diff --git a/data/consent.yml b/data/consent.yml new file mode 100644 index 00000000..cd20726a --- /dev/null +++ b/data/consent.yml @@ -0,0 +1,9 @@ +items: + - title: Google Anaytics (functional) + description: This code gives us insight into the number of people that visit our website, where they are from and what they are clicking on. We follow the guidelines of the Dutch Government, which describe how to use Google Analytics without requiring explicit consent. + is_functional: true + script_file: ga.js + - title: Crisp chat + description: This code gives users the option to chat directly with us through a chat box in the bottom right corner. Visitor data will (also) be sent to Crisp. + is_functional: false + script_file: crisp.js \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index b8b4273a..940b9f31 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -23,5 +23,7 @@ {{ block "sidebar-footer" . }}{{ end }} {{ partial "footer/footer.html" . }} {{ partial "footer/script-footer.html" . }} + {{ partial "index/platform.html" . }} + \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index bc3b3119..2892f6ed 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,24 +1,3 @@ -{{ define "main" }} -
- -
-{{ end }} - {{ define "sidebar-prefooter" }}
diff --git a/layouts/partials/consent.html b/layouts/partials/consent.html new file mode 100644 index 00000000..091bd662 --- /dev/null +++ b/layouts/partials/consent.html @@ -0,0 +1,166 @@ + + + + + +{{ range $index, $item := .Site.Data.consent.items }} + {{ if $item.is_functional }} + + {{ end }} +{{ end }} \ No newline at end of file diff --git a/layouts/partials/header/header.html b/layouts/partials/header/header.html index 11f41e0b..0099dedd 100644 --- a/layouts/partials/header/header.html +++ b/layouts/partials/header/header.html @@ -173,3 +173,8 @@

Socials

{{ end -}} + + +{{ if .IsHome -}} + {{ partial "index/opening.html" . }} +{{ end -}} diff --git a/layouts/partials/index/opening.html b/layouts/partials/index/opening.html new file mode 100644 index 00000000..56609a0f --- /dev/null +++ b/layouts/partials/index/opening.html @@ -0,0 +1,40 @@ +
+
+
+
+
+ +

{{ .Params.lead | safeHTML }}

+

{{ .Params.description | safeHTML }}

+ + +
+
+
+
+
+ +
+
+
+
+
+
Financial management can become complicated when there is no clear understanding of how much + money we are getting, regarded as income as opposed to our expenses. The first step towards better financial health is to + maintain good financial records: it's only when we have a clear understanding of where our money goes, that we can make an + informed decision of where to cut back on our expenses. Of course, there is no right or wrong answer to how to spend money: + here's where personal finance software comes in. They help to slice/dice the financial data to give better insight into + what is going on. Always remember the software can only be as good as the data it has to process. Garbage In Garbage Out. + But if you have started thinking of even using Personal finance software, you are well on your way to making every dollar + count.
+
+
+
+
+
\ No newline at end of file diff --git a/layouts/partials/index/platform.html b/layouts/partials/index/platform.html new file mode 100644 index 00000000..302a51bd --- /dev/null +++ b/layouts/partials/index/platform.html @@ -0,0 +1,50 @@ + \ No newline at end of file diff --git a/layouts/shortcodes/latestdownload.html b/layouts/shortcodes/latestdownload.html new file mode 100644 index 00000000..c4660b78 --- /dev/null +++ b/layouts/shortcodes/latestdownload.html @@ -0,0 +1 @@ + MacOS (Universal) \ No newline at end of file