mirror of
https://github.com/mue/mue.git
synced 2026-06-12 19:48:57 +02:00
35 lines
1.4 KiB
JavaScript
35 lines
1.4 KiB
JavaScript
// API URLs
|
|
export const API_URL = 'https://api.muetab.com';
|
|
export const PROXY_URL = 'https://proxy.muetab.com';
|
|
export const MARKETPLACE_URL = 'https://marketplace.muetab.com';
|
|
export const SPONSORS_URL = 'https://sponsors.muetab.com';
|
|
export const GITHUB_URL = 'https://api.github.com';
|
|
export const DDG_IMAGE_PROXY = 'https://external-content.duckduckgo.com/iu/?u=';
|
|
|
|
// Mue URLs
|
|
export const WEBSITE_URL = 'https://muetab.com';
|
|
export const PRIVACY_URL = 'https://muetab.com/privacy';
|
|
export const BLOG_POST = 'https://blog.muetab.com/posts/version-5-3';
|
|
export const FEEDBACK_FORM = 'https://api.formcake.com/api/form/349b56cb-7e2b-4004-b32b-e8964d217dd1/submission';
|
|
export const TRANSLATIONS_URL = 'https://docs.muetab.com/translations/';
|
|
|
|
// Mue Info
|
|
export const ORG_NAME = 'mue';
|
|
export const REPO_NAME = 'mue';
|
|
export const EMAIL = 'hello@muetab.com';
|
|
export const TWITTER_HANDLE = 'getmue';
|
|
export const INSTAGRAM_HANDLE = 'mue.tab';
|
|
export const FACEBOOK_HANDLE = 'muetab';
|
|
export const DISCORD_SERVER = 'zv8C9F8';
|
|
export const COPYRIGHT_NAME = 'The Mue Authors';
|
|
export const COPYRIGHT_YEAR = '2018';
|
|
export const COPYRIGHT_LICENSE = 'BSD-3 License';
|
|
export const DONATE_USERNAME = 'davidjcralph'; // this only works if you use the same username for Patreon, GitHub and Ko-Fi
|
|
|
|
// Offline images
|
|
export const OFFLINE_IMAGES = 20;
|
|
|
|
// Version
|
|
export const BETA_VERSION = false;
|
|
export const VERSION = '5.3.2';
|