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

Asset transfer : Cloudinary -> TinaCloud #2346

Merged
merged 45 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
7c94639
fix event img names
joshbermanssw Oct 18, 2024
f9f6de8
using-graphql-with-the-filesystem blog asset moveover
joshbermanssw Oct 18, 2024
dd7e02b
blog-who-is-logan
joshbermanssw Oct 18, 2024
2e58dba
move testimonial images
joshbermanssw Oct 18, 2024
d8d7181
update Using the Next.js Vercel Example doc media
joshbermanssw Oct 18, 2024
27ef79b
upd contextual editing media
joshbermanssw Oct 18, 2024
e98be12
blog/tinacms-ui-whats-next media update
joshbermanssw Oct 18, 2024
388e768
more media
joshbermanssw Oct 18, 2024
ff86cdd
more assets
joshbermanssw Oct 18, 2024
7553efc
more assets
joshbermanssw Oct 18, 2024
b61c908
more assets
joshbermanssw Oct 18, 2024
4798689
more assets
joshbermanssw Oct 18, 2024
a8f4bc5
more assets
joshbermanssw Oct 18, 2024
ecdf5f4
more assets
joshbermanssw Oct 18, 2024
0a53309
asset transfers mon morn
joshbermanssw Oct 20, 2024
9df24fd
finish all images
joshbermanssw Oct 21, 2024
ee8f740
add specific mdx component for webm
joshbermanssw Oct 21, 2024
0a51abb
added webm's (converted from gif)
joshbermanssw Oct 21, 2024
9aef978
removing all cloudinary references in blogs/ docs
joshbermanssw Oct 21, 2024
80a49af
mised 1 video in the last commit
joshbermanssw Oct 21, 2024
e2db921
config file change to point to tina cloud
joshbermanssw Oct 21, 2024
348b681
change .mp4 to .webm
joshbermanssw Oct 21, 2024
08ef3d9
key features carousel cloudinary -> tina cloud
joshbermanssw Oct 22, 2024
e64fc46
remove cloudinary from component block references
joshbermanssw Oct 23, 2024
536d618
rm unoptimized and unused pics
joshbermanssw Oct 23, 2024
8ab8a6a
Merge branch 'main' into asset-transfer-1
joshbermanssw Oct 23, 2024
58e7ced
next config js
joshbermanssw Oct 23, 2024
5d86447
rm shown slash
joshbermanssw Oct 24, 2024
6835249
mdx powered docs - move images internal
joshbermanssw Oct 24, 2024
57c7ff8
change <Youtube/> to <WebmEmbed/>
joshbermanssw Oct 24, 2024
ea9360a
add 2 missing files
joshbermanssw Oct 25, 2024
f780823
fix webmEmbed rendering on docs
joshbermanssw Oct 25, 2024
9eff875
Merge branch 'main' into asset-transfer-1
joshbermanssw Oct 27, 2024
f73f44c
refresh lock
joshbermanssw Oct 27, 2024
abe2213
add contextual text
joshbermanssw Oct 28, 2024
9969523
add missing .webm
joshbermanssw Oct 28, 2024
c35e260
fix /public references
joshbermanssw Oct 28, 2024
edefe00
rm images shown in wrong spot
joshbermanssw Oct 28, 2024
ce67b2e
fixed cells images
joshbermanssw Oct 28, 2024
fdc213e
rm final cloudinary reference
joshbermanssw Oct 28, 2024
9be8db8
Merge branch 'main' into asset-transfer-1
ncn-ssw Oct 29, 2024
064d414
kebab case name instead of space
joshbermanssw Oct 29, 2024
fd1d03a
allow users to modify the width of their webmEmbed
joshbermanssw Oct 29, 2024
f9956c3
add spacing
joshbermanssw Oct 30, 2024
db8ecfe
Merge branch 'main' into asset-transfer-1
joshbermanssw Oct 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions components/blocks/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,14 +252,14 @@ export const FeatureVideo = ({ src, className = '' }) => {
loop
muted
playsInline
poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`}
poster={`${src}`}
>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_100,h_584/e_accelerate:-20/${src}.webm`}
src={`${src}`}
type="video/webm"
/>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_80,h_584/e_accelerate:-20/${src}.mp4`}
src={`${src}`}
type="video/mp4"
/>
</video>
Expand Down
6 changes: 3 additions & 3 deletions components/blocks/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ export const Video = ({ src, className }) => {
loop
muted
playsInline
poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`}
poster={`${src}`}
>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_80,h_562/${src}.webm`}
src={`${src}`}
type="video/webm"
/>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_80,h_562/${src}.mp4`}
src={`${src}`}
type="video/mp4"
/>
</video>
Expand Down
6 changes: 3 additions & 3 deletions components/blocks/HeroForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ export const Video = ({ src }) => {
loop
muted
playsInline
poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0/${src}.jpg`}
poster={`${src}`}
>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_100,h_584/${src}.webm`}
src={`${src}`}
type="video/webm"
/>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_80,h_584/${src}.mp4`}
src={`${src}`}
type="video/mp4"
/>
</video>
Expand Down
6 changes: 3 additions & 3 deletions components/blocks/Story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,14 @@ const Video = ({ src }) => {
loop
muted
playsInline
poster={`https://res.cloudinary.com/forestry-demo/video/upload/so_0,q_70,h_410/${src}.jpg`}
poster={`${src}`}
>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_90,h_410/${src}.webm`}
src={`${src}`}
type="video/webm"
/>
<source
src={`https://res.cloudinary.com/forestry-demo/video/upload/q_90,h_410/${src}.mp4`}
src={`${src}`}
type="video/mp4"
/>
</video>
Expand Down
Loading