-
Notifications
You must be signed in to change notification settings - Fork 6
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
Animations not work on the latest version of VSCode. #78
Comments
I also tested the latest several versions and found that the August update v1.93 of VSCode works fine. The issue started occurring after the September update v1.94, and the last available version that works is 1.93.1.
|
Me too! |
Ok thank you for providing all that info. Oddly, it works for me on the exact same vscode v1.94.2 build as you gave. Although, unfortunately it seems the Apc extension may not be working for a bit given a recent issue. Given that Thank you so much for your help, let me know if anything fixes it but otherwise I can look more into it tomorrow. |
I have the same problem. Reinstallation makes no effect. |
Note to everyone: Apc Customize UI++ is currently not working, use
|
This is because version 1.94 of VSCode changed the location of many resource files and removed some information, causing many similar plugins to stop working. I released a plugin that adds animations to VSCode, you can check it out: https://marketplace.visualstudio.com/items?itemName=wwy.easy-anim-code |
In the past, plugins like ours that modified the UI would add CSS and JS to a specific file in the VSCode installation path. However, now that file may have been removed or renamed, causing these plugins to no longer function properly. |
This file modification might be related to the overall ESM migration in VSCode version 1.94, as mentioned on their official website. |
I switched the installation method to |
Me too! |
For everyone it is still not working could you verify you are running vscode with admin privileges and then run If that works for anyone, please let me know. Otherwise could you provide your vscode info like this, thanks.
|
That helped me
Thanks! |
Hi!
Thansk for your attention! |
Hi @BrandonKirbyson, First off, please accept my grateful thanks for your work on this extension! I'm still having some trouble switching to Version: 1.94.2
Release: 24286
Commit: 62f778783c52510c94e687de293bc2ad230f9a67
Date: 2024-10-12T20:14:54.465Z
Electron: 30.5.1
ElectronBuildId: undefined
Chromium: 124.0.6367.243
Node.js: 20.16.0
V8: 12.4.254.20-electron.0
OS: Linux x64 6.8.0-47-generic First, I searched for FROM node:slim
LABEL maintainer="[email protected]"
RUN apt-get update && \
apt-get upgrade -y && \
apt-get autoremove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN npm install -g yo@latest generator-code@latest vsce@latest
WORKDIR /mnt/ #!/bin/bash
# build-image.sh
# Function to check if Docker is installed
check_docker() {
if ! command -v docker &> /dev/null; then
echo "Docker is not installed. Please install Docker and try again."
exit 1
fi
}
# Check for Docker installation
check_docker
# Build the Docker image
docker build \
-t neilpandya/node:vsix-generator . #!/bin/bash
# run-container.sh
# Run the container
docker run \
--name vsix-generator \
--hostname vsix-generator \
--rm \
-it \
--user $(id -u):$(id -g) \
-v "$PWD"/:/mnt/"$PWD" \
-w /mnt/"$PWD" \
neilpandya/node:vsix-generator \
bash git clone https://github.com/be5invis/vscode-custom-css.git
cd vscode-custom-css
./build-image.sh && ./run-container.sh
# From within the container...
vsce package If all goes well, it should output
Unfortunately, still no luck. Perhaps, building the Thanks again for your work and in advance for any advice or insight you can give! |
@rafael-tonello Was it working before, when you were running vscode without admin privileges? Custom CSS and JS - Mac and Linux Users @NeilPandya Thanks for providing so much info, the VSCodium build of this extension is probably slightly outdated, I can publish the newest version later today although I don't think anything was added that should fix it. |
It seems that Animations cannot run on the latest version of VSCode. Here is the version information of the VSCode being used.
I tried two different installation methods, but neither of them achieved the expected result when the animation was enabled.
When I tried using a lower version of VSCode, it worked properly.
Below is the version information that I am using which is working properly.
The text was updated successfully, but these errors were encountered: