Skip to content

Commit b57062d

Browse files
authored
fix field name and values; no workflow on merge to main (#9)
1 parent 99e1e1b commit b57062d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/update_contributions.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Update Contributions
22
on:
3-
push:
4-
branches:
5-
- main
63
schedule:
74
# * is a special character in YAML so you have to quote this string
85
- cron: '45 4 * * *'

contributions.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,6 +1476,8 @@ contributions:
14761476
minRevision: 0
14771477
maxRevision: 0
14781478
download: http://www.lagers.org.uk/processing/appletmaker/AppletMaker.zip
1479+
override:
1480+
maxRevision: 228
14791481
- id: 97
14801482
source: https://andrusiv.com/android-select-file/download/SelectFile.txt
14811483
status: VALID
@@ -3412,7 +3414,7 @@ contributions:
34123414
prettyVersion: v1.2
34133415
minRevision: 0
34143416
maxRevision: 0
3415-
compatibleModesList: ''
3417+
modes: ''
34163418
download: http://mad4j.github.io/book-mdpc/book-mdpc.zip
34173419
override:
34183420
categories:
@@ -4158,7 +4160,7 @@ contributions:
41584160
prettyVersion: 1.0.1
41594161
minRevision: 0
41604162
maxRevision: 0
4161-
compatibleModesList: jycessing.mode.PythonMode
4163+
modes: jycessing.mode.PythonMode
41624164
download: https://coding-creative.dringtech.com/examples/coding-creative-examples.zip
41634165
- id: 244
41644166
source: http://giftedapprentice.com/ewbIK/ewbIK.txt

scripts/parse_and_validate_properties_txt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class PropertiesBase(BaseModel):
2727
prettyVersion: str
2828
minRevision: int = Field(0)
2929
maxRevision: int = Field(0)
30+
modes: Optional[str] = Field(None, alias='compatibleModesList')
3031

3132
model_config = ConfigDict(
3233
extra='allow',

0 commit comments

Comments
 (0)