Skip to content

Commit

Permalink
1.5.0: Fixed line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Freke committed May 1, 2017
1 parent d0d0c70 commit 68ebaa9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Hide jetbrains files
.idea
.idea
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,3 @@ If you have any suggestions, please [raise an issue](https://github.com/benfreke
- Obviously the [OctoberCMS](http://octobercms.com/) creators, [Samuel Georges](https://github.com/daftspunk) and [Aleksey Bobkov](https://github.com/alekseybobkov)
- [DanielHitchen](https://github.com/DanielHitchen) for bug reporting, enhancements and requests/ideas
- [Adis](https://github.com/adisos) for help with the 1.1.x releases

18 changes: 9 additions & 9 deletions updates/seed_all_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public function run()
// This is a root node
$mainMenu = Menu::create(
[
'title' => 'Main Menu',
'title' => 'Main Menu',
'description' => 'The main menu items',
'url' => ''
'url' => '',
]
);

Expand All @@ -23,7 +23,7 @@ public function run()
[
'title' => 'Home Page',
'description' => 'The primary navigation level',
'url' => 'home'
'url' => 'home',
]
);

Expand All @@ -32,39 +32,39 @@ public function run()
[
'title' => 'Ajax Framework',
'description' => 'Secondary item 1',
'url' => 'ajax'
'url' => 'ajax',
]
);
$homePage->children()->create(
[
'title' => 'Plugin Components',
'description' => 'Secondary item 2',
'url' => 'plugins'
'url' => 'plugins',
]
);

$ajaxDemo->children()->create(
[
'title' => 'Menu titles do not',
'description' => 'Tertiary item 1',
'url' => ''
'url' => '',
]
);

$ajaxDemo->children()->create(
[
'title' => 'Have to match page titles!',
'description' => 'Tertiary item 2',
'url' => ''
'url' => '',
]
);
$ajaxDemo->children()->create(
[
'title' => 'Google Search',
'description' => 'External link example',
'is_external' => true,
'url' => 'http://www.google.com'
'url' => 'http://www.google.com',
]
);
}
}
}
2 changes: 1 addition & 1 deletion updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
1.4.8:
- Merged PR to fix re-order errors. Thanks @CptMeatball
1.5.0:
- Fixed bugs preventing postgres and sqlite support
- Fixed bugs preventing postgres and sqlite support

0 comments on commit 68ebaa9

Please sign in to comment.