A Neptunia Character Sorter
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update local README

+11 -5
+11 -5
README.md
··· 7 7 * Filtering out characters based on JSON based filters. 8 8 * Shareable links of sorter results. 9 9 * Versioning of sorter data - you may want to add characters and resources over time. Versioning keeps shareable links valid even if the base character data is changed. 10 - 11 - The version in this repo is built for characters from the [Touhou Project](https://en.wikipedia.org/wiki/Touhou_Project) 12 - game series, but the sorter can be easily edited to create any custom sorter desired. 10 + 11 + The version in this repo is built for characters from the 12 + [Hyperdimension Neptunia](https://en.wikipedia.org/wiki/Hyperdimension_Neptunia) 13 + game series, but the sorter can be easily edited to create any custom sorter 14 + desired. 15 + 16 + This was forked from [execfera/charasort](https://github.com/execfera/charasort) 17 + which is a character sorter dedicated to the 18 + [Touhou Project](https://en.wikipedia.org/wiki/Touhou_Project) game series. 13 19 14 20 ## Creating Your Own Sorter 15 21 This is a list of things you need to change for your sorter, for each file. ··· 28 34 * `src/js/data/YYYY-MM-DD.js` 29 35 30 36 Creating your own set of data is relatively simple. First, change the `dataSetVersion` date to the date when you are creating the dataset. Example: `dataSetVersion = 2018-02-20`. The actual filename does not matter, it is just for your own easy reference. 31 - 37 + 32 38 Further down, each file comprises of two sets of data: `characterData` and `options`. 33 39 34 40 `characterData` is an array of objects filled with character data. Its layout is as follows. ··· 144 150 145 151 ## Updating Your Own Sorter 146 152 147 - When you need to add more characters to your sorter, you must create a new data file with a new date, and include it in your `index.html` file under the `<script src="src/js/data.js"></script>` line, while keeping your previous data files also included. 153 + When you need to add more characters to your sorter, you must create a new data file with a new date, and include it in your `index.html` file under the `<script src="src/js/data.js"></script>` line, while keeping your previous data files also included. 148 154 149 155 The script will automatically get the latest version, but will retain the previous versions in case someone keeps a shareable link from one of the previous versions. 150 156