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

2.3.12 working changes #733

Merged
merged 26 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a58c5d8
Refactor fetch requests to use the EntityName.fetchRequest() API to p…
72A12F4E Jun 28, 2024
bc77834
Merge branch '2.3.12_Working_Changes' into fetch-request-api
72A12F4E Jun 28, 2024
448b15c
Merge pull request #727 from 72A12F4E/fetch-request-api
72A12F4E Jun 28, 2024
fb4c397
Add SwiftLint to CI checks
72A12F4E Jun 28, 2024
4a9d88e
Merge pull request #732 from 72A12F4E/swiftlint-ci
72A12F4E Jun 28, 2024
9c6446f
Merge remote-tracking branch 'refs/remotes/origin/main'
garthvh Jun 28, 2024
173f5da
fix proj file
72A12F4E Jun 28, 2024
a31fc69
Merge remote-tracking branch 'refs/remotes/origin/2.3.12_Working_Chan…
garthvh Jun 28, 2024
cde0266
Does not show Duty Cycle warning when in licensed mode
RCGV1 Jun 24, 2024
ebd3d68
extract section to computed property and tweak the if statements
72A12F4E Jun 28, 2024
c8ddbd3
Merge pull request #718 from RCGV1/Duty-cycle-licensed
garthvh Jun 28, 2024
f813f32
Bump version
garthvh Jun 28, 2024
7aa9bbf
Merge remote-tracking branch 'refs/remotes/origin/2.3.12_Working_Chan…
garthvh Jun 28, 2024
44adbf9
Migrate to String Catalogs
72A12F4E Jun 28, 2024
55941b5
Merge pull request #734 from 72A12F4E/migrate-to-string-catalogs
72A12F4E Jun 29, 2024
d0d383f
Colorful logs
garthvh Jun 29, 2024
c7f7e14
Log details level colors
garthvh Jun 29, 2024
a8e4c2a
bump protos
72A12F4E Jun 29, 2024
9f1b397
Use indigo for debug color, clean up filters
garthvh Jun 29, 2024
e97bfb1
Merge pull request #736 from 72A12F4E/bump-protos
72A12F4E Jun 29, 2024
a8399f6
Swiftlint updates
garthvh Jun 29, 2024
509037c
Remove extra space
garthvh Jun 29, 2024
8ab0139
Merge pull request #737 from meshtastic/log_level_colors
garthvh Jun 29, 2024
d5efb15
Log updates
garthvh Jun 29, 2024
067d92f
Merge pull request #739 from meshtastic/log_level_colors
garthvh Jun 29, 2024
98cb44f
Merge branch 'main' into 2.3.12_Working_Changes
72A12F4E Jun 29, 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
18 changes: 18 additions & 0 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: SwiftLint

on:
pull_request:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'

jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: GitHub Action for SwiftLint (Only files changed in the PR)
uses: norio-nomura/[email protected]
env:
DIFF_BASE: ${{ github.base_ref }}
Loading