diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 000000000..984c8005c --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,47 @@ +name: Deploy Docs + +on: + push: + branches: [main, master] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + - name: Install dependencies + run: npm install + - name: Build docs + run: npm run docs:build + env: + BASE: /${{ github.event.repository.name }}/ + - name: Upload Pages artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs/.vuepress/dist + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 92546816b..5301aa2b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2023 Olive Studios LLC # # This program is free software: you can redistribute it and/or modify diff --git a/README.md b/README.md index d9012c771..782fd683e 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# Olive Video Editor Community Edition[![Build status](https://github.com/olive-editor/olive/workflows/CI/badge.svg?branch=master)](https://github.com/olive-editor/olive/actions?query=branch%3Amaster) +# Oak Video Editor[![Build status](https://github.com/olive-editor/olive/workflows/CI/badge.svg?branch=master)](https://github.com/olive-editor/olive/actions?query=branch%3Amaster) -Olive is a free non-linear video editor for Windows, macOS, and Linux. +Oak Video Editor is a free non-linear video editor for Windows, macOS, and Linux. Unfortunately, the original author has not submitted code updates for over 7 months, and no public contact information (email or otherwise) is available to reach them directly. -Now, we are maintaining a community edition for this project. +This project is a community-maintained fork of Olive Video Editor. ![screen](https://olivevideoeditor.org/img/020-2.png) -**NOTE: Olive is alpha software and is considered highly unstable. While we highly appreciate users testing and providing usage information, please use at your own risk.** +**NOTE: Oak Video Editor is alpha software and is considered highly unstable. While we highly appreciate users testing and providing usage information, please use at your own risk.** ## Binaries The original author compiled following binaries: diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index cb36f0ee5..faf335dbb 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify @@ -96,7 +96,7 @@ target_include_directories(olive-editor PUBLIC pluginSupport) target_link_libraries(olive-editor PUBLIC OfxHost) # Create docs if doxygen was found if(DOXYGEN_FOUND) - set(DOXYGEN_PROJECT_NAME "Olive") + set(DOXYGEN_PROJECT_NAME "Oak Video Editor") set(DOXYGEN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/docs") set(DOXYGEN_EXTRACT_ALL "YES") set(DOXYGEN_EXTRACT_PRIVATE "YES") @@ -120,13 +120,13 @@ elseif(APPLE) set_target_properties(olive-editor PROPERTIES MACOSX_BUNDLE TRUE MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macos/MacOSXBundleInfo.plist.in - MACOSX_BUNDLE_GUI_IDENTIFIER org.olivevideoeditor.Olive + MACOSX_BUNDLE_GUI_IDENTIFIER org.oakvideoeditor.Oak MACOSX_BUNDLE_ICON_FILE olive.icns MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION} - MACOSX_BUNDLE_BUNDLE_NAME "Olive" - MACOSX_BUNDLE_INFO_STRING "Olive ${PROJECT_LONG_VERSION}" - MACOSX_BUNDLE_COPYRIGHT "©2018-2021 Olive Studios LLC and others. Published under the GNU General Public License version 3.0." + MACOSX_BUNDLE_BUNDLE_NAME "Oak Video Editor" + MACOSX_BUNDLE_INFO_STRING "Oak Video Editor ${PROJECT_LONG_VERSION}" + MACOSX_BUNDLE_COPYRIGHT "©2018-2021 Olive Studios LLC and others. Fork maintained by Oak Video Editor Team." RESOURCE "${OLIVE_ICON}" OUTPUT_NAME "Olive" ) diff --git a/app/audio/CMakeLists.txt b/app/audio/CMakeLists.txt index 6b161d81b..32dfd5461 100644 --- a/app/audio/CMakeLists.txt +++ b/app/audio/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/audio/audiomanager.cpp b/app/audio/audiomanager.cpp index 51d5947ff..ae81a1b9d 100644 --- a/app/audio/audiomanager.cpp +++ b/app/audio/audiomanager.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -316,7 +316,7 @@ AudioManager::AudioManager() #ifdef PA_HAS_JACK // PortAudio doesn't do a strcpy, so we need a const char that's readily accessible (i.e. not // a QString converted to UTF-8) - PaJack_SetClientName("Olive"); + PaJack_SetClientName("Oak Video Editor"); #endif Pa_Initialize(); diff --git a/app/audio/audiomanager.h b/app/audio/audiomanager.h index 980b13c93..6d000d0c2 100644 --- a/app/audio/audiomanager.h +++ b/app/audio/audiomanager.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/audio/audioprocessor.cpp b/app/audio/audioprocessor.cpp index c0ab61117..a9c4b1672 100644 --- a/app/audio/audioprocessor.cpp +++ b/app/audio/audioprocessor.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/audio/audioprocessor.h b/app/audio/audioprocessor.h index b5e62a66c..729813f80 100644 --- a/app/audio/audioprocessor.h +++ b/app/audio/audioprocessor.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/audio/audiovisualwaveform.cpp b/app/audio/audiovisualwaveform.cpp index 1d4a4d7bd..8803a025c 100644 --- a/app/audio/audiovisualwaveform.cpp +++ b/app/audio/audiovisualwaveform.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/audio/audiovisualwaveform.h b/app/audio/audiovisualwaveform.h index 9ef9e9b8e..5e00f40e5 100644 --- a/app/audio/audiovisualwaveform.h +++ b/app/audio/audiovisualwaveform.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/CMakeLists.txt b/app/cli/CMakeLists.txt index c261a3e00..3d6f21442 100644 --- a/app/cli/CMakeLists.txt +++ b/app/cli/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/cli/cliexport/cliexportmanager.cpp b/app/cli/cliexport/cliexportmanager.cpp index abc8f9ee2..4341aee6b 100644 --- a/app/cli/cliexport/cliexportmanager.cpp +++ b/app/cli/cliexport/cliexportmanager.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/cliexport/cliexportmanager.h b/app/cli/cliexport/cliexportmanager.h index d59c04750..9115a1886 100644 --- a/app/cli/cliexport/cliexportmanager.h +++ b/app/cli/cliexport/cliexportmanager.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/cliprogress/CMakeLists.txt b/app/cli/cliprogress/CMakeLists.txt index 621c498da..d5c0e353a 100644 --- a/app/cli/cliprogress/CMakeLists.txt +++ b/app/cli/cliprogress/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/cli/cliprogress/cliprogressdialog.cpp b/app/cli/cliprogress/cliprogressdialog.cpp index 800ffd4ac..07998c607 100644 --- a/app/cli/cliprogress/cliprogressdialog.cpp +++ b/app/cli/cliprogress/cliprogressdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/cliprogress/cliprogressdialog.h b/app/cli/cliprogress/cliprogressdialog.h index bdfa990c3..90c878cd8 100644 --- a/app/cli/cliprogress/cliprogressdialog.h +++ b/app/cli/cliprogress/cliprogressdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/clitask/CMakeLists.txt b/app/cli/clitask/CMakeLists.txt index 8e5f4782b..3b33671b6 100644 --- a/app/cli/clitask/CMakeLists.txt +++ b/app/cli/clitask/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/cli/clitask/clitaskdialog.cpp b/app/cli/clitask/clitaskdialog.cpp index 0e4bc08ef..deeb414de 100644 --- a/app/cli/clitask/clitaskdialog.cpp +++ b/app/cli/clitask/clitaskdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/cli/clitask/clitaskdialog.h b/app/cli/clitask/clitaskdialog.h index 887431417..ec904d22a 100644 --- a/app/cli/clitask/clitaskdialog.h +++ b/app/cli/clitask/clitaskdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/CMakeLists.txt b/app/codec/CMakeLists.txt index 608d82a08..eff6d4fa4 100644 --- a/app/codec/CMakeLists.txt +++ b/app/codec/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/codec/conformmanager.cpp b/app/codec/conformmanager.cpp index 2048f7b1a..b9ca6b355 100644 --- a/app/codec/conformmanager.cpp +++ b/app/codec/conformmanager.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/conformmanager.h b/app/codec/conformmanager.h index e4c53b7cd..c310a07ef 100644 --- a/app/codec/conformmanager.h +++ b/app/codec/conformmanager.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/decoder.cpp b/app/codec/decoder.cpp index e1f2b1390..d15fb8ce4 100644 --- a/app/codec/decoder.cpp +++ b/app/codec/decoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/decoder.h b/app/codec/decoder.h index c42cd2e2d..bd3bd1d62 100644 --- a/app/codec/decoder.h +++ b/app/codec/decoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/encoder.cpp b/app/codec/encoder.cpp index 227399a40..187e8f7ca 100644 --- a/app/codec/encoder.cpp +++ b/app/codec/encoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/encoder.h b/app/codec/encoder.h index 0045469f2..f266c7a53 100644 --- a/app/codec/encoder.h +++ b/app/codec/encoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/exportcodec.cpp b/app/codec/exportcodec.cpp index abf4ea076..61da3f8fa 100644 --- a/app/codec/exportcodec.cpp +++ b/app/codec/exportcodec.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/exportcodec.h b/app/codec/exportcodec.h index ddaa84fc2..3478e3390 100644 --- a/app/codec/exportcodec.h +++ b/app/codec/exportcodec.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/exportformat.cpp b/app/codec/exportformat.cpp index ab55cd6a6..bed25e705 100644 --- a/app/codec/exportformat.cpp +++ b/app/codec/exportformat.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/exportformat.h b/app/codec/exportformat.h index ce2756d03..b53f3ac1c 100644 --- a/app/codec/exportformat.h +++ b/app/codec/exportformat.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/ffmpeg/CMakeLists.txt b/app/codec/ffmpeg/CMakeLists.txt index 0401fba78..28fea0cd5 100644 --- a/app/codec/ffmpeg/CMakeLists.txt +++ b/app/codec/ffmpeg/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/codec/ffmpeg/ffmpegdecoder.cpp b/app/codec/ffmpeg/ffmpegdecoder.cpp index 462a17e7a..e7ac869e9 100644 --- a/app/codec/ffmpeg/ffmpegdecoder.cpp +++ b/app/codec/ffmpeg/ffmpegdecoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/ffmpeg/ffmpegdecoder.h b/app/codec/ffmpeg/ffmpegdecoder.h index 5bc8d4a7d..5f241946d 100644 --- a/app/codec/ffmpeg/ffmpegdecoder.h +++ b/app/codec/ffmpeg/ffmpegdecoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/ffmpeg/ffmpegencoder.cpp b/app/codec/ffmpeg/ffmpegencoder.cpp index 92a6e0f70..2989a62a3 100644 --- a/app/codec/ffmpeg/ffmpegencoder.cpp +++ b/app/codec/ffmpeg/ffmpegencoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/ffmpeg/ffmpegencoder.h b/app/codec/ffmpeg/ffmpegencoder.h index 567f59e1e..591ca9ef9 100644 --- a/app/codec/ffmpeg/ffmpegencoder.h +++ b/app/codec/ffmpeg/ffmpegencoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/frame.cpp b/app/codec/frame.cpp index 9c53dac64..2b1e6479c 100644 --- a/app/codec/frame.cpp +++ b/app/codec/frame.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/frame.h b/app/codec/frame.h index e4fae48fb..527bfce08 100644 --- a/app/codec/frame.h +++ b/app/codec/frame.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/oiio/CMakeLists.txt b/app/codec/oiio/CMakeLists.txt index 33cc8e2bb..a3b729d47 100644 --- a/app/codec/oiio/CMakeLists.txt +++ b/app/codec/oiio/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/codec/oiio/oiiodecoder.cpp b/app/codec/oiio/oiiodecoder.cpp index 32d1f9cbe..7ad71d25c 100644 --- a/app/codec/oiio/oiiodecoder.cpp +++ b/app/codec/oiio/oiiodecoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/oiio/oiiodecoder.h b/app/codec/oiio/oiiodecoder.h index 6201265bf..9290fd9a5 100644 --- a/app/codec/oiio/oiiodecoder.h +++ b/app/codec/oiio/oiiodecoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/oiio/oiioencoder.cpp b/app/codec/oiio/oiioencoder.cpp index b8ea71475..4bf5a0650 100644 --- a/app/codec/oiio/oiioencoder.cpp +++ b/app/codec/oiio/oiioencoder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/oiio/oiioencoder.h b/app/codec/oiio/oiioencoder.h index 137746849..e331372b7 100644 --- a/app/codec/oiio/oiioencoder.h +++ b/app/codec/oiio/oiioencoder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/planarfiledevice.cpp b/app/codec/planarfiledevice.cpp index 80512d050..942338ced 100644 --- a/app/codec/planarfiledevice.cpp +++ b/app/codec/planarfiledevice.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/codec/planarfiledevice.h b/app/codec/planarfiledevice.h index bab755d61..854290c50 100644 --- a/app/codec/planarfiledevice.h +++ b/app/codec/planarfiledevice.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/CMakeLists.txt b/app/common/CMakeLists.txt index 310af6aef..0cac09df9 100644 --- a/app/common/CMakeLists.txt +++ b/app/common/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/common/Current.cpp b/app/common/Current.cpp index 75e2d276c..0c3fd1d98 100644 --- a/app/common/Current.cpp +++ b/app/common/Current.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/Current.h b/app/common/Current.h index 44487a2c0..8b6a50914 100644 --- a/app/common/Current.h +++ b/app/common/Current.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/autoscroll.h b/app/common/autoscroll.h index bda8d4828..234351c2b 100644 --- a/app/common/autoscroll.h +++ b/app/common/autoscroll.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/cancelableobject.h b/app/common/cancelableobject.h index a06c66e43..4615a668f 100644 --- a/app/common/cancelableobject.h +++ b/app/common/cancelableobject.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/channellayout.h b/app/common/channellayout.h index 96b0c15e8..a8eb5a21d 100644 --- a/app/common/channellayout.h +++ b/app/common/channellayout.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/commandlineparser.cpp b/app/common/commandlineparser.cpp index c5a641af3..4c2215427 100644 --- a/app/common/commandlineparser.cpp +++ b/app/common/commandlineparser.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -111,7 +111,7 @@ void CommandLineParser::PrintHelp(const char *filename) printf("%s %s\n", QCoreApplication::applicationName().toUtf8().constData(), QCoreApplication::applicationVersion().toUtf8().constData()); - printf("Copyright (C) 2018-2022 Olive Team\n"); + printf("Copyright (C) 2018-2022 Oak Video Editor Team\n"); QString positional_args; for (int i = 0; i < positional_args_.size(); i++) { diff --git a/app/common/commandlineparser.h b/app/common/commandlineparser.h index 73eed6553..fd7a33c0a 100644 --- a/app/common/commandlineparser.h +++ b/app/common/commandlineparser.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/crashpadinterface.cpp b/app/common/crashpadinterface.cpp index 72a4738e6..f2175e286 100644 --- a/app/common/crashpadinterface.cpp +++ b/app/common/crashpadinterface.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/crashpadinterface.h b/app/common/crashpadinterface.h index 00ce5a0c0..7d8b36245 100644 --- a/app/common/crashpadinterface.h +++ b/app/common/crashpadinterface.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/crashpadutils.h b/app/common/crashpadutils.h index 51e8c50e1..dec64f864 100644 --- a/app/common/crashpadutils.h +++ b/app/common/crashpadutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/debug.cpp b/app/common/debug.cpp index 7f52dee1e..aa79cd068 100644 --- a/app/common/debug.cpp +++ b/app/common/debug.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/debug.h b/app/common/debug.h index 0ffa1da33..d3fd77523 100644 --- a/app/common/debug.h +++ b/app/common/debug.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/decibel.h b/app/common/decibel.h index 7ec04d54b..28c86c7fb 100644 --- a/app/common/decibel.h +++ b/app/common/decibel.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/define.h b/app/common/define.h index 41e80255c..8ab9df208 100644 --- a/app/common/define.h +++ b/app/common/define.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/digit.h b/app/common/digit.h index 4d2a75513..648633ed6 100644 --- a/app/common/digit.h +++ b/app/common/digit.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ffmpegutils.cpp b/app/common/ffmpegutils.cpp index 01943baa4..1c2d0397b 100644 --- a/app/common/ffmpegutils.cpp +++ b/app/common/ffmpegutils.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ffmpegutils.h b/app/common/ffmpegutils.h index ae30c1986..a1e2b0897 100644 --- a/app/common/ffmpegutils.h +++ b/app/common/ffmpegutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/filefunctions.cpp b/app/common/filefunctions.cpp index d56d2f40d..b7d178f17 100644 --- a/app/common/filefunctions.cpp +++ b/app/common/filefunctions.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/filefunctions.h b/app/common/filefunctions.h index 1c0b779f2..65594027c 100644 --- a/app/common/filefunctions.h +++ b/app/common/filefunctions.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/html.cpp b/app/common/html.cpp index bd74aebf9..d4b754304 100644 --- a/app/common/html.cpp +++ b/app/common/html.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/html.h b/app/common/html.h index 3b35696b9..387a1ae4c 100644 --- a/app/common/html.h +++ b/app/common/html.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/jobtime.cpp b/app/common/jobtime.cpp index b6260c518..058b52a34 100644 --- a/app/common/jobtime.cpp +++ b/app/common/jobtime.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/jobtime.h b/app/common/jobtime.h index 05d11029e..1a51871c8 100644 --- a/app/common/jobtime.h +++ b/app/common/jobtime.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/lerp.h b/app/common/lerp.h index 674e39b9b..542d72a54 100644 --- a/app/common/lerp.h +++ b/app/common/lerp.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/memorypool.h b/app/common/memorypool.h index 2723437b1..d9094445c 100644 --- a/app/common/memorypool.h +++ b/app/common/memorypool.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ocioutils.cpp b/app/common/ocioutils.cpp index 0d1413db1..a388584ef 100644 --- a/app/common/ocioutils.cpp +++ b/app/common/ocioutils.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ocioutils.h b/app/common/ocioutils.h index 2c0035a55..99211e04a 100644 --- a/app/common/ocioutils.h +++ b/app/common/ocioutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/oiioutils.cpp b/app/common/oiioutils.cpp index 30ee9fc44..f6c6686ce 100644 --- a/app/common/oiioutils.cpp +++ b/app/common/oiioutils.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/oiioutils.h b/app/common/oiioutils.h index 163f2e44e..9ace02e88 100644 --- a/app/common/oiioutils.h +++ b/app/common/oiioutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/otioutils.h b/app/common/otioutils.h index eb9e3bb79..de94cda59 100644 --- a/app/common/otioutils.h +++ b/app/common/otioutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/power.h b/app/common/power.h index 8bdb52650..2c2946fd4 100644 --- a/app/common/power.h +++ b/app/common/power.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/qtutils.cpp b/app/common/qtutils.cpp index 1e27539e9..2f5c23a11 100644 --- a/app/common/qtutils.cpp +++ b/app/common/qtutils.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/qtutils.h b/app/common/qtutils.h index fbb4c6c36..a6a5627ec 100644 --- a/app/common/qtutils.h +++ b/app/common/qtutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/range.h b/app/common/range.h index 3153d8fe7..1eb234392 100644 --- a/app/common/range.h +++ b/app/common/range.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ratiodialog.cpp b/app/common/ratiodialog.cpp index 2a9225b99..98cc2da8d 100644 --- a/app/common/ratiodialog.cpp +++ b/app/common/ratiodialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/ratiodialog.h b/app/common/ratiodialog.h index a10333012..2776152c1 100644 --- a/app/common/ratiodialog.h +++ b/app/common/ratiodialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/threadsafemap.h b/app/common/threadsafemap.h index 9ce05dbb9..de78078ac 100644 --- a/app/common/threadsafemap.h +++ b/app/common/threadsafemap.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/tohex.h b/app/common/tohex.h index 9909aded5..b0f04191f 100644 --- a/app/common/tohex.h +++ b/app/common/tohex.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/util.h b/app/common/util.h index 6a147f52b..c5fb18c88 100644 --- a/app/common/util.h +++ b/app/common/util.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/xmlutils.cpp b/app/common/xmlutils.cpp index 27db96c60..4ecb5ccbc 100644 --- a/app/common/xmlutils.cpp +++ b/app/common/xmlutils.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/common/xmlutils.h b/app/common/xmlutils.h index 3e2f8198f..9ffbaecfa 100644 --- a/app/common/xmlutils.h +++ b/app/common/xmlutils.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/config/CMakeLists.txt b/app/config/CMakeLists.txt index 7e1a01dd8..d1ead5cef 100644 --- a/app/config/CMakeLists.txt +++ b/app/config/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/config/config.cpp b/app/config/config.cpp index 464ca7dee..7a360cb3c 100644 --- a/app/config/config.cpp +++ b/app/config/config.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/config/config.h b/app/config/config.h index 2a3a6dc02..094fc3f3f 100644 --- a/app/config/config.h +++ b/app/config/config.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/core.cpp b/app/core.cpp index c7a991430..d4aba7559 100644 --- a/app/core.cpp +++ b/app/core.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -1060,7 +1060,7 @@ void Core::SaveAutorecovery() QMessageBox::critical( main_window_, tr("Auto-Recovery Error"), tr("Failed to save auto-recovery to \"%1\". " - "Olive may not have permission to this directory.") + "Oak Video Editor may not have permission to this directory.") .arg(project_autorecovery_dir.absolutePath())); } } @@ -1133,11 +1133,11 @@ QString Core::PasteStringFromClipboard() QString Core::GetProjectFilter(bool include_any_filter) { static const QVector> FILTERS = { - // Standard compressed Olive project - { tr("Olive Project"), QStringLiteral("ove") }, + // Standard compressed Oak project + { tr("Oak Project"), QStringLiteral("ove") }, - // Uncompressed XML Olive project - { tr("Olive Project (Uncompressed XML)"), QStringLiteral("ovexml") }, + // Uncompressed XML Oak project + { tr("Oak Project (Uncompressed XML)"), QStringLiteral("ovexml") }, // OpenTimelineIO project, if available #ifdef USE_OTIO @@ -1248,7 +1248,7 @@ void Core::CheckForAutoRecoveries() QString::fromUtf8(autorecovery_index.readAll()).split('\n'); AutoRecoveryDialog ard( - tr("The following projects had unsaved changes when Olive " + tr("The following projects had unsaved changes when Oak Video Editor " "forcefully quit. Would you like to load them?"), recovery_filenames, true, main_window_); ard.exec(); @@ -1305,7 +1305,7 @@ void Core::WarnCacheFull() QMessageBox::warning( main_window_, tr("Disk Cache Full"), - tr("The disk cache is currently full and Olive is having to delete old " + tr("The disk cache is currently full and Oak Video Editor is having to delete old " "frames to keep it within the limits set in the Disk preferences. This " "will result in SIGNIFICANTLY reduced cache performance.\n\n" "To remedy this, please do one of the following:\n\n" diff --git a/app/core.h b/app/core.h index f3c7e9aa7..4efadbe93 100644 --- a/app/core.h +++ b/app/core.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/crashhandler/CMakeLists.txt b/app/crashhandler/CMakeLists.txt index f835c73ae..735f4852c 100644 --- a/app/crashhandler/CMakeLists.txt +++ b/app/crashhandler/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/crashhandler/crashhandler.cpp b/app/crashhandler/crashhandler.cpp index 13408af20..067f227eb 100644 --- a/app/crashhandler/crashhandler.cpp +++ b/app/crashhandler/crashhandler.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -43,7 +43,7 @@ namespace olive CrashHandlerDialog::CrashHandlerDialog(const QString &report_path) { - setWindowTitle(tr("Olive")); + setWindowTitle(tr("Oak Video Editor")); setWindowFlags(Qt::WindowStaysOnTopHint); report_filename_ = report_path; @@ -52,7 +52,7 @@ CrashHandlerDialog::CrashHandlerDialog(const QString &report_path) QVBoxLayout *layout = new QVBoxLayout(this); layout->addWidget(new QLabel( - tr("We're sorry, Olive has crashed. Please help us fix it by " + tr("We're sorry, Oak Video Editor has crashed. Please help us fix it by " "sending an error report."))); QSplitter *splitter = new QSplitter(Qt::Vertical); diff --git a/app/crashhandler/crashhandler.h b/app/crashhandler/crashhandler.h index 9565070e0..0effb29ba 100644 --- a/app/crashhandler/crashhandler.h +++ b/app/crashhandler/crashhandler.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/CMakeLists.txt b/app/dialog/CMakeLists.txt index f5c628f91..52d58f018 100644 --- a/app/dialog/CMakeLists.txt +++ b/app/dialog/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/CMakeLists.txt b/app/dialog/about/CMakeLists.txt index 6a764829f..3a2cf4573 100644 --- a/app/dialog/about/CMakeLists.txt +++ b/app/dialog/about/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/about.cpp b/app/dialog/about/about.cpp index c2f6d3c1d..91a9590ea 100644 --- a/app/dialog/about/about.cpp +++ b/app/dialog/about/about.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -52,7 +52,7 @@ AboutDialog::AboutDialog(bool welcome_dialog, QWidget *parent) horiz_layout->setSpacing(fm.height() * 2); QLabel *icon = new QLabel( - QStringLiteral("")); + QStringLiteral("")); icon->setAlignment(Qt::AlignCenter); horiz_layout->addWidget(icon); @@ -60,15 +60,15 @@ AboutDialog::AboutDialog(bool welcome_dialog, QWidget *parent) QLabel *label = new QLabel( QStringLiteral("" "

