Skip to content

Commit 240aca7

Browse files
committed
rename 'default' key in data to not shadow EnhancedHash method
1 parent 5e240ee commit 240aca7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

config/repos.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,37 +9,37 @@ repos:
99
-
1010
link: 'https://github.com/ReaTeam/ReaScripts'
1111
index: 'https://github.com/ReaTeam/ReaScripts/raw/master/index.xml'
12-
default: true
12+
builtin: true
1313
disporder: 1
1414
-
1515
link: 'https://github.com/ReaTeam/JSFX'
1616
index: 'https://github.com/ReaTeam/JSFX/raw/master/index.xml'
17-
default: true
17+
builtin: true
1818
disporder: 2
1919
-
2020
link: 'https://github.com/ReaTeam/Themes'
2121
index: 'https://github.com/ReaTeam/Themes/raw/master/index.xml'
22-
default: true
22+
builtin: true
2323
disporder: 3
2424
-
2525
link: 'https://github.com/ReaTeam/LangPacks'
2626
index: 'https://github.com/ReaTeam/LangPacks/raw/master/index.xml'
27-
default: true
27+
builtin: true
2828
disporder: 4
2929
-
3030
link: 'https://github.com/ReaTeam/Extensions'
3131
index: 'https://github.com/ReaTeam/Extensions/raw/master/index.xml'
32-
default: true
32+
builtin: true
3333
disporder: 5
3434
-
3535
link: 'https://github.com/MichaelPilyavskiy/ReaScripts'
3636
index: 'https://github.com/MichaelPilyavskiy/ReaScripts/raw/master/index.xml'
37-
default: true
37+
builtin: true
3838
disporder: 11
3939
-
4040
link: 'https://github.com/X-Raym/REAPER-ReaScripts'
4141
index: 'https://github.com/X-Raym/REAPER-ReaScripts/raw/master/index.xml'
42-
default: true
42+
builtin: true
4343
disporder: 12
4444
-
4545
link: 'https://github.com/chtammik/chtammik_Reaper_Scripts'

source/repos.html.slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ul.table
3737
- data.repos.each do |repo|
3838
li
3939
.left.icon
40-
- if repo[:default]
40+
- if repo.builtin
4141
i.fa.fa-asterisk title="Included in the default configuration"
4242
- elsif repo[:featured]
4343
i.fa.fa-star title="Featured"

update.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def run(data)
164164
link: @repo['link'],
165165
index: @repo['index'],
166166
disporder: @repo['disporder'],
167-
default: @repo['default'] || false,
167+
builtin: @repo['builtin'] || false,
168168
featured: @repo['featured'] || false,
169169
packages: packages,
170170
}

0 commit comments

Comments
 (0)