Skip to content

Commit

Permalink
feat(version): v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianjnuwu committed Jan 6, 2025
1 parent b010daa commit 925a50c
Show file tree
Hide file tree
Showing 12 changed files with 562 additions and 579 deletions.
4 changes: 3 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"assignees": ["sebastianjnuwu"],
"schedule": ["at the beginning of every 3 months on the last day of the month"],
"schedule": [
"at the beginning of every 3 months on the last day of the month"
],
"dependencyDashboard": false,
"fetchReleaseNotes": true,
"packageRules": [
Expand Down
10 changes: 9 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
"enabled": true
},
"files": {
"ignore": ["node_modules", "www/src/js/modules", "build", "dist", "android", "ios", "*.log"]
"ignore": [
"node_modules",
"www/src/js/modules",
"build",
"dist",
"android",
"ios",
"*.log"
]
}
}
8 changes: 4 additions & 4 deletions socket/src/functions/functions.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
let roomIdCounter = 0;

export function $generate_uuid() {
roomIdCounter += 1;
return roomIdCounter;
roomIdCounter += 1;
return roomIdCounter;
}

// code
// code
export function $generate_code() {
return Math.random().toString(36).substring(2, 8).toUpperCase();
};
}
Loading

0 comments on commit 925a50c

Please sign in to comment.