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

Implement component roList #688

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d786413
refactor in preparation for adoption the project
TwitchBronBron Apr 19, 2023
fbaaed7
fix build script name
TwitchBronBron Apr 19, 2023
2ccec94
install node modules first
TwitchBronBron Apr 19, 2023
53c1aeb
break out tasks to view nicer failure spot
TwitchBronBron Apr 19, 2023
817c651
Add coverage reporting
TwitchBronBron Apr 19, 2023
e31226b
Actually add coverage reporting
TwitchBronBron Apr 19, 2023
b2d223a
fix coverage reporting
TwitchBronBron Apr 19, 2023
f1546e3
Merge pull request #1 from rokucommunity/adoption
TwitchBronBron Apr 24, 2023
94304cd
Fixed `val()` edge cases: hex without radix and `NaN`
lvcabral Sep 7, 2023
a223c2a
Fixed prettier and replaced deprecated `substr()` method
lvcabral Sep 7, 2023
ec82a06
Update README.md
TwitchBronBron Sep 8, 2023
afca557
Merge pull request #3 from rokucommunity/bugfix/string-val-function-n…
lvcabral Sep 8, 2023
f72f2dc
Add changelog
TwitchBronBron Sep 8, 2023
af0c223
Add note about the project fork.
TwitchBronBron Sep 8, 2023
202cc9f
Make tests import relative path to lib/index.js
TwitchBronBron Sep 8, 2023
ab5322a
0.45.1
TwitchBronBron Sep 9, 2023
7569e86
add logic for optional chaining (#21)
nadiapadalka Oct 25, 2023
e6c98ae
fix(interp): Preventing multiple calls for dot-chained methods (#22)
lvcabral Oct 31, 2023
98dcee2
fix(parser): Wrong negative sign precedence was causing math errors (…
lvcabral Nov 1, 2023
d8878a9
update changelog for v0.45.2
TwitchBronBron Nov 8, 2023
7ef68bb
0.45.2
TwitchBronBron Nov 8, 2023
5f13b59
fix(components): Replacing package luxon by day.js on `roDateTime` an…
lvcabral Nov 21, 2023
e98151c
fix(parser,lexer) Optional chaining implementation side effect #30 (#31)
lvcabral Dec 1, 2023
6e5b422
feat(components): Implemented missing `ifEnum` methods in `roArray` a…
lvcabral Dec 1, 2023
b8e459a
feat(lex,parse): Add stub try/catch implementation (#34)
lvcabral Dec 1, 2023
a5e0217
Adds create-package CI build for quicker iteration (#36)
TwitchBronBron Dec 1, 2023
bcda693
fix(lib): Component XML path parsing was failing on edge case (#37)
lvcabral Dec 1, 2023
60abf73
Update changelog for v0.45.3
TwitchBronBron Dec 1, 2023
6a59ad8
0.45.3
TwitchBronBron Dec 1, 2023
d66a0ed
Fixed #16 Print leading space before positive numbers (#39)
lvcabral Dec 11, 2023
7cdd4a3
Fixed #38 Improved context handling for Callables (#40)
lvcabral Dec 11, 2023
bcf6142
Fixed #41 - Global functions `GetInterface()` and `FindMemberFunction…
lvcabral Jan 18, 2024
90f0df1
Update changelog for v0.45.4
TwitchBronBron Jan 18, 2024
b5f9d5c
0.45.4
TwitchBronBron Jan 18, 2024
91af226
Fixed #43 - Implemented `roString` methods `startsWith()` and `endsWi…
lvcabral Feb 7, 2024
88627e7
Fixed Arithmetic Operator Modulo behavior to match Roku (#46)
lvcabral Mar 25, 2024
d766e37
Implemented component `roList`
lvcabral Mar 25, 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
Prev Previous commit
Next Next commit
update changelog for v0.45.2
  • Loading branch information
TwitchBronBron committed Nov 8, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d8878a976c008f40f8f981a494de0c29de4cc39c
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,11 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [0.45.2](https://github.com/rokucommunity/brs/compare/v0.45.1...v0.45.2) - 2023-11-07
### Added
- logic for optional chaining ([#21](https://github.com/rokucommunity/brs/pull/21))
### Fixed
- fix(parser): Wrong negative sign precedence was causing math errors (#6) ([#24](https://github.com/rokucommunity/brs/pull/24))
- fix(interp): Preventing multiple calls for dot-chained methods ([#22](https://github.com/rokucommunity/brs/pull/22))



## [0.45.1](https://github.com/rokucommunity/brighterscript/compare/v0.45.0...v0.45.1) - 2023-09-08
### Changed
- This is the first release of the RokuCommunity fork of this project
- remove yarn in favor of npm ([#1](https://github.com/rokucommunity/brs/pull/1))
### Fixed
- Fixed `val()` edge cases: hex without radix and `NaN` ([#3](https://github.com/rokucommunity/brs/pull/3))