mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
Bump version 3.1.1
This commit is contained in:
parent
43bda8e795
commit
f3a10909f8
@ -153,7 +153,7 @@ if (!isLock) {
|
|||||||
})
|
})
|
||||||
ipcMain.on('app_version', (event) => {
|
ipcMain.on('app_version', (event) => {
|
||||||
log.info(app.getVersion())
|
log.info(app.getVersion())
|
||||||
mainWindow.webContents.send('app_version', { version: app.getVersion() })
|
myWindow.webContents.send('app_version', { version: app.getVersion() })
|
||||||
})
|
})
|
||||||
autoUpdater.on('update-available', (event) => {
|
autoUpdater.on('update-available', (event) => {
|
||||||
const downloadOpts = {
|
const downloadOpts = {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "qortal-ui",
|
"name": "qortal-ui",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"QORT",
|
"QORT",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "qortal-ui-core",
|
"name": "qortal-ui-core",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"QORT",
|
"QORT",
|
||||||
@ -19,7 +19,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hapi/hapi": "21.3.0",
|
"@hapi/hapi": "21.3.0",
|
||||||
"@hapi/inert": "7.0.1",
|
"@hapi/inert": "7.0.1",
|
||||||
"sass": "1.58.2"
|
"sass": "1.58.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "7.20.12",
|
"@babel/core": "7.20.12",
|
||||||
@ -53,6 +53,7 @@
|
|||||||
"@polymer/paper-spinner": "3.0.2",
|
"@polymer/paper-spinner": "3.0.2",
|
||||||
"@polymer/paper-toast": "3.0.1",
|
"@polymer/paper-toast": "3.0.1",
|
||||||
"@polymer/paper-tooltip": "3.0.1",
|
"@polymer/paper-tooltip": "3.0.1",
|
||||||
|
"@qortal/rollup-plugin-web-worker-loader": "1.6.4",
|
||||||
"@rollup/plugin-alias": "4.0.3",
|
"@rollup/plugin-alias": "4.0.3",
|
||||||
"@rollup/plugin-babel": "6.0.3",
|
"@rollup/plugin-babel": "6.0.3",
|
||||||
"@rollup/plugin-commonjs": "24.0.1",
|
"@rollup/plugin-commonjs": "24.0.1",
|
||||||
@ -74,11 +75,10 @@
|
|||||||
"pwa-helpers": "0.9.1",
|
"pwa-helpers": "0.9.1",
|
||||||
"redux": "4.2.1",
|
"redux": "4.2.1",
|
||||||
"redux-thunk": "2.4.2",
|
"redux-thunk": "2.4.2",
|
||||||
"rollup": "3.16.0",
|
"rollup": "3.17.1",
|
||||||
"rollup-plugin-node-globals": "1.4.0",
|
"rollup-plugin-node-globals": "1.4.0",
|
||||||
"rollup-plugin-progress": "1.1.2",
|
"rollup-plugin-progress": "1.1.2",
|
||||||
"rollup-plugin-scss": "3.0.0",
|
"rollup-plugin-scss": "3.0.0"
|
||||||
"rollup-plugin-web-worker-loader": "1.6.1"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.12.1"
|
"node": ">=18.12.1"
|
||||||
|
@ -7,7 +7,7 @@ const commonjs = require('@rollup/plugin-commonjs')
|
|||||||
const alias = require('@rollup/plugin-alias')
|
const alias = require('@rollup/plugin-alias')
|
||||||
const terser = require('@rollup/plugin-terser');
|
const terser = require('@rollup/plugin-terser');
|
||||||
const scss = require('rollup-plugin-scss')
|
const scss = require('rollup-plugin-scss')
|
||||||
const webWorkerLoader = require('rollup-plugin-web-worker-loader');
|
const webWorkerLoader = require('@qortal/rollup-plugin-web-worker-loader');
|
||||||
|
|
||||||
const generateES5BuildConfig = require('./generateES5BuildConfig')
|
const generateES5BuildConfig = require('./generateES5BuildConfig')
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ const commonjs = require('@rollup/plugin-commonjs');
|
|||||||
const progress = require('rollup-plugin-progress');
|
const progress = require('rollup-plugin-progress');
|
||||||
const terser = require('@rollup/plugin-terser');
|
const terser = require('@rollup/plugin-terser');
|
||||||
const alias = require('@rollup/plugin-alias');
|
const alias = require('@rollup/plugin-alias');
|
||||||
const webWorkerLoader = require('rollup-plugin-web-worker-loader');
|
const webWorkerLoader = require('@qortal/rollup-plugin-web-worker-loader');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "qortal-ui-crypto",
|
"name": "qortal-ui-crypto",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"QORT",
|
"QORT",
|
||||||
|
@ -8,7 +8,7 @@ const commonjs = require('@rollup/plugin-commonjs');
|
|||||||
const alias = require('@rollup/plugin-alias');
|
const alias = require('@rollup/plugin-alias');
|
||||||
const terser = require('@rollup/plugin-terser');
|
const terser = require('@rollup/plugin-terser');
|
||||||
const babel = require('@rollup/plugin-babel');
|
const babel = require('@rollup/plugin-babel');
|
||||||
const webWorkerLoader = require('rollup-plugin-web-worker-loader');
|
const webWorkerLoader = require('@qortal/rollup-plugin-web-worker-loader');
|
||||||
|
|
||||||
|
|
||||||
const aliases = {};
|
const aliases = {};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "qortal-ui-plugins",
|
"name": "qortal-ui-plugins",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"QORT",
|
"QORT",
|
||||||
@ -20,14 +20,14 @@
|
|||||||
"@lit-labs/motion": "1.0.3",
|
"@lit-labs/motion": "1.0.3",
|
||||||
"@material/mwc-list": "0.27.0",
|
"@material/mwc-list": "0.27.0",
|
||||||
"@material/mwc-select": "0.27.0",
|
"@material/mwc-select": "0.27.0",
|
||||||
"@tiptap/pm": "2.0.0-beta.217",
|
"@tiptap/pm": "2.0.0-beta.218",
|
||||||
"@tiptap/core": "2.0.0-beta.217",
|
"@tiptap/core": "2.0.0-beta.218",
|
||||||
"@tiptap/extension-highlight": "2.0.0-beta.217",
|
"@tiptap/extension-highlight": "2.0.0-beta.218",
|
||||||
"@tiptap/extension-image": "2.0.0-beta.217",
|
"@tiptap/extension-image": "2.0.0-beta.218",
|
||||||
"@tiptap/extension-placeholder": "2.0.0-beta.217",
|
"@tiptap/extension-placeholder": "2.0.0-beta.218",
|
||||||
"@tiptap/extension-underline": "2.0.0-beta.217",
|
"@tiptap/extension-underline": "2.0.0-beta.218",
|
||||||
"@tiptap/html": "2.0.0-beta.217",
|
"@tiptap/html": "2.0.0-beta.218",
|
||||||
"@tiptap/starter-kit": "2.0.0-beta.217",
|
"@tiptap/starter-kit": "2.0.0-beta.218",
|
||||||
"asmcrypto.js": "2.3.2",
|
"asmcrypto.js": "2.3.2",
|
||||||
"compressorjs": "1.1.1",
|
"compressorjs": "1.1.1",
|
||||||
"emoji-picker-js": "https://github.com/Qortal/emoji-picker-js",
|
"emoji-picker-js": "https://github.com/Qortal/emoji-picker-js",
|
||||||
@ -65,6 +65,7 @@
|
|||||||
"@polymer/paper-slider": "3.0.1",
|
"@polymer/paper-slider": "3.0.1",
|
||||||
"@polymer/paper-spinner": "3.0.2",
|
"@polymer/paper-spinner": "3.0.2",
|
||||||
"@polymer/paper-tooltip": "3.0.1",
|
"@polymer/paper-tooltip": "3.0.1",
|
||||||
|
"@qortal/rollup-plugin-web-worker-loader": "1.6.4",
|
||||||
"@rollup/plugin-alias": "4.0.3",
|
"@rollup/plugin-alias": "4.0.3",
|
||||||
"@rollup/plugin-babel": "6.0.3",
|
"@rollup/plugin-babel": "6.0.3",
|
||||||
"@rollup/plugin-commonjs": "24.0.1",
|
"@rollup/plugin-commonjs": "24.0.1",
|
||||||
@ -85,10 +86,9 @@
|
|||||||
"lit": "2.6.1",
|
"lit": "2.6.1",
|
||||||
"lit-translate": "2.0.1",
|
"lit-translate": "2.0.1",
|
||||||
"passive-events-support": "1.0.33",
|
"passive-events-support": "1.0.33",
|
||||||
"rollup": "3.16.0",
|
"rollup": "3.17.1",
|
||||||
"rollup-plugin-node-globals": "1.4.0",
|
"rollup-plugin-node-globals": "1.4.0",
|
||||||
"rollup-plugin-progress": "1.1.2",
|
"rollup-plugin-progress": "1.1.2"
|
||||||
"rollup-plugin-web-worker-loader": "1.6.1"
|
|
||||||
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user