|
| 1 | +<script lang="ts"> |
| 2 | + import FlexDownloadButtons from '$lib/components/FlexDownloadButtons.svelte'; |
| 3 | + import DocHeader from '$lib/components/DocHeader.svelte'; |
| 4 | +</script> |
| 5 | + |
| 6 | +<svelte:head> |
| 7 | + <title>Frequently Asked Questions</title> |
| 8 | +</svelte:head> |
| 9 | + |
| 10 | +{#snippet beggingEntry()} |
| 11 | + <ul class="list-inside list-disc"> |
| 12 | + <li> |
| 13 | + <a href="https://buymeacoffee.com/sadespresso">Buy me a coffee</a> |
| 14 | + </li> |
| 15 | + < li>Skrill: [email protected]</ li> |
| 16 | + </ul> |
| 17 | +{/snippet} |
| 18 | + |
| 19 | +<section class="flex flex-col items-center justify-center gap-4"> |
| 20 | + <div class="flex max-w-screen-md flex-col"> |
| 21 | + <h1 class="mb-8">Frequently Asked Questions</h1> |
| 22 | + |
| 23 | + <DocHeader id="what-is-flow">What is Flow?</DocHeader> |
| 24 | + |
| 25 | + <p> |
| 26 | + Flow is a free and open-source personal finance tracking app. As Flow is offline, you are in |
| 27 | + control of your data. |
| 28 | + </p> |
| 29 | + |
| 30 | + <DocHeader id="where-do-i-download-flow">Where do I download Flow?</DocHeader> |
| 31 | + |
| 32 | + <p>You can download Flow from:</p> |
| 33 | + <br /> |
| 34 | + <FlexDownloadButtons /> |
| 35 | + <br /> |
| 36 | + |
| 37 | + <DocHeader id="can-i-export-all-of-my-data">Can I export all of my data?</DocHeader> |
| 38 | + |
| 39 | + <p> |
| 40 | + Yes, you can export JSON/ZIP backups which you can import it to another device, and CSV files |
| 41 | + for analyzing your data in spreadsheet software (i.e., Excel, Google Sheets), which is not |
| 42 | + recoverable like JSON/ZIP backups. |
| 43 | + </p> |
| 44 | + |
| 45 | + <DocHeader id="does-flow-have-online-sync">Does Flow have online sync?</DocHeader> |
| 46 | + |
| 47 | + <p> |
| 48 | + No. It's planned, and is likely to take quite some time. In the meantime, I recommend doing |
| 49 | + periodic backups to avoid data loss. |
| 50 | + </p> |
| 51 | + |
| 52 | + <DocHeader id="will-flow-have-online-sync">Will Flow have online sync?</DocHeader> |
| 53 | + |
| 54 | + <p> |
| 55 | + Yes, it will. It's likely to take quite some time. In the meantime, I recommend doing periodic |
| 56 | + backups to avoid data loss. |
| 57 | + </p> |
| 58 | + |
| 59 | + <DocHeader id="does-flow-work-offline">Does Flow work offline?</DocHeader> |
| 60 | + |
| 61 | + <p> |
| 62 | + Yes, Flow doesn't require internet except for gather exchange rates data. |
| 63 | + <br /> |
| 64 | + Flow doesn't need exchange rates if you use only one currency. |
| 65 | + </p> |
| 66 | + |
| 67 | + <DocHeader id="does-flow-support-multi-currency">Does Flow support multi-currency</DocHeader> |
| 68 | + |
| 69 | + <p> |
| 70 | + Yes. Flow can generate reports, summaries involving accounts with different currency. |
| 71 | + <br /> |
| 72 | + <span class="opacity-60">Cross-currency transfers are not available at the moment.</span> |
| 73 | + </p> |
| 74 | + |
| 75 | + <DocHeader id="can-i-make-transfers-between-different-currency-accounts"> |
| 76 | + Can I make transfers between different currency accounts? |
| 77 | + </DocHeader> |
| 78 | + |
| 79 | + <p> |
| 80 | + No, at the moment, it's not possible. This feature is planned, and is expected to be out in |
| 81 | + the near future. |
| 82 | + </p> |
| 83 | + |
| 84 | + <DocHeader id="is-flow-free">Is Flow free?</DocHeader> |
| 85 | + |
| 86 | + <p> |
| 87 | + Yes, Flow is absolutely free. All of the features are available for free without any |
| 88 | + limitations. Please consider supporting if you can as I make Flow on the side, and does not |
| 89 | + generate money off of it ^^ |
| 90 | + </p> |
| 91 | + <br /> |
| 92 | + {@render beggingEntry()} |
| 93 | + |
| 94 | + <DocHeader id="how-many-accounts-can-i-have-at-max" |
| 95 | + >How many accounts can I have at max?</DocHeader |
| 96 | + > |
| 97 | + |
| 98 | + You can have as many accounts as you want. |
| 99 | + |
| 100 | + <DocHeader id="i-dont-find-x-features-will-it-be-implemented"> |
| 101 | + I don't find X features, will it be implemented? |
| 102 | + </DocHeader> |
| 103 | + |
| 104 | + <p> |
| 105 | + If you have ideas to make Flow better, please submit it to our GitHub |
| 106 | + <a href="https://github.com/flow-mn/flow/issues" target="_blank">issue tracker</a>. As long as |
| 107 | + it aligns with Flow's vision, it will be implemented. |
| 108 | + </p> |
| 109 | + |
| 110 | + <DocHeader id="why-is-flow-free-and-or-open-source" |
| 111 | + >Why is Flow free and/or open-source?</DocHeader |
| 112 | + > |
| 113 | + |
| 114 | + <p> |
| 115 | + Many benefit from open source, including me. And this is my small contribution. Please |
| 116 | + consider supporting if you can as I make Flow on the side, and does not generate money off of |
| 117 | + it ^^ |
| 118 | + </p> |
| 119 | + <br /> |
| 120 | + {@render beggingEntry()} |
| 121 | + |
| 122 | + <DocHeader id="can-i-add-recurring-transactions">Can I add recurring transactions?</DocHeader> |
| 123 | + |
| 124 | + <p>No, not at the moment, but it's planned.</p> |
| 125 | + |
| 126 | + <DocHeader id="how-do-i-contact-the-maintainer">How do I contact the maintainer?</DocHeader> |
| 127 | + |
| 128 | + <p>You can contact through any of the following channels:</p> |
| 129 | + <br /> |
| 130 | + <ul class="list-inside list-disc"> |
| 131 | + < li>< a href= "mailto:[email protected]" target= "_blank"> [email protected]</ a></ li> |
| 132 | + < li>< a href= "mailto:[email protected]" target= "_blank"> [email protected]</ a></ li> |
| 133 | + <li><a href="https://discord.gg/Ndh9VDeZa4" target="_blank">Flow's discord channel</a></li> |
| 134 | + <li> |
| 135 | + More contact information on <a href="https://dev.gege.mn/#contact" target="_blank" |
| 136 | + >https://dev.gege.mn</a |
| 137 | + > |
| 138 | + </li> |
| 139 | + </ul> |
| 140 | + </div> |
| 141 | +</section> |
| 142 | + |
| 143 | +<style> |
| 144 | + p { |
| 145 | + @apply mt-2 max-w-prose; |
| 146 | + } |
| 147 | +</style> |
0 commit comments