Change project name;

This commit is contained in:
2026-01-05 16:22:26 +08:00
parent 86e82b13e2
commit b8669f6a11
1236 changed files with 1654 additions and 1347 deletions
+47
View File
@@ -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
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2023 Olive Studios LLC # Copyright (C) 2023 Olive Studios LLC
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+4 -4
View File
@@ -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. 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) ![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 ## Binaries
The original author compiled following binaries: The original author compiled following binaries:
+6 -6
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # 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) target_link_libraries(olive-editor PUBLIC OfxHost)
# Create docs if doxygen was found # Create docs if doxygen was found
if(DOXYGEN_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_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/docs")
set(DOXYGEN_EXTRACT_ALL "YES") set(DOXYGEN_EXTRACT_ALL "YES")
set(DOXYGEN_EXTRACT_PRIVATE "YES") set(DOXYGEN_EXTRACT_PRIVATE "YES")
@@ -120,13 +120,13 @@ elseif(APPLE)
set_target_properties(olive-editor PROPERTIES set_target_properties(olive-editor PROPERTIES
MACOSX_BUNDLE TRUE MACOSX_BUNDLE TRUE
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macos/MacOSXBundleInfo.plist.in 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_ICON_FILE olive.icns
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION}
MACOSX_BUNDLE_BUNDLE_NAME "Olive" MACOSX_BUNDLE_BUNDLE_NAME "Oak Video Editor"
MACOSX_BUNDLE_INFO_STRING "Olive ${PROJECT_LONG_VERSION}" MACOSX_BUNDLE_INFO_STRING "Oak Video Editor ${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_COPYRIGHT "©2018-2021 Olive Studios LLC and others. Fork maintained by Oak Video Editor Team."
RESOURCE "${OLIVE_ICON}" RESOURCE "${OLIVE_ICON}"
OUTPUT_NAME "Olive" OUTPUT_NAME "Olive"
) )
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+2 -2
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@@ -316,7 +316,7 @@ AudioManager::AudioManager()
#ifdef PA_HAS_JACK #ifdef PA_HAS_JACK
// PortAudio doesn't do a strcpy, so we need a const char that's readily accessible (i.e. not // 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) // a QString converted to UTF-8)
PaJack_SetClientName("Olive"); PaJack_SetClientName("Oak Video Editor");
#endif #endif
Pa_Initialize(); Pa_Initialize();
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+2 -2
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * 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(), printf("%s %s\n", QCoreApplication::applicationName().toUtf8().constData(),
QCoreApplication::applicationVersion().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; QString positional_args;
for (int i = 0; i < positional_args_.size(); i++) { for (int i = 0; i < positional_args_.size(); i++) {
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+8 -8
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@@ -1060,7 +1060,7 @@ void Core::SaveAutorecovery()
QMessageBox::critical( QMessageBox::critical(
main_window_, tr("Auto-Recovery Error"), main_window_, tr("Auto-Recovery Error"),
tr("Failed to save auto-recovery to \"%1\". " 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())); .arg(project_autorecovery_dir.absolutePath()));
} }
} }
@@ -1133,11 +1133,11 @@ QString Core::PasteStringFromClipboard()
QString Core::GetProjectFilter(bool include_any_filter) QString Core::GetProjectFilter(bool include_any_filter)
{ {
static const QVector<QPair<QString, QString>> FILTERS = { static const QVector<QPair<QString, QString>> FILTERS = {
// Standard compressed Olive project // Standard compressed Oak project
{ tr("Olive Project"), QStringLiteral("ove") }, { tr("Oak Project"), QStringLiteral("ove") },
// Uncompressed XML Olive project // Uncompressed XML Oak project
{ tr("Olive Project (Uncompressed XML)"), QStringLiteral("ovexml") }, { tr("Oak Project (Uncompressed XML)"), QStringLiteral("ovexml") },
// OpenTimelineIO project, if available // OpenTimelineIO project, if available
#ifdef USE_OTIO #ifdef USE_OTIO
@@ -1248,7 +1248,7 @@ void Core::CheckForAutoRecoveries()
QString::fromUtf8(autorecovery_index.readAll()).split('\n'); QString::fromUtf8(autorecovery_index.readAll()).split('\n');
AutoRecoveryDialog ard( 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?"), "forcefully quit. Would you like to load them?"),
recovery_filenames, true, main_window_); recovery_filenames, true, main_window_);
ard.exec(); ard.exec();
@@ -1305,7 +1305,7 @@ void Core::WarnCacheFull()
QMessageBox::warning( QMessageBox::warning(
main_window_, tr("Disk Cache Full"), 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 " "frames to keep it within the limits set in the Disk preferences. This "
"will result in SIGNIFICANTLY reduced cache performance.\n\n" "will result in SIGNIFICANTLY reduced cache performance.\n\n"
"To remedy this, please do one of the following:\n\n" "To remedy this, please do one of the following:\n\n"
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+3 -3
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@@ -43,7 +43,7 @@ namespace olive
CrashHandlerDialog::CrashHandlerDialog(const QString &report_path) CrashHandlerDialog::CrashHandlerDialog(const QString &report_path)
{ {
setWindowTitle(tr("Olive")); setWindowTitle(tr("Oak Video Editor"));
setWindowFlags(Qt::WindowStaysOnTopHint); setWindowFlags(Qt::WindowStaysOnTopHint);
report_filename_ = report_path; report_filename_ = report_path;
@@ -52,7 +52,7 @@ CrashHandlerDialog::CrashHandlerDialog(const QString &report_path)
QVBoxLayout *layout = new QVBoxLayout(this); QVBoxLayout *layout = new QVBoxLayout(this);
layout->addWidget(new QLabel( 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."))); "sending an error report.")));
QSplitter *splitter = new QSplitter(Qt::Vertical); QSplitter *splitter = new QSplitter(Qt::Vertical);
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,4 +1,4 @@
# Olive - Non-Linear Video Editor # Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2022 Olive Team # Copyright (C) 2022 Olive Team
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
+11 -13
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * 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); horiz_layout->setSpacing(fm.height() * 2);
QLabel *icon = new QLabel( QLabel *icon = new QLabel(
QStringLiteral("<html><img src=':/graphics/olive-splash.png'></html>")); QStringLiteral("<html><img src=':/graphics/oak-logo.png'></html>"));
icon->setAlignment(Qt::AlignCenter); icon->setAlignment(Qt::AlignCenter);
horiz_layout->addWidget(icon); horiz_layout->addWidget(icon);
@@ -60,15 +60,15 @@ AboutDialog::AboutDialog(bool welcome_dialog, QWidget *parent)
QLabel *label = new QLabel( QLabel *label = new QLabel(
QStringLiteral("<html><head/><body>" QStringLiteral("<html><head/><body>"
"<p><b>%1</b> %2</p>" // AppName (version identifier) "<p><b>%1</b> %2</p>" // AppName (version identifier)
"<p><a href=\"https://www.olivevideoeditor.org/\">" "<p>%3</p>" // Description
"https://www.olivevideoeditor.org/" "<p>%4</p>" // Fork notice
"</a></p>"
"<p>%3</p>" // First statement
"</body></html>") "</body></html>")
.arg(QApplication::applicationName(), .arg(QApplication::applicationName(),
QApplication::applicationVersion(), QApplication::applicationVersion(),
tr("Olive is a free open source non-linear video editor. " tr("Oak Video Editor is a free open source non-linear video editor. "
"This software is licensed under the GNU GPL Version 3."))); "This software is licensed under the GNU GPL Version 3."),
tr("This project is a fork of "
"<a href=\"https://github.com/olive-editor/olive\">Olive Video Editor</a>.")));
// Set text formatting // Set text formatting
label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter); label->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
@@ -89,18 +89,16 @@ AboutDialog::AboutDialog(bool welcome_dialog, QWidget *parent)
if (welcome_dialog || patrons.isEmpty()) { if (welcome_dialog || patrons.isEmpty()) {
opening_statement = tr( opening_statement = tr(
"<b>Olive relies on support from the community to continue its development.</b>"); "<b>Oak Video Editor relies on support from the community to continue its development.</b>");
} else { } else {
opening_statement = tr( 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( QLabel *support_lbl = new QLabel(
tr("<html>%1 " tr("<html>%1 "
"If you like this project, please consider making a " "If you like this project, please consider making a "
"<a href='https://olivevideoeditor.org/donate.php'>one-time donation</a> or " "one-time donation or pledging monthly to support its development.</html>")
"<a href='https://www.patreon.com/olivevideoeditor'>pledging monthly</a> to "
"support its development.</html>")
.arg(opening_statement)); .arg(opening_statement));
support_lbl->setWordWrap(true); support_lbl->setWordWrap(true);
support_lbl->setAlignment(Qt::AlignCenter); support_lbl->setAlignment(Qt::AlignCenter);
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
+1 -1
View File
@@ -1,5 +1,5 @@
/* /*
* Olive Community Edition - Non-Linear Video Editor * Oak Video Editor - Non-Linear Video Editor
* Copyright (C) 2025 Olive CE Team * Copyright (C) 2025 Olive CE Team
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

Some files were not shown because too many files have changed in this diff Show More