Skip to content

Commit a987fb3

Browse files
committed
Add changelog and latest updates sections
1 parent 3f46f17 commit a987fb3

File tree

3 files changed

+88
-0
lines changed

3 files changed

+88
-0
lines changed

CHANGELOG.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Changelog
2+
3+
All notable changes to this project are documented in this file.
4+
5+
This changelog is bootstrapped from git tags and commit history.
6+
7+
## [Unreleased]
8+
9+
### Added
10+
- Interesting targets on compare page (add/remove named points such as mall, friend house, or landmarks).
11+
- Interesting target map markers (visualized alongside workplace and listings).
12+
13+
## [1.2.0] - 2026-02-06
14+
15+
### Added
16+
- Company/workplace address search bar with suggestion candidates.
17+
18+
## [1.1.2] - 2026-02-05
19+
20+
### Added
21+
- Vercel Analytics integration for frontend traffic insights.
22+
- Chrome extension v1.0.0 release workflow and publishing assets.
23+
24+
### Changed
25+
- Improved onboarding and pairing UX for workspace token flow.
26+
- Extended workspace token default validity to 6 months.
27+
28+
### Fixed
29+
- CI lockfile mismatch (`package.json` vs `package-lock.json`) for `npm ci`.
30+
31+
## [1.1.1] - 2026-01-30
32+
33+
### Added
34+
- OpenRouter-based LLM extraction for selected text posts.
35+
- Blueground platform support.
36+
- Project logo and branding assets.
37+
- Initial deployment docs and self-hosting docs.
38+
39+
### Changed
40+
- Main page and documentation updates.
41+
42+
### Fixed
43+
- Airbnb price extraction edge cases.
44+
- Localhost/config issues related to API and onboarding.
45+
46+
## [1.1.0] - 2026-01-30
47+
48+
### Added
49+
- Google Maps map rendering and route modes (drive/transit/walk/bike).
50+
- Auto-refresh behavior for listings and compare view.
51+
- Initial CI workflow.
52+
53+
### Changed
54+
- UI layout and compare page usability improvements.
55+
56+
### Fixed
57+
- Early MVP bugs in icon/search/location flows.
58+
59+
## [1.0.0] - 2026-01-30
60+
61+
### Added
62+
- Initial MVP release.
63+
- Core architecture: frontend + backend + Chrome extension.
64+
- Basic listing capture and map-based comparison workflow.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ Users collect listings while browsing platforms such as Airbnb, Blueground, Face
1111

1212
EasyRelocate does not scrape platforms server-side, host listings, process payments, or replace original marketplaces. It exists solely to help users make better relocation decisions, while respecting platform boundaries and directing all final actions back to the original sources.
1313

14+
## Latest updates
15+
- Added searchable workplace address input with candidates.
16+
- Added “Interesting Targets” (e.g., mall/friend house/landmark) shown on map.
17+
- Added Vercel Analytics and improved onboarding/pairing UX.
18+
- Full release history: `CHANGELOG.md`
19+
1420
## Repo structure
1521
- `backend/`: FastAPI API (SQLite for local dev; Postgres supported via `DATABASE_URL`)
1622
- `frontend/`: React (Vite) web app (Google Maps JS map + routing)
@@ -139,3 +145,4 @@ See: `docs/GOOGLE_MAPS_APPROX_LOCATION.md`
139145
- OpenRouter LLM extraction: `docs/OPENROUTER_LLM_EXTRACTION.md`
140146
- Deployment runbook (GCP managed + self-hosted): `docs/DEPLOYMENT.md`
141147
- Privacy policy: `docs/PRIVACY.md`
148+
- Changelog: `CHANGELOG.md`

frontend/src/pages/LandingPage.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,23 @@ export default function LandingPage() {
159159
</li>
160160
</ul>
161161
</div>
162+
163+
<div className="landingCard">
164+
<h2>What&apos;s new</h2>
165+
<ul>
166+
<li>Search and select workplace/company address with suggestions.</li>
167+
<li>Add “Interesting Targets” and show them as map markers.</li>
168+
<li>Improved workspace pairing and onboarding flow.</li>
169+
</ul>
170+
<a
171+
className="button secondary"
172+
href="https://github.com/YuWei-CH/EasyRelocate/blob/main/CHANGELOG.md"
173+
target="_blank"
174+
rel="noreferrer"
175+
>
176+
View full changelog
177+
</a>
178+
</div>
162179
</section>
163180
</main>
164181

0 commit comments

Comments
 (0)