Skip to content

Commit

Permalink
change project version
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSciFier committed Jul 5, 2022
1 parent 9117952 commit fde97ab
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neonlink-frontend",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"dependencies": {
"@dnd-kit/core": "^6.0.5",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/helpers/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const APP_NAME = "NeonLink";
export const VERSION = 0.1;
export const VERSION = "1.0.0";
export const DEF_MAX_ITEMS = 10;
export const DEF_COLUMNS = 3;
export const CARD_HEADER_STYLE = ["default", "transparent", "borderless"];
Expand Down
12 changes: 12 additions & 0 deletions frontend/src/pages/settings/tabs/aboutTab.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import { APP_NAME, VERSION } from "../../../helpers/constants";
import InputGroup from "../components/inputGroup";
import "../../../../package.json";

export default function AboutTab() {
return (
Expand All @@ -19,6 +20,17 @@ export default function AboutTab() {
<div>
<p>Open-source self-hosted bookmark service</p>
<p>Version {VERSION}</p>
<p>
Source code:{" "}
<a
href="https://github.com/AlexSciFier/neonlink"
target={"_blank"}
rel="noreferrer"
className="text-cyan-600 hover:underline"
>
GitHub
</a>
</p>
</div>
</InputGroup>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neonlink",
"version": "0.1.0",
"version": "1.0.0",
"description": "Simple self-hosted bookmark service.",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit fde97ab

Please sign in to comment.