-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix keeping dialog opened when an error occurs * Improve media title accessibility * Show an icon to upload a media instead of text * Add CHANGELOG for the front and the api
- Loading branch information
1 parent
104f8fa
commit e445f1c
Showing
7 changed files
with
102 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 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). | ||
|
||
## [Unreleased] | ||
### Added | ||
- A changelog. | ||
- Improve media's title accessibility. | ||
- Show an icon instead of a text to upload a file as a media. | ||
|
||
### Changed | ||
- Fix [issue 64](https://github.com/chriscamicas/girr/issues/64) by keeping a dialog opened if an error has occured when saving a resource. | ||
|
||
## [1.0.0] | ||
### Added | ||
- Initial release using VueJS 2. | ||
|
||
[Unreleased]: https://github.com/chriscamicas/girr/compare/v1.0.0...HEAD |
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,9 +1,12 @@ | ||
{ | ||
"name": "client", | ||
"name": "girr-client", | ||
"version": "1.0.0", | ||
"description": "GeekInc Remote Regie App", | ||
"author": "Matthieu PETIT <[email protected]>", | ||
"private": true, | ||
"description": "Studio Renegade Remote Regie App", | ||
"author": "Christophe Camicas", | ||
"contributors": [ | ||
"Matthieu PETIT <[email protected]>" | ||
], | ||
"private": false, | ||
"scripts": { | ||
"dev": "node build/dev-server.js", | ||
"start": "node build/dev-server.js", | ||
|
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
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,15 @@ | ||
# 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). | ||
|
||
## [Unreleased] | ||
### Added | ||
- A changelog. | ||
|
||
## [2.0.1] | ||
### Added | ||
- Initial release using NodeJS and [Express](https://expressjs.com/). | ||
|
||
[Unreleased]: https://github.com/chriscamicas/girr/compare/v2.0.1...HEAD |
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,14 +1,17 @@ | ||
{ | ||
"name": "girr", | ||
"name": "girr-api", | ||
"version": "2.0.1", | ||
"description": "GeekInc Remote Regie", | ||
"description": "Studio Renegade Remote Regie", | ||
"main": "app.js", | ||
"scripts": { | ||
"start": "node app.js", | ||
"dev": "nodemon --inspect --config config/nodemon.json app.js", | ||
"test": "MONGO_ENDPOINT=mongodb://localhost/girr_test mocha --timeout 10000 --exit" | ||
}, | ||
"author": "Christophe Camicas", | ||
"contributors": [ | ||
"Matthieu PETIT <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"body-parser": "^1.17.2", | ||
|