Skip to content

Commit 01c1f69

Browse files
committed
Update templates
1 parent 7c93952 commit 01c1f69

4 files changed

Lines changed: 11 additions & 26 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
types: [opened, reopened, synchronize]
1414

1515
env:
16-
FLUTTER_VERSION: '3.44.2'
16+
FLUTTER_VERSION: '3.44.4'
1717

1818
jobs:
1919

@@ -104,7 +104,6 @@ jobs:
104104
uses: lycheeverse/lychee-action@v2
105105
with: # Don't fail for now but then create an issue - useful?
106106
args:
107-
--exclude-file .lycheeignore
108107
--no-progress
109108
'*.md'
110109
'./**/*.dart'

.github/workflows/installers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ env:
4848
MACOS_APP_RELEASE_UNSIGNED_PATH: build/macos/Build/Products/Release-unsigned
4949
MACOS_APP_RELEASE_STAGING_PATH: build/macos/Build/Products/Release-staging
5050
MACOS_APP_RELEASE_DEV_PATH: build/macos/Build/Products/Release-dev
51-
FLUTTER_VERSION: "3.44.2"
51+
FLUTTER_VERSION: "3.44.4"
5252

5353
jobs:
5454

.lycheeignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,8 @@ https://github.com/gjwgit/myapp/blob/main/README.md
8888
https://server/POD_NAME/APP_NAME/data/FILE_PATH
8989
https://host/
9090
https://pods.au/me/app/data
91-
https://github.com/anusii/notepod/blob/dev/CHANGELOG.md
92-
https://anusii.github.io/notepod/
93-
https://anusii.github.io/notepod/client-profile.jsonld
94-
https://anusii.github.io/notepod/redirect.html
91+
https://github.com/anusii/
92+
https://anusii.github.io/
9593
https://your-solid-server/
9694
https://dev.empwr.au/mypod/
9795
https://server/alice/

support/meld_zip_from_claude.sh

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,17 @@ mkdir tmp
3535

3636
# Extract the zip file.
3737

38+
echo "Unzip ${claude} into ./tmp"
39+
3840
(cd tmp; unzip "${claude}")
3941

4042
# Run meld with the file and find result
4143

42-
if [[ -d tmp/lib ]] && ! diff -rqw "lib" "tmp/lib" > /dev/null ; then
43-
meld tmp/lib lib
44-
fi
45-
46-
if [[ -d tmp/assets ]] && ! diff -rqw "assets" "tmp/assets" > /dev/null ; then
47-
meld tmp/assets assets
48-
fi
49-
50-
if [[ -d tmp/test ]] && ! diff -rqw "test" "tmp/test" > /dev/null ; then
51-
meld tmp/test test
52-
fi
53-
54-
if [[ -d tmp/integration_test ]] && ! diff -rqw "integration_test" "tmp/integration_test" > /dev/null ; then
55-
meld tmp/integration_test integration_test
56-
fi
57-
58-
if [[ -f tmp/README.md ]] && ! diff -qw "README.md" "tmp/README.md" > /dev/null ; then
59-
meld tmp/README.md README.md
60-
fi
44+
for f in lib assets test integration_test README.md CLAUDE.md; do
45+
if [[ -e tmp/$f ]] && ! diff -rqw "$f" "tmp/$f" > /dev/null ; then
46+
meld tmp/$f $f
47+
fi
48+
done
6149

6250
# Check if pubspec included and if so compare if the difference is
6351
# other than the version line.

0 commit comments

Comments
 (0)