%1 %2

" // AppName (version identifier) - "

" - "https://www.olivevideoeditor.org/" - "

" - "

%3

" // First statement + "

%3

" // Description + "

%4

" // Fork notice "") .arg(QApplication::applicationName(), QApplication::applicationVersion(), - tr("Olive is a free open source non-linear video editor. " - "This software is licensed under the GNU GPL Version 3."))); + tr("Oak Video Editor is a free open source non-linear video editor. " + "This software is licensed under the GNU GPL Version 3."), + tr("This project is a fork of " + "Olive Video Editor."))); // Set text formatting label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter); @@ -89,18 +89,16 @@ AboutDialog::AboutDialog(bool welcome_dialog, QWidget *parent) if (welcome_dialog || patrons.isEmpty()) { opening_statement = tr( - "Olive relies on support from the community to continue its development."); + "Oak Video Editor relies on support from the community to continue its development."); } else { opening_statement = tr( - "Olive wouldn't be possible without the support of gracious donations from the following people."); + "Oak Video Editor wouldn't be possible without the support of gracious donations from the following people."); } QLabel *support_lbl = new QLabel( tr("%1 " "If you like this project, please consider making a " - "one-time donation or " - "pledging monthly to " - "support its development.") + "one-time donation or pledging monthly to support its development.") .arg(opening_statement)); support_lbl->setWordWrap(true); support_lbl->setAlignment(Qt::AlignCenter); diff --git a/app/dialog/about/about.h b/app/dialog/about/about.h index 57622342f..af30046d8 100644 --- a/app/dialog/about/about.h +++ b/app/dialog/about/about.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/patreon.h b/app/dialog/about/patreon.h index e762429e1..1ecac70d6 100644 --- a/app/dialog/about/patreon.h +++ b/app/dialog/about/patreon.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/patreon.py b/app/dialog/about/patreon.py index 084d5a45d..5fc7a232f 100644 --- a/app/dialog/about/patreon.py +++ b/app/dialog/about/patreon.py @@ -1,4 +1,4 @@ -# Olive Community Edition - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2025 Olive CE Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/scrollinglabel.cpp b/app/dialog/about/scrollinglabel.cpp index 82439e606..1c7310433 100644 --- a/app/dialog/about/scrollinglabel.cpp +++ b/app/dialog/about/scrollinglabel.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/about/scrollinglabel.h b/app/dialog/about/scrollinglabel.h index 72d64f629..636e0815d 100644 --- a/app/dialog/about/scrollinglabel.h +++ b/app/dialog/about/scrollinglabel.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/actionsearch/CMakeLists.txt b/app/dialog/actionsearch/CMakeLists.txt index c759394d2..5a557cbba 100644 --- a/app/dialog/actionsearch/CMakeLists.txt +++ b/app/dialog/actionsearch/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/actionsearch/actionsearch.cpp b/app/dialog/actionsearch/actionsearch.cpp index 6cf20cb4c..95af1c10e 100644 --- a/app/dialog/actionsearch/actionsearch.cpp +++ b/app/dialog/actionsearch/actionsearch.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/actionsearch/actionsearch.h b/app/dialog/actionsearch/actionsearch.h index 83206f722..f2ea54ede 100644 --- a/app/dialog/actionsearch/actionsearch.h +++ b/app/dialog/actionsearch/actionsearch.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/autorecovery/CMakeLists.txt b/app/dialog/autorecovery/CMakeLists.txt index 6408b5822..e150ed297 100644 --- a/app/dialog/autorecovery/CMakeLists.txt +++ b/app/dialog/autorecovery/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/autorecovery/autorecoverydialog.cpp b/app/dialog/autorecovery/autorecoverydialog.cpp index 9841f6af4..84b22d271 100644 --- a/app/dialog/autorecovery/autorecoverydialog.cpp +++ b/app/dialog/autorecovery/autorecoverydialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/autorecovery/autorecoverydialog.h b/app/dialog/autorecovery/autorecoverydialog.h index a2c77ed4c..8e37c2799 100644 --- a/app/dialog/autorecovery/autorecoverydialog.h +++ b/app/dialog/autorecovery/autorecoverydialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/color/CMakeLists.txt b/app/dialog/color/CMakeLists.txt index b0b2c90e4..42fc62a79 100644 --- a/app/dialog/color/CMakeLists.txt +++ b/app/dialog/color/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/color/colordialog.cpp b/app/dialog/color/colordialog.cpp index 1ad97cb28..23b04eb70 100644 --- a/app/dialog/color/colordialog.cpp +++ b/app/dialog/color/colordialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/color/colordialog.h b/app/dialog/color/colordialog.h index f8d4860ce..16edd59df 100644 --- a/app/dialog/color/colordialog.h +++ b/app/dialog/color/colordialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/configbase/CMakeLists.txt b/app/dialog/configbase/CMakeLists.txt index b0da5d620..f4c312a0d 100644 --- a/app/dialog/configbase/CMakeLists.txt +++ b/app/dialog/configbase/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/configbase/configdialogbase.cpp b/app/dialog/configbase/configdialogbase.cpp index 54c927b82..0d8067ebc 100644 --- a/app/dialog/configbase/configdialogbase.cpp +++ b/app/dialog/configbase/configdialogbase.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/configbase/configdialogbase.h b/app/dialog/configbase/configdialogbase.h index e52969ccc..402c6b1e3 100644 --- a/app/dialog/configbase/configdialogbase.h +++ b/app/dialog/configbase/configdialogbase.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/configbase/configdialogbasetab.cpp b/app/dialog/configbase/configdialogbasetab.cpp index b8457bc54..3ad57cd40 100644 --- a/app/dialog/configbase/configdialogbasetab.cpp +++ b/app/dialog/configbase/configdialogbasetab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/configbase/configdialogbasetab.h b/app/dialog/configbase/configdialogbasetab.h index bf1c75e53..9a02971a4 100644 --- a/app/dialog/configbase/configdialogbasetab.h +++ b/app/dialog/configbase/configdialogbasetab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/diskcache/CMakeLists.txt b/app/dialog/diskcache/CMakeLists.txt index 3b11da610..014da95ba 100644 --- a/app/dialog/diskcache/CMakeLists.txt +++ b/app/dialog/diskcache/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/diskcache/diskcachedialog.cpp b/app/dialog/diskcache/diskcachedialog.cpp index f1d978874..1985aca63 100644 --- a/app/dialog/diskcache/diskcachedialog.cpp +++ b/app/dialog/diskcache/diskcachedialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/diskcache/diskcachedialog.h b/app/dialog/diskcache/diskcachedialog.h index c577626cf..7c9c66866 100644 --- a/app/dialog/diskcache/diskcachedialog.h +++ b/app/dialog/diskcache/diskcachedialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/CMakeLists.txt b/app/dialog/export/CMakeLists.txt index 8847c4ba4..5f885168a 100644 --- a/app/dialog/export/CMakeLists.txt +++ b/app/dialog/export/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/CMakeLists.txt b/app/dialog/export/codec/CMakeLists.txt index d68ccd1c3..70f2aec10 100644 --- a/app/dialog/export/codec/CMakeLists.txt +++ b/app/dialog/export/codec/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/av1section.cpp b/app/dialog/export/codec/av1section.cpp index 1135cbe1b..ed14079f2 100644 --- a/app/dialog/export/codec/av1section.cpp +++ b/app/dialog/export/codec/av1section.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/av1section.h b/app/dialog/export/codec/av1section.h index b0af69f30..47ca37318 100644 --- a/app/dialog/export/codec/av1section.h +++ b/app/dialog/export/codec/av1section.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/cineformsection.cpp b/app/dialog/export/codec/cineformsection.cpp index 5f6649f58..79e9aa0b9 100644 --- a/app/dialog/export/codec/cineformsection.cpp +++ b/app/dialog/export/codec/cineformsection.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/cineformsection.h b/app/dialog/export/codec/cineformsection.h index a96699b4c..2cf038763 100644 --- a/app/dialog/export/codec/cineformsection.h +++ b/app/dialog/export/codec/cineformsection.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/codecsection.cpp b/app/dialog/export/codec/codecsection.cpp index b85ee508e..9f037e66f 100644 --- a/app/dialog/export/codec/codecsection.cpp +++ b/app/dialog/export/codec/codecsection.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/codecsection.h b/app/dialog/export/codec/codecsection.h index 76c35a17e..df63c14f0 100644 --- a/app/dialog/export/codec/codecsection.h +++ b/app/dialog/export/codec/codecsection.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/codecstack.cpp b/app/dialog/export/codec/codecstack.cpp index 9cee647ad..cae1c4444 100644 --- a/app/dialog/export/codec/codecstack.cpp +++ b/app/dialog/export/codec/codecstack.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/codecstack.h b/app/dialog/export/codec/codecstack.h index cfa96e0f9..ae6b4db09 100644 --- a/app/dialog/export/codec/codecstack.h +++ b/app/dialog/export/codec/codecstack.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/h264section.cpp b/app/dialog/export/codec/h264section.cpp index 92ba24a20..6d362e8fb 100644 --- a/app/dialog/export/codec/h264section.cpp +++ b/app/dialog/export/codec/h264section.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/h264section.h b/app/dialog/export/codec/h264section.h index ced9dde28..1d6f11def 100644 --- a/app/dialog/export/codec/h264section.h +++ b/app/dialog/export/codec/h264section.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/imagesection.cpp b/app/dialog/export/codec/imagesection.cpp index 3955db0a3..bfe65992f 100644 --- a/app/dialog/export/codec/imagesection.cpp +++ b/app/dialog/export/codec/imagesection.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/codec/imagesection.h b/app/dialog/export/codec/imagesection.h index 6940c0b56..a45748fa6 100644 --- a/app/dialog/export/codec/imagesection.h +++ b/app/dialog/export/codec/imagesection.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/export.cpp b/app/dialog/export/export.cpp index 36797b726..b0302cf75 100644 --- a/app/dialog/export/export.cpp +++ b/app/dialog/export/export.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -179,7 +179,7 @@ ExportDialog::ExportDialog(ViewerOutput *viewer_node, bool stills_only_mode, export_bkg_box_ = new QCheckBox(tr("Run In Background")); export_bkg_box_->setToolTip(tr( - "Exporting in the background allows you to continue using Olive while " + "Exporting in the background allows you to continue using Oak Video Editor while " "exporting, but may result in slower export speeds, and may" "severely impact editing and playback performance.")); options_layout->addWidget(export_bkg_box_, opt_row, 0); @@ -341,7 +341,7 @@ void ExportDialog::StartExport() QtUtils::MsgBox( this, QMessageBox::Critical, tr("Failed to create output directory"), - tr("The intended output directory doesn't exist and Olive couldn't create it. " + tr("The intended output directory doesn't exist and Oak Video Editor couldn't create it. " "Please choose a different filename.")); return; } diff --git a/app/dialog/export/export.h b/app/dialog/export/export.h index bb2efc290..d549fdf30 100644 --- a/app/dialog/export/export.h +++ b/app/dialog/export/export.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportadvancedvideodialog.cpp b/app/dialog/export/exportadvancedvideodialog.cpp index fbfb6b3fd..c3b5f245a 100644 --- a/app/dialog/export/exportadvancedvideodialog.cpp +++ b/app/dialog/export/exportadvancedvideodialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportadvancedvideodialog.h b/app/dialog/export/exportadvancedvideodialog.h index 86f86f4b4..3f4e216d3 100644 --- a/app/dialog/export/exportadvancedvideodialog.h +++ b/app/dialog/export/exportadvancedvideodialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportaudiotab.cpp b/app/dialog/export/exportaudiotab.cpp index 2d7a81faf..f82f41394 100644 --- a/app/dialog/export/exportaudiotab.cpp +++ b/app/dialog/export/exportaudiotab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportaudiotab.h b/app/dialog/export/exportaudiotab.h index cfa69d6fc..32395433a 100644 --- a/app/dialog/export/exportaudiotab.h +++ b/app/dialog/export/exportaudiotab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportformatcombobox.cpp b/app/dialog/export/exportformatcombobox.cpp index c11b4e5c2..f75ec14a9 100644 --- a/app/dialog/export/exportformatcombobox.cpp +++ b/app/dialog/export/exportformatcombobox.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportformatcombobox.h b/app/dialog/export/exportformatcombobox.h index ac25d8a20..06c155fc5 100644 --- a/app/dialog/export/exportformatcombobox.h +++ b/app/dialog/export/exportformatcombobox.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportsavepresetdialog.cpp b/app/dialog/export/exportsavepresetdialog.cpp index b56826fc8..41576a99f 100644 --- a/app/dialog/export/exportsavepresetdialog.cpp +++ b/app/dialog/export/exportsavepresetdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportsavepresetdialog.h b/app/dialog/export/exportsavepresetdialog.h index 040438a7b..7ff45307a 100644 --- a/app/dialog/export/exportsavepresetdialog.h +++ b/app/dialog/export/exportsavepresetdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportsubtitlestab.cpp b/app/dialog/export/exportsubtitlestab.cpp index b3f2eafce..237945d72 100644 --- a/app/dialog/export/exportsubtitlestab.cpp +++ b/app/dialog/export/exportsubtitlestab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportsubtitlestab.h b/app/dialog/export/exportsubtitlestab.h index a625a8424..aa79e5508 100644 --- a/app/dialog/export/exportsubtitlestab.h +++ b/app/dialog/export/exportsubtitlestab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportvideotab.cpp b/app/dialog/export/exportvideotab.cpp index 942144db9..bbd98b34b 100644 --- a/app/dialog/export/exportvideotab.cpp +++ b/app/dialog/export/exportvideotab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/export/exportvideotab.h b/app/dialog/export/exportvideotab.h index fcb58b096..039dcec74 100644 --- a/app/dialog/export/exportvideotab.h +++ b/app/dialog/export/exportvideotab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/CMakeLists.txt b/app/dialog/footageproperties/CMakeLists.txt index 25287c233..5dab5b727 100644 --- a/app/dialog/footageproperties/CMakeLists.txt +++ b/app/dialog/footageproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2020 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/footageproperties.cpp b/app/dialog/footageproperties/footageproperties.cpp index fa4cf3d38..b27aa2218 100644 --- a/app/dialog/footageproperties/footageproperties.cpp +++ b/app/dialog/footageproperties/footageproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/footageproperties.h b/app/dialog/footageproperties/footageproperties.h index 336a4b011..dedd3f46d 100644 --- a/app/dialog/footageproperties/footageproperties.h +++ b/app/dialog/footageproperties/footageproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/CMakeLists.txt b/app/dialog/footageproperties/streamproperties/CMakeLists.txt index 3228e9520..0aba36b24 100644 --- a/app/dialog/footageproperties/streamproperties/CMakeLists.txt +++ b/app/dialog/footageproperties/streamproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2020 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/audiostreamproperties.cpp b/app/dialog/footageproperties/streamproperties/audiostreamproperties.cpp index c5401ef38..4d87f99a8 100644 --- a/app/dialog/footageproperties/streamproperties/audiostreamproperties.cpp +++ b/app/dialog/footageproperties/streamproperties/audiostreamproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/audiostreamproperties.h b/app/dialog/footageproperties/streamproperties/audiostreamproperties.h index 6322a8316..072605ed2 100644 --- a/app/dialog/footageproperties/streamproperties/audiostreamproperties.h +++ b/app/dialog/footageproperties/streamproperties/audiostreamproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/streamproperties.cpp b/app/dialog/footageproperties/streamproperties/streamproperties.cpp index d083254a8..4367d429f 100644 --- a/app/dialog/footageproperties/streamproperties/streamproperties.cpp +++ b/app/dialog/footageproperties/streamproperties/streamproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/streamproperties.h b/app/dialog/footageproperties/streamproperties/streamproperties.h index dc4cb9beb..c6102682d 100644 --- a/app/dialog/footageproperties/streamproperties/streamproperties.h +++ b/app/dialog/footageproperties/streamproperties/streamproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/videostreamproperties.cpp b/app/dialog/footageproperties/streamproperties/videostreamproperties.cpp index 4a74c5ea7..b09b59960 100644 --- a/app/dialog/footageproperties/streamproperties/videostreamproperties.cpp +++ b/app/dialog/footageproperties/streamproperties/videostreamproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footageproperties/streamproperties/videostreamproperties.h b/app/dialog/footageproperties/streamproperties/videostreamproperties.h index a4e44d88c..a8fcffe0b 100644 --- a/app/dialog/footageproperties/streamproperties/videostreamproperties.h +++ b/app/dialog/footageproperties/streamproperties/videostreamproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footagerelink/CMakeLists.txt b/app/dialog/footagerelink/CMakeLists.txt index 797f1c6c6..b9c97551a 100644 --- a/app/dialog/footagerelink/CMakeLists.txt +++ b/app/dialog/footagerelink/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footagerelink/footagerelinkdialog.cpp b/app/dialog/footagerelink/footagerelinkdialog.cpp index bda9482d6..e93caf051 100644 --- a/app/dialog/footagerelink/footagerelinkdialog.cpp +++ b/app/dialog/footagerelink/footagerelinkdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/footagerelink/footagerelinkdialog.h b/app/dialog/footagerelink/footagerelinkdialog.h index fd3dba99f..48f95b365 100644 --- a/app/dialog/footagerelink/footagerelinkdialog.h +++ b/app/dialog/footagerelink/footagerelinkdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/keyframeproperties/CMakeLists.txt b/app/dialog/keyframeproperties/CMakeLists.txt index 6d479a925..efac5ae57 100644 --- a/app/dialog/keyframeproperties/CMakeLists.txt +++ b/app/dialog/keyframeproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/keyframeproperties/keyframeproperties.cpp b/app/dialog/keyframeproperties/keyframeproperties.cpp index a80499172..ced3c2688 100644 --- a/app/dialog/keyframeproperties/keyframeproperties.cpp +++ b/app/dialog/keyframeproperties/keyframeproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/keyframeproperties/keyframeproperties.h b/app/dialog/keyframeproperties/keyframeproperties.h index e55944e85..5965a1f2e 100644 --- a/app/dialog/keyframeproperties/keyframeproperties.h +++ b/app/dialog/keyframeproperties/keyframeproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/markerproperties/CMakeLists.txt b/app/dialog/markerproperties/CMakeLists.txt index 84a130885..9516c3e24 100644 --- a/app/dialog/markerproperties/CMakeLists.txt +++ b/app/dialog/markerproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/markerproperties/markerpropertiesdialog.cpp b/app/dialog/markerproperties/markerpropertiesdialog.cpp index 1c13d1be0..ffe0dc03e 100644 --- a/app/dialog/markerproperties/markerpropertiesdialog.cpp +++ b/app/dialog/markerproperties/markerpropertiesdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/markerproperties/markerpropertiesdialog.h b/app/dialog/markerproperties/markerpropertiesdialog.h index 024d341c3..25b3d9aa9 100644 --- a/app/dialog/markerproperties/markerpropertiesdialog.h +++ b/app/dialog/markerproperties/markerpropertiesdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/otioproperties/CMakeLists.txt b/app/dialog/otioproperties/CMakeLists.txt index 8a07ce76a..a8f4fa270 100644 --- a/app/dialog/otioproperties/CMakeLists.txt +++ b/app/dialog/otioproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2019 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/otioproperties/otiopropertiesdialog.cpp b/app/dialog/otioproperties/otiopropertiesdialog.cpp index afc87fd15..55ff24a56 100644 --- a/app/dialog/otioproperties/otiopropertiesdialog.cpp +++ b/app/dialog/otioproperties/otiopropertiesdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/otioproperties/otiopropertiesdialog.h b/app/dialog/otioproperties/otiopropertiesdialog.h index 0668c66da..22096b819 100644 --- a/app/dialog/otioproperties/otiopropertiesdialog.h +++ b/app/dialog/otioproperties/otiopropertiesdialog.h @@ -1,6 +1,6 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/CMakeLists.txt b/app/dialog/preferences/CMakeLists.txt index 1636674e4..2dcfc65e7 100644 --- a/app/dialog/preferences/CMakeLists.txt +++ b/app/dialog/preferences/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/keysequenceeditor.cpp b/app/dialog/preferences/keysequenceeditor.cpp index 7ea56c614..d4c2ef8ce 100644 --- a/app/dialog/preferences/keysequenceeditor.cpp +++ b/app/dialog/preferences/keysequenceeditor.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/keysequenceeditor.h b/app/dialog/preferences/keysequenceeditor.h index 76ec6cc56..678723907 100644 --- a/app/dialog/preferences/keysequenceeditor.h +++ b/app/dialog/preferences/keysequenceeditor.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/preferences.cpp b/app/dialog/preferences/preferences.cpp index 9348daad5..1c4371549 100644 --- a/app/dialog/preferences/preferences.cpp +++ b/app/dialog/preferences/preferences.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/preferences.h b/app/dialog/preferences/preferences.h index 4d262409a..ba0d14e1a 100644 --- a/app/dialog/preferences/preferences.h +++ b/app/dialog/preferences/preferences.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/CMakeLists.txt b/app/dialog/preferences/tabs/CMakeLists.txt index c26e22fa1..3888af3bc 100644 --- a/app/dialog/preferences/tabs/CMakeLists.txt +++ b/app/dialog/preferences/tabs/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesappearancetab.cpp b/app/dialog/preferences/tabs/preferencesappearancetab.cpp index 770fb9505..9b570f599 100644 --- a/app/dialog/preferences/tabs/preferencesappearancetab.cpp +++ b/app/dialog/preferences/tabs/preferencesappearancetab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesappearancetab.h b/app/dialog/preferences/tabs/preferencesappearancetab.h index f36a7c62f..d514edc53 100644 --- a/app/dialog/preferences/tabs/preferencesappearancetab.h +++ b/app/dialog/preferences/tabs/preferencesappearancetab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesaudiotab.cpp b/app/dialog/preferences/tabs/preferencesaudiotab.cpp index 7dc56f765..ef25d1e25 100644 --- a/app/dialog/preferences/tabs/preferencesaudiotab.cpp +++ b/app/dialog/preferences/tabs/preferencesaudiotab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesaudiotab.h b/app/dialog/preferences/tabs/preferencesaudiotab.h index 66ad7688d..1d636f171 100644 --- a/app/dialog/preferences/tabs/preferencesaudiotab.h +++ b/app/dialog/preferences/tabs/preferencesaudiotab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesbehaviortab.cpp b/app/dialog/preferences/tabs/preferencesbehaviortab.cpp index a6d11fc76..cec46f3d1 100644 --- a/app/dialog/preferences/tabs/preferencesbehaviortab.cpp +++ b/app/dialog/preferences/tabs/preferencesbehaviortab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesbehaviortab.h b/app/dialog/preferences/tabs/preferencesbehaviortab.h index 01c45268d..289954fc9 100644 --- a/app/dialog/preferences/tabs/preferencesbehaviortab.h +++ b/app/dialog/preferences/tabs/preferencesbehaviortab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesdisktab.cpp b/app/dialog/preferences/tabs/preferencesdisktab.cpp index ebbf474b7..42962f009 100644 --- a/app/dialog/preferences/tabs/preferencesdisktab.cpp +++ b/app/dialog/preferences/tabs/preferencesdisktab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesdisktab.h b/app/dialog/preferences/tabs/preferencesdisktab.h index 54dd1dbdb..81e9e8686 100644 --- a/app/dialog/preferences/tabs/preferencesdisktab.h +++ b/app/dialog/preferences/tabs/preferencesdisktab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesgeneraltab.cpp b/app/dialog/preferences/tabs/preferencesgeneraltab.cpp index a0f0ba33c..2983d8d14 100644 --- a/app/dialog/preferences/tabs/preferencesgeneraltab.cpp +++ b/app/dialog/preferences/tabs/preferencesgeneraltab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferencesgeneraltab.h b/app/dialog/preferences/tabs/preferencesgeneraltab.h index a1b1ca7c9..d7729bec5 100644 --- a/app/dialog/preferences/tabs/preferencesgeneraltab.h +++ b/app/dialog/preferences/tabs/preferencesgeneraltab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferenceskeyboardtab.cpp b/app/dialog/preferences/tabs/preferenceskeyboardtab.cpp index 75151b2ac..fb4a0296e 100644 --- a/app/dialog/preferences/tabs/preferenceskeyboardtab.cpp +++ b/app/dialog/preferences/tabs/preferenceskeyboardtab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/preferences/tabs/preferenceskeyboardtab.h b/app/dialog/preferences/tabs/preferenceskeyboardtab.h index 565f82421..ea6ad37e3 100644 --- a/app/dialog/preferences/tabs/preferenceskeyboardtab.h +++ b/app/dialog/preferences/tabs/preferenceskeyboardtab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/progress/CMakeLists.txt b/app/dialog/progress/CMakeLists.txt index 1319f1e56..699a31229 100644 --- a/app/dialog/progress/CMakeLists.txt +++ b/app/dialog/progress/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/progress/progress.cpp b/app/dialog/progress/progress.cpp index 2e3a46fd6..dd15bdd2b 100644 --- a/app/dialog/progress/progress.cpp +++ b/app/dialog/progress/progress.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/progress/progress.h b/app/dialog/progress/progress.h index 9e9d45c5c..fd5fb9a9f 100644 --- a/app/dialog/progress/progress.h +++ b/app/dialog/progress/progress.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/projectproperties/CMakeLists.txt b/app/dialog/projectproperties/CMakeLists.txt index b45092bf6..64fa28a90 100644 --- a/app/dialog/projectproperties/CMakeLists.txt +++ b/app/dialog/projectproperties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2020 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/projectproperties/projectproperties.cpp b/app/dialog/projectproperties/projectproperties.cpp index 09e987620..b20c70244 100644 --- a/app/dialog/projectproperties/projectproperties.cpp +++ b/app/dialog/projectproperties/projectproperties.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/projectproperties/projectproperties.h b/app/dialog/projectproperties/projectproperties.h index bb9ef8b33..b6ed7cd80 100644 --- a/app/dialog/projectproperties/projectproperties.h +++ b/app/dialog/projectproperties/projectproperties.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/rendercancel/CMakeLists.txt b/app/dialog/rendercancel/CMakeLists.txt index 16ee46ba0..7f224aa4a 100644 --- a/app/dialog/rendercancel/CMakeLists.txt +++ b/app/dialog/rendercancel/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/rendercancel/rendercancel.cpp b/app/dialog/rendercancel/rendercancel.cpp index c01deb5a2..2782a8349 100644 --- a/app/dialog/rendercancel/rendercancel.cpp +++ b/app/dialog/rendercancel/rendercancel.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/rendercancel/rendercancel.h b/app/dialog/rendercancel/rendercancel.h index 705ab9884..d385df926 100644 --- a/app/dialog/rendercancel/rendercancel.h +++ b/app/dialog/rendercancel/rendercancel.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/CMakeLists.txt b/app/dialog/sequence/CMakeLists.txt index 1d3b4fccf..f49e84352 100644 --- a/app/dialog/sequence/CMakeLists.txt +++ b/app/dialog/sequence/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/presetmanager.h b/app/dialog/sequence/presetmanager.h index 712a3c20b..dc5bad24a 100644 --- a/app/dialog/sequence/presetmanager.h +++ b/app/dialog/sequence/presetmanager.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequence.cpp b/app/dialog/sequence/sequence.cpp index 0793da8eb..38316e89c 100644 --- a/app/dialog/sequence/sequence.cpp +++ b/app/dialog/sequence/sequence.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequence.h b/app/dialog/sequence/sequence.h index 6009f9e84..c3d2dade3 100644 --- a/app/dialog/sequence/sequence.h +++ b/app/dialog/sequence/sequence.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequencedialogparametertab.cpp b/app/dialog/sequence/sequencedialogparametertab.cpp index edaf18425..2adf35b7c 100644 --- a/app/dialog/sequence/sequencedialogparametertab.cpp +++ b/app/dialog/sequence/sequencedialogparametertab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequencedialogparametertab.h b/app/dialog/sequence/sequencedialogparametertab.h index dfb38e599..a11e1abbd 100644 --- a/app/dialog/sequence/sequencedialogparametertab.h +++ b/app/dialog/sequence/sequencedialogparametertab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequencedialogpresettab.cpp b/app/dialog/sequence/sequencedialogpresettab.cpp index dc26b8b98..47e4db694 100644 --- a/app/dialog/sequence/sequencedialogpresettab.cpp +++ b/app/dialog/sequence/sequencedialogpresettab.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequencedialogpresettab.h b/app/dialog/sequence/sequencedialogpresettab.h index aa5139f46..100f3a0f2 100644 --- a/app/dialog/sequence/sequencedialogpresettab.h +++ b/app/dialog/sequence/sequencedialogpresettab.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/sequence/sequencepreset.h b/app/dialog/sequence/sequencepreset.h index d11fba10f..caaf96cd5 100644 --- a/app/dialog/sequence/sequencepreset.h +++ b/app/dialog/sequence/sequencepreset.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/speedduration/CMakeLists.txt b/app/dialog/speedduration/CMakeLists.txt index 51cc60a60..cf40c9e4a 100644 --- a/app/dialog/speedduration/CMakeLists.txt +++ b/app/dialog/speedduration/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/speedduration/speeddurationdialog.cpp b/app/dialog/speedduration/speeddurationdialog.cpp index 70d9ff466..bab8762f0 100644 --- a/app/dialog/speedduration/speeddurationdialog.cpp +++ b/app/dialog/speedduration/speeddurationdialog.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/speedduration/speeddurationdialog.h b/app/dialog/speedduration/speeddurationdialog.h index 8662278aa..2a5d64164 100644 --- a/app/dialog/speedduration/speeddurationdialog.h +++ b/app/dialog/speedduration/speeddurationdialog.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/task/CMakeLists.txt b/app/dialog/task/CMakeLists.txt index 57d46bea0..0903daa6f 100644 --- a/app/dialog/task/CMakeLists.txt +++ b/app/dialog/task/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/task/task.cpp b/app/dialog/task/task.cpp index 8f3df4ab6..43062edfd 100644 --- a/app/dialog/task/task.cpp +++ b/app/dialog/task/task.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/task/task.h b/app/dialog/task/task.h index ef7ba99bc..253fec5b8 100644 --- a/app/dialog/task/task.h +++ b/app/dialog/task/task.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/text/CMakeLists.txt b/app/dialog/text/CMakeLists.txt index 8fac97e1d..9c1ee3190 100644 --- a/app/dialog/text/CMakeLists.txt +++ b/app/dialog/text/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/text/text.cpp b/app/dialog/text/text.cpp index dfd9c0e47..16f2ff7f7 100644 --- a/app/dialog/text/text.cpp +++ b/app/dialog/text/text.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/dialog/text/text.h b/app/dialog/text/text.h index 7195eb7aa..40fbbff2a 100644 --- a/app/dialog/text/text.h +++ b/app/dialog/text/text.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/icon.png b/app/icon.png new file mode 100644 index 000000000..393dea9fe Binary files /dev/null and b/app/icon.png differ diff --git a/app/main.cpp b/app/main.cpp index efdbbf908..93586d3f5 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify @@ -16,9 +16,9 @@ * along with this program. If not, see . */ -/** \mainpage Olive Video Editor - Code Documentation +/** \mainpage Oak Video Editor - Code Documentation * - * This documentation is a primarily a developer resource. For information on using Olive, visit the website + * This documentation is a primarily a developer resource. For information on using Oak Video Editor, visit the website * https://www.olivevideoeditor.org/ * * Use the navigation above to find documentation on classes or source files. @@ -35,6 +35,7 @@ extern "C" { #include #include #include +#include #include #include "core.h" @@ -148,10 +149,10 @@ int main(int argc, char *argv[]) qInstallMessageHandler(olive::DebugHandler); // Set application metadata - QCoreApplication::setOrganizationName("olivevideoeditor.org"); - QCoreApplication::setOrganizationDomain("olivevideoeditor.org"); - QCoreApplication::setApplicationName("Olive"); - QGuiApplication::setDesktopFileName("org.olivevideoeditor.Olive"); + QCoreApplication::setOrganizationName("oakvideoeditor.org"); + QCoreApplication::setOrganizationDomain("oakvideoeditor.org"); + QCoreApplication::setApplicationName("Oak Video Editor"); + QGuiApplication::setDesktopFileName("org.oakvideoeditor.Oak"); QCoreApplication::setApplicationVersion(olive::kAppVersionLong); // @@ -324,7 +325,7 @@ int main(int argc, char *argv[]) if (startup_params.run_mode() == olive::Core::CoreParams::kRunNormal) { #ifdef _WIN32 - // Since Olive is linked with the console subsystem (for better POSIX compatibility), a console + // Since Oak Video Editor is linked with the console subsystem (for better POSIX compatibility), a console // is created by default. If the user didn't request one, we free it here. if (!console_option->IsSet()) { FreeConsole(); @@ -336,6 +337,10 @@ int main(int argc, char *argv[]) a.reset(new QCoreApplication(argc, argv)); } + if (auto *gui_app = qobject_cast(a.get())) { + gui_app->setWindowIcon(QIcon(QStringLiteral(":/graphics/oak-logo.png"))); + } + #ifdef _WIN32 // On Windows, users seem to frequently run into a crash caused by their graphics driver not // supporting framebuffers, which we require. I personally have only been able to recreate this @@ -362,7 +367,7 @@ int main(int argc, char *argv[]) QCoreApplication::translate( "main", "Your computer's graphics driver does not appear to support framebuffers. " - "This most likely means either your graphics driver is not up-to-date or your graphics card is too old to run Olive.\n\n" + "This most likely means either your graphics driver is not up-to-date or your graphics card is too old to run Oak Video Editor.\n\n" "Please update your graphics driver to the latest version and try again.\n\n" "Current driver information: %1 %2 %3") .arg(QString::fromStdString(gpu_vendor), diff --git a/app/node/CMakeLists.txt b/app/node/CMakeLists.txt index 6c903dacc..9b966b06a 100644 --- a/app/node/CMakeLists.txt +++ b/app/node/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/CMakeLists.txt b/app/node/audio/CMakeLists.txt index 541fc3b20..9ad8c4b7a 100644 --- a/app/node/audio/CMakeLists.txt +++ b/app/node/audio/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/pan/CMakeLists.txt b/app/node/audio/pan/CMakeLists.txt index b249404cd..b9400c46c 100644 --- a/app/node/audio/pan/CMakeLists.txt +++ b/app/node/audio/pan/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/pan/pan.cpp b/app/node/audio/pan/pan.cpp index c62f38143..035806c6f 100644 --- a/app/node/audio/pan/pan.cpp +++ b/app/node/audio/pan/pan.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/pan/pan.h b/app/node/audio/pan/pan.h index c40da67e0..e8901d5fa 100644 --- a/app/node/audio/pan/pan.h +++ b/app/node/audio/pan/pan.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/volume/CMakeLists.txt b/app/node/audio/volume/CMakeLists.txt index 61e241f44..d4680b84b 100644 --- a/app/node/audio/volume/CMakeLists.txt +++ b/app/node/audio/volume/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/volume/volume.cpp b/app/node/audio/volume/volume.cpp index e09594722..bf9053aa4 100644 --- a/app/node/audio/volume/volume.cpp +++ b/app/node/audio/volume/volume.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/audio/volume/volume.h b/app/node/audio/volume/volume.h index c98a481a2..f90b8d6a8 100644 --- a/app/node/audio/volume/volume.h +++ b/app/node/audio/volume/volume.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/CMakeLists.txt b/app/node/block/CMakeLists.txt index b93497d47..7a3d89920 100644 --- a/app/node/block/CMakeLists.txt +++ b/app/node/block/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/block.cpp b/app/node/block/block.cpp index 73294a0e6..cd4899089 100644 --- a/app/node/block/block.cpp +++ b/app/node/block/block.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/block.h b/app/node/block/block.h index e8e392644..f17d46390 100644 --- a/app/node/block/block.h +++ b/app/node/block/block.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/clip/CMakeLists.txt b/app/node/block/clip/CMakeLists.txt index 4a3a19828..02a604a63 100644 --- a/app/node/block/clip/CMakeLists.txt +++ b/app/node/block/clip/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/clip/clip.cpp b/app/node/block/clip/clip.cpp index d6ea1d261..3bc2462d6 100644 --- a/app/node/block/clip/clip.cpp +++ b/app/node/block/clip/clip.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/clip/clip.h b/app/node/block/clip/clip.h index 149e5ba66..4a7198588 100644 --- a/app/node/block/clip/clip.h +++ b/app/node/block/clip/clip.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/gap/CMakeLists.txt b/app/node/block/gap/CMakeLists.txt index a29906a51..39a874915 100644 --- a/app/node/block/gap/CMakeLists.txt +++ b/app/node/block/gap/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/gap/gap.cpp b/app/node/block/gap/gap.cpp index f0748535c..66517f266 100644 --- a/app/node/block/gap/gap.cpp +++ b/app/node/block/gap/gap.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/gap/gap.h b/app/node/block/gap/gap.h index d3b86835f..47a4796cd 100644 --- a/app/node/block/gap/gap.h +++ b/app/node/block/gap/gap.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/subtitle/CMakeLists.txt b/app/node/block/subtitle/CMakeLists.txt index 29001e672..2eb63210b 100644 --- a/app/node/block/subtitle/CMakeLists.txt +++ b/app/node/block/subtitle/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/subtitle/subtitle.cpp b/app/node/block/subtitle/subtitle.cpp index ed60b7f59..2a21f14ba 100644 --- a/app/node/block/subtitle/subtitle.cpp +++ b/app/node/block/subtitle/subtitle.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/subtitle/subtitle.h b/app/node/block/subtitle/subtitle.h index 43b686ea2..6acde5982 100644 --- a/app/node/block/subtitle/subtitle.h +++ b/app/node/block/subtitle/subtitle.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/CMakeLists.txt b/app/node/block/transition/CMakeLists.txt index bb1f316a4..353fd8305 100644 --- a/app/node/block/transition/CMakeLists.txt +++ b/app/node/block/transition/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/crossdissolve/CMakeLists.txt b/app/node/block/transition/crossdissolve/CMakeLists.txt index 2d8b8fc11..7cc6c79f2 100644 --- a/app/node/block/transition/crossdissolve/CMakeLists.txt +++ b/app/node/block/transition/crossdissolve/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/crossdissolve/crossdissolvetransition.cpp b/app/node/block/transition/crossdissolve/crossdissolvetransition.cpp index a3217c2a9..c2af61ecd 100644 --- a/app/node/block/transition/crossdissolve/crossdissolvetransition.cpp +++ b/app/node/block/transition/crossdissolve/crossdissolvetransition.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/crossdissolve/crossdissolvetransition.h b/app/node/block/transition/crossdissolve/crossdissolvetransition.h index 7138967f7..845b64781 100644 --- a/app/node/block/transition/crossdissolve/crossdissolvetransition.h +++ b/app/node/block/transition/crossdissolve/crossdissolvetransition.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/diptocolor/CMakeLists.txt b/app/node/block/transition/diptocolor/CMakeLists.txt index 47be688c3..cdd44d9a7 100644 --- a/app/node/block/transition/diptocolor/CMakeLists.txt +++ b/app/node/block/transition/diptocolor/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/diptocolor/diptocolortransition.cpp b/app/node/block/transition/diptocolor/diptocolortransition.cpp index c1d3d9014..d172ef57e 100644 --- a/app/node/block/transition/diptocolor/diptocolortransition.cpp +++ b/app/node/block/transition/diptocolor/diptocolortransition.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/diptocolor/diptocolortransition.h b/app/node/block/transition/diptocolor/diptocolortransition.h index d66dc8c2d..88b016540 100644 --- a/app/node/block/transition/diptocolor/diptocolortransition.h +++ b/app/node/block/transition/diptocolor/diptocolortransition.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/transition.cpp b/app/node/block/transition/transition.cpp index e12f959d7..e11fa0819 100644 --- a/app/node/block/transition/transition.cpp +++ b/app/node/block/transition/transition.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/block/transition/transition.h b/app/node/block/transition/transition.h index a1f8d1fd8..4b0a863b1 100644 --- a/app/node/block/transition/transition.h +++ b/app/node/block/transition/transition.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/CMakeLists.txt b/app/node/color/CMakeLists.txt index 96bd0db4f..8960b0458 100644 --- a/app/node/color/CMakeLists.txt +++ b/app/node/color/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/colormanager/CMakeLists.txt b/app/node/color/colormanager/CMakeLists.txt index d964226d2..9c82aefb2 100644 --- a/app/node/color/colormanager/CMakeLists.txt +++ b/app/node/color/colormanager/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/colormanager/colormanager.cpp b/app/node/color/colormanager/colormanager.cpp index 36917d31b..c279659ae 100644 --- a/app/node/color/colormanager/colormanager.cpp +++ b/app/node/color/colormanager/colormanager.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/colormanager/colormanager.h b/app/node/color/colormanager/colormanager.h index 64907b63a..da69cb76d 100644 --- a/app/node/color/colormanager/colormanager.h +++ b/app/node/color/colormanager/colormanager.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/displaytransform/CMakeLists.txt b/app/node/color/displaytransform/CMakeLists.txt index bec0ddfbe..1cd7da0ee 100644 --- a/app/node/color/displaytransform/CMakeLists.txt +++ b/app/node/color/displaytransform/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/displaytransform/displaytransform.cpp b/app/node/color/displaytransform/displaytransform.cpp index 2f5dc5430..1116dd920 100644 --- a/app/node/color/displaytransform/displaytransform.cpp +++ b/app/node/color/displaytransform/displaytransform.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/displaytransform/displaytransform.h b/app/node/color/displaytransform/displaytransform.h index 3164f5ae3..7ed9baef7 100644 --- a/app/node/color/displaytransform/displaytransform.h +++ b/app/node/color/displaytransform/displaytransform.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociobase/CMakeLists.txt b/app/node/color/ociobase/CMakeLists.txt index 86a82c6cd..eef28adcb 100644 --- a/app/node/color/ociobase/CMakeLists.txt +++ b/app/node/color/ociobase/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociobase/ociobase.cpp b/app/node/color/ociobase/ociobase.cpp index bd22e87fd..7f5bece8c 100644 --- a/app/node/color/ociobase/ociobase.cpp +++ b/app/node/color/ociobase/ociobase.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociobase/ociobase.h b/app/node/color/ociobase/ociobase.h index 14bcc4605..9306d0ce6 100644 --- a/app/node/color/ociobase/ociobase.h +++ b/app/node/color/ociobase/ociobase.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociogradingtransformlinear/CMakeLists.txt b/app/node/color/ociogradingtransformlinear/CMakeLists.txt index 891489c63..6f638cbb7 100644 --- a/app/node/color/ociogradingtransformlinear/CMakeLists.txt +++ b/app/node/color/ociogradingtransformlinear/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.cpp b/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.cpp index a5d88ad70..17a487f3c 100644 --- a/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.cpp +++ b/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.h b/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.h index ddb1a1c2f..cc434e435 100644 --- a/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.h +++ b/app/node/color/ociogradingtransformlinear/ociogradingtransformlinear.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/CMakeLists.txt b/app/node/distort/CMakeLists.txt index 2feb4ee34..2efd85165 100644 --- a/app/node/distort/CMakeLists.txt +++ b/app/node/distort/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/cornerpin/CMakeLists.txt b/app/node/distort/cornerpin/CMakeLists.txt index 7dd1b44e0..0b6700ef4 100644 --- a/app/node/distort/cornerpin/CMakeLists.txt +++ b/app/node/distort/cornerpin/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/cornerpin/cornerpindistortnode.cpp b/app/node/distort/cornerpin/cornerpindistortnode.cpp index 435a766ad..21d55d8b4 100644 --- a/app/node/distort/cornerpin/cornerpindistortnode.cpp +++ b/app/node/distort/cornerpin/cornerpindistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/cornerpin/cornerpindistortnode.h b/app/node/distort/cornerpin/cornerpindistortnode.h index 18c09af81..31d1806c0 100644 --- a/app/node/distort/cornerpin/cornerpindistortnode.h +++ b/app/node/distort/cornerpin/cornerpindistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/crop/CMakeLists.txt b/app/node/distort/crop/CMakeLists.txt index b882ad539..1f58852cc 100644 --- a/app/node/distort/crop/CMakeLists.txt +++ b/app/node/distort/crop/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/crop/cropdistortnode.cpp b/app/node/distort/crop/cropdistortnode.cpp index 1606cf272..d0f29e2b0 100644 --- a/app/node/distort/crop/cropdistortnode.cpp +++ b/app/node/distort/crop/cropdistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/crop/cropdistortnode.h b/app/node/distort/crop/cropdistortnode.h index e9d308751..bdcb8808e 100644 --- a/app/node/distort/crop/cropdistortnode.h +++ b/app/node/distort/crop/cropdistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/flip/CMakeLists.txt b/app/node/distort/flip/CMakeLists.txt index 414f46fec..941c1ebcb 100644 --- a/app/node/distort/flip/CMakeLists.txt +++ b/app/node/distort/flip/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/flip/flipdistortnode.cpp b/app/node/distort/flip/flipdistortnode.cpp index 69f6b536b..c508a5390 100644 --- a/app/node/distort/flip/flipdistortnode.cpp +++ b/app/node/distort/flip/flipdistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/flip/flipdistortnode.h b/app/node/distort/flip/flipdistortnode.h index 08bcfe53b..4d376ffe7 100644 --- a/app/node/distort/flip/flipdistortnode.h +++ b/app/node/distort/flip/flipdistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/mask/CMakeLists.txt b/app/node/distort/mask/CMakeLists.txt index ac4b0d89e..79c2498f3 100644 --- a/app/node/distort/mask/CMakeLists.txt +++ b/app/node/distort/mask/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/mask/mask.cpp b/app/node/distort/mask/mask.cpp index 9de468e0d..841e6acee 100644 --- a/app/node/distort/mask/mask.cpp +++ b/app/node/distort/mask/mask.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/mask/mask.h b/app/node/distort/mask/mask.h index 686cec456..9fff740bf 100644 --- a/app/node/distort/mask/mask.h +++ b/app/node/distort/mask/mask.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/ripple/CMakeLists.txt b/app/node/distort/ripple/CMakeLists.txt index 1860986c6..34eae04ae 100644 --- a/app/node/distort/ripple/CMakeLists.txt +++ b/app/node/distort/ripple/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/ripple/rippledistortnode.cpp b/app/node/distort/ripple/rippledistortnode.cpp index 955925276..38583b106 100644 --- a/app/node/distort/ripple/rippledistortnode.cpp +++ b/app/node/distort/ripple/rippledistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/ripple/rippledistortnode.h b/app/node/distort/ripple/rippledistortnode.h index 390a012fa..1626163ea 100644 --- a/app/node/distort/ripple/rippledistortnode.h +++ b/app/node/distort/ripple/rippledistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/swirl/CMakeLists.txt b/app/node/distort/swirl/CMakeLists.txt index e41d599c4..a10a41d5d 100644 --- a/app/node/distort/swirl/CMakeLists.txt +++ b/app/node/distort/swirl/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/swirl/swirldistortnode.cpp b/app/node/distort/swirl/swirldistortnode.cpp index bc7120d5f..0ba1e45b8 100644 --- a/app/node/distort/swirl/swirldistortnode.cpp +++ b/app/node/distort/swirl/swirldistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/swirl/swirldistortnode.h b/app/node/distort/swirl/swirldistortnode.h index 03ab6ae28..aa648b15a 100644 --- a/app/node/distort/swirl/swirldistortnode.h +++ b/app/node/distort/swirl/swirldistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/tile/CMakeLists.txt b/app/node/distort/tile/CMakeLists.txt index c2f83cbf6..5ba163bad 100644 --- a/app/node/distort/tile/CMakeLists.txt +++ b/app/node/distort/tile/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/tile/tiledistortnode.cpp b/app/node/distort/tile/tiledistortnode.cpp index b15dc3ee2..f9813e5c9 100644 --- a/app/node/distort/tile/tiledistortnode.cpp +++ b/app/node/distort/tile/tiledistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/tile/tiledistortnode.h b/app/node/distort/tile/tiledistortnode.h index f154aff8d..28c53e9d6 100644 --- a/app/node/distort/tile/tiledistortnode.h +++ b/app/node/distort/tile/tiledistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/transform/CMakeLists.txt b/app/node/distort/transform/CMakeLists.txt index 63a97c6c2..b45c4de7d 100644 --- a/app/node/distort/transform/CMakeLists.txt +++ b/app/node/distort/transform/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/transform/transformdistortnode.cpp b/app/node/distort/transform/transformdistortnode.cpp index b9a9c22ba..39925a4c0 100644 --- a/app/node/distort/transform/transformdistortnode.cpp +++ b/app/node/distort/transform/transformdistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/transform/transformdistortnode.h b/app/node/distort/transform/transformdistortnode.h index 409bc7bfb..76f9bbce6 100644 --- a/app/node/distort/transform/transformdistortnode.h +++ b/app/node/distort/transform/transformdistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/wave/CMakeLists.txt b/app/node/distort/wave/CMakeLists.txt index 5cf818d4c..73cd79fd5 100644 --- a/app/node/distort/wave/CMakeLists.txt +++ b/app/node/distort/wave/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/wave/wavedistortnode.cpp b/app/node/distort/wave/wavedistortnode.cpp index c210ac954..53bffdfbf 100644 --- a/app/node/distort/wave/wavedistortnode.cpp +++ b/app/node/distort/wave/wavedistortnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/distort/wave/wavedistortnode.h b/app/node/distort/wave/wavedistortnode.h index 4f7ae4bde..705248231 100644 --- a/app/node/distort/wave/wavedistortnode.h +++ b/app/node/distort/wave/wavedistortnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/effect/CMakeLists.txt b/app/node/effect/CMakeLists.txt index 690dd76a5..fb525858b 100644 --- a/app/node/effect/CMakeLists.txt +++ b/app/node/effect/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/effect/opacity/CMakeLists.txt b/app/node/effect/opacity/CMakeLists.txt index 4aac69730..cab572185 100644 --- a/app/node/effect/opacity/CMakeLists.txt +++ b/app/node/effect/opacity/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/effect/opacity/opacityeffect.cpp b/app/node/effect/opacity/opacityeffect.cpp index acbacef87..f0583587b 100644 --- a/app/node/effect/opacity/opacityeffect.cpp +++ b/app/node/effect/opacity/opacityeffect.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/effect/opacity/opacityeffect.h b/app/node/effect/opacity/opacityeffect.h index 9d65ba86a..8224565bb 100644 --- a/app/node/effect/opacity/opacityeffect.h +++ b/app/node/effect/opacity/opacityeffect.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/factory.cpp b/app/node/factory.cpp index 8dfddf721..bbab2f3bb 100644 --- a/app/node/factory.cpp +++ b/app/node/factory.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/factory.h b/app/node/factory.h index 3dc05adb4..cdfcb4bf1 100644 --- a/app/node/factory.h +++ b/app/node/factory.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/CMakeLists.txt b/app/node/filter/CMakeLists.txt index ea93d9320..bb49effc1 100644 --- a/app/node/filter/CMakeLists.txt +++ b/app/node/filter/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/blur/CMakeLists.txt b/app/node/filter/blur/CMakeLists.txt index 40c6695f3..0b467cb32 100644 --- a/app/node/filter/blur/CMakeLists.txt +++ b/app/node/filter/blur/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/blur/blur.cpp b/app/node/filter/blur/blur.cpp index 7511a17b6..00963eef1 100644 --- a/app/node/filter/blur/blur.cpp +++ b/app/node/filter/blur/blur.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/blur/blur.h b/app/node/filter/blur/blur.h index 2e52ee444..0af392aca 100644 --- a/app/node/filter/blur/blur.h +++ b/app/node/filter/blur/blur.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/dropshadow/CMakeLists.txt b/app/node/filter/dropshadow/CMakeLists.txt index e86f4b95f..c4d1a82b2 100644 --- a/app/node/filter/dropshadow/CMakeLists.txt +++ b/app/node/filter/dropshadow/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/dropshadow/dropshadowfilter.cpp b/app/node/filter/dropshadow/dropshadowfilter.cpp index 770b81209..9934d28bc 100644 --- a/app/node/filter/dropshadow/dropshadowfilter.cpp +++ b/app/node/filter/dropshadow/dropshadowfilter.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/dropshadow/dropshadowfilter.h b/app/node/filter/dropshadow/dropshadowfilter.h index e0308a103..9e99aa304 100644 --- a/app/node/filter/dropshadow/dropshadowfilter.h +++ b/app/node/filter/dropshadow/dropshadowfilter.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/mosaic/CMakeLists.txt b/app/node/filter/mosaic/CMakeLists.txt index 07a502395..55ba8692d 100644 --- a/app/node/filter/mosaic/CMakeLists.txt +++ b/app/node/filter/mosaic/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/mosaic/mosaicfilternode.cpp b/app/node/filter/mosaic/mosaicfilternode.cpp index 07f8cbfcc..103801d7e 100644 --- a/app/node/filter/mosaic/mosaicfilternode.cpp +++ b/app/node/filter/mosaic/mosaicfilternode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/mosaic/mosaicfilternode.h b/app/node/filter/mosaic/mosaicfilternode.h index 25faf96b7..b60b5d961 100644 --- a/app/node/filter/mosaic/mosaicfilternode.h +++ b/app/node/filter/mosaic/mosaicfilternode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/stroke/CMakeLists.txt b/app/node/filter/stroke/CMakeLists.txt index 71bb7c94f..80e5c9496 100644 --- a/app/node/filter/stroke/CMakeLists.txt +++ b/app/node/filter/stroke/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/stroke/stroke.cpp b/app/node/filter/stroke/stroke.cpp index 5acf619b8..1f3dc8ca6 100644 --- a/app/node/filter/stroke/stroke.cpp +++ b/app/node/filter/stroke/stroke.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/filter/stroke/stroke.h b/app/node/filter/stroke/stroke.h index be0d5f30f..fd38e9e3d 100644 --- a/app/node/filter/stroke/stroke.h +++ b/app/node/filter/stroke/stroke.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/CMakeLists.txt b/app/node/generator/CMakeLists.txt index 424c3a0d4..2169a1631 100644 --- a/app/node/generator/CMakeLists.txt +++ b/app/node/generator/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/matrix/CMakeLists.txt b/app/node/generator/matrix/CMakeLists.txt index 142fdade9..12766e474 100644 --- a/app/node/generator/matrix/CMakeLists.txt +++ b/app/node/generator/matrix/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/matrix/matrix.cpp b/app/node/generator/matrix/matrix.cpp index f1eb7afb5..017310c02 100644 --- a/app/node/generator/matrix/matrix.cpp +++ b/app/node/generator/matrix/matrix.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/matrix/matrix.h b/app/node/generator/matrix/matrix.h index b92c19c83..f0b70adab 100644 --- a/app/node/generator/matrix/matrix.h +++ b/app/node/generator/matrix/matrix.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/noise/CMakeLists.txt b/app/node/generator/noise/CMakeLists.txt index 2c74d0d1c..a4883094d 100644 --- a/app/node/generator/noise/CMakeLists.txt +++ b/app/node/generator/noise/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/noise/noise.cpp b/app/node/generator/noise/noise.cpp index 53a3b7cf0..4188f0287 100644 --- a/app/node/generator/noise/noise.cpp +++ b/app/node/generator/noise/noise.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/noise/noise.h b/app/node/generator/noise/noise.h index 29bc43531..69b5b8035 100644 --- a/app/node/generator/noise/noise.h +++ b/app/node/generator/noise/noise.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/polygon/CMakeLists.txt b/app/node/generator/polygon/CMakeLists.txt index 79660d493..67eee7e32 100644 --- a/app/node/generator/polygon/CMakeLists.txt +++ b/app/node/generator/polygon/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/polygon/polygon.cpp b/app/node/generator/polygon/polygon.cpp index 39b3398f8..469fbc8d7 100644 --- a/app/node/generator/polygon/polygon.cpp +++ b/app/node/generator/polygon/polygon.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/polygon/polygon.h b/app/node/generator/polygon/polygon.h index 89b6eacac..ba88a6709 100644 --- a/app/node/generator/polygon/polygon.h +++ b/app/node/generator/polygon/polygon.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/CMakeLists.txt b/app/node/generator/shape/CMakeLists.txt index 436a49583..180be11d3 100644 --- a/app/node/generator/shape/CMakeLists.txt +++ b/app/node/generator/shape/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/generatorwithmerge.cpp b/app/node/generator/shape/generatorwithmerge.cpp index 885697bc9..9b9f6ff3f 100644 --- a/app/node/generator/shape/generatorwithmerge.cpp +++ b/app/node/generator/shape/generatorwithmerge.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/generatorwithmerge.h b/app/node/generator/shape/generatorwithmerge.h index aec09d121..8b4a25225 100644 --- a/app/node/generator/shape/generatorwithmerge.h +++ b/app/node/generator/shape/generatorwithmerge.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/shapenode.cpp b/app/node/generator/shape/shapenode.cpp index 6f7f64ede..78fc9bc05 100644 --- a/app/node/generator/shape/shapenode.cpp +++ b/app/node/generator/shape/shapenode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/shapenode.h b/app/node/generator/shape/shapenode.h index f266f173b..96bddc0de 100644 --- a/app/node/generator/shape/shapenode.h +++ b/app/node/generator/shape/shapenode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/shapenodebase.cpp b/app/node/generator/shape/shapenodebase.cpp index a4dbfc218..5f2517c5a 100644 --- a/app/node/generator/shape/shapenodebase.cpp +++ b/app/node/generator/shape/shapenodebase.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/shape/shapenodebase.h b/app/node/generator/shape/shapenodebase.h index 306c504db..37588a746 100644 --- a/app/node/generator/shape/shapenodebase.h +++ b/app/node/generator/shape/shapenodebase.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/solid/CMakeLists.txt b/app/node/generator/solid/CMakeLists.txt index a194c709a..c1f463ced 100644 --- a/app/node/generator/solid/CMakeLists.txt +++ b/app/node/generator/solid/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/solid/solid.cpp b/app/node/generator/solid/solid.cpp index 1dd27b770..2ded739a7 100644 --- a/app/node/generator/solid/solid.cpp +++ b/app/node/generator/solid/solid.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/solid/solid.h b/app/node/generator/solid/solid.h index 3ec74523d..0cd17aed5 100644 --- a/app/node/generator/solid/solid.h +++ b/app/node/generator/solid/solid.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/CMakeLists.txt b/app/node/generator/text/CMakeLists.txt index 3c03d99a1..f6df49471 100644 --- a/app/node/generator/text/CMakeLists.txt +++ b/app/node/generator/text/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv1.cpp b/app/node/generator/text/textv1.cpp index b0283455b..437dca66a 100644 --- a/app/node/generator/text/textv1.cpp +++ b/app/node/generator/text/textv1.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv1.h b/app/node/generator/text/textv1.h index 320ce84ad..8b715bfcd 100644 --- a/app/node/generator/text/textv1.h +++ b/app/node/generator/text/textv1.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv2.cpp b/app/node/generator/text/textv2.cpp index c96de1989..20dc49677 100644 --- a/app/node/generator/text/textv2.cpp +++ b/app/node/generator/text/textv2.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv2.h b/app/node/generator/text/textv2.h index 9a6f4bb97..209556257 100644 --- a/app/node/generator/text/textv2.h +++ b/app/node/generator/text/textv2.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv3.cpp b/app/node/generator/text/textv3.cpp index 6e53f69ea..f7e47da3a 100644 --- a/app/node/generator/text/textv3.cpp +++ b/app/node/generator/text/textv3.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/generator/text/textv3.h b/app/node/generator/text/textv3.h index f36f46300..243982256 100644 --- a/app/node/generator/text/textv3.h +++ b/app/node/generator/text/textv3.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/CMakeLists.txt b/app/node/gizmo/CMakeLists.txt index c9f530d22..91acd2f18 100644 --- a/app/node/gizmo/CMakeLists.txt +++ b/app/node/gizmo/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/draggable.cpp b/app/node/gizmo/draggable.cpp index f90e0a8d9..df9104f72 100644 --- a/app/node/gizmo/draggable.cpp +++ b/app/node/gizmo/draggable.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/draggable.h b/app/node/gizmo/draggable.h index 47b665def..3fc68b048 100644 --- a/app/node/gizmo/draggable.h +++ b/app/node/gizmo/draggable.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/gizmo.cpp b/app/node/gizmo/gizmo.cpp index a73716e95..343b87a57 100644 --- a/app/node/gizmo/gizmo.cpp +++ b/app/node/gizmo/gizmo.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/gizmo.h b/app/node/gizmo/gizmo.h index 7145ac198..fc8fd3440 100644 --- a/app/node/gizmo/gizmo.h +++ b/app/node/gizmo/gizmo.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/line.cpp b/app/node/gizmo/line.cpp index ff91b8e1e..2b2903bde 100644 --- a/app/node/gizmo/line.cpp +++ b/app/node/gizmo/line.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/line.h b/app/node/gizmo/line.h index d0a63d110..68c78efc1 100644 --- a/app/node/gizmo/line.h +++ b/app/node/gizmo/line.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/path.cpp b/app/node/gizmo/path.cpp index d69c3b895..51f314336 100644 --- a/app/node/gizmo/path.cpp +++ b/app/node/gizmo/path.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/path.h b/app/node/gizmo/path.h index 7c5fa3d60..a0a0ad641 100644 --- a/app/node/gizmo/path.h +++ b/app/node/gizmo/path.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/point.cpp b/app/node/gizmo/point.cpp index 5e4e17ad9..fca4e01a4 100644 --- a/app/node/gizmo/point.cpp +++ b/app/node/gizmo/point.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/point.h b/app/node/gizmo/point.h index 9f9ee4663..8a7db063f 100644 --- a/app/node/gizmo/point.h +++ b/app/node/gizmo/point.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/polygon.cpp b/app/node/gizmo/polygon.cpp index 99fb6c0de..1479d5d48 100644 --- a/app/node/gizmo/polygon.cpp +++ b/app/node/gizmo/polygon.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/polygon.h b/app/node/gizmo/polygon.h index 7e51acdea..2b954d0ad 100644 --- a/app/node/gizmo/polygon.h +++ b/app/node/gizmo/polygon.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/screen.cpp b/app/node/gizmo/screen.cpp index 399db920b..0491a6620 100644 --- a/app/node/gizmo/screen.cpp +++ b/app/node/gizmo/screen.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/screen.h b/app/node/gizmo/screen.h index cf3294774..ec0a9fcee 100644 --- a/app/node/gizmo/screen.h +++ b/app/node/gizmo/screen.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/text.cpp b/app/node/gizmo/text.cpp index e2f25157d..b4a27b308 100644 --- a/app/node/gizmo/text.cpp +++ b/app/node/gizmo/text.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/gizmo/text.h b/app/node/gizmo/text.h index eae74f5ec..a0a6e3b6a 100644 --- a/app/node/gizmo/text.h +++ b/app/node/gizmo/text.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/globals.cpp b/app/node/globals.cpp index d808d32d0..78b87bd12 100644 --- a/app/node/globals.cpp +++ b/app/node/globals.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/globals.h b/app/node/globals.h index 65c9a3db0..71b058a67 100644 --- a/app/node/globals.h +++ b/app/node/globals.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/group/CMakeLists.txt b/app/node/group/CMakeLists.txt index de08d74da..e8f8e09b2 100644 --- a/app/node/group/CMakeLists.txt +++ b/app/node/group/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/group/group.cpp b/app/node/group/group.cpp index 9f0793043..c574184e2 100644 --- a/app/node/group/group.cpp +++ b/app/node/group/group.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/group/group.h b/app/node/group/group.h index 6a15bf113..d88572ad5 100644 --- a/app/node/group/group.h +++ b/app/node/group/group.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/CMakeLists.txt b/app/node/input/CMakeLists.txt index ab2b3569e..6e02b00e2 100644 --- a/app/node/input/CMakeLists.txt +++ b/app/node/input/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/multicam/CMakeLists.txt b/app/node/input/multicam/CMakeLists.txt index fca12be16..730dbf626 100644 --- a/app/node/input/multicam/CMakeLists.txt +++ b/app/node/input/multicam/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/multicam/multicamnode.cpp b/app/node/input/multicam/multicamnode.cpp index aed67a8b6..a192a01d5 100644 --- a/app/node/input/multicam/multicamnode.cpp +++ b/app/node/input/multicam/multicamnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/multicam/multicamnode.h b/app/node/input/multicam/multicamnode.h index 6c042b1ca..ff9dcb555 100644 --- a/app/node/input/multicam/multicamnode.h +++ b/app/node/input/multicam/multicamnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/time/CMakeLists.txt b/app/node/input/time/CMakeLists.txt index de26aba60..7942b4e6b 100644 --- a/app/node/input/time/CMakeLists.txt +++ b/app/node/input/time/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/time/timeinput.cpp b/app/node/input/time/timeinput.cpp index fe56c50af..5dc39fa20 100644 --- a/app/node/input/time/timeinput.cpp +++ b/app/node/input/time/timeinput.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/time/timeinput.h b/app/node/input/time/timeinput.h index 9d63a894a..8558065cd 100644 --- a/app/node/input/time/timeinput.h +++ b/app/node/input/time/timeinput.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/value/CMakeLists.txt b/app/node/input/value/CMakeLists.txt index cab50a98e..9496121fb 100644 --- a/app/node/input/value/CMakeLists.txt +++ b/app/node/input/value/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/value/valuenode.cpp b/app/node/input/value/valuenode.cpp index c9803c011..1f0ac2773 100644 --- a/app/node/input/value/valuenode.cpp +++ b/app/node/input/value/valuenode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/input/value/valuenode.h b/app/node/input/value/valuenode.h index dbc1b4f07..e9d46e023 100644 --- a/app/node/input/value/valuenode.h +++ b/app/node/input/value/valuenode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/inputdragger.cpp b/app/node/inputdragger.cpp index 551cc0e1e..20803dab5 100644 --- a/app/node/inputdragger.cpp +++ b/app/node/inputdragger.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/inputdragger.h b/app/node/inputdragger.h index d54a4e3b3..577af8ce7 100644 --- a/app/node/inputdragger.h +++ b/app/node/inputdragger.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/inputimmediate.cpp b/app/node/inputimmediate.cpp index 2c30be133..9ff20750d 100644 --- a/app/node/inputimmediate.cpp +++ b/app/node/inputimmediate.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/inputimmediate.h b/app/node/inputimmediate.h index 9d4209428..4a782600e 100644 --- a/app/node/inputimmediate.h +++ b/app/node/inputimmediate.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keyframe.cpp b/app/node/keyframe.cpp index f35d6b2bf..17a33a9b3 100644 --- a/app/node/keyframe.cpp +++ b/app/node/keyframe.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keyframe.h b/app/node/keyframe.h index d1fb811cd..0550e2953 100644 --- a/app/node/keyframe.h +++ b/app/node/keyframe.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/CMakeLists.txt b/app/node/keying/CMakeLists.txt index 1aa9910f4..132d362e6 100644 --- a/app/node/keying/CMakeLists.txt +++ b/app/node/keying/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/chromakey/CMakeLists.txt b/app/node/keying/chromakey/CMakeLists.txt index e7a9023dc..63a7ceb4b 100644 --- a/app/node/keying/chromakey/CMakeLists.txt +++ b/app/node/keying/chromakey/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/chromakey/chromakey.cpp b/app/node/keying/chromakey/chromakey.cpp index af91b07fc..b3824bb09 100644 --- a/app/node/keying/chromakey/chromakey.cpp +++ b/app/node/keying/chromakey/chromakey.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/chromakey/chromakey.h b/app/node/keying/chromakey/chromakey.h index 45b1cc0e8..3fdb338d7 100644 --- a/app/node/keying/chromakey/chromakey.h +++ b/app/node/keying/chromakey/chromakey.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/colordifferencekey/CMakeLists.txt b/app/node/keying/colordifferencekey/CMakeLists.txt index f85438dc9..eddf70682 100644 --- a/app/node/keying/colordifferencekey/CMakeLists.txt +++ b/app/node/keying/colordifferencekey/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/colordifferencekey/colordifferencekey.cpp b/app/node/keying/colordifferencekey/colordifferencekey.cpp index c3a8c3305..fd93d831d 100644 --- a/app/node/keying/colordifferencekey/colordifferencekey.cpp +++ b/app/node/keying/colordifferencekey/colordifferencekey.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/colordifferencekey/colordifferencekey.h b/app/node/keying/colordifferencekey/colordifferencekey.h index 3ae6c5100..662ec5b90 100644 --- a/app/node/keying/colordifferencekey/colordifferencekey.h +++ b/app/node/keying/colordifferencekey/colordifferencekey.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/despill/CMakeLists.txt b/app/node/keying/despill/CMakeLists.txt index 5f7c01639..d3c7ebfa8 100644 --- a/app/node/keying/despill/CMakeLists.txt +++ b/app/node/keying/despill/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/despill/despill.cpp b/app/node/keying/despill/despill.cpp index cf735908a..4011e7e5e 100644 --- a/app/node/keying/despill/despill.cpp +++ b/app/node/keying/despill/despill.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/keying/despill/despill.h b/app/node/keying/despill/despill.h index b5a90a27d..508579f13 100644 --- a/app/node/keying/despill/despill.h +++ b/app/node/keying/despill/despill.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/CMakeLists.txt b/app/node/math/CMakeLists.txt index e9afde04c..5535583fa 100644 --- a/app/node/math/CMakeLists.txt +++ b/app/node/math/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/math/CMakeLists.txt b/app/node/math/math/CMakeLists.txt index 8837a6e9d..0a6c84c92 100644 --- a/app/node/math/math/CMakeLists.txt +++ b/app/node/math/math/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/math/math.cpp b/app/node/math/math/math.cpp index 1ffe3b171..ced97f426 100644 --- a/app/node/math/math/math.cpp +++ b/app/node/math/math/math.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/math/math.h b/app/node/math/math/math.h index 5171eade6..6ef6a7c4e 100644 --- a/app/node/math/math/math.h +++ b/app/node/math/math/math.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/math/mathbase.cpp b/app/node/math/math/mathbase.cpp index 0f89e7b00..ba2bb66d6 100644 --- a/app/node/math/math/mathbase.cpp +++ b/app/node/math/math/mathbase.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/math/mathbase.h b/app/node/math/math/mathbase.h index b187ed57c..4e811eb5b 100644 --- a/app/node/math/math/mathbase.h +++ b/app/node/math/math/mathbase.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/merge/CMakeLists.txt b/app/node/math/merge/CMakeLists.txt index d20bad99d..826a751f1 100644 --- a/app/node/math/merge/CMakeLists.txt +++ b/app/node/math/merge/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/merge/merge.cpp b/app/node/math/merge/merge.cpp index a4d0f3605..9ede00265 100644 --- a/app/node/math/merge/merge.cpp +++ b/app/node/math/merge/merge.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/merge/merge.h b/app/node/math/merge/merge.h index 643ee6374..e1ae9b5c1 100644 --- a/app/node/math/merge/merge.h +++ b/app/node/math/merge/merge.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/trigonometry/CMakeLists.txt b/app/node/math/trigonometry/CMakeLists.txt index e3b12573d..592f18078 100644 --- a/app/node/math/trigonometry/CMakeLists.txt +++ b/app/node/math/trigonometry/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/trigonometry/trigonometry.cpp b/app/node/math/trigonometry/trigonometry.cpp index 2ed88a85b..4823a9e99 100644 --- a/app/node/math/trigonometry/trigonometry.cpp +++ b/app/node/math/trigonometry/trigonometry.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/math/trigonometry/trigonometry.h b/app/node/math/trigonometry/trigonometry.h index 27bdbaf1e..635e6ad14 100644 --- a/app/node/math/trigonometry/trigonometry.h +++ b/app/node/math/trigonometry/trigonometry.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/node.cpp b/app/node/node.cpp index ffedaad40..0b5bdf8c9 100644 --- a/app/node/node.cpp +++ b/app/node/node.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/node.h b/app/node/node.h index b8e322791..4066e43d4 100644 --- a/app/node/node.h +++ b/app/node/node.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/nodeundo.cpp b/app/node/nodeundo.cpp index 0ac6a6a10..893e0cdf0 100644 --- a/app/node/nodeundo.cpp +++ b/app/node/nodeundo.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/nodeundo.h b/app/node/nodeundo.h index 78591e1ce..3b95cfd38 100644 --- a/app/node/nodeundo.h +++ b/app/node/nodeundo.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/CMakeLists.txt b/app/node/output/CMakeLists.txt index ae9e63c14..9512f72de 100644 --- a/app/node/output/CMakeLists.txt +++ b/app/node/output/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/track/CMakeLists.txt b/app/node/output/track/CMakeLists.txt index a0b2b6e21..7ed4b2d2a 100644 --- a/app/node/output/track/CMakeLists.txt +++ b/app/node/output/track/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/track/track.cpp b/app/node/output/track/track.cpp index 350f9db35..8066219f2 100644 --- a/app/node/output/track/track.cpp +++ b/app/node/output/track/track.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/track/track.h b/app/node/output/track/track.h index 4d0ecb8ed..183ddc271 100644 --- a/app/node/output/track/track.h +++ b/app/node/output/track/track.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/track/tracklist.cpp b/app/node/output/track/tracklist.cpp index 992ac0a32..ca70c492c 100644 --- a/app/node/output/track/tracklist.cpp +++ b/app/node/output/track/tracklist.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/track/tracklist.h b/app/node/output/track/tracklist.h index 2c448aeb5..d936d017f 100644 --- a/app/node/output/track/tracklist.h +++ b/app/node/output/track/tracklist.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/viewer/CMakeLists.txt b/app/node/output/viewer/CMakeLists.txt index d77898838..e489580d6 100644 --- a/app/node/output/viewer/CMakeLists.txt +++ b/app/node/output/viewer/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/viewer/viewer.cpp b/app/node/output/viewer/viewer.cpp index 576d2c733..a17b69cad 100644 --- a/app/node/output/viewer/viewer.cpp +++ b/app/node/output/viewer/viewer.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/output/viewer/viewer.h b/app/node/output/viewer/viewer.h index d6d5dd65a..f85a5ba12 100644 --- a/app/node/output/viewer/viewer.h +++ b/app/node/output/viewer/viewer.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/param.cpp b/app/node/param.cpp index b175c4bc1..c4fb0ba5b 100644 --- a/app/node/param.cpp +++ b/app/node/param.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/param.h b/app/node/param.h index 1d401b85e..5987802fb 100644 --- a/app/node/param.h +++ b/app/node/param.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/plugins/CMakeLists.txt b/app/node/plugins/CMakeLists.txt index 2eb07ea2f..96a4e60f5 100644 --- a/app/node/plugins/CMakeLists.txt +++ b/app/node/plugins/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/plugins/Plugin.cpp b/app/node/plugins/Plugin.cpp index b36e24535..889cc8247 100644 --- a/app/node/plugins/Plugin.cpp +++ b/app/node/plugins/Plugin.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/plugins/Plugin.h b/app/node/plugins/Plugin.h index 6c52e9274..e1e33aaa5 100644 --- a/app/node/plugins/Plugin.h +++ b/app/node/plugins/Plugin.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project.cpp b/app/node/project.cpp index 71ddbef76..ed2cfdbed 100644 --- a/app/node/project.cpp +++ b/app/node/project.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project.h b/app/node/project.h index fc13e208b..6e3441b8b 100644 --- a/app/node/project.h +++ b/app/node/project.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/CMakeLists.txt b/app/node/project/CMakeLists.txt index 81b41c183..45ebcf28d 100644 --- a/app/node/project/CMakeLists.txt +++ b/app/node/project/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/folder/CMakeLists.txt b/app/node/project/folder/CMakeLists.txt index d04701644..57de266aa 100644 --- a/app/node/project/folder/CMakeLists.txt +++ b/app/node/project/folder/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/folder/folder.cpp b/app/node/project/folder/folder.cpp index db9440604..256a30cd2 100644 --- a/app/node/project/folder/folder.cpp +++ b/app/node/project/folder/folder.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/folder/folder.h b/app/node/project/folder/folder.h index 6c19fa315..976283502 100644 --- a/app/node/project/folder/folder.h +++ b/app/node/project/folder/folder.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/footage/CMakeLists.txt b/app/node/project/footage/CMakeLists.txt index 4d277e07a..49000f61f 100644 --- a/app/node/project/footage/CMakeLists.txt +++ b/app/node/project/footage/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/footage/footage.cpp b/app/node/project/footage/footage.cpp index 65d6855e8..7c9df86b7 100644 --- a/app/node/project/footage/footage.cpp +++ b/app/node/project/footage/footage.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/footage/footage.h b/app/node/project/footage/footage.h index 8326d404f..b1d603d47 100644 --- a/app/node/project/footage/footage.h +++ b/app/node/project/footage/footage.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/footage/footagedescription.cpp b/app/node/project/footage/footagedescription.cpp index 083907c76..5c5c54937 100644 --- a/app/node/project/footage/footagedescription.cpp +++ b/app/node/project/footage/footagedescription.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/footage/footagedescription.h b/app/node/project/footage/footagedescription.h index 5c64da04a..3fc4b366b 100644 --- a/app/node/project/footage/footagedescription.h +++ b/app/node/project/footage/footagedescription.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/sequence/CMakeLists.txt b/app/node/project/sequence/CMakeLists.txt index 4da66c716..ab63eda64 100644 --- a/app/node/project/sequence/CMakeLists.txt +++ b/app/node/project/sequence/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/sequence/sequence.cpp b/app/node/project/sequence/sequence.cpp index 243dec500..3aa00021c 100644 --- a/app/node/project/sequence/sequence.cpp +++ b/app/node/project/sequence/sequence.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/sequence/sequence.h b/app/node/project/sequence/sequence.h index cfdb82be3..37e3542fb 100644 --- a/app/node/project/sequence/sequence.h +++ b/app/node/project/sequence/sequence.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/CMakeLists.txt b/app/node/project/serializer/CMakeLists.txt index df529037c..0af1bcaf1 100644 --- a/app/node/project/serializer/CMakeLists.txt +++ b/app/node/project/serializer/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer.cpp b/app/node/project/serializer/serializer.cpp index 19b03b619..8ff2758dd 100644 --- a/app/node/project/serializer/serializer.cpp +++ b/app/node/project/serializer/serializer.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer.h b/app/node/project/serializer/serializer.h index 1194bf582..b03bc47a9 100644 --- a/app/node/project/serializer/serializer.h +++ b/app/node/project/serializer/serializer.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer190219.cpp b/app/node/project/serializer/serializer190219.cpp index e38584491..3ba5cfcff 100644 --- a/app/node/project/serializer/serializer190219.cpp +++ b/app/node/project/serializer/serializer190219.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer190219.h b/app/node/project/serializer/serializer190219.h index ef8ef79af..dbfacfb7f 100644 --- a/app/node/project/serializer/serializer190219.h +++ b/app/node/project/serializer/serializer190219.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer210528.cpp b/app/node/project/serializer/serializer210528.cpp index 77986cc6d..81f5e0456 100644 --- a/app/node/project/serializer/serializer210528.cpp +++ b/app/node/project/serializer/serializer210528.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer210528.h b/app/node/project/serializer/serializer210528.h index 7f8b3b579..13f35478f 100644 --- a/app/node/project/serializer/serializer210528.h +++ b/app/node/project/serializer/serializer210528.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer210907.cpp b/app/node/project/serializer/serializer210907.cpp index d750cde85..024be2c4d 100644 --- a/app/node/project/serializer/serializer210907.cpp +++ b/app/node/project/serializer/serializer210907.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer210907.h b/app/node/project/serializer/serializer210907.h index 5716083f7..650e6f86e 100644 --- a/app/node/project/serializer/serializer210907.h +++ b/app/node/project/serializer/serializer210907.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer211228.cpp b/app/node/project/serializer/serializer211228.cpp index 3c6058ba7..1287eca6d 100644 --- a/app/node/project/serializer/serializer211228.cpp +++ b/app/node/project/serializer/serializer211228.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer211228.h b/app/node/project/serializer/serializer211228.h index f902906d8..0a50d2e21 100644 --- a/app/node/project/serializer/serializer211228.h +++ b/app/node/project/serializer/serializer211228.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer220403.cpp b/app/node/project/serializer/serializer220403.cpp index b8ec6c916..36994ef17 100644 --- a/app/node/project/serializer/serializer220403.cpp +++ b/app/node/project/serializer/serializer220403.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer220403.h b/app/node/project/serializer/serializer220403.h index d545029c3..a89fa57d0 100644 --- a/app/node/project/serializer/serializer220403.h +++ b/app/node/project/serializer/serializer220403.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer230220.cpp b/app/node/project/serializer/serializer230220.cpp index 8a6857704..e4572e752 100644 --- a/app/node/project/serializer/serializer230220.cpp +++ b/app/node/project/serializer/serializer230220.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/serializer230220.h b/app/node/project/serializer/serializer230220.h index 679df7a09..67007bada 100644 --- a/app/node/project/serializer/serializer230220.h +++ b/app/node/project/serializer/serializer230220.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/typeserializer.cpp b/app/node/project/serializer/typeserializer.cpp index eaf3a9cd6..d831ab321 100644 --- a/app/node/project/serializer/typeserializer.cpp +++ b/app/node/project/serializer/typeserializer.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/project/serializer/typeserializer.h b/app/node/project/serializer/typeserializer.h index 35cc8a808..d1740b637 100644 --- a/app/node/project/serializer/typeserializer.h +++ b/app/node/project/serializer/typeserializer.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/serializeddata.cpp b/app/node/serializeddata.cpp index 446711d49..56f28c90a 100644 --- a/app/node/serializeddata.cpp +++ b/app/node/serializeddata.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/serializeddata.h b/app/node/serializeddata.h index cfb2ef1a4..301cc047d 100644 --- a/app/node/serializeddata.h +++ b/app/node/serializeddata.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/splitvalue.h b/app/node/splitvalue.h index 4f0218780..b7f32a6a6 100644 --- a/app/node/splitvalue.h +++ b/app/node/splitvalue.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/CMakeLists.txt b/app/node/time/CMakeLists.txt index 9f3aa1dc5..62dffa6b0 100644 --- a/app/node/time/CMakeLists.txt +++ b/app/node/time/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeformat/CMakeLists.txt b/app/node/time/timeformat/CMakeLists.txt index 552649a6d..c3738ff30 100644 --- a/app/node/time/timeformat/CMakeLists.txt +++ b/app/node/time/timeformat/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeformat/timeformat.cpp b/app/node/time/timeformat/timeformat.cpp index d5fe3291e..a4d445fa4 100644 --- a/app/node/time/timeformat/timeformat.cpp +++ b/app/node/time/timeformat/timeformat.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeformat/timeformat.h b/app/node/time/timeformat/timeformat.h index b2ca49b70..1c7290377 100644 --- a/app/node/time/timeformat/timeformat.h +++ b/app/node/time/timeformat/timeformat.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeoffset/CMakeLists.txt b/app/node/time/timeoffset/CMakeLists.txt index 03afa72c3..693c4d4da 100644 --- a/app/node/time/timeoffset/CMakeLists.txt +++ b/app/node/time/timeoffset/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeoffset/timeoffsetnode.cpp b/app/node/time/timeoffset/timeoffsetnode.cpp index b16b1557a..85dfd5e34 100644 --- a/app/node/time/timeoffset/timeoffsetnode.cpp +++ b/app/node/time/timeoffset/timeoffsetnode.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeoffset/timeoffsetnode.h b/app/node/time/timeoffset/timeoffsetnode.h index e1ebe86ec..e9bb20ddc 100644 --- a/app/node/time/timeoffset/timeoffsetnode.h +++ b/app/node/time/timeoffset/timeoffsetnode.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeremap/CMakeLists.txt b/app/node/time/timeremap/CMakeLists.txt index f15e4dc03..7e138e9f5 100644 --- a/app/node/time/timeremap/CMakeLists.txt +++ b/app/node/time/timeremap/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeremap/timeremap.cpp b/app/node/time/timeremap/timeremap.cpp index 1b212f27a..49766067f 100644 --- a/app/node/time/timeremap/timeremap.cpp +++ b/app/node/time/timeremap/timeremap.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/time/timeremap/timeremap.h b/app/node/time/timeremap/timeremap.h index 6447b92fa..b6da01e1d 100644 --- a/app/node/time/timeremap/timeremap.h +++ b/app/node/time/timeremap/timeremap.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/traverser.cpp b/app/node/traverser.cpp index 2fff76e0e..0cf07007e 100644 --- a/app/node/traverser.cpp +++ b/app/node/traverser.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/traverser.h b/app/node/traverser.h index 3e46e7f34..f11c1ddd0 100644 --- a/app/node/traverser.h +++ b/app/node/traverser.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/value.cpp b/app/node/value.cpp index 4cd525dae..99c8f41b0 100644 --- a/app/node/value.cpp +++ b/app/node/value.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/value.h b/app/node/value.h index 5f1ff9d7b..580c5104b 100644 --- a/app/node/value.h +++ b/app/node/value.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/valuedatabase.cpp b/app/node/valuedatabase.cpp index 0cdf6fab0..3aa86d0f4 100644 --- a/app/node/valuedatabase.cpp +++ b/app/node/valuedatabase.cpp @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/node/valuedatabase.h b/app/node/valuedatabase.h index 4895b3a09..a622e4094 100644 --- a/app/node/valuedatabase.h +++ b/app/node/valuedatabase.h @@ -1,5 +1,5 @@ /* - * Olive Community Edition - Non-Linear Video Editor + * Oak Video Editor - Non-Linear Video Editor * Copyright (C) 2025 Olive CE Team * * This program is free software: you can redistribute it and/or modify diff --git a/app/packaging/CMakeLists.txt b/app/packaging/CMakeLists.txt index aa007f6d7..6f74e5622 100644 --- a/app/packaging/CMakeLists.txt +++ b/app/packaging/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/packaging/linux/AppRun b/app/packaging/linux/AppRun index 7ae4fc305..78498db05 100755 --- a/app/packaging/linux/AppRun +++ b/app/packaging/linux/AppRun @@ -1,7 +1,7 @@ #!/usr/bin/env bash # -# Olive Community Edition - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2025 Olive CE Team # # This program is free software: you can redistribute it and/or modify diff --git a/app/packaging/linux/CMakeLists.txt b/app/packaging/linux/CMakeLists.txt index 1696a9162..c92edab6b 100644 --- a/app/packaging/linux/CMakeLists.txt +++ b/app/packaging/linux/CMakeLists.txt @@ -1,4 +1,4 @@ -# Olive - Non-Linear Video Editor +# Oak Video Editor - Non-Linear Video Editor # Copyright (C) 2022 Olive Team # # This program is free software: you can redistribute it and/or modify @@ -27,17 +27,17 @@ else() endif() configure_file( - org.olivevideoeditor.Olive.appdata.xml.in - org.olivevideoeditor.Olive.appdata.xml + org.oakvideoeditor.Oak.appdata.xml.in + org.oakvideoeditor.Oak.appdata.xml ) -install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.olivevideoeditor.Olive.appdata.xml DESTINATION share/metainfo) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.oakvideoeditor.Oak.appdata.xml DESTINATION share/metainfo) -install(FILES org.olivevideoeditor.Olive.desktop DESTINATION share/applications) -install(FILES org.olivevideoeditor.Olive.xml DESTINATION share/mime/packages) +install(FILES org.oakvideoeditor.Oak.desktop DESTINATION share/applications) +install(FILES org.oakvideoeditor.Oak.xml DESTINATION share/mime/packages) foreach(size 16 32 48 64 128 256 512) install( - FILES icons/${size}x${size}/org.olivevideoeditor.Olive.png + FILES icons/${size}x${size}/org.oakvideoeditor.Oak.png DESTINATION share/icons/hicolor/${size}x${size}/apps ) install( diff --git a/app/packaging/linux/icons/128x128/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/128x128/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/128x128/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/128x128/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/16x16/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/16x16/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/16x16/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/16x16/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/256x256/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/256x256/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/256x256/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/256x256/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/32x32/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/32x32/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/32x32/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/32x32/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/48x48/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/48x48/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/48x48/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/48x48/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/512x512/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/512x512/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/512x512/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/512x512/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/icons/64x64/org.olivevideoeditor.Olive.png b/app/packaging/linux/icons/64x64/org.oakvideoeditor.Oak.png similarity index 100% rename from app/packaging/linux/icons/64x64/org.olivevideoeditor.Olive.png rename to app/packaging/linux/icons/64x64/org.oakvideoeditor.Oak.png diff --git a/app/packaging/linux/org.oakvideoeditor.Oak.appdata.xml.in b/app/packaging/linux/org.oakvideoeditor.Oak.appdata.xml.in new file mode 100644 index 000000000..ebef1bfb5 --- /dev/null +++ b/app/packaging/linux/org.oakvideoeditor.Oak.appdata.xml.in @@ -0,0 +1,37 @@ + + + org.oakvideoeditor.Oak + Oak Video Editor + CC0-1.0 + GPL-3.0 + Oak Video Editor Team + Non-linear video editor + Nicht-lineares Videoschnittprogramm + Editor de vídeo não-linear + Editor de video no lineal + Editor video non lineare + Нелинейный видеоредактор + Нелінійний відеоредактор + Нелінійний відеоредактор + Aplikasi edit video non-linier + Éditeur vidéo non-linéaire +

