File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
assets/javascripts/templates/pages Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ credits = [
303
303
' https://raw.githubusercontent.com/falconry/falcon/master/LICENSE'
304
304
], [
305
305
' Fish' ,
306
- ' 2005-2009 Axel Liljencrantz' ,
306
+ ' 2005-2009 Axel Liljencrantz, 2009-2020 fish-shell contributors ' ,
307
307
' GPLv2' ,
308
308
' https://fishshell.com/docs/current/license.html'
309
309
], [
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ class EntriesSphinxFilter < Docs::EntriesFilter
4
4
def get_name
5
5
if slug == 'faq'
6
6
'FAQ'
7
+ elsif slug == 'fish_for_bash_users'
8
+ 'Fish for Bash Users'
7
9
elsif slug . starts_with? ( 'cmds/' )
8
10
slug . split ( '/' ) . last
9
11
else
@@ -12,9 +14,9 @@ def get_name
12
14
end
13
15
14
16
def get_type
15
- if root_page? || slug == 'faq'
17
+ if root_page? || slug == 'faq' || slug == 'completions' || slug == 'fish_for_bash_users'
16
18
'Manual'
17
- elsif slug . starts_with? ( 'cmds' )
19
+ elsif slug . starts_with? ( 'cmds' ) || slug == 'commands'
18
20
'Commands'
19
21
elsif slug == 'tutorial'
20
22
'Tutorial'
Original file line number Diff line number Diff line change @@ -12,10 +12,18 @@ class Fish < UrlScraper
12
12
13
13
# https://fishshell.com/docs/current/license.html
14
14
options [ :attribution ] = <<-HTML
15
- © 2019 fish-shell developers< br >
15
+ © 2020 fish-shell developers< br >
16
16
Licensed under the GNU General Public License, version 2.
17
17
HTML
18
18
19
+ version '3.2' do
20
+ self . release = '3.2.0'
21
+ self . base_url = "https://fishshell.com/docs/#{ version } /"
22
+
23
+ options [ :skip ] . concat %w( genindex.html relnotes.html )
24
+ html_filters . push 'sphinx/clean_html' , 'fish/clean_html_sphinx' , 'fish/entries_sphinx'
25
+ end
26
+
19
27
version '3.1' do
20
28
self . release = '3.1.2'
21
29
self . base_url = "https://fishshell.com/docs/#{ version } /"
You can’t perform that action at this time.
0 commit comments