Skip to content

Commit 7e49fb8

Browse files
committed
Change header style
1 parent 8969c95 commit 7e49fb8

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/Architecture.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Architecture :
1+
# Architecture
22

33
This file document the different directory of this project.
44
Each section will contain explanation and a directory tree.
55

6-
## Flutter :
6+
## Flutter
77

8-
### Dependencies and generated files :
8+
### Dependencies and generated files
99

1010
The `.fvmrc` is used by [fvm](https://fvm.app/) to specify the flutter version.
1111
`lib/` contain the flutter code.
@@ -24,7 +24,7 @@ The `.fvmrc` is used by [fvm](https://fvm.app/) to specify the flutter version.
2424
└── pubspec.yaml
2525
```
2626

27-
### Flutter code :
27+
### Flutter code
2828

2929
Contain the flutter code that make the app.
3030
Follow a view-model structure where `components` contain reusable parts.
@@ -43,7 +43,7 @@ Follow a view-model structure where `components` contain reusable parts.
4343
│ └── views
4444
```
4545

46-
## Android :
46+
## Android
4747

4848
The android directory contain all elements necessary to target Android, most of it is gradle configuration.
4949
Upgrading the `AGP (Android Gradle Plugin)` open the `android` directory with Android Studio and use **Tools > AGP Upgrade Assitant** or manually update the gradle configuration at your own risk.
@@ -58,7 +58,7 @@ Upgrading the `AGP (Android Gradle Plugin)` open the `android` directory with An
5858
└── settings.gradle
5959
```
6060

61-
## Translations :
61+
## Translations
6262

6363
Translations are hosted on [crowdin](https://crowdin.com/project/piwigo-ng), everything is translated from english.
6464
Flutter take the `app_%%.arb` files and generate dart code inside the `lib/l10n` directory.

docs/CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# CONTRIBUTING :
1+
# CONTRIBUTING
22

3-
## Environment setup :
3+
## Environment setup
44

5-
### Flutter :
5+
### Flutter
66

77
Install and configure flutter using the [Official Flutter documentation](https://docs.flutter.dev/get-started/install).
88
Check `pubspec.yaml` or `.fvmrc` and change the flutter version accordingly
@@ -12,7 +12,7 @@ Using git and the [commit hash of the release](https://docs.flutter.dev/release/
1212
cd <flutter path>
1313
git checkout d8a9f9a # Commit hash of the release
1414
flutter --version
15-
# Optional : disable analytics/telemetry :
15+
# Optional disable analytics/telemetry
1616
flutter config --no-analytics
1717
```
1818

@@ -23,7 +23,7 @@ cd <Project-dir>
2323
fvm use 2.27.4
2424
```
2525

26-
### Android Studio :
26+
### Android Studio
2727

2828
*(Optional - enable wayland support)* : Add `-Dawt.toolkit.name=WLToolkit` to the Custom VM Options.
2929

@@ -36,7 +36,7 @@ Install the flutter plugin and restart, then go to **Settings > Languages & Fram
3636
- Android SDK Platform-Tools
3737
- Android Emulator
3838

39-
**Enable flutter android support :**
39+
**Enable flutter android support**
4040
```sh
4141
flutter doctor --android-licenses # Accept the Android License
4242
# Check that Android toolchain is working
@@ -48,7 +48,7 @@ If Android studio doesn't pickup the path of the flutter toolchain or dart :
4848
In **Settings > Languages & Framework > Flutter** set the flutter SDK path using the absolute path of your install.
4949
And in **Settings > Languages & Framework > Dart** specify the Dark SDK path `<Absolute-Flutter-Path>/bin/cache/dart-sdk`
5050

51-
## Contributing guidelines :
51+
## Contributing guidelines
5252

5353
Contribution must target the `develop` branch and must have documented changes.
5454

0 commit comments

Comments
 (0)