Oak Video Editor is a free non-linear video editor aiming to provide a fully-featured alternative to high-end professional video editing software. It is a community fork of Olive Video Editor.

+ Oak Video Editor ist ein freies nicht-lineares Videoschnittprogramm, welches eine vollwertige Alternative zu High-End Videoschnittprogrammen darstellen soll. Es ist ein Community-Fork von Olive Video Editor. +

Oak Video Editor é um editor de vídeo não-linear com o objetivo de fornecer uma alternativa completa para softwares profissionais de edição de vídeo. É um fork comunitário do Olive Video Editor.

+

Oak Video Editor es un editor de video no lineal libre que apunta a brindar una alternativa completa al software de edición de video profesional. Es un fork de la comunidad del Olive Video Editor.

+

Oak Video Editor è un programma di montaggio video che mira a fornire una alternativa di alta qualità ai software professionali. È un fork della comunità di Olive Video Editor.

+

Oak Video Editor — свободный нелинейный видеоредактор, задуманный как полноценная замена закрытым коммерческим продуктам. Это форк сообщества Olive Video Editor.

+

Oak Video Editor — вільний нелінійний відеоредактор, задуманий як повноцінна заміна закритим комерційним продуктам. Це форк спільноти Olive Video Editor.

+

Oak Video Editor — вільний нелінійний відеоредактор, задуманий як повноцінна заміна закритим комерційним продуктам. Це форк спільноти Olive Video Editor.

