Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔀🎉 nameSchema module as replacement for v3 renameFz #2872

Draft
wants to merge 23 commits into
base: dev
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
eb6981a
✨ get vehicles and buildings by dispatch center
buffcode Feb 4, 2024
5c2a4e7
🗑️ remove renameFz module leftovers
buffcode Feb 4, 2024
73e54c9
📝 Update v3 comparison documentation
buffcode Feb 4, 2024
b8f2200
🎉 nameSchema module for template-based renaming of vehicles
buffcode Feb 4, 2024
c2e4838
Merge branch 'dev' into feat/name-schema
jxn-30 Feb 5, 2024
2f8699a
✨ integration of LiquidJS for templating
buffcode Feb 5, 2024
daafd02
📝 update docs to match new templating options, fix module name
buffcode Feb 5, 2024
211aef1
♻️ change wording from unit to vehicle
buffcode Feb 5, 2024
0050149
🍻 use padStart instead of custom padding function
buffcode Feb 5, 2024
41bbe52
🎨 move interfaces / types to typings
buffcode Feb 5, 2024
3603ceb
🐛 fix ICAO alphabet
buffcode Feb 5, 2024
bfe1bae
✨ remove duplicate whitespace after rendering
buffcode Feb 5, 2024
721065b
✨ add german and austrian phonetic alphabet
buffcode Feb 5, 2024
74cebc0
📝 fix docs
buffcode Feb 5, 2024
252f88a
✨ renaming of buildings
buffcode Feb 5, 2024
9eddbcc
📝 fix typos in docs
buffcode Feb 8, 2024
b47651b
✨ add dispatch to template variables, change default grouping for bui…
buffcode Feb 8, 2024
b0636b5
📝 update grouping options
buffcode Feb 8, 2024
8b43745
Merge branch 'dev' into feat/name-schema
buffcode Feb 8, 2024
fc53769
✨ import settings from v3 renameFz
buffcode Feb 9, 2024
95121bd
Merge remote-tracking branch 'refs/remotes/origin/dev' into feat/name…
buffcode Feb 29, 2024
2b486eb
🎨 fix ESLint style / component naming
buffcode Feb 29, 2024
2306051
Merge branch 'dev' into feat/name-schema
jxn-30 Mar 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
📝 update grouping options
  • Loading branch information
buffcode committed Feb 8, 2024
commit b0636b5f304da2de6c4d7306b301697c3426f5ae
18 changes: 10 additions & 8 deletions src/modules/nameSchema/docs/de_DE.md
buffcode marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,16 @@ Es können Parameter übergeben werden, um die Nummerierung zu beeinflussen:

Mögliche Werte für `groupBy`:

| Wert | Gruppieren nach | Verwendbar in Templates für |
|-----------------------|-------------------------------------------------------------------|-----------------------------|
| `none` | Ohne Gruppierung, Fahrzeuge werden global durchnummeriert. | Fahrzeuge, Gebäuden |
| `building` | Gruppierung pro Gebäude. | Fahrzeuge |
| `vehicleType` | Gruppierung global nach Fahrzeugtyp. | Fahrzeuge |
| `dispatch` | Gruppierung nach Leitstelle | Fahrzeuge, Gebäuden |
| `buildingVehicleType` | Kombinierte Gruppierung nach Gebäude und Fahrzeugtyps. (Standard) | Fahrzeuge |
| `dispatchVehicleType` | Kombinierte Gruppierung nach Leitstelle und Fahrzeugtyps. | Fahrzeuge |
| Wert | Gruppieren nach | Anwendbar auf Objekt | Verwendbar in Templates für |
|------------------------|-------------------------------------------------------------------|-----------------------------------|-----------------------------|
| `none` | Ohne Gruppierung, Fahrzeuge werden global durchnummeriert. | `vehicle`, `building`, `dispatch` | Fahrzeuge, Gebäude |
| `building` | Gruppierung pro Gebäude. | `vehicle` | Fahrzeuge |
| `vehicleType` | Gruppierung global nach Fahrzeugtyp. | `vehicle` | Fahrzeuge |
| `buildingType` | Gruppierung global nach Gebäudetyp. | `building`, `dispatch` | Gebäuden |
| `dispatch` | Gruppierung nach Leitstelle | `vehicle`, `building` | Fahrzeuge, Gebäude |
| `buildingVehicleType` | Kombinierte Gruppierung nach Gebäude und Fahrzeugtyps. (Standard) | `vehicle` | Fahrzeuge |
| `dispatchVehicleType` | Kombinierte Gruppierung nach Leitstelle und Fahrzeugtyps. | `vehicle` | Fahrzeuge |
| `dispatchBuildingType` | Kombinierte Gruppierung nach Leitstelle und Gebäudetyp. | `building` | Fahrzeuge, Gebäude |

### Weitere Filter

Expand Down