mirror of
https://github.com/usememos/memos.git
synced 2025-10-08 13:28:29 +08:00
chore: upgrade version to 0.14.1
(#2004)
This commit is contained in:
parent
55975a46d8
commit
4231ec5a1a
3 changed files with 5 additions and 5 deletions
|
@ -9,10 +9,10 @@ import (
|
|||
|
||||
// Version is the service current released version.
|
||||
// Semantic versioning: https://semver.org/
|
||||
var Version = "0.14.0"
|
||||
var Version = "0.14.1"
|
||||
|
||||
// DevVersion is the service current development version.
|
||||
var DevVersion = "0.14.0"
|
||||
var DevVersion = "0.14.1"
|
||||
|
||||
func GetCurrentVersion(mode string) string {
|
||||
if mode == "dev" || mode == "demo" {
|
||||
|
|
|
@ -8,7 +8,7 @@ import MemoList from "@/components/MemoList";
|
|||
import MobileHeader from "@/components/MobileHeader";
|
||||
import HomeSidebar from "@/components/HomeSidebar";
|
||||
|
||||
function Home() {
|
||||
const Home = () => {
|
||||
const t = useTranslate();
|
||||
const globalStore = useGlobalStore();
|
||||
const userStore = useUserStore();
|
||||
|
@ -43,6 +43,6 @@ function Home() {
|
|||
<HomeSidebar />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
export default Home;
|
||||
|
|
|
@ -80,7 +80,7 @@ const router = createBrowserRouter([
|
|||
},
|
||||
},
|
||||
{
|
||||
path: "/u/:username",
|
||||
path: "u/:username",
|
||||
element: <Explore />,
|
||||
loader: async () => {
|
||||
await initialGlobalStateLoader();
|
||||
|
|
Loading…
Add table
Reference in a new issue