@bbki.ng/site 5.4.51 → 5.4.52

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.52
4
+
5
+ ### Patch Changes
6
+
7
+ - 4a6bd4f: disable share target
8
+ - Updated dependencies [4a6bd4f]
9
+ - @bbki.ng/ui@0.1.26
10
+
3
11
  ## 5.4.51
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.51",
3
+ "version": "5.4.52",
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.25"
17
+ "@bbki.ng/ui": "0.1.26"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@eslint/compat": "^1.0.0",
@@ -12,7 +12,6 @@ export const useFingerprintUniforms = () => {
12
12
  const chars = [...hash].map(c => parseInt(c, 16) || 0);
13
13
  while (chars.length < 16) chars.push(0);
14
14
  charsRef.current = chars;
15
- console.log('[Fingerprint] Hash:', hash, 'Chars:', chars);
16
15
  }
17
16
 
18
17
  const updateFingerprintUniforms = (inst: any) => {
@@ -43,12 +42,12 @@ export const useFingerprintUniforms = () => {
43
42
  inst.uniforms.uFpChars4.value[2] = chars[14];
44
43
  inst.uniforms.uFpChars4.value[3] = chars[15];
45
44
 
46
- console.log('[Fingerprint] Uniforms set:', {
47
- uFpChars1: inst.uniforms.uFpChars1.value,
48
- uFpChars2: inst.uniforms.uFpChars2.value,
49
- uFpChars3: inst.uniforms.uFpChars3.value,
50
- uFpChars4: inst.uniforms.uFpChars4.value,
51
- });
45
+ // console.log('[Fingerprint] Uniforms set:', {
46
+ // uFpChars1: inst.uniforms.uFpChars1.value,
47
+ // uFpChars2: inst.uniforms.uFpChars2.value,
48
+ // uFpChars3: inst.uniforms.uFpChars3.value,
49
+ // uFpChars4: inst.uniforms.uFpChars4.value,
50
+ // });
52
51
 
53
52
  appliedRef.current = true;
54
53
  };
package/vite.config.js CHANGED
@@ -104,15 +104,15 @@ export default defineConfig({
104
104
  theme_color: '#ffffff',
105
105
  display: 'fullscreen',
106
106
  start_url: '/',
107
- share_target: {
108
- action: '/new-content-handler/',
109
- method: 'GET',
110
- params: {
111
- title: 'title',
112
- text: 'text',
113
- url: 'url',
114
- },
115
- },
107
+ // share_target: {
108
+ // action: '/new-content-handler/',
109
+ // method: 'GET',
110
+ // params: {
111
+ // title: 'title',
112
+ // text: 'text',
113
+ // url: 'url',
114
+ // },
115
+ // },
116
116
  icons: [
117
117
  {
118
118
  src: 'pwa-192x192.png',