drcika / apc-extension

https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension
MIT License
644 stars 25 forks source link

ActivityBar not working. #136

Closed CoderMungan closed 7 months ago

CoderMungan commented 8 months ago

Ekran Resmi 2024-01-21 18 15 46

internpoon commented 8 months ago

yeah, stop working after the latest VS code update

CoderMungan commented 8 months ago

i hope will be update too for APC fix too

honghaoz commented 8 months ago

This is the error I'm seeing:

CleanShot 2024-01-25 at 11 38 48@2x

Apc Extension failed: Error: EACCES: permission denied, rename '/Applications/Visual Studio Code.app/Contents/Resources/app/out/bootstrap-amd.js' -> '/Applications/Visual Studio Code.app/Contents/Resources/app/out/bootstrap-amd.js.apc.extension.backup'

Source: Apc Customize Ul++ (Extension)
Jhinger commented 8 months ago

Similarly, background-image stopped working after the latest vscode update.

heyman commented 8 months ago

Downgrading VSCode to version 1.85.1 resolved it for me.

Here's a download link for macOS with Apple silicon: https://update.code.visualstudio.com/1.85.1/darwin-arm64/stable

Here are instructions on how to construct download links for other platforms: https://code.visualstudio.com/docs/supporting/faq#_previous-release-versions

Don't forget to turn off auto updates.

CoderMungan commented 8 months ago

Downgrading VSCode to version 1.85.1 resolved it for me.

Here's a download link for macOS with Apple silicon: https://update.code.visualstudio.com/1.85.1/darwin-arm64/stable

Here are instructions on how to construct download links for other platforms: https://code.visualstudio.com/docs/supporting/faq#_previous-release-versions

Don't forget to turn off auto updates.

but without this need the work actually. so need the update about the extension too i mean.

Jhinger commented 8 months ago

Downgrading VSCode to version 1.85.1 resolved it for me.

Here's a download link for macOS with Apple silicon: https://update.code.visualstudio.com/1.85.1/darwin-arm64/stable

Here are instructions on how to construct download links for other platforms: https://code.visualstudio.com/docs/supporting/faq#_previous-release-versions

Don't forget to turn off auto updates.

I haven't been able to fix the activitybar or background image after downgrading (even with the example settings provided in the repo) - did you happen to change anything in order to fix those?

CoderMungan commented 8 months ago

Downgrading VSCode to version 1.85.1 resolved it for me. Here's a download link for macOS with Apple silicon: https://update.code.visualstudio.com/1.85.1/darwin-arm64/stable Here are instructions on how to construct download links for other platforms: https://code.visualstudio.com/docs/supporting/faq#_previous-release-versions Don't forget to turn off auto updates.

I haven't been able to fix the activitybar or background image after downgrading (even with the example settings provided in the repo) - did you happen to change anything in order to fix those?

If you downgranding, your old settings will return. I think it didn't work because it received an automatic update again. It may also be a conflict with some extensions you use.

CassandraCat commented 8 months ago

Sometimes my Activity Bar doesn't show up completely.

CoderMungan commented 8 months ago

mate @drcika i hope see that issue! 😂

ahwelgemoed commented 8 months ago

I also have this issue since the last 2 updates of VSCode.

But I don't recommend not upgrading VSCode just for a Visual Extension like this. I had a quick look at the source code but could not spend the time to find a fix.

drcika commented 8 months ago

Screenshot 2024-02-15 at 14 46 28 Screenshot 2024-02-15 at 14 46 32 Screenshot 2024-02-15 at 14 46 42

ahwelgemoed commented 8 months ago

Wow, that does fix it, turns out the extension was just disabled after the update. Thanks @drcika

drcika commented 8 months ago

they do not want extensions of this type they have already destroyed https://github.com/iocave/customize-ui

CoderMungan commented 8 months ago

wow. i did it perfectly by the way. When i did it Enable APC extension worked! Thank you so much! can be close the this issue! @drcika

and i wanna share my settings

{
  // open json editor for settings
  "workbench.settings.editor": "json",
  "files.autoSave": "afterDelay",
  "workbench.iconTheme": "moxer-icons",
  // Change font
  "editor.fontFamily": "Geist Mono",
  "scm.inputFontFamily": "Geist Mono",
  "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
  "chat.editor.fontFamily": "Geist Mono",
  "debug.console.fontFamily": "Geist Mono",
  "editor.codeLensFontFamily": "Geist Mono",
  "notebook.output.fontFamily": "Geist Mono",
  "markdown.preview.fontFamily": "Geist Mono",
  "editor.inlayHints.fontFamily": "Geist Mono",
  // Font size
  "editor.fontSize": 15,
  "terminal.integrated.fontSize": 14,
  // ui
  "editor.minimap.enabled": false,
  "workbench.tree.indent": 25,
  "window.commandCenter": false,
  "editor.scrollbar.vertical": "auto",
  "editor.scrollbar.horizontal": "auto",
  // APC
  "apc.activityBar": {
    "position": "bottom",
    "hideSettings": true,
    "size": 28
  },
  "apc.electron": {
    "titleBarStyle": "hiddenInset",
    "trafficLightPosition": {
      "x": 12,
      "y": 10
    }
  },
  "apc.font.family": "Geist Mono",
  "apc.monospace.font.family": "Geist Mono",
  "apc.statusBar": {
    "position": "editor-bottom",
    "height": 28,
    "fontSize": 12
  },
  // Cusom css
  "apc.stylesheet": {
    ".sidebar > .composite": "height: 12px !important",
    ".title-label": "display: none !important",
    ".title-actions": "display: none !important",
    ".tabs-and-actions-container > .editor-actions": "display: none !important",
    ".titlebar-center": "display: none !important",
    ".titlebar-right": "display: none !important",
    ".inline-tabs-placeholder": "display: none !important",
    ".split-view-view .visible": "background-color: #110f17 !important"
  },
  //Themes Customizations
  "workbench.colorCustomizations": {
    "[MoonGun Dark Nietzsche]": {
      "editor.background": "#110f17",
      "terminal.background": "#110f17",
      "activityBar.background": "#110f17",
      "statusBar.background": "#110f17",
      "editorGroupHeader.tabsBackground": "#110f17",
      "tab.inactiveBackground": "#110f17"
    }
  },
  // Misc
  "workbench.startupEditor": "none",
  "explorer.compactFolders": false,
  "editor.tabSize": 2,
  "editor.linkedEditing": true,
  "breadcrumbs.filePath": "off",
  "files.trimTrailingWhitespace": true,
  "[markdown]": {
    "files.trimTrailingWhitespace": false
  },
  "editor.bracketPairColorization.enabled": true,
  "editor.guides.bracketPairs": true,
  "window.zoomLevel": 0,
  "typescript.updateImportsOnFileMove.enabled": "never",
  "explorer.confirmDragAndDrop": false,
  "javascript.updateImportsOnFileMove.enabled": "never",
  "githubPullRequests.pullBranch": "never",
  "console-ninja.toolsToEnableSupportAutomaticallyFor": {
    "live-server-extension": true,
    "live-preview-extension": true
  },
  "files.associations": {
    "*.html": "html",
    "*.js": "javascript"
  },
  "tailwindCSS.classAttributes": [
    "class",
    "className",
    "ngClass",
    "variant"
  ],
  "tailwindCSS.includeLanguages": {
    "html": "html",
    "javascript": "javascript",
    "css": "css",
    "python": "python"
  },
  "editor.quickSuggestions": {
    "strings": true
  },
  "tailwindCSS.experimental.configFile": null,
  "console-ninja.featureSet": "Community",
  "[python]": {
    "editor.defaultFormatter": "ms-python.black-formatter",
    "editor.codeActionsOnSave": {
      "source.organizeImports": "explicit"
    }
  },
  "terminal.integrated.env.osx": {},
  "terminal.integrated.env.windows": {},
  "[json]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "workbench.colorTheme": "MoonGun Dark Nietzsche",
  "vscode-pets.theme": "forest",
}
honghaoz commented 6 months ago

Based on error message:

Apc Extension failed: Error: EACCES: permission denied, rename '/Applications/Visual Studio Code.app/Contents/Resources/app/out/bootstrap-amd.js' -> '/Applications/Visual Studio Code.app/Contents/Resources/app/out/bootstrap-amd.js.apc.extension.backup'

The failures are caused by permission issues.

Temporarily add "write" access for "Everyone" to the following directories fixes the extension: