Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
salmenf committed Aug 8, 2023
1 parent f89756f commit 35802c1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion @webwriter/app-desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webwriter/app-desktop",
"version": "0.5.0",
"version": "0.6.0-rc1",
"description": "Windows/Mac/Linux version of WebWriter",
"private": true,
"author": "Frederic Salmen <frederic@fsalmen.de>",
Expand Down
2 changes: 1 addition & 1 deletion @webwriter/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webwriter/core",
"version": "0.5.1",
"version": "0.6.0-rc1",
"description": "Core functionality of WebWriter",
"main": "index.html",
"private": true,
Expand Down
1 change: 0 additions & 1 deletion @webwriter/core/view/configurator/packagemanager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,6 @@ export class PackageManager extends LitElement {
packageListItem = (pkg: Package, i: number) => {
const {name, author, version, description, keywords, installed, outdated, importError, localPath, watching, jsSize, cssSize} = pkg
const {emitAddPackage, emitRemovePackage, emitUpgradePackage, emitToggleWatch, emitOpenPackageCode, emitEditPackage} = this
console.log(pkg.watching)
const adding = this.adding.includes(name)
const removing = this.removing.includes(name)
const upgrading = this.upgrading.includes(name)
Expand Down
2 changes: 1 addition & 1 deletion @webwriter/core/view/elements/datainputs/pathinput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { SlInput } from "@shoelace-style/shoelace";
import { localized, msg } from "@lit/localize";


const windowsPathPattern = /^(?<ParentPath>(?:[a-zA-Z]:|\\\\[^\<\>:"/\\|\?\*]+\\[^\<\>:"/\\|\?\*]+)\\(?:[^\<\>:"/\\|\?\*]+\\)*)(?<BaseName>[^<>:"/\\|\?\*]*?)/
const windowsPathPattern = /^(?<ParentPath>(?:[a-zA-Z]:|\\\\[^\<\>:"\/\\|?*]+\\[^\<\>:"\/\\|?*]+)\\(?:[^\<\>:"\/\\|?*]+\\)*)(?<BaseName>[^\<\>:"\/\\|?*]*?)/
const unixPathPattern = /[^\0]+/


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": "webwriter",
"version": "0.5.1",
"version": "0.6.0-rc1",
"description": "Web-based authoring tool for explorables",
"scripts": {
"lerna": "lerna",
Expand Down

0 comments on commit 35802c1

Please sign in to comment.