Skip to main content
SurfScape Flower Wordmark

Back in 27, April 2026 I've made an announcement on our social media regarding the state of Celer and that I would be archiving the project on the same day, fast-forward some weeks to 15, May 2026, and you'll notice that the Celer repo on GitHub is not archived anymore because I've made the decission to restart development on the project.

Now some of the decisions behind archiving Celer were caused by many factors, the main two being:

The reason for this post is to tell everyone Celer is coming back and to show what are the current plans for the project, from a first stable release to upcoming major features.

Improving Modularity

Before Celer got archived, I wes working on making Celer more modular through the creation of a new package called Infrastructure, this package would contain various classes that abstracts the system (both hardware like display, battery, sensors, to software like services, security, other applications, and more).

I only got far into making one for the battery, this class contains centralized methods and properties that allows someone to retrieve information of the system's battery, both static data (ex: brand, model, and factory full capacity) and dynamic data (health, charge, remaining time, and more).

Celer currently has this scattered, some code resides in the Power Module view model, another part in the class for power management, and the rest in the battery class. With this new package not only everything is in one place, it's also way easier to implement and document.

New Settings Window

The current settings window works, but it's pretty cumbersome to add new preferences, not only that, it's also built in a way where the user needs to apply their changes manually instead of the app handling it.

Old Celer settings window

It would be nicer to have something that is more organized, easier to use, easier to add new preferences to, and that notifies the user (ex: when a user changed something that requires an app restart) and provide more useful information (by using tooltips for example).

Although development has started on this, it's far from ready, but it's looking much nicer that the older window!

New Celer settings window

Design Changes

Another major change that is currently in progress is the design, Celer already looks pretty good and matches with the Windows 11 Fluent Design system but there are still some inconsistencies mainly do to some of the elements being hard-coded, as in, most are not reusable components so there is a lot of overlap between elements but none of their code is reused making some parts of the app similar but not consistent and also being more cumbersome to modify.

Making most of these elements into reusable components also means these will suffer some aspect changes to make them more adaptable.