-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4337 from VirtualEvan/vsdx-support
- Loading branch information
Showing
7 changed files
with
180 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,53 @@ | ||
const VueLoaderPlugin = require('vue-loader/lib/plugin') | ||
const webpack = require('webpack') | ||
|
||
module.exports = { | ||
plugins: [ | ||
new VueLoaderPlugin() | ||
], | ||
plugins: [new VueLoaderPlugin(), new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)], | ||
entry: { | ||
'draw-io': [ | ||
'core-js/modules/es6.promise', | ||
'core-js/modules/es6.array.iterator', | ||
'./src/app.js' | ||
] | ||
'draw-io': ['core-js/modules/es6.promise', 'core-js/modules/es6.array.iterator', './src/app.js'] | ||
}, | ||
output: { | ||
publicPath: 'apps/draw-io/', | ||
chunkFilename: '[name].draw-io.chunk.js', | ||
filename: 'draw-io.bundle.js' | ||
}, | ||
module: { | ||
rules: [{ | ||
test: /\.js?$/, | ||
exclude: /node_modules/, | ||
loader: 'babel-loader', | ||
options: { | ||
rootMode: 'upward' | ||
} | ||
}, { | ||
test: /\.vue$/, | ||
loader: 'vue-loader' | ||
}, | ||
{ | ||
test: /\.jsx?$/, | ||
include: /node_modules\/(?=(query-string|split-on-first|strict-uri-encode)\/).*/, | ||
use: { | ||
rules: [ | ||
{ | ||
test: /\.js?$/, | ||
exclude: /node_modules/, | ||
loader: 'babel-loader', | ||
options: { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
ie: '11' | ||
rootMode: 'upward' | ||
} | ||
}, | ||
{ | ||
test: /\.vue$/, | ||
loader: 'vue-loader' | ||
}, | ||
{ | ||
test: /\.jsx?$/, | ||
include: /node_modules\/(?=(query-string|split-on-first|strict-uri-encode)\/).*/, | ||
use: { | ||
loader: 'babel-loader', | ||
options: { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
ie: '11' | ||
} | ||
} | ||
} | ||
] | ||
] | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
test: /\.css$/, | ||
use: ['vue-style-loader', 'css-loader'] | ||
} | ||
}, | ||
{ | ||
test: /\.css$/, | ||
use: [ | ||
'vue-style-loader', | ||
'css-loader' | ||
] | ||
}] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Enhancement: Add custom configuration to the draw.io app | ||
|
||
Added mechanism to specify custom configuration instead of using a hardcoded | ||
one. The new settings include support for a custom draw.io server, enabling | ||
autosave and using a specific theme. | ||
|
||
https://github.com/owncloud/phoenix/pull/4337 | ||
https://github.com/owncloud/phoenix/issues/4328 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Enhancement: Add support for .vsdx files in the draw.io app | ||
|
||
Added the support to open .vsdx files (Microsoft Visio Files) directly | ||
from OwnCloud, instead of creating a new diagram to import the file from | ||
local storage. | ||
|
||
https://github.com/owncloud/phoenix/pull/4337 | ||
https://github.com/owncloud/phoenix/issues/4327 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters