Skip to content

Commit

Permalink
rename 'default' key in data to not shadow EnhancedHash method
Browse files Browse the repository at this point in the history
  • Loading branch information
cfillion committed Jan 5, 2025
1 parent 5e240ee commit 240aca7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions config/repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,37 @@ repos:
-
link: 'https://github.com/ReaTeam/ReaScripts'
index: 'https://github.com/ReaTeam/ReaScripts/raw/master/index.xml'
default: true
builtin: true
disporder: 1
-
link: 'https://github.com/ReaTeam/JSFX'
index: 'https://github.com/ReaTeam/JSFX/raw/master/index.xml'
default: true
builtin: true
disporder: 2
-
link: 'https://github.com/ReaTeam/Themes'
index: 'https://github.com/ReaTeam/Themes/raw/master/index.xml'
default: true
builtin: true
disporder: 3
-
link: 'https://github.com/ReaTeam/LangPacks'
index: 'https://github.com/ReaTeam/LangPacks/raw/master/index.xml'
default: true
builtin: true
disporder: 4
-
link: 'https://github.com/ReaTeam/Extensions'
index: 'https://github.com/ReaTeam/Extensions/raw/master/index.xml'
default: true
builtin: true
disporder: 5
-
link: 'https://github.com/MichaelPilyavskiy/ReaScripts'
index: 'https://github.com/MichaelPilyavskiy/ReaScripts/raw/master/index.xml'
default: true
builtin: true
disporder: 11
-
link: 'https://github.com/X-Raym/REAPER-ReaScripts'
index: 'https://github.com/X-Raym/REAPER-ReaScripts/raw/master/index.xml'
default: true
builtin: true
disporder: 12
-
link: 'https://github.com/chtammik/chtammik_Reaper_Scripts'
Expand Down
2 changes: 1 addition & 1 deletion source/repos.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ul.table
- data.repos.each do |repo|
li
.left.icon
- if repo[:default]
- if repo.builtin
i.fa.fa-asterisk title="Included in the default configuration"
- elsif repo[:featured]
i.fa.fa-star title="Featured"
Expand Down
2 changes: 1 addition & 1 deletion update.rb
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def run(data)
link: @repo['link'],
index: @repo['index'],
disporder: @repo['disporder'],
default: @repo['default'] || false,
builtin: @repo['builtin'] || false,
featured: @repo['featured'] || false,
packages: packages,
}
Expand Down

0 comments on commit 240aca7

Please sign in to comment.