------------------------------------------------------------
commit 6df3b80f75dd0beb315f015919bf742f162ae010
Author: ffff:23.127.163.222 <ffff:23.127.163.222@hub.scroll.pub>
Date: Tue Dec 17 19:40:36 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index b11f3d7..97f3eca 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -8,7 +8,7 @@ buildFrameParser
}
hexAtom
- paint keyword
+ paint constant.language
abstractFrameParser
extends abstractScrollParser
------------------------------------------------------------
commit 62bd0a401905d547947db5ea92bbbdd6a3af45a7
Author: ffff:23.127.163.222 <ffff:23.127.163.222@hub.scroll.pub>
Date: Tue Dec 17 19:40:00 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index 6296b5e..b11f3d7 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -36,12 +36,12 @@ splashBackgroundColorParser
extends abstractFrameParser
aaHeaderParser
extends abstractFrameParser
- atoms cueAtom constantAtom
+ atoms cueAtom hexAtom
aaPayloadParser
- atoms cueAtom constantAtom
+ atoms cueAtom hexAtom
extends abstractFrameParser
aaSignatureParser
- atoms cueAtom constantAtom
+ atoms cueAtom hexAtom
extends abstractFrameParser
abstractAttributeParser
------------------------------------------------------------
commit 69673584707837f66484e943de04dace3adf6bb4
Author: ffff:23.127.163.222 <ffff:23.127.163.222@hub.scroll.pub>
Date: Tue Dec 17 19:39:54 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index d23da93..6296b5e 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -7,6 +7,9 @@ buildFrameParser
return "html"
}
+hexAtom
+ paint keyword
+
abstractFrameParser
extends abstractScrollParser
cueFromId
------------------------------------------------------------
commit aad90edb522042fa3502476ff69f8e40f8ac0b68
Author: ffff:23.127.163.222 <ffff:23.127.163.222@hub.scroll.pub>
Date: Tue Dec 17 19:38:31 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index a247e02..d23da93 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -33,6 +33,7 @@ splashBackgroundColorParser
extends abstractFrameParser
aaHeaderParser
extends abstractFrameParser
+ atoms cueAtom constantAtom
aaPayloadParser
atoms cueAtom constantAtom
extends abstractFrameParser
------------------------------------------------------------
commit 13d0d9dadedf1b6b25c0288c9a5c2bebbef325d3
Author: ffff:23.127.163.222 <ffff:23.127.163.222@hub.scroll.pub>
Date: Tue Dec 17 19:38:18 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index 0b02bcc..a247e02 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -34,8 +34,10 @@ splashBackgroundColorParser
aaHeaderParser
extends abstractFrameParser
aaPayloadParser
+ atoms cueAtom constantAtom
extends abstractFrameParser
aaSignatureParser
+ atoms cueAtom constantAtom
extends abstractFrameParser
abstractAttributeParser
------------------------------------------------------------
commit 06723601b1de8e3bce34786c9730e2e428fe5aad
Author: ffff:64.129.1.41 <ffff:64.129.1.41@hub.scroll.pub>
Date: Sat Dec 7 03:23:02 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index bf3fdcc..55d4826 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,6 +1,6 @@
// FrameFile let's you build a Farcaster V2 Frame by editing a SINGLE File!
// [] 1. Import the framefile.parsers source:
-framefile.parsers
+https://framefile.scroll.pub/framefile.parsers
// [] 2. Fill out info about your entire frame
frameName AutoGif
------------------------------------------------------------
commit 85c848a22dd20fad0a1d86e403e4e9dc114c30ce
Author: ffff:64.129.1.41 <ffff:64.129.1.41@hub.scroll.pub>
Date: Sat Dec 7 03:22:38 2024 +0000
updated framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
index e69de29..0b02bcc 100644
--- a/framefile.parsers
+++ b/framefile.parsers
@@ -0,0 +1,73 @@
+buildFrameParser
+ description Compiles Framefile to all necessary files.
+ extends abstractBuildTwoCommandParser
+ javascript
+ async buildTwo() {}
+ get extension() {
+ return "html"
+ }
+
+abstractFrameParser
+ extends abstractScrollParser
+ cueFromId
+ catchAllAtomType stringAtom
+ atoms cueAtom
+
+abstractFrameUrlParser
+ extends abstractFrameParser
+ cueFromId
+ catchAllAtomType stringAtom
+ atoms urlAtom
+
+frameNameParser
+ extends abstractFrameParser
+homeUrlParser
+ extends abstractFrameParser
+versionParser
+ extends abstractFrameParser
+iconUrlParser
+ extends abstractFrameUrlParser
+splashImageUrlParser
+ extends abstractFrameUrlParser
+splashBackgroundColorParser
+ extends abstractFrameParser
+aaHeaderParser
+ extends abstractFrameParser
+aaPayloadParser
+ extends abstractFrameParser
+aaSignatureParser
+ extends abstractFrameParser
+
+abstractAttributeParser
+ catchAllAtomType stringAtom
+ atoms cueAtom
+ cueFromId
+
+buttonParser
+ extends abstractAttributeParser
+ titleParser
+ extends abstractAttributeParser
+ actionParser
+ extends abstractAttributeParser
+ typeParser
+ extends abstractAttributeParser
+ nameParser
+ extends abstractAttributeParser
+ urlParser
+ extends abstractAttributeParser
+ splashImageUrlParser
+ extends abstractAttributeParser
+ splashBackgroundColorParser
+ extends abstractAttributeParser
+
+htmlSourceParser
+ extends abstractAttributeParser
+imageUrlParser
+ extends abstractAttributeParser
+
+frameParser
+ extends abstractScrollParser
+ cueFromId
+ atoms cueAtom
+ inScope buttonParser htmlSourceParser versionParser imageUrlParser
+
------------------------------------------------------------
commit 58ff3de042e545ae9b15f7a5a9a2fde784372420
Author: ffff:64.129.1.41 <ffff:64.129.1.41@hub.scroll.pub>
Date: Sat Dec 7 03:22:35 2024 +0000
created framefile.parsers
diff --git a/framefile.parsers b/framefile.parsers
new file mode 100644
index 0000000..e69de29
------------------------------------------------------------
commit 372981a6bf9d784a8dbef0a1b6b471bb88b9fac1
Author: ffff:64.129.1.41 <ffff:64.129.1.41@hub.scroll.pub>
Date: Sat Dec 7 03:22:25 2024 +0000
updated index.scroll
diff --git a/index.scroll b/index.scroll
index 4442ed6..bf3fdcc 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,4 +1,31 @@
-buildHtml
-theme roboto
+// FrameFile let's you build a Farcaster V2 Frame by editing a SINGLE File!
+// [] 1. Import the framefile.parsers source:
+framefile.parsers
-Hello World my name is
\ No newline at end of file
+// [] 2. Fill out info about your entire frame
+frameName AutoGif
+homeUrl https://autogif.togger.com
+version 0.0.0
+iconUrl https://autogif.togger.com/splash.png
+splashImageUrl https://autogif.togger.com/splash.png
+splashBackgroundColor purple
+aaHeader eyJmaWQiOjM2MjEsInR5cGUiOiJjdXN0b2R5Iiwia2V5IjoiMHgyY2Q4NWEwOTMyNjFmNTkyNzA4MDRBNkVBNjk3Q2VBNENlQkVjYWZFIn0
+aaPayload eyJkb21haW4iOiJmcmFtZXMtdjItc3dhcC1kZW1vLnZlcmNlbC5hcHAifQ
+aaSignature MHgxMzE0NDBjODMyMWRkM2UzNmQ3OWFiNDYxYmNiZThiOTM0NGNkOGZkNmVhMmVlNmY3YTY4NWJiNjMzMTYyNGNjNTczNjUyNTlhNzE5MTJkZDM4NWVmZmM5MWMwZmY1ZWVlMzYwNGUzYWNiZTI3MTQzYzIwYTRjMDBlNjgwZjBmNzFj
+
+// [] 3. A frame is just an HTML page with an fc:embed tag. Fill out the below for every frame in your site.
+frame
+ htmlSource frame.html
+ version next
+ imageUrl https://autogif.togger.com/splash.png
+ button
+ title Play
+ action
+ type launch_frame
+ name JFrame
+ url https://jframe.breckyunits.com
+ splashImageUrl https://jframe.breckyunits.com/splash.png
+ splashBackgroundColor purple
+
+// [] 4. Simply click "Publish" below to generate all files need by your frame!
+buildFrame
------------------------------------------------------------
commit 93e43037b7794c5d3de89eaf6afe3e3d561d8df3
Author: root <root@hub.scroll.pub>
Date: Sun Nov 10 20:12:15 2024 +0000
initial blank_template template
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bd1a52d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+.DS_Store
+*.html
+*.txt
+*.xml
+*.css
+*.js
+*.csv
+requests.scroll
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..4442ed6
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,4 @@
+buildHtml
+theme roboto
+
+Hello World my name is
\ No newline at end of file