Update project name to ffprobe-wasm.

This commit is contained in:
Alf
2020-11-09 21:17:52 -08:00
parent fc142e8ab1
commit af5a5aeaf7
13 changed files with 40 additions and 24 deletions

2
www/package-lock.json generated
View File

@@ -1,5 +1,5 @@
{
"name": "ffprobe-web-analyzer",
"name": "ffprobe-wasm",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,

View File

@@ -1,5 +1,5 @@
{
"name": "ffprobe-web-analyzer",
"name": "ffprobe-wasm",
"version": "0.0.1",
"scripts": {
"serve": "vue-cli-service serve",

View File

@@ -12,7 +12,7 @@
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script src="ffprobe-web-analyzer.js"></script>
<script src="ffprobe-wasm.js"></script>
<!-- built files will be auto injected -->
</body>
</html>

View File

@@ -4,7 +4,7 @@
<div class="container">
<b-navbar-nav>
<b-nav-item href="#">
FFProbe Web Analyzer
FFProbe
</b-nav-item>
</b-navbar-nav>
</div>
@@ -13,7 +13,7 @@
<GitHubCorner />
<div id="app" class="container">
<h3>FFProbe Web Analyzer</h3>
<h3>FFProbe</h3>
<b-alert variant="warning" show>
Compatible with Chrome and Edge only due to limited support for <a href="https://caniuse.com/sharedarraybuffer">SharedArrayBuffer</a> and the <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer">required CORS headers</a> for Firefox on Github Pages.
@@ -28,8 +28,8 @@
<div class="text-muted">
<ul>
<li>{{ name }}-{{ version }}</li>
<li><a href="https://github.com/alfg/ffprobe-web-analyzer">Source</a></li>
<li><a href="https://github.com/alfg/ffprobe-web-analyzer/issues">Report Bugs</a></li>
<li><a href="https://github.com/alfg/ffprobe-wasm">Source</a></li>
<li><a href="https://github.com/alfg/ffprobe-wasm/issues">Report Bugs</a></li>
</ul>
</div>
</footer>

View File

@@ -3,7 +3,7 @@
<b-form-group label="Select a file:" label-for="file">
<b-form-file
id="file"
accept="video/mp4"
accept="video/*"
v-model="file"
:state="Boolean(file)"
placeholder="Choose a file or drop it here..."

View File

@@ -1,7 +1,7 @@
<template>
<!-- http://tholman.com/github-corners/ -->
<a
href="https://github.com/alfg/ffprobe-web-analyzer"
href="https://github.com/alfg/ffprobe-wasm"
class="github-corner"
aria-label="View source on GitHub"
>

View File

@@ -2,11 +2,11 @@ module.exports = {
pages: {
index: {
entry: 'src/main.js',
title: 'FFProbe Web Analyzer',
title: 'FFProbe',
}
},
publicPath: process.env.NODE_ENV === 'production'
? '/ffprobe-web-analyzer/'
? '/ffprobe-wasm/'
: '/',
configureWebpack: {
devServer: {