Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joschaschmiedt committed Feb 24, 2022
1 parent e89b54c commit ac5a0af
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 64 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0] - 2022-02-24
Initial version of files_metadataeditor app

### Added
- first functional Nextcloud app for editing metadata of a folder with research data
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ documentation](https://docs.nextcloud.com/server/latest/developer_manual)
### Developing React input forms
Before working on the Javascript part of the app, npm packages have to be installed with
```
npm install
npm install
```
The component for entering the data can be developed without a running Nextcloud
server using
```
npm start
npm start
```
and opening the development server at https://localhost:8080. To build a deployable Javascript bundle use
and opening the development server at https://localhost:8080. To build a deployable Javascript bundle in `js/` use
```
npm run dev
npm run dev
```
for a non-minified version or
for a non-minified development version or
```
npm run build
```
Expand Down
118 changes: 59 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
{
"name": "files_metadataeditor",
"version": "1.0.0",
"description": "A Nextcloud app to annotate a directory with research data with metadata",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --config ./webpack.config.js --mode production",
"dev": "NODE_ENV=development webpack --config ./webpack.config.js --mode development"
},
"author": "Joscha Schmiedt <[email protected]>",
"license": "agpl",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"ajv": "^8.10.0",
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"react-hot-loader": "^4.13.0",
"sass-loader": "^12.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@jsonforms/core": "^3.0.0-beta.1",
"@jsonforms/examples": "^3.0.0-beta.1",
"@jsonforms/material-renderers": "^3.0.0-beta.1",
"@jsonforms/react": "^3.0.0-beta.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@nextcloud/dialogs": "^3.1.2",
"@nextcloud/router": "^2.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": [
"defaults",
"not IE 11"
],
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
}
"name": "files_metadataeditor",
"version": "0.1.0",
"description": "A Nextcloud app to annotate a directory with research data with metadata",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --config ./webpack.config.js --mode production",
"dev": "NODE_ENV=development webpack --config ./webpack.config.js --mode development"
},
"author": "Joscha Schmiedt <[email protected]>",
"license": "agpl",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"ajv": "^8.10.0",
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"react-hot-loader": "^4.13.0",
"sass-loader": "^12.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@jsonforms/core": "^3.0.0-beta.1",
"@jsonforms/examples": "^3.0.0-beta.1",
"@jsonforms/material-renderers": "^3.0.0-beta.1",
"@jsonforms/react": "^3.0.0-beta.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@nextcloud/dialogs": "^3.1.2",
"@nextcloud/router": "^2.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": [
"defaults",
"not IE 11"
],
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
}
}

0 comments on commit ac5a0af

Please sign in to comment.