Skip to content

Commit c0eda55

Browse files
committed
Release 0.3.0
1 parent e69f7b3 commit c0eda55

8 files changed

Lines changed: 849 additions & 883 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [v0.3.0](https://github.com/NoelDeMartin/solid-focus/releases/tag/v0.3.0) - 2025-05-30
88

99
- App rebuilt from scratch using [Aerogel](https://aerogel.js.org/), check out the [Rebuilding Solid Focus with Aerogel](https://www.youtube.com/playlist?list=PLA3GcuMVHSbzxnR45Gzu2w7QuKs247tE5) video series and the [Making a Web Application Framework](https://noeldemartin.com/tasks/making-a-web-application-framework) development journal to learn more.
1010

cypress/e2e/cloud.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ describe('Cloud', () => {
383383
cy.press('Log out');
384384

385385
// Assert
386-
cy.see('Hello there');
386+
cy.see('Forget with confidence');
387387
cy.url().should('equal', `${Cypress.config('baseUrl')}/`);
388388
cy.model('Workspace').then(async (Workspace) => {
389389
const workspaces = await Workspace.all();

cypress/e2e/onboarding.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('Onboarding', () => {
99

1010
it('Starts offline', () => {
1111
// Arrange
12-
cy.see('Hello there');
12+
cy.see('Forget with confidence');
1313

1414
// Act
1515
cy.press('Get started');

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
"test:serve-pod": "community-solid-server -l warn"
2222
},
2323
"dependencies": {
24-
"@aerogel/core": "next",
25-
"@aerogel/plugin-i18n": "next",
26-
"@aerogel/plugin-local-first": "next",
27-
"@aerogel/plugin-routing": "next",
28-
"@aerogel/plugin-solid": "next",
29-
"@aerogel/plugin-soukai": "next",
24+
"@aerogel/core": "^0.1.0",
25+
"@aerogel/plugin-i18n": "^0.1.0",
26+
"@aerogel/plugin-local-first": "^0.1.0",
27+
"@aerogel/plugin-routing": "^0.1.0",
28+
"@aerogel/plugin-solid": "^0.1.0",
29+
"@aerogel/plugin-soukai": "^0.1.0",
3030
"@intlify/unplugin-vue-i18n": "^0.12.2",
3131
"@noeldemartin/solid-utils": "^0.6.1",
3232
"@noeldemartin/utils": "^0.7.1",
@@ -44,9 +44,9 @@
4444
"vue-router": "^4.5.0"
4545
},
4646
"devDependencies": {
47-
"@aerogel/cli": "next",
48-
"@aerogel/cypress": "next",
49-
"@aerogel/vite": "next",
47+
"@aerogel/cli": "^0.1.0",
48+
"@aerogel/cypress": "^0.1.0",
49+
"@aerogel/vite": "^0.1.0",
5050
"@iconify/json": "2.2.340",
5151
"@noeldemartin/eslint-config-vue": "next",
5252
"@noeldemartin/scripts": "next",

pnpm-lock.yaml

Lines changed: 835 additions & 817 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lang/en.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -333,16 +333,3 @@ user:
333333
settings: Settings
334334
menu: Configuration
335335
anonymous: Anonymous
336-
337-
beta:
338-
tag: Beta
339-
title: Hello there!
340-
message: |
341-
Thanks for visiting **Focus**. The app is still a Work In Progress, so I don't recommend using it in production. But feel free
342-
to play around with it and take it for a spin. Most of the functionality is already in place, but there are still some things
343-
I want to do and I can't guarantee that it won't change in the final version.
344-
345-
Also, please don't share it too widely because I think first impressions are important and I've still got some work to do :).
346-
347-
You can find more about what is missing, and give some feedback, in the [Beta Feedback](https://github.com/NoelDeMartin/solid-focus/issues/15) issue.
348-
If you want to know when this is ready, subscribe to the issue in GitHub to get a notification.

src/pages/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { listName } from '@/utils/display';
55
import type TasksList from '@/models/TasksList';
66
import type WorkspaceModel from '@/models/Workspace';
77

8-
import LandingBeta from './landing/LandingBeta.vue';
8+
import Landing from './landing/Landing.vue';
99
import Workspace from './workspace/Workspace.vue';
1010

1111
export const bindings = defineRouteBindings({
@@ -23,7 +23,7 @@ export const routes = defineRoutes([
2323
{
2424
name: 'home',
2525
path: '/',
26-
component: LandingBeta,
26+
component: Landing,
2727
beforeEnter: () => Workspaces.open(),
2828
},
2929
{

src/pages/landing/LandingBeta.vue

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)