Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ Versions follow [Semantic Versioning](https://semver.org/) — minor bump per su

---

## [0.8.0] — 2026-06-27 — More built-in functions

### Added
- New W3Script built-in functions (#4, PR #17 by @kas2804): `ROUND(n, decimals)`,
`MOD(a, b)`, `MAX(a, b)`, `MIN(a, b)`, `TIME()` (current time as `HH:MM:SS`),
and the date-part functions `YEAR(date)`, `MONTH(date)`, `DAY(date)`. Each has a
matching Vitest case in `tests/Builtins.test.ts`.

---

## [0.7.0] — 2026-06-24 — MODIFY STRUCTURE / ALTER TABLE

### Added
Expand Down
3 changes: 2 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ WebBase-III supports **unlimited work areas** (no DOS 10-area limit). Cross-area
## Roadmap (in progress)

1. ~~Indexing & Search~~ — `INDEX ON`, `SET INDEX TO`, `SEEK`, `FIND`, `REINDEX`, `LIST INDEXES` ✅
2. ~~Language Completeness~~ — `DO CASE/ENDCASE`, built-in functions (`EOF()`, `BOF()`, `FOUND()`, `RECNO()`, `RECCOUNT()`, `SUBSTR()`, `STR()`, `AT()`, `UPPER()`, `LOWER()`, and more) ✅
2. ~~Language Completeness~~ — `DO CASE/ENDCASE`, built-in functions (`EOF()`, `BOF()`, `FOUND()`, `RECNO()`, `RECCOUNT()`, `SUBSTR()`, `STR()`, `AT()`, `UPPER()`, `LOWER()`, `ROUND()`, `MOD()`, `MAX()`, `MIN()`, `TIME()`, `YEAR()`, `MONTH()`, `DAY()`, and more) ✅
- `ROUND`/`MOD`/`MAX`/`MIN`/`TIME`/`YEAR`/`MONTH`/`DAY` contributed by [@kas2804](https://github.com/kas2804) in PR #17 (#4). 🙏
3. ~~Multi-Work-Area~~ — unlimited `SELECT <alias>`, `SET RELATION TO`, `alias.field` notation ✅
4. ~~Report & Label Engine~~ — `REPORT FORM`, group breaks, subtotals, HTML preview ✅
5. ~~The Assistant~~ — sidebar GUI, wizards, catalog protocol ✅
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,19 @@ The Playwright suite (`tests/integration.spec.ts`, `tests/crm.spec.ts`) drives a

---

## Contributors

Huge thanks to everyone who has helped extend WebBase-III:

- **[@kas2804](https://github.com/kas2804) (Kasturi Rajarampatil)** — added the
`ROUND`, `MOD`, `MAX`, `MIN`, `TIME`, `YEAR`, `MONTH`, and `DAY` built-in
functions ([#4](https://github.com/DDecoene/WebBaseIII/issues/4), PR
[#17](https://github.com/DDecoene/WebBaseIII/pull/17)) — clean, well-tested
work that brought the W3Script expression engine closer to full dBASE III
parity. 🙌

---

## License

AGPL-3.0 — see [LICENSE.md](LICENSE.md).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webbase-iii",
"version": "0.7.0",
"version": "0.8.0",
"description": "dBASE III is back. In your browser. USE customers like it's 1984.",
"private": true,
"type": "module",
Expand Down
Loading