File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,11 @@ export const platformVersions: Record<string, VersionInfo> = {
55
55
releaseDate : "Feb 12, 2025" ,
56
56
} ,
57
57
"Mac (Intel)" : {
58
- version : "v1.5.4 " ,
59
- releaseDate : "Dec 1, 2024 " ,
58
+ version : "v1.8.0 " ,
59
+ releaseDate : "Feb 12, 2025 " ,
60
60
} ,
61
61
Linux : {
62
- version : "v1.7 .0" ,
62
+ version : "v1.8 .0" ,
63
63
releaseDate : "Feb 12, 2025" ,
64
64
} ,
65
65
} ;
@@ -261,11 +261,18 @@ const PricingTier: React.FC<ExtendedPricingTierProps> = ({
261
261
( [ platform , info ] ) => (
262
262
< Fragment key = { platform } >
263
263
< span className = "font-medium" > { platform } :</ span >
264
- < div className = "flex items-center gap-1" >
265
- < div > { info . version } </ div >
266
- < div className = "text-xs text-gray-400" >
267
- ({ info . releaseDate } )
264
+ < div className = "flex flex-col" >
265
+ < div className = "flex items-center gap-1" >
266
+ < div > { info . version } </ div >
267
+ < div className = "text-xs text-gray-400" >
268
+ ({ info . releaseDate } )
269
+ </ div >
268
270
</ div >
271
+ { platform === "Linux" && (
272
+ < div className = "text-xs text-gray-400" >
273
+ *Packaged and released by < br /> the open source community
274
+ </ div >
275
+ ) }
269
276
</ div >
270
277
</ Fragment >
271
278
) ,
You can’t perform that action at this time.
0 commit comments