From 46fc34c191b5320da54345aa799ecedd2402146e Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 19 Jul 2023 13:32:20 +0200 Subject: [PATCH 1/4] update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b6803b..4780bb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,3 +70,13 @@ * 🤖 DEPENDENCIES * Update quay.io/linuxserver.io/code-server Docker tag to v4.14.1 (#47) + +## [v0.4.0](https://gitea.ocram85.com/CodeServer/arkanum/releases/tag/v0.4.0) - 2023-07-19 + +* 🐛 BUGFIXES + * Disable starship python module (#52) +* ✨ FEATURES + * Add docker-cli (#54) + * Adds Volta as default version manager for NodeJs (#53) +* 🛠️ ENHANCEMENTS + * Bump go version (#49) -- 2.45.1 From f656a2054fc2819796188beccf51c046e9bdb17f Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 19 Jul 2023 16:04:42 +0200 Subject: [PATCH 2/4] update default extensions --- arkanum | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arkanum b/arkanum index 3768e12..f8d8a08 100755 --- a/arkanum +++ b/arkanum @@ -195,7 +195,7 @@ function instCodeExtension() { say "Downloading required extensions...." "Extension" # Gitlens say "Downloading 'gitlens'..." "Extension" - curl -#fSL https://open-vsx.org/api/eamodio/gitlens/13.1.1/file/eamodio.gitlens-13.1.1.vsix -o /tmp/eamodio.gitlens-13.1.1.vsix + curl -#fSL https://open-vsx.org/api/eamodio/gitlens/14.0.1/file/eamodio.gitlens-14.0.1.vsix -o /tmp/eamodio.gitlens-13.1.1.vsix say "Installing 'gitlens'..." "Extension" install-extension /tmp/eamodio.gitlens-13.1.1.vsix say "Cleaning up 'gitlens' install files" "Extension" @@ -203,7 +203,7 @@ function instCodeExtension() { # OneDarkPro say "Downloading 'One Dark Pro' theme..." "Extension" - curl -#fSL https://open-vsx.org/api/zhuangtongfa/material-theme/3.15.6/file/zhuangtongfa.material-theme-3.15.6.vsix -o /tmp/zhuangtongfa.material-theme-3.15.6.vsix + curl -#fSL https://open-vsx.org/api/zhuangtongfa/material-theme/3.15.18/file/zhuangtongfa.material-theme-3.15.18.vsix -o /tmp/zhuangtongfa.material-theme-3.15.6.vsix say "Installing 'One Dark Pro' theme..." "Extension" install-extension /tmp/zhuangtongfa.material-theme-3.15.6.vsix say "Cleaning up 'One Dark Pro' install files" "Extension" @@ -211,7 +211,7 @@ function instCodeExtension() { # vscode-icons say "Downloading 'vscode-icons' theme..." "Extension" - curl -#fSL https://open-vsx.org/api/vscode-icons-team/vscode-icons/12.0.1/file/vscode-icons-team.vscode-icons-12.0.1.vsix -o /tmp/vscode-icons-team.vscode-icons-12.0.1.vsix + curl -#fSL https://open-vsx.org/api/vscode-icons-team/vscode-icons/12.4.0/file/vscode-icons-team.vscode-icons-12.4.0.vsix -o /tmp/vscode-icons-team.vscode-icons-12.0.1.vsix say "Installing 'vscode-icons' theme..." "Extension" install-extension /tmp/vscode-icons-team.vscode-icons-12.0.1.vsix say "Cleaning up 'vscode-icons' install files" "Extension" -- 2.45.1 From b975997652ace7b7f66ccee6b6ff6c2bd9d9d169 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 19 Jul 2023 16:06:27 +0200 Subject: [PATCH 3/4] update readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf7ceb0..e5aae9f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Therefore you need version: "3.8" services: arkanum: - image: gitea.ocram85.com/codeserver/arkanum:0.2.0 + image: gitea.ocram85.com/codeserver/arkanum:0.4.0 environment: - PUID=1000 - PGID=1000 @@ -77,10 +77,11 @@ services: volumes: # store workspace and use config in volume. - codedata:/config + # mount docker socket to manage host docker + - /var/run/docker.sock:/var/run/docker.sock # no need to expose the port. traefik acts as reverse proxy and handles the https access. #ports: # - 8443:8443 - restart: unless-stopped networks: - arkanum-sphere - traefik-public @@ -106,7 +107,7 @@ See their [docs](https://github.com/linuxserver/docker-code-server#parameters) a version: "3.8" services: arkanum: - image: gitea.ocram85.com/codeserver/arkanum:0.2.0 + image: gitea.ocram85.com/codeserver/arkanum:0.4.0 container_name: code-server environment: - PUID=1000 -- 2.45.1 From f22fe206c17825e6b23888e8aaf1ff2bd999af2d Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 19 Jul 2023 16:07:20 +0200 Subject: [PATCH 4/4] update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4780bb8..8cc6550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,10 +70,11 @@ * 🤖 DEPENDENCIES * Update quay.io/linuxserver.io/code-server Docker tag to v4.14.1 (#47) - + ## [v0.4.0](https://gitea.ocram85.com/CodeServer/arkanum/releases/tag/v0.4.0) - 2023-07-19 * 🐛 BUGFIXES + * Fix shellcheck issues (#55) * Disable starship python module (#52) * ✨ FEATURES * Add docker-cli (#54) -- 2.45.1