-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md * Change code indentation * Files now use Unix line endings
- Loading branch information
1 parent
5aac5f6
commit e26ba50
Showing
8 changed files
with
363 additions
and
382 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 |
---|---|---|
|
@@ -15,4 +15,4 @@ While we welcome contributions to this poject, the software, or any derivatives, | |
|
||
Any derivatives must link back to the original project. | ||
|
||
If you have any questions please contact [email protected] | ||
If you have any questions please contact [email protected] |
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,32 +1,28 @@ | ||
GDT - Visual Novel Mod | ||
========================================================================== | ||
This Game Dev Tycoon mod adds some new topics and researches related to visual novels. | ||
# GDT - Visual Novel Mod | ||
This **Game Dev Tycoon mod** adds some new topics and researches related to visual novels. | ||
|
||
**Version**: 0.3<br /> | ||
**Requires API version**: 0.1.x<br /> | ||
**[Steam Workshop page.](http://steamcommunity.com/sharedfiles/filedetails/?id=299122114&searchtext=)** | ||
- **Version**: 0.3.1 | ||
- **Requires API version**: 0.1.x | ||
- **[Steam Workshop page](http://steamcommunity.com/sharedfiles/filedetails/?id=299122114&searchtext=)** | ||
|
||
Features | ||
-------------------------------------------------------------------------- | ||
## Features | ||
- **[New topics](https://github.com/LuqueDaniel/gdt-visualnovel-mod/wiki/Topics-list)**: 11 | ||
- **[New researches](https://github.com/LuqueDaniel/gdt-visualnovel-mod/wiki/Researches-list)**: 15 | ||
|
||
**[View wiki](https://github.com/LuqueDaniel/gdt-visualnovel-mod/wiki)** | ||
|
||
Screenshots | ||
-------------------------------------------------------------------------- | ||
## Screenshots | ||
![screenshot](https://raw.github.com/LuqueDaniel/gdt-visualnovel-mod/master/screenshots/screenshot_01.png) | ||
![screenshot](https://raw.github.com/LuqueDaniel/gdt-visualnovel-mod/master/screenshots/screenshot_02.png) | ||
|
||
How to install | ||
-------------------------------------------------------------------------- | ||
**Via Steam Workshop.** | ||
* **[Subscribe to Visual Novel Mod](http://steamcommunity.com/sharedfiles/filedetails/?id=299122114&searchtext=)**. | ||
## How to install | ||
**Via Steam Workshop:** | ||
**[Subscribe to Visual Novel Mod](http://steamcommunity.com/sharedfiles/filedetails/?id=299122114&searchtext=)** | ||
|
||
**Manual install.** | ||
**Manual install:** | ||
* Go to your Game Dev Tycoon directory | ||
- On Steam. Go to your Steam folder and go into "steamapps/common/Game Dev Tycoon". | ||
* Paste visualnovel-mod folder in mods directory. | ||
* Start Game Dev Tycoon, go to the main menu and select mods. | ||
* Click on Visual Novel Mod to activate. | ||
* Enjoy the mod. | ||
- On Steam. Go to your Steam folder and go into "steamapps/common/Game Dev Tycoon" | ||
* Paste visualnovel-mod folder in mods directory | ||
* Start Game Dev Tycoon, go to the main menu and select mods | ||
* Click on Visual Novel Mod to activate | ||
* Enjoy the mod |
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,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
#Mod version | ||
VERSION="0.2" | ||
VERSION="0.3.1" | ||
|
||
zip -r gdt-visualnovel-mod_$VERSION.zip visualnovel-mod |
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ While we welcome contributions to this poject, the software, or any derivatives, | |
|
||
Any derivatives must link back to the original project. | ||
|
||
If you have any questions please contact [email protected] | ||
If you have any questions please contact [email protected] |
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,13 +1,13 @@ | ||
{ | ||
"id": "visualnovelMod", | ||
"name": "Visual Novel Mod", | ||
"version": "0.3", | ||
"description": "This Game Dev Tycoon mod adds some new topics and researches related to visual novels.", | ||
"image": "vn_mod_thumbnail.png", | ||
"author": "DanielL501", | ||
"url": "https://github.com/LuqueDaniel/gdt-visualnovel-mod", | ||
"main": "./vnMod.js", | ||
"dependencies": { | ||
"gdt-modAPI": "0.1.x" | ||
} | ||
"id": "visualnovelMod", | ||
"name": "Visual Novel Mod", | ||
"version": "0.3.1", | ||
"description": "This Game Dev Tycoon mod adds some new topics and researches related to visual novels.", | ||
"image": "vn_mod_thumbnail.png", | ||
"author": "DanielL501", | ||
"url": "https://github.com/LuqueDaniel/gdt-visualnovel-mod", | ||
"main": "./vnMod.js", | ||
"dependencies": { | ||
"gdt-modAPI": "0.1.x" | ||
} | ||
} |
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,19 +1,19 @@ | ||
(function () { | ||
var ready = function () { | ||
//Adds topics | ||
vnTopics.addTopics(); | ||
var ready = function () { | ||
//Adds topics | ||
vnTopics.addTopics(); | ||
|
||
//Adds researchs | ||
vnResearch.addResearchs(); | ||
}; | ||
//Adds researchs | ||
vnResearch.addResearchs(); | ||
}; | ||
|
||
var error = function () { | ||
}; | ||
var error = function () { | ||
}; | ||
|
||
GDT.loadJs( | ||
[ | ||
//Visual Novel Mod files | ||
'vnMod/vnTopics.js', | ||
'vnMod/vnResearchs.js' | ||
], ready, error); | ||
GDT.loadJs( | ||
[ | ||
//Visual Novel Mod files | ||
'vnMod/vnTopics.js', | ||
'vnMod/vnResearchs.js' | ||
], ready, error); | ||
})(); |
Oops, something went wrong.