Skip to content

Releases: saurabhdaware/projectman

1.2.0-alpha.2

11 Sep 11:56
39656bd
Compare
Choose a tag to compare
1.2.0-alpha.2 Pre-release
Pre-release
  • --for-project flag added to pm seteditor
    Usage : pm seteditor [editorCommand] --for-project [projectName].

    • This will let users set editor for a specific project without pm edit
    • [editorCommand] and [projectName] are optional commands and will be asked as questions when the value is not given

1.2.0-alpha.1

08 Sep 17:20
Compare
Choose a tag to compare
1.2.0-alpha.1 Pre-release
Pre-release
npm install -g https://github.com/saurabhdaware/projectman#v1.2.0-alpha.1
  • pm getpath [projectName] command added which will show you the path of project.
    This can be used as cd $(pm getpath) to cd to the project.

1.1.0

07 Sep 21:31
f06a93a
Compare
Choose a tag to compare
npm install -g [email protected]
  • Project specific editors (Thanks #4 @fechy for issue)
    • Now you can pm edit and set editor key in settings.json projects[] with the value of the command of your editor.
    • settings.json E.g.
{
    "commandToOpen": "code",
    "projects": [
        {
            "name":"MyCoolProject",
            "path":"/home/path/projects/mycoolproject",
            "editor":"vim"
        },
        {
            "name":"TwoProject",
            "path":"/path/something/project"
        }
    ]
}

This will allow users to open other projects in VSCode but use Vim to open MyCoolProject

  • Projects will not be erased after updating furthur
    (However they will still be erased while installing this update so I'll recommend to take copy of your settings.json If you have added multiple projects already) (Sorry but this is the last time when you'll have to do this 😢 ))
    (Thank you @codyaverett and @Tanuj69 issue #2 and helping me out solving this)
  • Added vim in pm seteditor
    also added a message explaining 'How to set editors/IDE that are not listed in the menu'
  • pm is now alias for pm open
    (Thank you @johannesjo for suggestion)
  • pm seteditor [commandToOpenEditor] added
    This will set default editor command, This can be used when the editor you want to use is not listed in pm seteditor. (Note: pm seteditor will work exactly same as it did before)

1.1.0-rc.2

07 Sep 20:06
Compare
Choose a tag to compare
1.1.0-rc.2 Pre-release
Pre-release
npm install -g https://github.com/saurabhdaware/projectman#v1.1.0-rc.2

CHANGELOG

  • Project specific editors:

    • Now you can pm edit and set editor key in settings.json projects[] with the value of the command of your editor.
    • settings.json E.g.
{
    "commandToOpen": "code",
    "projects": [
        {
            "name":"MyCoolProject",
            "path":"/home/path/projects/mycoolproject",
            "editor":"vim"
        },
        {
            "name":"TwoProject",
            "path":"/path/something/project"
        }
    ]
}

This will allow users to open other projects in VSCode but use Vim to open MyCoolProject


  • pm seteditor [commandToOpenEditor] added which will set default editor command, This can be used when the editor you want to use is not listed in pm seteditor. (Note: pm seteditor will work exactly same as it did before)

1.1.0-rc.1

06 Sep 13:23
Compare
Choose a tag to compare
1.1.0-rc.1 Pre-release
Pre-release

If you want to test BETA version of upcoming projectman you can try it out by installing with following command.

npm install -g https://github.com/saurabhdaware/projectman#v1.1.0-rc.1
  • pm is now equivalent to pm open
  • settings.json will not be erased after updating furthur (However it will still be erased while installing this update)
  • Added vim in pm seteditor and added a message explaining 'How to set editors/IDE that are not listed in the menu'

1.0.0

06 Sep 09:59
Compare
Choose a tag to compare
npm install -g [email protected]

Initial release of ProjectMan.

Includes following commands:

pm add
pm remove
pm open
pm seteditor