@jant/core 0.1.0 → 0.1.2

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.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A modern, open-source microblogging platform built on Cloudflare Workers.
4
4
 
5
+ > Still in development
6
+
5
7
  ## What is Jant?
6
8
 
7
9
  Jant is a single-author microblog for people who want to share thoughts without the noise of social media. No followers, no likes, no algorithms—just your words.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jant/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "A modern, open-source microblogging platform built on Cloudflare Workers",
5
5
  "type": "module",
6
6
  "bin": {
@@ -89,7 +89,8 @@
89
89
  "author": "Jant Contributors",
90
90
  "license": "AGPL-3.0",
91
91
  "publishConfig": {
92
- "access": "public"
92
+ "access": "public",
93
+ "provenance": true
93
94
  },
94
95
  "bugs": {
95
96
  "url": "https://github.com/jant-me/jant/issues"
@@ -45,7 +45,7 @@ function renderMediaCard(
45
45
  <button
46
46
  type="button"
47
47
  class="block w-full aspect-square bg-muted rounded-lg overflow-hidden border hover:border-primary cursor-pointer"
48
- data-on-click="$$lightboxSrc = '${fullUrl}'; document.getElementById('lightbox').showModal()"
48
+ onclick="document.getElementById('lightbox-img').src = '${fullUrl}'; document.getElementById('lightbox').showModal()"
49
49
  >
50
50
  <img
51
51
  src="${thumbnailUrl}"