+

Oak Video Editor adalah aplikasi edit video bersifat non-linier yang bebas dan gratis, bertujuan untuk memberikan alternatif yang lengkap untuk aplikasi edit video profesional. Ini adalah fork komunitas dari Olive Video Editor.

+

Oak Video Editor est un éditeur vidéo non linéaire libre visant à fournir une alternative complète aux logiciels de montage vidéo professionnels haut de gamme. Il s'agit d'un fork communautaire d'Olive Video Editor.

+ https://github.com/olive-editor/olive + https://github.com/olive-editor/olive/issues + + https://olivevideoeditor.org/img/screenshot.1600.jpg + + + + + +
diff --git a/app/packaging/linux/org.olivevideoeditor.Olive.desktop b/app/packaging/linux/org.oakvideoeditor.Oak.desktop similarity index 89% rename from app/packaging/linux/org.olivevideoeditor.Olive.desktop rename to app/packaging/linux/org.oakvideoeditor.Oak.desktop index bad06f5c6..22d7fbff1 100644 --- a/app/packaging/linux/org.olivevideoeditor.Olive.desktop +++ b/app/packaging/linux/org.oakvideoeditor.Oak.desktop @@ -1,11 +1,11 @@ [Desktop Entry] -Name=Olive +Name=Oak Video Editor Comment=Professional open-source non-linear video editor Comment[fr]=Éditeur vidéo non-linéaire open-source professionnel Comment[it]=Programma di montaggio video professionale open-source Comment[id]=Aplikasi edit video yang non-linier, profesional serta sumbernya terbuka. Exec=olive-editor %f -Icon=org.olivevideoeditor.Olive +Icon=org.oakvideoeditor.Oak Terminal=false Type=Application Categories=AudioVideo;Recorder; diff --git a/app/packaging/linux/org.olivevideoeditor.Olive.xml b/app/packaging/linux/org.oakvideoeditor.Oak.xml similarity index 90% rename from app/packaging/linux/org.olivevideoeditor.Olive.xml rename to app/packaging/linux/org.oakvideoeditor.Oak.xml index 0f58df40b..a85eebc89 100644 --- a/app/packaging/linux/org.olivevideoeditor.Olive.xml +++ b/app/packaging/linux/org.oakvideoeditor.Oak.xml @@ -1,6 +1,6 @@