vibecodingmachine-core 2025.11.2-9.1544 → 2025.11.2-9.2115

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibecodingmachine-core",
3
- "version": "2025.11.29.1544",
3
+ "version": "2025.11.29.2115",
4
4
  "description": "Shared core logic for Vibe Coding Machine IDE integration",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.js",
@@ -32,7 +32,7 @@ function formatVersionTimestamp(versionString, date) {
32
32
  */
33
33
  async function checkForElectronUpdates(currentVersion) {
34
34
  return new Promise((resolve, reject) => {
35
- const manifestUrl = `https://vibecodingmachine-website.s3.amazonaws.com/downloads/version.json?t=${Date.now()}`;
35
+ const manifestUrl = `https://d3fh7zgi8horze.cloudfront.net/downloads/version.json?t=${Date.now()}`;
36
36
  console.log(`🔍 [UPDATE CHECK] Current version: ${currentVersion}`);
37
37
  console.log(`📡 [UPDATE CHECK] Fetching: ${manifestUrl}`);
38
38
 
@@ -61,7 +61,7 @@ async function checkForElectronUpdates(currentVersion) {
61
61
  // Detect architecture and choose appropriate download URL
62
62
  const arch = process.arch; // 'arm64' or 'x64'
63
63
  const platform = process.platform; // 'darwin' or 'win32'
64
- const baseUrl = 'https://vibecodingmachine-website.s3.amazonaws.com/downloads';
64
+ const baseUrl = 'https://d3fh7zgi8horze.cloudfront.net/downloads';
65
65
 
66
66
  let downloadUrl;
67
67
  if (platform === 'darwin') {