Skip to content

Commit dfc4b07

Browse files
kavi2dumEp3ii2vt37freakboy3742Stringer90
authored
Add 2025 Curtin Capstone End of Semester Blog Post (#639)
Co-authored-by: mEp3ii2 <74845700+mEp3ii2@users.noreply.github.com> Co-authored-by: vt37 <110211722+vt37@users.noreply.github.com> Co-authored-by: Russell Keith-Magee <russell@keith-magee.com> Co-authored-by: Callum Horton <109891554+Stringer90@users.noreply.github.com>
1 parent 63be508 commit dfc4b07

1 file changed

Lines changed: 86 additions & 0 deletions

File tree

  • content/news/buzz/2025-curtin-capstone-semester-end-blog
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
title: 2025 Curtin University Capstone Project
2+
---
3+
author: Curtin Capstone Team
4+
---
5+
body:
6+
7+
Over the past semester, a team of final year students from [Curtin University](https://www.curtin.edu.au) has been collaborating with the BeeWare Project as part of a capstone project for their degrees. Here's a summary of what they've done so far this semester, and what they have planned for the rest of the year.
8+
9+
## Curtin Capstone
10+
11+
Capstone is the final year project undertaken by students across all computing disciplines at Curtin University, including Computer Science, Software Engineering, Cyber Security, and Information Technology. It allows students the opportunity to work in teams on real-world projects in collaboration with industry partners, gaining practical experience and professional exposure before graduating.
12+
13+
This year our team has had the exciting opportunity to contribute to BeeWare for our Capstone project.
14+
15+
Meet the Team:
16+
17+
- Kavidu Abeykoon Mudiyanselagedara ([kavi2du](https://github.com/kavi2du)); Information Technology
18+
- Callum Horton ([Stringer90](https://github.com/Stringer90)); Software Engineering
19+
- Caydn Lee ([caydnn](https://github.com/caydnn)); Software Engineering
20+
- Jaeden Mah ([JMah007](https://github.com/JMah007)); Computer Science
21+
- Mitchell Pontague ([mEp3ii2](https://github.com/mEp3ii2)); Software Engineering
22+
- Veronica Taniputra ([vt37](https://github.com/vt37)); Cyber Security
23+
24+
## What We’ve Worked On
25+
26+
This year, our primary focus has been on improving Toga’s Web backend and enhancing Briefcase’s support for that backend.
27+
28+
Throughout the first semester, our team has been focused on contributing to issues on Briefcase and Toga while working on our research to prepare for what is to come in the following semester. We’ve also worked on implementing several of the Toga Web widgets to enhance functionality on the web backend before working on the web test suite for next semester.
29+
30+
We were first tasked with contributing to a first timer issue before moving on to other more advanced issues.
31+
32+
### Briefcase Contributions
33+
34+
- PR [#2198](https://github.com/beeware/briefcase/pull/2198): Add boolean question (feature)
35+
- PR [#2103](https://github.com/beeware/briefcase/pull/2203): Add XML content escaping filter to cookiecutter.py (feature)
36+
- PR [#2199](https://github.com/beeware/briefcase/pull/2199): Add catch exception when deleting JDK (bugfix)
37+
- PR [#2229](https://github.com/beeware/briefcase/pull/2229): Accept other changelog name and extension (feature)
38+
- PR [#2201](https://github.com/beeware/briefcase/pull/2201): Add ``--app`` option to briefcase build/package (feature)
39+
- PR [#2214](https://github.com/beeware/briefcase/pull/2214): Add ``--app`` option to briefcase create/update (feature)
40+
- PR [#2236](https://github.com/beeware/briefcase/pull/2236): Normalise contribution docs with Toga (documentation)
41+
- PR [#54](https://github.com/beeware/briefcase-windows-VisualStudio-template/pull/54): Use XML content escaping filter to Visual Studio template. (bugfix) (work in progress)
42+
43+
### Toga Contributions
44+
45+
- PR [#3259](https://github.com/beeware/toga/pull/3259): Add web screenshots (documentation)
46+
- PR [#3466](https://github.com/beeware/toga/pull/3466): Fix button click handling in Toga Web backend to correctly trigger event (bugfix)
47+
- PR [#3338](https://github.com/beeware/toga/pull/3338): DateInput (web widget)
48+
- PR [#3405](https://github.com/beeware/toga/pull/3405): TimeInput (web widget)
49+
- PR [#3362](https://github.com/beeware/toga/pull/3362): ScrollContainer (web widget)
50+
- PR [#3425](https://github.com/beeware/toga/pull/3425): Table (web widget) (work in progress)
51+
- PR [#3402](https://github.com/beeware/toga/pull/3402): Selection (web widget)
52+
- PR [#3527](https://github.com/beeware/toga/pull/3527): Slider (web widget)
53+
54+
## What We're Working Towards
55+
56+
Now that we’re more familiar with the BeeWare ecosystem, through both our initial PRs and widget implementations, and having concluded our Semester 1 research phase, we’re shifting our focus to larger, more structural improvements for the second half of the project.
57+
58+
Our primary goals moving forward include:
59+
60+
### Toga Web Testing
61+
62+
Toga does not currently support testing for the web platform as the test suite and testbed app run multithreaded in the same process. The web platform is incompatible with this as WebAssembly does not support multithreading. To address this, we are working on developing a general approach that allows the test suite and testbed app to run in separate processes. This will include using proxy objects in place of Toga objects in the test suite that will wrap the respective object in the testbed app, forwarding commands to it in order to change its state and retrieve data.
63+
64+
Additionally, to verify the rendered state of the testbed app, we plan to use Playwright to inspect the browser's DOM and compare it against what the test suite expects. This setup should allow the web platform to be effectively tested while still using the existing test suite.
65+
66+
More technical details and discussion can be found in our [Discussion Post](https://github.com/beeware/toga/discussions/3440) on Toga and the associated [Issue Ticket](https://github.com/beeware/toga/issues/3545).
67+
68+
### PyScript Briefcase and Toga Dependencies
69+
70+
During Mitchell’s development of the DateInput Web Widget, we discovered some issues resulting from how PyScript APIs were being used. This issue was resolved separately but sparked broader discussions about the ownership of PyScript, Shoelace, and Bootstrap within the wider BeeWare architecture. Currently, the Briefcase web template includes these directly in ``index.html``, but they should ideally be managed as dependencies of Toga.
71+
72+
We’re proposing to shift ownership of these dependencies to Toga and other toolkits, enabling them to define their own configurations and inserts while keeping Briefcase focused purely on packaging. This would allow for clearer version control, better modularity, and easier maintenance across the ecosystem. This approach builds on prior work ([briefcase#1285](https://github.com/beeware/briefcase/pull/1285), [toga#1945](https://github.com/beeware/toga/pull/1945) and [briefcase-web-static-template#9](https://github.com/beeware/briefcase-web-static-template/pull/9)) and introduces a mechanism for toolkit-managed inserts and configuration. We plan on reviving parts of these to allow for Toga to specify PyScript versioning.
73+
74+
More technical details and discussion can be found in our [Discussion Post](https://github.com/beeware/briefcase/discussions/2283) on Briefcase and the associated [Issue Ticket](https://github.com/beeware/briefcase/issues/2337).
75+
76+
77+
### Briefcase Web Development Optimisations
78+
79+
While contributing to Toga's web widgets, we noticed that testing even small changes requires rebuilding all project wheels (with ``briefcase run web -r -u``), which can take a significant amount of time. This makes local development slow and interrupts the feedback loop needed for efficient frontend iteration.
80+
81+
To improve this we're going to be working on extending the ``dev`` command to be platform aware and make it so ``dev web`` utilises editbale installs to serve your project to the brower making it so with simple refresh of the browser you can quickly see your changes instead of waiting for a full wheel rebuild.
82+
83+
More technical details and discussion can be found in our [Discussion Post](https://github.com/beeware/briefcase/discussions/2282) on Briefcase and the associated [Issue Ticket](https://github.com/beeware/briefcase/issues/2334).
84+
85+
---
86+
pub_date: 2025-06-13

0 commit comments

Comments
 (0)