Files
anixart-website/src/constants/app.ts
2024-07-17 14:41:27 +05:00

80 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { AppChangelog } from '@interfaces/common';
import {
default_img_1,
default_img_2,
exclusive_img_1,
exclusive_img_2,
} from '@constants/common';
export const APP_VERSIONS: Array<AppChangelog> = [
{
appName: 'Default',
descrition: 'Простой мод без каких-либо дополнительных функций.',
images: [
default_img_1,
default_img_2,
],
changelogs: [{
version: '1.0',
date: '20/05/24',
isCurrentVersion: true,
supportAndroidVersion: '9+',
download: 'https://github.com/seele-off/anixart/releases/download/anixart-default/Anixart-Default-v1.0-by-Seele.apk', // ссылка на apk
changes: [
'Без рекламы',
'Корона в профиле 👑',
'Добавлена тематическая иконка',
'Добавлено новое расширение "MD Seele v3.0"',
'Расширение предназначено для просмотра запрещенных аниме'
],
},
{
version: '1.0 Alpha',
supportAndroidVersion: '9+',
download: 'https://www.darknet.kz/download', // ссылка на apk
date: '18/05/22',
changes: [
'Adding Serach System',
'Adding Bypes',
],
}],
},
{
appName: 'Exclusive',
descrition: 'Эксклюзивный мод, особенностью этого мода является Monet Тема (Material You)',
images: [
exclusive_img_1,
exclusive_img_2
],
changelogs: [{
version: '1.0',
date: '20/05/24',
isCurrentVersion: true,
supportAndroidVersion: '12+',
download: 'https://github.com/seele-off/anixart/releases/download/anixart-exclusive/Anixart-Exclusive-v1.0-by-Seele.apk', // ссылка на apk
changes: [
'Без рекламы',
'Корона в профиле 👑',
'Monet Theme (Material You)',
'Добавлена тематическая иконка',
'Добавлено новое расширение "MD Seele v3.0"',
'Расширение предназначено для просмотра запрещенных аниме'
],
}],
},
{
appName: 'Amoled',
descrition: 'Анонс',
images: [],
changelogs: [{
version: '',
date: 'В разработке',
isCurrentVersion: true,
supportAndroidVersion: '9+',
download: '', // ссылка на apk
changes: [],
}],
},
];