Skip to content

Commit

Permalink
Upgrade NPM deps. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
elonen committed Jul 18, 2024
1 parent 9036005 commit cab061f
Show file tree
Hide file tree
Showing 10 changed files with 481 additions and 411 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Clapshot is an open-source, self-hosted tool for collaborative video/media revie
- Transcoding (if needed) with FFmpeg
- Commenting, drawing annotations, and threaded replies
- Real-time collaborative review sessions
- Support EDL import as comments, loop between them
- Stores media files on disk and metadata in an SQLite (3.5+) database
- Authentication agnostic, you can use *OAuth, JWS, Kerberos, Okta* etc., using Nginx username pass-through
- **[NEW]** Extensible "Organizer" plugins for custom integrations, workflow, and access control
Expand Down
12 changes: 12 additions & 0 deletions client/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
clapshot-client (0.8.1) bookworm; urgency=low

* New feature: configurable branding (logo and name)
* New feature: import EDLs as comments
* Fix: Folder was not visible containing >= 3 items
* Fix/feature: Allow comments with just a drawing, no text
* Demonstrate how to have multiple admin users in htadmin demo (see nginx conf example)
* UI: move video player actions to a burger menu
* Remove emoji picker (slow, and OSs support it now)

-- Jarno Elonen <elonen@iki.fi> Thu, 18 Jul 2024 21:20:00 +0200

clapshot-client (0.8.0) bookworm; urgency=low

* Support for subtitles
Expand Down
849 changes: 447 additions & 402 deletions client/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "clapshot-client",
"private": true,
"version": "0.8.0",
"clapshot_min_server_version": "0.8.0",
"clapshot_max_server_version": "0.8.0",
"version": "0.8.1",
"clapshot_min_server_version": "0.8.1",
"clapshot_max_server_version": "0.8.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -28,7 +28,7 @@
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite": "^5.3.4",
"vite-plugin-checker": "^0.6.4"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions organizer/basic_folders/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
clapshot-organizer-basic-folders (0.8.1) bookworm; urgency=low

* (Not many changes in organizer. Keep version in sync with client.)

-- Jarno Elonen <elonen@iki.fi> Thu, 18 Jul 2024 21:20:00 +0200

clapshot-organizer-basic-folders (0.8.0) bookworm; urgency=low

* (Nothing new, follow Server and Client versions)
Expand Down
2 changes: 1 addition & 1 deletion organizer/basic_folders/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def run(self):

setup(
name='clapshot_organizer_basic_folders',
version='0.7.1',
version='0.8.1',
packages=find_packages(),
include_package_data=True,

Expand Down
2 changes: 1 addition & 1 deletion protobuf/libs/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lib-clapshot-grpc"
version = "0.7.0"
version = "0.8.1"
edition = "2021"

description = "Clapshot gRPC prototypes in Rust"
Expand Down
4 changes: 2 additions & 2 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clapshot-server"
version = "0.8.0"
version = "0.8.1"
edition = "2021"

description = "Clapshot video/media review tool (backend)"
Expand Down
6 changes: 6 additions & 0 deletions server/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
clapshot-server (0.8.1) bookworm; urgency=low

* (Not many changes in server. Keep version in sync with client.)

-- Jarno Elonen <elonen@iki.fi> Thu, 18 Jul 2024 21:20:00 +0200

clapshot-server (0.8.0) bookworm; urgency=low

* Support for subtitles
Expand Down

0 comments on commit cab061f

Please sign in to comment.