Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Release 3.3.0 #5678

Merged
merged 7 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ video editing and animation solutions to the world.

## Build Status

[![openshot-qt CI Build](https://github.com/OpenShot/openshot-qt/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/openshot-qt/actions/workflows/ci.yml) [![libopenshot CI Build](https://github.com/OpenShot/libopenshot/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/libopenshot/actions/workflows/ci.yml) [![libopenshot-audio CI Build](https://github.com/OpenShot/libopenshot-audio/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/libopenshot-audio/actions/workflows/ci.yml)
[![openshot-qt CI Build](https://github.com/OpenShot/openshot-qt/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/openshot-qt/actions/workflows/ci.yml)
[![libopenshot CI Build](https://github.com/OpenShot/libopenshot/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/libopenshot/actions/workflows/ci.yml)
[![libopenshot-audio CI Build](https://github.com/OpenShot/libopenshot-audio/actions/workflows/ci.yml/badge.svg)](https://github.com/OpenShot/libopenshot-audio/actions/workflows/ci.yml)
![Discord](https://img.shields.io/discord/1143390791507644496?style=flat)

## Features

Expand Down
4 changes: 4 additions & 0 deletions doc/animation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ drag and drop one of them into OpenShot, and you will be prompted to import the
these sequential images rapidly, as if they are frames in a video. The rate or speed in which these images are displayed
is based on their frame rate.

**NOTE:** Be sure your image sequence starts at 0 or 1, or you will likely receive an error when importing it into OpenShot.
For example, if your sequence starts at cat222.png, or has missing images in the sequence, OpenShot will
struggle to understand the sequence. An easy work-around is to renumber the images so they start with 1.

.. image:: images/import-image-sequence.jpg

To adjust the frame rate of the animation, right click and choose **File Properties** in the **Project Files** panel,
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Click on the version number you need, and scroll to the bottom, under the releas
download links for each operating system. Download the appropriate version for your computer, and
follow the installation instructions above.

NOTE: Projects (*.osp) made with newer versions of OpenShot Video Editor might not support older versions.
NOTE: Projects (\*.osp) made with newer versions of OpenShot Video Editor might not support older versions.

Uninstall
^^^^^^^^^
Expand Down
6 changes: 3 additions & 3 deletions src/classes/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
import os
from time import strftime

VERSION = "3.2.1-dev"
MINIMUM_LIBOPENSHOT_VERSION = "0.3.3"
DATE = "20240709000000"
VERSION = "3.3.0"
MINIMUM_LIBOPENSHOT_VERSION = "0.4.0"
DATE = "20241221000000"
NAME = "openshot-qt"
PRODUCT_NAME = "OpenShot Video Editor"
GPL_VERSION = "3"
Expand Down
Loading
Loading