straight_to_video 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4811b876e7800faf8f6d617d45f6c2c1258f7b854deb765b503e813c01c17c6
4
- data.tar.gz: 1f07162f2785080becbc76d49ddc62f3eaf77db0175d64cab17f7ce1da523c7e
3
+ metadata.gz: 7f9374ddbb488a573260822bdfc2b8a5a183f0c1f8c10e4e6428b7ae8c3e7f86
4
+ data.tar.gz: 3fb96670c80e91c46c0214d4153e2a28b96d3f5cddb368875568978bf2421912
5
5
  SHA512:
6
- metadata.gz: 284b27cefccd50bf3303655c4accd6239be378d7e1dfcbbaa5738f29d74212941c05cbb67579d3d336b85237d86b0daba493b11985bf8c4938595d11e205f596
7
- data.tar.gz: df97fce0b8f9b087672ac7cfeccdd6ac0cfe955e91cf7151fe48cd8d7b7fea7852f897ea8500d895375303828509106732320f9d6cb3c2e9aeb6abf738f5a8fa
6
+ metadata.gz: 54b446d8179dd83c5604902b741c15c07b388b0fbada671527faf07441d11d73af5c1ba6729128897b43cf2232b7f9dc8f8271e0037362a94155736a28309089
7
+ data.tar.gz: bbe19415c4fa54b522fefbcf8aaaa208d72674aacf6e29db2830c06190076b45955b04a4e51ad75baa161abfe1ce1feb1a075970c439a863158b88459cfe26e1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.5
4
+
5
+ - unscrew up the extension in the importmap 🤦‍♂️
6
+
3
7
  ## 0.0.4
4
8
 
5
9
  - Rename mediabunny.min.mjs to mediabunny.min.js because Rails apparently doesn't know the mjs MIME type is text/javascript not text/plain
@@ -1,4 +1,4 @@
1
- // straight-to-video@0.0.4 vendored by the straight_to_video gem
1
+ // straight-to-video@0.0.5 vendored by the straight_to_video gem
2
2
  // straight-to-video - https://github.com/searlsco/straight-to-video
3
3
 
4
4
  // ----- External imports -----
data/config/importmap.rb CHANGED
@@ -1,2 +1,2 @@
1
1
  pin "straight-to-video", to: "straight-to-video.js", preload: false
2
- pin "mediabunny", to: "mediabunny.min.mjs", preload: false
2
+ pin "mediabunny", to: "mediabunny.min.js", preload: false
@@ -1,3 +1,3 @@
1
1
  module StraightToVideo
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "straight-to-video",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "straight-to-video",
9
- "version": "0.0.4",
9
+ "version": "0.0.5",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "mediabunny": "^1.24.4"
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "straight-to-video",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Browser-based, hardware-accelerated video upload optimization",
5
5
  "type": "module",
6
6
  "exports": {
data/script/release CHANGED
@@ -21,9 +21,10 @@ case "$BUMP_TYPE" in
21
21
  *) echo "Invalid bump type: $BUMP_TYPE (must be patch|minor|major)" >&2; exit 2 ;;
22
22
  esac
23
23
 
24
- # Ensure working copy is clean (no staged/unstaged changes)
25
- if [ -n "$(git status --porcelain)" ]; then
24
+ # Ensure working copy is clean (no staged/unstaged changes), except for CHANGELOG.md
25
+ if [ -n "$(git status --porcelain | grep -v '^ M CHANGELOG.md$')" ]; then
26
26
  echo "Working tree is not clean. Commit or stash changes before releasing." >&2
27
+ echo "(CHANGELOG.md modifications are allowed)"
27
28
  git status --short
28
29
  exit 1
29
30
  fi
@@ -57,7 +58,7 @@ mv "$tmp_file" "$RB_VERSION_FILE"
57
58
  bundle
58
59
 
59
60
  # Commit version bumps as a single commit; bundler's rake release will tag
60
- git add package.json package-lock.json Gemfile.lock "$RB_VERSION_FILE" app/assets/javascripts
61
+ git add CHANGELOG.md package.json package-lock.json Gemfile.lock "$RB_VERSION_FILE" app/assets/javascripts
61
62
  git commit -m "$VERSION"
62
63
 
63
64
  # Publish to npm
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: straight_to_video
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls