[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 93699c6 web/index: fix dangling/improper paragraph (P) tag (2)

ffmpeg-git at ffmpeg.org ffmpeg-git at ffmpeg.org
Fri Jan 19 14:57:47 EET 2024


The branch, master has been updated
       via  93699c6527fbc074400719503473101d09784a49 (commit)
       via  98c648a8853f59ef8edd13bc16dea893e66e3f35 (commit)
       via  da508f3afc51ccea74ecd622addb6b5023c01833 (commit)
       via  ab9bc0b0c3e5f098388a1c7e5cca4242f1a939c9 (commit)
       via  b008bd910b468a4fd6722d806588db21090b8ed6 (commit)
      from  62138051e88797f59212e36dedc625b905423864 (commit)


- Log -----------------------------------------------------------------
commit 93699c6527fbc074400719503473101d09784a49
Author:     Marth64 <marth64 at proxyid.net>
AuthorDate: Mon Jan 8 15:17:25 2024 -0600
Commit:     Anton Khirnov <anton at khirnov.net>
CommitDate: Fri Jan 19 13:57:00 2024 +0100

    web/index: fix dangling/improper paragraph (P) tag (2)
    
    Signed-off-by: Marth64 <marth64 at proxyid.net>
    Signed-off-by: Anton Khirnov <anton at khirnov.net>

diff --git a/src/index b/src/index
index edf8100..1eb5524 100644
--- a/src/index
+++ b/src/index
@@ -146,8 +146,8 @@
     <a href="https://git.videolan.org/?p=ffmpeg.git;a=summary">repository</a> is required.
     The functionality will be included in stable branches with the release of version 6.1, due
     to be released soon.
-  <p>
   </p>
+  <p>
     As this is also the first practical implementation of the specifications, bugs may be present,
     particularly in drivers, and, although passing verification, the implementation itself.
     New codecs, and encoding support are also being worked on, by both the Khronos organization

commit 98c648a8853f59ef8edd13bc16dea893e66e3f35
Author:     Marth64 <marth64 at proxyid.net>
AuthorDate: Mon Jan 8 15:22:17 2024 -0600
Commit:     Anton Khirnov <anton at khirnov.net>
CommitDate: Fri Jan 19 13:53:09 2024 +0100

    web/index: fix unclosed SMALL tag
    
    Signed-off-by: Marth64 <marth64 at proxyid.net>
    Signed-off-by: Anton Khirnov <anton at khirnov.net>

diff --git a/src/template_footer1 b/src/template_footer1
index 4fce551..6722421 100644
--- a/src/template_footer1
+++ b/src/template_footer1
@@ -1,5 +1,5 @@
 
-          <p class="text-right"><small>Hosting provided by <a href="https://telepoint.bg">telepoint.bg</a><small></p>
+          <p class="text-right"><small>Hosting provided by <a href="https://telepoint.bg">telepoint.bg</a></small></p>
         </div> <!-- page-content-inset -->
       </div> <!-- page-content-wrapper -->
     </div> <!-- wrapper -->

commit da508f3afc51ccea74ecd622addb6b5023c01833
Author:     Marth64 <marth64 at proxyid.net>
AuthorDate: Wed Jan 10 11:29:21 2024 -0600
Commit:     Anton Khirnov <anton at khirnov.net>
CommitDate: Fri Jan 19 13:52:10 2024 +0100

    web/index: fix invalid line breaks (BR)
    
    Uses preferred convention for ffmpeg
    
    Signed-off-by: Marth64 <marth64 at proxyid.net>
    Signed-off-by: Anton Khirnov <anton at khirnov.net>

diff --git a/src/index b/src/index
index 98cc516..edf8100 100644
--- a/src/index
+++ b/src/index
@@ -113,11 +113,11 @@
   </p>
   <p>
     Internally, we have had a number of changes too. The FFT, MDCT, DCT and DST implementation used for codecs
-    and filters has been fully replaced with the faster libavutil/tx (full article about it coming soon).</br>
-    This also led to a reduction in the the size of the compiled binary, which can be noticeable in small builds.</br>
+    and filters has been fully replaced with the faster libavutil/tx (full article about it coming soon).<br>
+    This also led to a reduction in the the size of the compiled binary, which can be noticeable in small builds.<br>
     There was a very large reduction in the total amount of allocations being done on each frame throughout video decoders,
-    reducing overhead.</br>
-    RISC-V optimizations for many parts of our DSP code have been merged, with mainly the large decoders being left.</br>
+    reducing overhead.<br>
+    RISC-V optimizations for many parts of our DSP code have been merged, with mainly the large decoders being left.<br>
     There was an effort to improve the correctness of timestamps and frame durations of each packet, increasing the
     accurracy of variable frame rate video.
   </p>

commit ab9bc0b0c3e5f098388a1c7e5cca4242f1a939c9
Author:     Marth64 <marth64 at proxyid.net>
AuthorDate: Mon Jan 8 15:45:23 2024 -0600
Commit:     Anton Khirnov <anton at khirnov.net>
CommitDate: Fri Jan 19 13:47:17 2024 +0100

    web/README: add missing dependency clean-css
    
    Signed-off-by: Marth64 <marth64 at proxyid.net>
    Signed-off-by: Anton Khirnov <anton at khirnov.net>

diff --git a/README b/README
index 5076719..4b1ce67 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ ffmpeg.org official website
 GENERATE THE WEBSITE
 --------------------
 
-`lessc` is required to generate CSS of the website.[1]
+`lessc` and `clean-css` are required to generate CSS of the website.[1]
 
 Type `make` to generate the website.
 Type `make clean` to remove the generated files.
@@ -49,11 +49,11 @@ you might want to check out the C++ version: http://www.vanderkroef.net/clessc.h
 - Install everything globally (root required)
   - Install npm from the packages or the sources: http://nodejs.org/
   - Install lessc and bower using npm:
-    $ sudo npm install -g bower less
+    $ sudo npm install -g bower less clean-css
 
 - Install only npm globally
   - Install npm from the packages or the sources: http://nodejs.org/
   - Install lessc and bower in the current directory using npm:
-    $ npm install bower less
+    $ npm install bower less clean-css
   - Add the path to your environment:
     $ export PATH=`pwd`/node_modules/bower/bin:`pwd`/node_modules/less/bin:$PATH

commit b008bd910b468a4fd6722d806588db21090b8ed6
Author:     Marth64 <marth64 at proxyid.net>
AuthorDate: Mon Jan 8 15:40:40 2024 -0600
Commit:     Anton Khirnov <anton at khirnov.net>
CommitDate: Fri Jan 19 13:45:18 2024 +0100

    web/template_head2: fix broken anchor on 'Contribute' link
    
    Signed-off-by: Marth64 <marth64 at proxyid.net>
    Signed-off-by: Anton Khirnov <anton at khirnov.net>

diff --git a/src/template_head2 b/src/template_head2
index 7ba634b..102fac0 100644
--- a/src/template_head2
+++ b/src/template_head2
@@ -34,7 +34,7 @@
           <li><a href="developer.html">Developers</a>
             <ul>
               <li><a href="download.html#get-sources">Source Code</a>
-              <li><a href="developer.html#Contributing">Contribute</a></li>
+              <li><a href="developer.html#Introduction">Contribute</a></li>
               <li><a href="http://fate.ffmpeg.org">FATE</a></li>
               <li><a href="http://coverage.ffmpeg.org">Code Coverage</a></li>
             </ul>

-----------------------------------------------------------------------

Summary of changes:
 README               |  6 +++---
 src/index            | 10 +++++-----
 src/template_footer1 |  2 +-
 src/template_head2   |  2 +-
 4 files changed, 10 insertions(+), 10 deletions(-)


hooks/post-receive
-- 



More information about the ffmpeg-cvslog mailing list