Skip to content
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

v1.0.8 #14

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/scicloj/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

"postAttachCommand":
{ "ide-setup": ["bash", "-c", "if [ -f \"/home/vscode/.setup-ide/setup-ide.sh\" ]; then /home/vscode/.setup-ide/setup-ide.sh; fi"],
"prepare": ["bash","-c", "-i", "./.devcontainer/setup.sh"]
"prepare": ["bash","-c", "-i", "source ./.devcontainer/setup.sh"]


}
Expand Down
2 changes: 1 addition & 1 deletion src/scicloj/.devcontainer/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ clj -Sthreads 1 -P
mkdir -p .venv
poetry install
tic -x .devcontainer/terminfo24bit.src
export TERM=xterm-24bits
echo "alias emacs='TERM=xterm-24bits emacs'" >> ~/.bashrc
7 changes: 7 additions & 0 deletions src/scicloj/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# unreleased

# 1.0.8
- fixed alias

# 1.0.7
- fixed xterm14bit setup
- added alias for emacs to use 24bit

# 1.0.6
- moved to postAttach

Expand Down
2 changes: 1 addition & 1 deletion src/scicloj/devcontainer-template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "scicloj",
"version": "1.0.6",
"version": "1.0.8",
"name": "scicloj template",
"description": "A scicloj Template",
"documentationURL": "https://github.com/scicloj/devcontainer-templates/tree/main/src/scicloj",
Expand Down
Loading