2023-03-27 19:45:57 +02:00
|
|
|
# Voyage Handbook
|
2023-03-16 14:57:15 +01:00
|
|
|
Access [WikiVoyage](https://en.wikivoyage.org) conveniently from your phone!
|
|
|
|
|
2023-04-06 22:46:40 +02:00
|
|
|
## Install
|
|
|
|
- [Google Play](https://play.google.com/store/apps/details?id=cafe.caras.voyagehandbook)
|
|
|
|
- F-Droid (soon)
|
|
|
|
|
2023-03-16 14:57:15 +01:00
|
|
|
## Roadmap
|
2023-03-27 19:45:57 +02:00
|
|
|
*(In no particular order)*
|
|
|
|
|
2023-03-28 20:10:46 +02:00
|
|
|
- [ ] Render articles *completely* using native widgets
|
2023-03-24 23:48:55 +01:00
|
|
|
- [ ] Navigation in articles by heading
|
2023-03-27 19:45:57 +02:00
|
|
|
- [ ] Settings for reader
|
2023-04-06 22:46:40 +02:00
|
|
|
- [X] Translate UI
|
2023-03-27 19:45:57 +02:00
|
|
|
- [ ] Support different WikiVoyage languages
|
2023-03-16 14:57:15 +01:00
|
|
|
- [ ] Bookmark articles
|
|
|
|
- [ ] Download articles
|
|
|
|
- [ ] Download whole countries
|
|
|
|
- [ ] Offline download
|
|
|
|
- [ ] Translation of articles into different languages
|
2023-03-27 19:45:57 +02:00
|
|
|
|
|
|
|
## Contributing
|
|
|
|
TODO
|
|
|
|
|
|
|
|
## Building
|
|
|
|
### Linux
|
|
|
|
1. Download the repository with its submodules:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone https://git.mnau.xyz/hernik/voyagehandbook --recursive
|
|
|
|
cd voyagehandbook
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Install dependencies through flutter wrapper
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./flutterw pub get
|
|
|
|
# check that android is set up correctly through flutter doctor
|
|
|
|
./flutterw doctor
|
|
|
|
```
|
|
|
|
|
2023-04-07 13:02:40 +02:00
|
|
|
3. Generate locales
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./flutterw gen-l10n
|
|
|
|
```
|
|
|
|
|
|
|
|
4. Run on your connected device
|
2023-03-27 19:45:57 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
./flutterw run
|
2023-03-28 20:10:46 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## License
|
|
|
|
```
|
|
|
|
Voyage Handbook - The open-source WikiVoyage reader
|
|
|
|
Copyright (C) 2023 Matyáš Caras
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 3 as published by
|
|
|
|
the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2023-03-27 19:45:57 +02:00
|
|
|
```
|