-
-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
question : I got some errors. #198
Comments
Hi @manawo , Have you experienced any error message while updating the extension? Could you provide the Another idea, you could uninstall and reinstall the extension. This could force the extension to be installed entirely, in case some problem has hapened while updating. Hope this helps |
Hi @alefragnani , Thank you for replay me 😊
No, I have not
I already tried this 😊 but It not changed. Thank you |
same error here 💃 |
Hi @xiaoouwang , Are you using a Mac too? |
Yes @alefregnani |
Well, it appears to be a problem exclusive to Mac OS. At least, all of you are using it. Unfortunately, I don't have access to a Mac to test. I will search for any references on this errors that could give me a glimpse of what's going on. Just out of curiosity. Do you use the normal installers, right? I mean, oficial installers, and not something like Chocolatey or Portable Mode? It would also help if you could paste the contents of Hope this helps |
{ Here it is ! Yes I did install via the official installer |
I have the same error using Windows 10. |
It turns out my issue was that the action bar button doesn't show up until you add a project. You can do this via the command palette to get rolling. |
Same errors here.
{
"name": "project-manager",
"displayName": "Project Manager",
"description": "Easily switch between projects",
"version": "8.0.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Other"
],
"keywords": [
"project",
"folder",
"switch",
"manage",
"git",
"multi-root ready"
],
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/alefragnani/vscode-project-manager/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/alefragnani/vscode-project-manager.git"
},
"bugs": {
"url": "https://github.com/alefragnani/vscode-project-manager/issues"
},
"activationEvents": [
"*",
"onCommand:projectManager.saveProject",
"onCommand:projectManager.listProjects",
"onCommand:projectManager.listProjectsNewWindow",
"onCommand:projectManager.editProjects",
"onCommand:projectManager.refreshProjects",
"onView:projectsExplorer"
],
"main": "./out/src/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "project-manager",
"title": "Project Manager",
"icon": "images/ico-favorites-dark.svg"
}
]
},
"views": {
"project-manager": [
{
"id": "projectsExplorerFavorites",
"name": "Favorites",
"when": "projectManager.canShowTreeViewFavorites"
},
{
"id": "projectsExplorerGit",
"name": "Git",
"when": "projectManager.canShowTreeViewGit"
},
{
"id": "projectsExplorerSVN",
"name": "SVN",
"when": "projectManager.canShowTreeViewSVN"
},
{
"id": "projectsExplorerMercurial",
"name": "Mercurial",
"when": "projectManager.canShowTreeViewMercurial"
},
{
"id": "projectsExplorerVSCode",
"name": "VSCode",
"when": "projectManager.canShowTreeViewVSCode"
}
]
},
"commands": [
{
"command": "projectManager.saveProject",
"title": "Project Manager: Save Project"
},
{
"command": "projectManager.listProjects",
"title": "Project Manager: List Projects to Open"
},
{
"command": "projectManager.listProjectsNewWindow",
"title": "Project Manager: List Projects to Open in New Window"
},
{
"command": "projectManager.editProjects",
"title": "Project Manager: Edit Projects",
"icon": {
"light": "images/ico-edit-projects-light.svg",
"dark": "images/ico-edit-projects-dark.svg"
}
},
{
"command": "projectManager.refreshProjects",
"title": "Project Manager: Refresh Projects"
},
{
"command": "projectManager.open",
"title": "Open"
},
{
"command": "projectManager.openInNewWindow",
"title": "Open in New Window"
},
{
"command": "projectManager.addToWorkspace",
"title": "Add to Workspace"
},
{
"command": "projectManager.deleteProject",
"title": "Delete Project"
},
{
"command": "projectManager.renameProject",
"title": "Rename Project"
}
],
"menus": {
"commandPalette": [
{
"command": "projectManager.open",
"when": "false"
},
{
"command": "projectManager.openInNewWindow",
"when": "false"
},
{
"command": "projectManager.addToWorkspace",
"when": "false"
},
{
"command": "projectManager.deleteProject",
"when": "false"
},
{
"command": "projectManager.renameProject",
"when": "false"
}
],
"view/title": [
{
"command": "projectManager.editProjects",
"when": "view == projectsExplorerFavorites",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "projectManager.open",
"when": "view =~ /projectsExplorer(Favorites|VSCode|Git|SVN|Mercurial)/",
"group": "navigation"
},
{
"command": "projectManager.openInNewWindow",
"when": "view =~ /projectsExplorer(Favorites|VSCode|Git|SVN|Mercurial)/",
"group": "navigation"
},
{
"command": "projectManager.addToWorkspace",
"when": "view =~ /projectsExplorer(Favorites|VSCode|Git|SVN|Mercurial)/",
"group": "workspace"
},
{
"command": "projectManager.deleteProject",
"when": "view == projectsExplorerFavorites",
"group": "favorites"
},
{
"command": "projectManager.renameProject",
"when": "view == projectsExplorerFavorites",
"group": "favorites"
}
]
},
"configuration": {
"type": "object",
"title": "Project Manager Configuration",
"properties": {
"projectManager.showProjectNameInStatusBar": {
"type": "boolean",
"default": true,
"description": "Should display the project name in the Status Bar?"
},
"projectManager.openInNewWindowWhenClickingInStatusBar": {
"type": "boolean",
"default": false,
"description": "Should the project be opened using a New Window when you click the Status Bar?"
},
"projectManager.removeCurrentProjectFromList": {
"type": "boolean",
"default": true,
"description": "Should the current project be hidden in the list of available projects?"
},
"projectManager.sortList": {
"type": "string",
"default": "Name",
"description": "List the projects sorted by...(Saved, Name, Path or Recent)",
"enum": [
"Saved",
"Name",
"Path",
"Recent"
]
},
"projectManager.groupList": {
"type": "boolean",
"default": false,
"description": "List the projects grouped by...(Favorites, VSCode, Git, Mercurial and SVN)"
},
"projectManager.projectsLocation": {
"type": "string",
"default": "",
"description": "Indicates an alternative location where the `projects.json` file is stored"
},
"projectManager.vscode.baseFolders": {
"type": "array",
"default": [],
"description": "Indicates the base folders to search for VSCode projects"
},
"projectManager.vscode.ignoredFolders": {
"type": "array",
"default": [
"node_modules",
"out",
"typings",
"test"
],
"description": "Indicates folders to be ignored, like \"node_modules\", \"out\", \"typings\", \"test\""
},
"projectManager.vscode.maxDepthRecursion": {
"type": "integer",
"default": 4,
"description": "Indicates the maximum depth of folder recursion to search for projects. Any value below 1 means there is no limit"
},
"projectManager.git.baseFolders": {
"type": "array",
"default": [],
"description": "Indicates the base folders to search for Git projects"
},
"projectManager.git.ignoredFolders": {
"type": "array",
"default": [
"node_modules",
"out",
"typings",
"test",
".haxelib"
],
"description": "Indicates folders to be ignored, like \"node_modules\", \"out\", \"typings\", \"test\""
},
"projectManager.git.maxDepthRecursion": {
"type": "integer",
"default": 4,
"description": "Indicates the maximum depth of folder recursion to search for projects. Any value below 1 means there is no limit"
},
"projectManager.hg.baseFolders": {
"type": "array",
"default": [],
"description": "Indicates the base folders to search for Mercurial projects"
},
"projectManager.hg.ignoredFolders": {
"type": "array",
"default": [
"node_modules",
"out",
"typings",
"test",
".haxelib"
],
"description": "Indicates folders to be ignored, like \"node_modules\", \"out\", \"typings\", \"test\""
},
"projectManager.hg.maxDepthRecursion": {
"type": "integer",
"default": 4,
"description": "Indicates the maximum depth of folder recursion to search for projects. Any value below 1 means there is no limit"
},
"projectManager.svn.baseFolders": {
"type": "array",
"default": [],
"description": "Indicates the base folders to search for SVN projects"
},
"projectManager.svn.ignoredFolders": {
"type": "array",
"default": [
"node_modules",
"out",
"typings",
"test"
],
"description": "Indicates folders to be ignored, like \"node_modules\", \"out\", \"typings\", \"test\""
},
"projectManager.svn.maxDepthRecursion": {
"type": "integer",
"default": 4,
"description": "Indicates the maximum depth of folder recursion to search for projects. Any value below 1 means there is no limit"
},
"projectManager.cacheProjectsBetweenSessions": {
"type": "boolean",
"default": true,
"description": "Should cache the VSCode, Git and SVN projects found?"
},
"projectManager.checkInvalidPathsBeforeListing": {
"type": "boolean",
"default": true,
"description": "Should check for invalid paths before listing, showing a message below the project name?"
},
"projectManager.treeview.visible": {
"type": "boolean",
"default": true,
"description": "Should display the Treeview?"
},
"projectManager.filterOnFullPath": {
"type": "boolean",
"default": false,
"description": "Should filter projects through full path?"
}
}
},
"keybindings": [
{
"command": "projectManager.listProjects",
"key": "shift+alt+p",
"mac": "cmd+alt+p"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^6.0.40",
"typescript": "^2.3.2",
"vscode": "^1.1.17"
},
"dependencies": {
"walker": "^1.0.7"
},
"__metadata": {
"id": "1b747f06-3789-4ebd-ac99-f1fe430c3347",
"publisherId": "3fbdef65-bdf5-4723-aeaf-9e12a50546ef",
"publisherDisplayName": "Alessandro Fragnani"
}
} |
Hi, First of all, sorry for the lack of news about this issue. In the recent weeks has been very difficult to find free time to work on the extensions 😢 The good news is that last week I decided to "re-focus" on some of my extensions, and I'll start to plan milestones for each of them. But this "re-focus" will be based on community feedback/support, and I still don't know where the issue will be. I would like to take the opportunity to ask if some of you does not experience the issue anymore, either after updating VS Code or with the latest update that I released yesterday. Thank you |
Hi @basvandenbrink @manawo , Are you really using using version 1.22.X? Wasn't that a typo? I'm asking because the current release is 1.27.2. I mean, the Activity Bar API was supposed to work from version 1.21^, but I'm not sure this was public available or should be enabled as Depending on this, I could try to find the older installer and test with this older version Hope this helps. |
Hi @alefragnani , Ah, there is a new version available. Now I see (I thought I had used Chocolatey for installing and updating VS Code). Problem solved! |
I installed version 1.22.2 and could reproduce the problem. It's really related to the supported API. Unfortunately, I can't publish previous versions of a package. So, to solve that, you must update to a newer VSCode release. I tested with 1.23 and worked fine. I'll update the extension to fix this min version issue. |
Hello, @alefragnani :)
Thank you for making PM8!!
When I update PM8, I got this errors. I cloud not see the folder icon at activity bar, also.
I'm using High Sierra (10.13.5) , VSC 1.22.1 , PM8. What should I do for this case?
The text was updated successfully, but these errors were encountered: