Skip to content

Commit 3e2f60d

Browse files
committed
Update dependencies and README
1 parent 52a136e commit 3e2f60d

3 files changed

Lines changed: 14 additions & 9 deletions

File tree

LICENSE

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Diego Islas Ocampo
3+
Copyright (c) 2015 - 2017 Diego Islas Ocampo
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,5 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
22-
21+
SOFTWARE.

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# Monogatari
22
Built to bring Visual Novels to the modern web and take them to the next level, making it easy for anyone to create and distribute Visual Novels in a simple way so that anyone can enjoy them on pretty much anywhere, create games with features that no one has ever imagined... it is time for Visual Novels to Evolve.
33

4+
## Features
5+
- Responsive out of the box
6+
- Plays nice with electron for Desktop apps and phonegap for mobile apps
7+
- Simple Syntax
8+
- Extensible, you just can't imagine how much!
9+
410
Website: https://monogatari.io/
511

612
## Documentation
713
You can see the documentation in https://monogatari.io/documentation/
814

9-
You can also contribute to the documentation in the [Website repository](https://github.com/HyuchiaDiego/MonogatariWebsite)
15+
You can also contribute to the documentation in the [Website repository](https://github.com/Hyuchia/MonogatariWebsite)
1016

1117
## Contributing
1218

13-
If you have contributed to this project, or in the webpage, please make sure you are listed in the contributors list of the website, you can add yourself in the [contributors file](https://github.com/HyuchiaDiego/MonogatariWebsite/blob/master/templates/contributors.html) of the website
19+
If you have contributed to this project, or in the webpage, please make sure you are listed in the contributors list of the website, you can add yourself in the [contributors file](https://github.com/Hyuchia/MonogatariWebsite/blob/master/templates/contributors.html) of the website
1420

1521
## License
16-
Monogatari is an open-source project released under the [MIT License](https://raw.githubusercontent.com/HyuchiaDiego/Monogatari/master/LICENSE).
22+
Monogatari is a Free Open Source Software project released under the [MIT License](https://raw.githubusercontent.com/Hyuchia/Monogatari/master/LICENSE).

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ gulp.task('download-deps', () => {
6464
// jQuery
6565
download({
6666
file: "jquery.min.js",
67-
url: "https://code.jquery.com/jquery-3.1.0.min.js"
67+
url: "https://code.jquery.com/jquery-3.2.1.min.js"
6868
}).pipe(gulp.dest("js/"));
6969

7070
// Particles JS
@@ -129,10 +129,10 @@ gulp.task('minify-deps', () => {
129129
gulp.task('download-monogatari', () => {
130130

131131
// Monogatari CSS
132-
download("https://raw.githubusercontent.com/HyuchiaDiego/Monogatari/master/style/monogatari.css").pipe(gulp.dest("style/"));
132+
download("https://raw.githubusercontent.com/Hyuchia/Monogatari/master/style/monogatari.css").pipe(gulp.dest("style/"));
133133

134134
// Monogatari JS
135-
download("https://raw.githubusercontent.com/HyuchiaDiego/Monogatari/master/js/monogatari.js").pipe(gulp.dest("js/"));
135+
download("https://raw.githubusercontent.com/Hyuchia/Monogatari/master/js/monogatari.js").pipe(gulp.dest("js/"));
136136
});
137137

138138
gulp.task('update', () => {

0 commit comments

Comments
 (0)