Skip to content

Commit

Permalink
bump package
Browse files Browse the repository at this point in the history
  • Loading branch information
xiduzo committed Aug 21, 2024
1 parent 7e449aa commit a6b2d70
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/electron-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/xiduzo/microflow"
},
"version": "0.1.3",
"version": "0.1.4",
"description": "An application which allows you to create flow-based logic for micro-controllers",
"author": {
"name": "Sander Boer",
Expand Down
3 changes: 0 additions & 3 deletions apps/electron-app/src/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { app, dialog, BrowserWindow } = require('electron');
const { updateElectronApp } = require('update-electron-app');

const path = require('node:path');

Expand All @@ -9,8 +8,6 @@ import { createMenu } from './main/menu';

let mainWindow = null;

updateElectronApp();

if (process.defaultApp) {
if (process.argv.length >= 2) {
app.setAsDefaultProtocolClient('electron-fiddle', process.execPath, [
Expand Down
2 changes: 1 addition & 1 deletion apps/figma-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microflow/figma-plugin",
"private": true,
"version": "0.1.3",
"version": "0.1.4",
"scripts": {
"dev": "concurrently \"yarn watch:ui\" \"yarn watch:plugin\"",
"dev:ui-only": "vite -c ./vite.config.ui.ts",
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-app/components/DownloadApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function DownloadApp() {
const [os, setOs] = useState('');

function downloadApp() {
const version = '0.1.3';
const version = '0.1.4';
const baseUrl = `https://github.com/xiduzo/microflow/releases/download/v${version}`;

switch (os) {
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-app",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit a6b2d70

Please sign in to comment.