Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b0641e2
Nox (#9)
TheDevConnor Oct 19, 2025
123fb7d
Merge branch 'nox' into main
NoxAether Oct 19, 2025
418a640
Made it so that you can call the struct insides its scope as wellq
Oct 19, 2025
31053d5
Added in syscalls and updated the lsp server
Oct 22, 2025
d53a8f8
Finished adding in bitwise operations
Oct 22, 2025
2a55e47
Started to work on read and write ability in luma also started to imp…
Oct 24, 2025
8675560
Worked on the lsp server a bit
Oct 24, 2025
47c51cd
Made the read_file function dynamic
Oct 24, 2025
0214499
Fixed some minor issues in teh codegen and now made a lexer as well
Oct 24, 2025
44e7117
Started to add in struct exprs
Oct 26, 2025
3091bed
Added in struct exprs
Oct 26, 2025
a0ebeba
Added more to the lexer in luma!
Oct 27, 2025
0e7add6
Added in error handling for the lexer and started working on a parser…
Oct 27, 2025
2e7c507
Fixed static analyzer issue
Oct 29, 2025
42422f4
Fixed how member expr's and struct access is being handled in the cod…
Oct 29, 2025
80f0a00
Parser Push
Oct 30, 2025
ec1d73e
fixed markdown, names, segfault, and warnings (#11)
TheSovietPancakes Oct 31, 2025
28be381
Got the parser working
Oct 31, 2025
9f78f25
Added in forward declarations, and cleaned up the parser code some mo…
Oct 31, 2025
868a7b4
Started to add in resolution types
Nov 2, 2025
25aa80e
Fixed some small tc issues that are now fixed
Nov 3, 2025
fbae450
Fixed switch cases in the tc and llvm
Nov 3, 2025
10c74bf
Started making a chess engine and made a make file for the chess prog…
Nov 5, 2025
6dda498
Added in a .gitattributes
Nov 5, 2025
a321c56
Updated it
Nov 5, 2025
e6fb22a
Cleaned up the chess code a bit
Nov 5, 2025
a8c0961
Update make files and the chess engine
Nov 5, 2025
a487011
refactored build system (#12)
fmbearmf Nov 7, 2025
762c799
Added in checking logic!
Nov 7, 2025
625a61c
Fixed up the make file to work on windows!
TheDevConnor Nov 7, 2025
a4e4e69
fix build system (pt 2; electric boogaloo) (#13)
fmbearmf Nov 7, 2025
7ea4045
Made it so that arrays are padded
Nov 10, 2025
795e95a
Moved around some files, and cleaned up the luma build system code
Nov 12, 2025
f27370f
Testing doxygen file
Nov 13, 2025
b18a093
Maybe now I love workflows
Nov 13, 2025
c19d73a
Getting ready for first release!
Nov 13, 2025
98d1e50
Fixed the windows build issue. Making v0.1.0 now!
TheDevConnor Nov 13, 2025
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.lx linguist-language=Lua
22 changes: 9 additions & 13 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -19,6 +22,9 @@ jobs:
- name: Run Doxygen
run: doxygen Doxyfile

- name: Verify Doxygen output
run: ls -la docs/doxygen/

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand All @@ -28,16 +34,6 @@ jobs:
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
commit_message: 'Update Doxygen documentation'
keep_files: false # DON'T keep previous files
force_orphan: true # Optional: force orphan branch for fresh history
enable_jekyll: false # No Jekyll on gh-pages

- name: Enable GitHub Pages via API
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/pages \
-d '{"source":{"branch":"gh-pages","path":"/"}}'
keep_files: false
force_orphan: true
enable_jekyll: false
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ build
obj
lux

# autotools
autom4te.cache

# Linux executables (files without extensions)
*
!*/
Expand All @@ -22,6 +25,9 @@ docs/xml/
*.o
*.s

# Ignore IDE directories
.vscode

# ignore the lsp-client server node modules
node_modules
package-lock.json
Expand Down
77 changes: 40 additions & 37 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
{
"files.associations": {
"type.h": "c",
"array": "c",
"atomic": "c",
"bit": "c",
"charconv": "c",
"cmath": "c",
"compare": "c",
"concepts": "c",
"string": "c",
"unordered_map": "c",
"exception": "c",
"algorithm": "c",
"memory": "c",
"memory_resource": "c",
"optional": "c",
"random": "c",
"string_view": "c",
"type_traits": "c",
"utility": "c",
"functional": "c",
"format": "c",
"iosfwd": "c",
"istream": "c",
"limits": "c",
"new": "c",
"numeric": "c",
"queue": "c",
"ranges": "c",
"span": "c",
"sstream": "c",
"streambuf": "c",
"system_error": "c",
"tuple": "c",
"typeinfo": "c",
"variant": "c",
"vector": "c",
"help.h": "c"
"*.py": "python",
"*.rpy": "renpy",
"type.h": "c",
"array": "c",
"atomic": "c",
"bit": "c",
"charconv": "c",
"cmath": "c",
"compare": "c",
"concepts": "c",
"string": "c",
"unordered_map": "c",
"exception": "c",
"algorithm": "c",
"memory": "c",
"memory_resource": "c",
"optional": "c",
"random": "c",
"string_view": "c",
"type_traits": "c",
"utility": "c",
"functional": "c",
"format": "c",
"iosfwd": "c",
"istream": "c",
"limits": "c",
"new": "c",
"numeric": "c",
"queue": "c",
"ranges": "c",
"span": "c",
"sstream": "c",
"streambuf": "c",
"system_error": "c",
"tuple": "c",
"typeinfo": "c",
"variant": "c",
"vector": "c",
"help.h": "c",
"llvm.h": "c"
}
}
28 changes: 15 additions & 13 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Contributing to Lux
# Contributing to Luma

Thank you for your interest in contributing to Lux, a simple yet powerful systems programming language!
Thank you for your interest in contributing to Luma, a simple yet powerful systems programming language!

This document outlines the guidelines and best practices to help you contribute effectively. Whether you're reporting bugs, suggesting features, or submitting code, we appreciate your help making Lux better for everyone.
This document outlines the guidelines and best practices to help you contribute effectively. Whether you're reporting bugs, suggesting features, or submitting code, we appreciate your help making Luma better for everyone.

## Table of Contents

Expand All @@ -24,7 +24,7 @@ By participating in this project, you agree to abide by the Contributor Covenant

### Reporting Issues

If you find a bug or unexpected behavior in Lux, please open an issue on the GitHub repository with:
If you find a bug or unexpected behavior in Luma, please open an issue on the GitHub repository with:

- A clear and descriptive title
- Steps to reproduce the problem
Expand Down Expand Up @@ -58,18 +58,20 @@ To set up a local development environment:

1. Ensure you have the required dependencies installed (e.g., cmake, ninja, gcc or your preferred compiler).

2. Clone the Lux repository:
```bash
git clone https://github.com/your-username/lux.git
cd lux
```
2. Clone the Luma repository:

```bash
git clone https://github.com/your-username/luma.git
cd luma
```

3. Build the project following instructions in the README (or specific build scripts).

4. Run to ensure everything is working:
```bash
./lux
```

```bash
./luma
```

## Style Guide

Expand All @@ -93,4 +95,4 @@ By contributing, you agree that your contributions will be licensed under the MI

---

**Thank you for helping make Lux awesome!**
**Thank you for helping make Luma awesome!**
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "Lux"
PROJECT_NAME = "Luma"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down Expand Up @@ -2730,4 +2730,4 @@ GENERATE_LEGEND = YES
# files.
# The default value is: YES.

DOT_CLEANUP = YES
DOT_CLEANUP = YES
Loading