Skip to content

Commit

Permalink
Merge pull request #84 from animalnots/dev
Browse files Browse the repository at this point in the history
v1.16.0
  • Loading branch information
animalnots authored Dec 11, 2024
2 parents ae56c75 + 6799773 commit 7ceb40c
Show file tree
Hide file tree
Showing 4 changed files with 796 additions and 473 deletions.
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@
<body>
<div id="root"></div>
<div id="modal-root"></div>
<div id="version-info"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
fetch('/package.json')
.then(response => response.json())
.then(data => {
const versionInfo = document.getElementById('version-info');
versionInfo.textContent = `Version: ${data.version}`;
versionInfo.style.position = 'fixed';
versionInfo.style.bottom = '10px';
versionInfo.style.right = '10px';
versionInfo.style.fontSize = '12px';
versionInfo.style.color = '#888';
})
.catch(error => console.error('Error fetching version:', error));
</script>
</body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "better-chatgpt",
"private": true,
"version": "1.15.0",
"version": "1.16.0",
"type": "module",
"homepage": "./",
"main": "electron/index.cjs",
Expand Down
Loading

0 comments on commit 7ceb40c

Please sign in to comment.