mirror of https://github.com/mifi/lossless-cut
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.6 KiB
TypeScript
19 lines
1.6 KiB
TypeScript
export const homepageUrl = 'https://losslesscut.app/';
|
|
export const githubUrl = 'https://github.com/mifi/lossless-cut/';
|
|
export const getReleaseUrl = (version: string) => `https://github.com/mifi/lossless-cut/releases/tag/v${version}`;
|
|
export const compareReleasesUrl = (fromVersion: string, toVersion: string) => `https://github.com/mifi/lossless-cut/compare/v${fromVersion}...v${toVersion}`;
|
|
export const licensesUrl = 'https://losslesscut.mifi.no/licenses.txt';
|
|
export const thanksUrl = 'https://mifi.no/thanks';
|
|
export const discussionsUrl = 'https://mifi.no/losslesscut/discussions';
|
|
export const usageUrl = 'https://mifi.no/losslesscut/usage';
|
|
export const faqUrl = 'https://mifi.no/losslesscut/faq';
|
|
export const featureRequestUrl = 'https://mifi.no/losslesscut/feature-request';
|
|
export const publicBugReportUrl = 'https://mifi.no/losslesscut/bug-report';
|
|
export const troubleshootingUrl = 'https://mifi.no/losslesscut/troubleshooting';
|
|
// Note: https://github.com/mifi/lossless-cut/blob/master/docs/file-name-template.md used to be https://github.com/mifi/lossless-cut/blob/master/docs.md#custom-exported-file-names
|
|
export const exportedFileNameTemplateHelpUrl = 'https://mifi.no/losslesscut/file-name-template';
|
|
export const selectSegmentByExpressionHelpUrl = 'https://mifi.no/losslesscut/select-segments-by-expression';
|
|
export const editSegmentByExpressionHelpUrl = 'https://mifi.no/losslesscut/edit-segments-by-expression';
|
|
export const changeEnabledStreamsExpressionHelpUrl = 'https://mifi.no/losslesscut/select-tracks-by-expression';
|
|
export const supportEmail = 'losslesscut@mifi.no';
|