You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CHANGES="${CHANGES}$(echo "$PERF_COMMITS" | sed 's/^/- /')"$'\n\n'
865
+
fi
841
866
842
-
### Installation
867
+
if [ -n "$DOCS_COMMITS" ]; then
868
+
CHANGES="${CHANGES}### Documentation"$'\n\n'
869
+
CHANGES="${CHANGES}$(echo "$DOCS_COMMITS" | sed 's/^/- /')"$'\n\n'
870
+
fi
843
871
844
-
**DMG Installer (Recommended):**
845
-
1. Download and open the DMG file
846
-
2. Drag OpenTable to the Applications folder
847
-
3. Eject the DMG
848
-
4. Right-click OpenTable in Applications and select "Open" on first launch
872
+
if [ -n "$REFACTOR_COMMITS" ]; then
873
+
CHANGES="${CHANGES}### Refactoring"$'\n\n'
874
+
CHANGES="${CHANGES}$(echo "$REFACTOR_COMMITS" | sed 's/^/- /')"$'\n\n'
875
+
fi
849
876
850
-
**ZIP Archive:**
851
-
1. Download and unzip the file
852
-
2. Move OpenTable.app to your Applications folder
853
-
3. Right-click and select "Open" on first launch
877
+
if [ -n "$CHORE_COMMITS" ]; then
878
+
CHANGES="${CHANGES}### Maintenance"$'\n\n'
879
+
CHANGES="${CHANGES}$(echo "$CHORE_COMMITS" | sed 's/^/- /')"$'\n\n'
880
+
fi
854
881
855
-
> **Note:** This app is not signed with an Apple Developer certificate. You may need to allow it in System Settings > Privacy & Security on first launch.
882
+
if [ -n "$OTHER_COMMITS" ]; then
883
+
CHANGES="${CHANGES}### Other Changes"$'\n\n'
884
+
CHANGES="${CHANGES}$(echo "$OTHER_COMMITS" | sed 's/^/- /')"$'\n\n'
885
+
fi
856
886
857
-
### Changes
887
+
# Fallback if all commits were filtered out
888
+
if [ -z "$CHANGES" ]; then
889
+
CHANGES="### Changes"$'\n\n'"- Minor improvements and bug fixes"$'\n\n'
0 commit comments