Skip to content

Commit

Permalink
Prepares a new build.
Browse files Browse the repository at this point in the history
- Add internal short version.
- Remove invalid character.
  • Loading branch information
mntone committed Jan 9, 2024
1 parent 91897bb commit f5d4801
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/versioning.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

# Build Number Offset
INTERNAL_SHORT_VERSION_OFFSET=1
INTERNAL_SHORT_VERSION_OFFSET=2

if [ "$CI" = "TRUE" ]; then
git fetch origin --tags
Expand Down
2 changes: 1 addition & 1 deletion src/App/Views/Settings/DisplaySettingsPane.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct DisplaySettingsPane: View {
SettingsPreferredList {
Section("Monster List") {
#if os(watchOS)
SettingsPicker("Sort by",
SettingsPicker("Sort by",
selection: $viewModel.sort) {
ForEach(Sort.allOrderCases(reversed: viewModel.sort.isReversed)) { mode in
Text(mode.label).tag(mode)
Expand Down

0 comments on commit f5d4801

Please sign in to comment.