Skip to content

Commit

Permalink
Prepared files for release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KrazyManJ committed Jan 26, 2024
1 parent 28b56e8 commit 88cec49
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "keyshots",
"name": "Keyshots",
"version": "2.1.1",
"version": "2.1.2",
"minAppVersion": "0.15.0",
"description": "Adds classic hotkey/shortcuts commands from popular IDEs like Visual Studio Code or JetBrains Family.",
"author": "KrazyManJ",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-keyshots",
"version": "2.1.1",
"version": "2.1.2",
"description": "",
"main": "main.js",
"scripts": {
Expand Down
16 changes: 12 additions & 4 deletions src/typings/electron.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
declare namespace electron {
const remote: Remote

interface WebContents {
openDevTools(): void;
}

interface Window {
webContents: WebContents;
setFullScreen(state: boolean): void;
}

interface BrowserWindow {
webContents: {
openDevTools: () => void;
};
getAllWindows(): Window[];
}

interface Remote {
getCurrentWindow(): BrowserWindow;
getCurrentWindow(): Window;
BrowserWindow: BrowserWindow;
}
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"2.0.0": "0.15.0",
"2.0.1": "0.15.0",
"2.1.0": "0.15.0",
"2.1.1": "0.15.0"
"2.1.1": "0.15.0",
"2.1.2": "0.15.0"
}

0 comments on commit 88cec49

Please sign in to comment.