Skip to content
Draft
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
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install autobuild
run: npm run bootstrap:autobuild

- name: Sync definition artifacts
run: npm run definitions:sync

- name: Run linter
run: npm run lint

Expand Down Expand Up @@ -55,6 +61,12 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install autobuild
run: npm run bootstrap:autobuild

- name: Sync definition artifacts
run: npm run definitions:sync

- name: Install vsce (VS Code Extension Manager)
run: npm install -g @vscode/vsce

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,12 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install autobuild
run: npm run bootstrap:autobuild

- name: Sync definition artifacts
run: npm run definitions:sync

- name: Compile extension
run: npm run vscode:prepublish

Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ node_modules
*.code-workspace
.vscode/settings.json
.vscode/lsl-lsp-server.log
.autobuild/
/data/secondlife_selene.yml
/data/lsl_keywords.xml
/data/lua_keywords.xml
/data/secondlife.d.luau
/data/secondlife.docs.json
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.vscode-test/**
.github/**
.*
.autobuild/**
src/**
out/test/**
data/dev/**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The Second Life External Scripting Extension transforms VS Code into a developme
- **WebSocket Connection**: Direct communication with Second Life viewer
- **Live Synchronization**: Real-time script editing and updates
- **External Editing**: Edit scripts externally while maintaining viewer session
- **Pinned Object Explorer Items**: Pin important objects in the Second Life (Inworld) explorer, keep them visible while disconnected, and auto-restore them on reconnect
- **Configurable Networking**: Customizable WebSocket port and connection settings

### Development Tools
Expand Down
77 changes: 77 additions & 0 deletions autobuild.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" ?>
<llsd>
<map>
<key>version</key>
<string>1.3</string>
<key>type</key>
<string>autobuild</string>
<key>installables</key>
<map>
<key>lsl_definitions</key>
<map>
<key>platforms</key>
<map>
<key>common</key>
<map>
<key>archive</key>
<map>
<key>hash</key>
<string>c9928095cf40377e901458f5240305a7af2c554d</string>
<key>hash_algorithm</key>
<string>sha1</string>
<key>url</key>
<string>https://github.com/secondlife/lsl-definitions/releases/download/v0.6.12/lsl_definitions-0.6.12-common-29281156609.tar.zst</string>
</map>
<key>name</key>
<string>common</string>
</map>
</map>
<key>license</key>
<string>MIT</string>
<key>license_file</key>
<string>LICENSES/lsl_definitions.txt</string>
<key>copyright</key>
<string>Copyright (c) 2026, Linden Research, Inc.</string>
<key>version</key>
<string>0.6.12</string>
<key>name</key>
<string>lsl_definitions</string>
<key>description</key>
<string>LSL definitions</string>
</map>
</map>
<key>package_description</key>
<map>
<key>platforms</key>
<map>
<key>common</key>
<map>
<key>configurations</key>
<map>
<key>Release</key>
<map>
<key>configure</key>
<map>
</map>
<key>build</key>
<map>
</map>
<key>default</key>
<string>True</string>
<key>name</key>
<string>Release</string>
</map>
</map>
<key>name</key>
<string>common</string>
</map>
</map>
<key>license</key>
<string>MIT</string>
<key>version</key>
<string>1.0.0</string>
<key>name</key>
<string>sl-vscode-plugin</string>
</map>
</map>
</llsd>
Loading
Loading