Skip to content

Commit

Permalink
Changelog for 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjoelkemp committed Feb 26, 2015
1 parent d668965 commit 99a5db0
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 17 deletions.
2 changes: 2 additions & 0 deletions changelogs/2.5.1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Bug Fix: On install, imports no longer error. Affected Windows users heavily.
New Feature: Windows and Linux key bindings
25 changes: 14 additions & 11 deletions changelogs/initial.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,25 @@ Configuring settings
---

These can be specified by creating a .deprc file with the following
settings in the root directory of your codebase or by going to

`Preferences -> Package Settings -> Dependents -> Settings - User`

and adding:
settings in the root directory of your codebase:

{
"root": "path/to/my/js",
"config": "path/to/my/requirejs/config.js", # Optional
"sass_root": "path/to/my/sass", # Optional,
"exclude": ['jquery.js', 'plugins/'], # Optional
"build_config": "path/to/my/requirejs/build.json" # Optional
"root": "public/assets/js",
"config": "public/assets/js/config.js", # Optional
"sass_root": "public/assets/sass", # Optional
"exclude": ['jquery.js', 'require.js'], # Optional
"build_config": "public/assets/js/build.json", # Optional
"node_path": "/my/node/install/folder" # Optional
}

* "root": the location where your JS files reside
* "config": the location of your RequireJS configuration for AMD codebases
* "sass_root": the location of your SASS files
* "exclude": a list of files and folder names to exclude in the search for dependents
* "build_config": the location of your requirejs build configuration file
* "node_path": the location of your node executable

* Please modify the values according to your codebase.
**Please modify the values according to your codebase.**

---
Default key bindings
Expand All @@ -35,6 +33,11 @@ OSX:
* Find Dependents: `CMD + Option + Up arrow`
* Jump to dependency: `CMD + Option + Right arrow` or `CMD + Option + Click`

Windows and Linux:

* Find Dependents: `Control + Alt + Up arrow`
* Jump to dependency: `Control + Alt + Right arrow` or `Control + Option + Click`

---
Menu Options
---
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
"2.4.5": "changelogs/2.4.5.txt",
"2.4.6": "changelogs/2.4.6.txt",
"2.4.7": "changelogs/2.4.7.txt",
"2.5.0": "changelogs/2.5.0.txt"
"2.5.0": "changelogs/2.5.0.txt",
"2.5.1": "changelogs/2.5.1.txt"
}
15 changes: 10 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Currently supporting: AMD, CommonJS, ES6, and Sass codebases.
- [Find dependents](#find-the-dependents-of-the-current-module)
- [Jump to dependency](#jump-to-a-dependency)
- [Find relevant app entry points](#find-relevant-app-entry-points)
- [View dependency tree as JSON](#view-dependency-tree-as-json)
- [View dependency tree](#view-dependency-tree)
4. [Configuring Settings](#configuring-settings)
- [Default Key Bindings](#default-key-bindings)
- [Custom Key Bindings](#custom-key-bindings)
Expand All @@ -25,9 +25,9 @@ Install `Dependents` via Package Control.
Don't see it? Try reinstalling Package Control. Altenatively, add the repository and install it:

1. Package Control -> Add Repository
2. Enter `https://github.com/mrjoelkemp/sublime-dependents`
2. Enter `https://github.com/mrjoelkemp/Dependents`
3. Package Control -> Install Package
4. Choose sublime-dependents
4. Choose Dependents

If it doesn't work, please file an issue.

Expand Down Expand Up @@ -70,9 +70,9 @@ You can also open all relevant app entry points at once via:
1. Within a file, right click to open the context menu
2. Click on `Dependents -> Open all relevant app entry points`

#### View dependency tree as JSON
#### View dependency tree

View a snapshot of the current file's dependency tree as a JSON file
View a snapshot of the current file's dependency tree (as a JSON file)

1. Within a file, right click to open the context menu
2. Click on `Dependents -> View this file's dependency tree`
Expand Down Expand Up @@ -122,6 +122,11 @@ OSX:
* Find Dependents: `CMD + Option + Up arrow`
* Jump to dependency: `CMD + Option + Right arrow` or `CMD + Option + Click`

Windows and Linux:

* Find Dependents: `Control + Alt + Up arrow`
* Jump to dependency: `Control + Alt + Right arrow` or `Control + Option + Click`

You can also trigger the commands via:

* `File -> Dependents`
Expand Down

0 comments on commit 99a5db0

Please sign in to comment.