diffwatch 2.1.1 → 2.1.2

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": "diffwatch",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "A TUI app for watching git repository file changes with diffs.",
5
5
  "keywords": [
6
6
  "git",
package/src/index.tsx CHANGED
@@ -96,6 +96,9 @@ async function main() {
96
96
  process.exit(1);
97
97
  }
98
98
 
99
+ // Set terminal title
100
+ process.stdout.write(`\x1b]0;DiffWatch\x07`);
101
+
99
102
  const renderer = await createCliRenderer();
100
103
  const root = createRoot(renderer);
101
104
 
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const BUILD_VERSION = "2.1.1";
1
+ export const BUILD_VERSION = "2.1.2";