mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
chore: bump version
refactor: move current version to the config file
This commit is contained in:
parent
5971b9c5ae
commit
a1d6d84f7c
2 changed files with 4 additions and 1 deletions
|
@ -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 =
|
||||
|
|
|
@ -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`) {
|
||||
|
|
Loading…
Add table
Reference in a new issue