Skip to content

Commit

Permalink
v4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NickGeek committed Oct 21, 2023
1 parent 462194c commit bb50b24
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 247 deletions.
1 change: 0 additions & 1 deletion dicts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { readFile as nodeReadFile } from 'node:fs/promises';
import * as path from 'path';
/** @type {import('./types/typo-js')} */
import Typo from 'typo-js';

export async function getDicts(){
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "micropad",
"version": "4.3.0",
"version": "4.4.0",
"description": "A powerful note-taking app that helps you organise + take notes without restrictions.",
"main": "main.js",
"scripts": {
Expand All @@ -27,9 +27,10 @@
"devDependencies": {
"@types/mime": "^3.0.1",
"@types/node": "^18.7.18",
"electron": "^25.5.0",
"electron-builder": "^24.6.3",
"typescript": "~4.9.5"
"@types/typo-js": "^1.2.1",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"typescript": "~5.2.2"
},
"dependencies": {
"dictionary-en": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion preload.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ipcRenderer, webFrame } from 'electron';
import * as fs from 'node:fs/promises';
import localforage from 'localforage';
import { getDicts } from './dicts';

const { contextBridge } = require('electron')

let userDict: Set<string> = new Set();
Expand Down
94 changes: 0 additions & 94 deletions types/typo-js.d.ts

This file was deleted.

Loading

0 comments on commit bb50b24

Please sign in to comment.