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

0.4 (SB 4.0) #15

Merged
merged 28 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1dd2916
add label type and fix const lookup in v4 transform
x87 Oct 21, 2023
3e7b89a
add is_getter method for commands with outputs
x87 Oct 27, 2023
feedf3f
fix for class props compilation in 4.0.0
x87 Oct 29, 2023
2c47699
fix test
x87 Oct 29, 2023
39a6584
fix autocomplete for props
x87 Oct 29, 2023
12bf846
use operators in legacy ini layer
x87 Nov 2, 2023
cc7282d
populate extensions list using SBL JSON
x87 Nov 5, 2023
69b52be
recognize binary numbers in parser
x87 Nov 5, 2023
1a52518
operand of op_not can be anything
x87 Nov 14, 2023
4bb0b45
make ls aware of new include_once token
x87 Nov 21, 2023
a22447a
highlight binary number constants
x87 Nov 24, 2023
41472cd
return const value alongside other info
x87 Nov 30, 2023
8676a6d
highlight variables declared as class instances
x87 Dec 22, 2023
237a694
improve parsing results for arrays with custom names
x87 Jan 7, 2024
ac8dfcb
make dictnumbystr iterable and move cast assignment to sb
x87 Jan 9, 2024
78a52d4
refactor language service to correctly assign line number for symbols…
x87 Jan 12, 2024
22075b8
respect function scope for const lifetime
x87 Jan 12, 2024
5d18499
support annotations, visibility zones, refactor source parser
x87 Jan 17, 2024
75e8f54
add source_map module
x87 Feb 10, 2024
97230fa
updates for beta.5
x87 Feb 22, 2024
c84972f
support updating classes and enums in auto-update
x87 Mar 11, 2024
8bae2fd
add preprocessor and support function hoisting in language service
x87 Apr 3, 2024
c2ab6fc
fix some parsing errors
x87 Apr 9, 2024
8c39a91
exported functions, auto-update, scr opcodes
x87 May 1, 2024
990b5c2
4.0 update
x87 Jul 27, 2024
e2fc40b
bump rust version
x87 Jul 27, 2024
09ed545
bump rust
x87 Jul 27, 2024
c9ab828
update action
x87 Jul 27, 2024
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
8 changes: 0 additions & 8 deletions .cargo/config

This file was deleted.

6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build]
target = "i686-pc-windows-msvc"


[target.i686-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static", "-Adead_code", "-Aunused"]
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2023-05-11
toolchain: nightly-2023-12-21
target: i686-pc-windows-msvc
override: true
- name: Build
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/target
b
br
Loading
Loading