Skip to content

Commit

Permalink
Update for SDK 1.14.0, and turned off Wayland Sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
ur-pheeb committed Jan 18, 2024
1 parent 3d67445 commit a030214
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM universalrobots/ursim_e-series
# FROM ubuntu:18.04
#CMD ["bash"]
ENV HOME=/sdk-1.13.0
ENV HOME=/sdk-1.14.0
ENV URTOOL_ROOT=/opt/urtool-3.0 \
URTOOL_TARGET=i686-unknown-linux-gnu- \
PATH="${PATH}:/opt/urtool-3.0/bin"
Expand All @@ -20,9 +20,9 @@ RUN apt-get -y update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl https://s3-eu-west-1.amazonaws.com/ur-support-site/115819/sdk-1.13.0.zip -o sdk-1.13.0.zip \
&& unzip sdk-1.13.0.zip -d /sdk-1.13.0 \
&& rm sdk-1.13.0.zip \
&& cd /sdk-1.13.0 \
RUN curl https://urplus-developer-site.s3.eu-west-1.amazonaws.com/sdk/sdk-1.14.0.zip -o sdk-1.14.0.zip \
&& unzip sdk-1.14.0.zip -d /sdk-1.14.0 \
&& rm sdk-1.14.0.zip \
&& cd /sdk-1.14.0 \
&& yes | ./install.sh

11 changes: 7 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {
"dev.containers.mountWaylandSocket": false
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": ["donjayamanne.python-extension-pack", "ms-python.python", "ms-vscode.cpptools",
"redhat.java", "vscjava.vscode-java-debug", "vscjava.vscode-maven", "ahern.urscript",
"yzhang.markdown-all-in-one"]
}
"extensions": ["donjayamanne.python-extension-pack", "ms-python.python", "ms-vscode.cpptools",
"redhat.java", "vscjava.vscode-java-debug", "vscjava.vscode-maven", "ahern.urscript",
"yzhang.markdown-all-in-one"]
}
}
}

0 comments on commit a030214

Please sign in to comment.