Skip to content

Commit 96a5bbe

Browse files
Pjaijaipauljaijai
andauthored
Release v1.25.1 (#421)
* Fix/ yoe slider (#408) * chore(release): 1.23.2 * fix: fix slider showing zero value * Revert "chore(release): 1.23.2" This reverts commit 28d3a11. --------- Co-authored-by: Pjaijai <paul6a24@hotmail.com> * Feature/enhance query frontend cache (#413) * chore(release): 1.23.3 * fix: fix not sliding thumb not showing (#407) Co-authored-by: Pjaijai <paul6a24@hotmail.com> * perf: longer search post and user staletime --------- Co-authored-by: Pjaijai <paul6a24@hotmail.com> * fix: fix scroll cannot fix (#422) Co-authored-by: Pjaijai <paul6a24@hotmail.com> * fix: fix label (#423) Co-authored-by: Pjaijai <paul6a24@hotmail.com> * chore(release): 1.25.1 --------- Co-authored-by: Pjaijai <paul6a24@hotmail.com>
1 parent 1a71621 commit 96a5bbe

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.25.1](https://github.com/Pjaijai/Referalah/compare/v1.21.1...v1.25.1) (2025-01-31)
6+
7+
8+
### Bug Fixes
9+
10+
* fix label ([#423](https://github.com/Pjaijai/Referalah/issues/423)) ([f23baed](https://github.com/Pjaijai/Referalah/commit/f23baed5c54aced587b24503b00fb82ef1f918f0))
11+
* fix scroll cannot fix ([#422](https://github.com/Pjaijai/Referalah/issues/422)) ([eba4ee7](https://github.com/Pjaijai/Referalah/commit/eba4ee7888ca4ef3cd32779fbf7334a6e0fbeafd))
12+
513
## [1.25.0](https://github.com/Pjaijai/Referalah/compare/v1.24.0...v1.25.0) (2025-01-29)
614

715

client/components/customized-ui/bars/search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const SearchBar: React.FunctionComponent<ISearchSearchBarProps> = ({
8686

8787
<div className="flex flex-row items-center justify-between">
8888
<label className="basis-1/4 text-center text-sm">
89-
{t("general.region")}
89+
{t("general.city")}
9090
</label>
9191
<div className="basis-3/4">
9292
<LocationCombobox

client/components/customized-ui/sheets/filter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const FilterSheet: React.FunctionComponent<IFilterSheet> = ({
7272
onChange={onExperienceChange}
7373
/>
7474
</div>
75-
<p className="mt-8 text-sm font-medium">{t("general.region")}</p>
75+
<p className="mt-8 text-sm font-medium">{t("general.city")}</p>
7676
<LocationSelect
7777
containerClassName="mt-2"
7878
countryList={countryList}

client/next.config.mjs

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
/** @type {import('next').NextConfig} */
2-
31
import withPWA from "next-pwa"
42

53
const prod = process.env.NODE_ENV === "production"
64

7-
const pwaWrapper = withPWA({
5+
const pwaConfig = {
86
dest: "public",
9-
// default disable pwa in dev mode
107
disable: !prod,
118
register: true,
129
skipWaiting: true,
13-
})
14-
export default pwaWrapper({
10+
}
11+
12+
/** @type {import('next').NextConfig} */
13+
const nextConfig = {
1514
reactStrictMode: true,
1615
experimental: {
1716
appDir: true,
18-
severActions: true,
17+
serverActions: true,
18+
scrollRestoration: true,
1919
},
2020
images: {
21-
domains: ["localhost"], // Add the domain where your images are hosted
21+
domains: ["localhost"],
2222
},
23-
})
23+
}
24+
25+
export default withPWA(pwaConfig)(nextConfig)

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"next": "13.4.8",
6868
"next-international": "1.1.4",
6969
"next-pwa": "5.6.0",
70+
"next-scroll-restorer": "^0.9.9",
7071
"next-themes": "0.2.1",
7172
"prettier-plugin-tailwindcss": "0.5.6",
7273
"react": "18.2.0",

client/yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6919,6 +6919,11 @@ next-pwa@5.6.0:
69196919
workbox-webpack-plugin "^6.5.4"
69206920
workbox-window "^6.5.4"
69216921

6922+
next-scroll-restorer@^0.9.9:
6923+
version "0.9.9"
6924+
resolved "https://registry.yarnpkg.com/next-scroll-restorer/-/next-scroll-restorer-0.9.9.tgz#5b51410f2c93b141f75236ce4e4b5e6a391f1ebc"
6925+
integrity sha512-Ll+G7sFrxeoETlS0fnqVewoc7/ckv6oiE8g52lilfKdH87dfrwj/kgLFLFzZ19+G8P7y5EesRUdNJnzjtE297g==
6926+
69226927
next-themes@0.2.1:
69236928
version "0.2.1"
69246929
resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.2.1.tgz#0c9f128e847979daf6c67f70b38e6b6567856e45"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Referalah",
33
"description": "An open source online platform for oversea Hong Kong People to connect each other",
4-
"version": "1.25.0",
4+
"version": "1.25.1",
55
"license": "Apache-2.0",
66
"scripts": {
77
"prepare": "husky install .husky",

0 commit comments

Comments
 (0)