@bbki.ng/site 5.4.38 → 5.4.39

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.4.39
4
+
5
+ ### Patch Changes
6
+
7
+ - c134d39: fix shader
8
+ - Updated dependencies [c134d39]
9
+ - @bbki.ng/ui@0.1.13
10
+
3
11
  ## 5.4.38
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.4.38",
3
+ "version": "5.4.39",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -14,7 +14,7 @@
14
14
  "react-dom": "^18.0.0",
15
15
  "react-router-dom": "6",
16
16
  "swr": "^2.2.5",
17
- "@bbki.ng/ui": "0.1.12"
17
+ "@bbki.ng/ui": "0.1.13"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@eslint/compat": "^1.0.0",
@@ -9,21 +9,16 @@ uniform float uDevicePixelRatio;
9
9
  #include "effects/grain.frag"
10
10
  #include "effects/paper.frag"
11
11
  #include "effects/spiral.frag"
12
- //#include "shapes/circle.frag"
13
12
 
14
13
 
15
14
  void main() {
16
15
  vec2 uv = gl_FragCoord.xy / uResolution;
17
16
 
18
- // set default color
19
17
  gl_FragColor = DefaultColor;
20
18
 
21
- // draw paper texture (base layer)
22
19
  drawPaperTexture(uv);
23
20
 
24
- // draw grain on nav
25
21
  drawGrain(uv);
26
22
 
27
- // draw loading spiral
28
23
  drawSpiral(uv);
29
24
  }