mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-12-22 13:34:55 +01:00
Rename category-ids
This commit is contained in:
parent
3c6797c42a
commit
aec62d551f
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
@ -5,7 +5,7 @@ A new entry should update **contents.json** with this format:
|
||||
```js
|
||||
{
|
||||
"title": "Name of the app",
|
||||
"category": "Category name",
|
||||
"category-ids": ["Category id"],
|
||||
"description": "What this app does",
|
||||
"source": "Link to source, usually GitHub",
|
||||
"screenshots": ["http://something.com/image.png"],
|
||||
|
2
.github/osia_convert.rb
vendored
2
.github/osia_convert.rb
vendored
@ -23,7 +23,7 @@ def apps_for_cat(apps, id)
|
||||
end
|
||||
|
||||
s = f.select do |a|
|
||||
cat = a['category']
|
||||
cat = a['category-ids']
|
||||
cat.class == Array ? cat.include?(id) : (cat == id)
|
||||
end
|
||||
s.sort_by { |k, v| k['title'].downcase }
|
||||
|
2
.github/osia_validate_categories.rb
vendored
2
.github/osia_validate_categories.rb
vendored
@ -16,7 +16,7 @@ end
|
||||
allowed_categories = osia_allowed_categories(c)
|
||||
|
||||
apps.each do |a|
|
||||
cat = a['category']
|
||||
cat = a['category-ids']
|
||||
|
||||
if cat.nil?
|
||||
puts "missing category for #{a}"
|
||||
|
1086
contents.json
1086
contents.json
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user