Skip to content

Commit

Permalink
New version 0.3.1
Browse files Browse the repository at this point in the history
* Update README.md
* Change code indentation
* Files now use Unix line endings
  • Loading branch information
LuqueDaniel committed Sep 16, 2017
1 parent 5aac5f6 commit e26ba50
Show file tree
Hide file tree
Showing 8 changed files with 363 additions and 382 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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]
36 changes: 16 additions & 20 deletions README.md
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
2 changes: 1 addition & 1 deletion to_zip_file.sh
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
2 changes: 1 addition & 1 deletion visualnovel-mod/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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]
22 changes: 11 additions & 11 deletions visualnovel-mod/package.json
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"
}
}
28 changes: 14 additions & 14 deletions visualnovel-mod/vnMod.js
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);
})();
Loading

0 comments on commit e26ba50

Please sign in to comment.