chore: bump version

refactor: move current version to the config file
This commit is contained in:
Kentai Radiquum 2024-08-23 00:47:07 +05:00
parent 5971b9c5ae
commit a1d6d84f7c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,5 @@
export const CURRENT_APP_VERSION = "3.1.1";
export const API_URL = "https://api.anixart.tv";
export const API_PREFIX = "/api";
export const USER_AGENT =

View file

@ -1,11 +1,12 @@
import { NextResponse } from "next/server";
import * as fs from "node:fs";
import * as path from "node:path";
import { CURRENT_APP_VERSION } from "../config";
export async function GET() {
const directoryPath = path.join(process.cwd(), "public/changelog");
const files = fs.readdirSync(directoryPath);
const current = "3.1.0";
const current = CURRENT_APP_VERSION;
const previous = [];
files.forEach((file) => {
if (file != `${current}.md`) {