Skip to content

Commit

Permalink
fix: Rename all files to lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
Starciad committed Jan 25, 2024
1 parent 4f0d4c5 commit e356a83
Show file tree
Hide file tree
Showing 23 changed files with 50 additions and 40 deletions.
File renamed without changes.
30 changes: 20 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,43 @@

<!-- SCRIPTS -->
<!-- Generator -->
<script src="scripts/generator/SCSGMain.js" type="module"></script>
<script src="scripts/generator/routine/SCSGData.js" type="module"></script>
<script src="scripts/generator/routine/SCSGInfos.js" type="module"></script>
<script src="scripts/generator/routine/SCSGSettings.js" type="module"></script>
<script src="scripts/generator/routine/SCSGUpdater.js" type="module"></script>
<script src="scripts/generator/scsg_main.js" type="module"></script>
<script src="scripts/generator/routine/scsg_data.js" type="module"></script>
<script src="scripts/generator/routine/scsg_infos.js" type="module"></script>
<script src="scripts/generator/routine/scsg_settings.js" type="module"></script>
<script src="scripts/generator/routine/scsg_updater.js" type="module"></script>

<!-- Managers -->
<script src="scripts/managers/PageManager.js" type="module"></script>
<script src="scripts/managers/page_manager.js" type="module"></script>

<!-- Math -->
<script src="scripts/math/Random.js" type="module"></script>
<script src="scripts/math/random.js" type="module"></script>

<!-- Collections -->
<script src="scripts/collections/names/EUANamesCollection.js" type="module"></script>
<!-- #region Collections -->
<!-- Name -->
<script src="scripts/collections/names/eua_names_collection.js" type="module"></script>

<!-- Special -->
<script src="scripts/collections/special/IntensityCollection.js" type="module"></script>

<!-- General -->
<script src="scripts/collections/general/OccupationsCollection.js" type="module"></script>
<script src="scripts/collections/general/CountriesCollection.js" type="module"></script>
<script src="scripts/collections/general/CivilStatusCollection.js" type="module"></script>

<!-- Physical -->
<script src="scripts/collections/physical/BloodTypeCollection.js" type="module"></script>
<script src="scripts/collections/physical/HeightCollection.js" type="module"></script>
<script src="scripts/collections/physical/WeightCollection.js" type="module"></script>
<script src="scripts/collections/physical/BodyTypeCollection.js" type="module"></script>

<!-- Appearance -->
<script src="scripts/collections/appearance/SkinToneCollection.js" type="module"></script>
<script src="scripts/collections/appearance/FaceShapesCollection.js" type="module"></script>
<!-- #endregion -->

<!-- Core -->
<script src="scripts/Main.js" type="module" defer></script>
<script src="scripts/main.js" type="module" defer></script>

<!-- STYLES -->
<link rel="stylesheet" href="styles/default.css">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const FaceShapesCollection = Object.freeze({
faceShapes: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const SkinToneCollection = Object.freeze({
skinTones: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const CivilStatusCollection = Object.freeze({
civilStatus: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const CountriesCollection = Object.freeze({
countries: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const OccupationsCollection = Object.freeze({
occupations: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const EUANamesCollection = Object.freeze({
masculine_names: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const BloodTypeCollection = Object.freeze({
bloodTypes: ["A", "B", "AB", "O"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const BodyTypeCollection = Object.freeze({
bodyTypes: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const HeightCollection = Object.freeze({
ageBasedHeightRange: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const WeightCollection = Object.freeze({
weightRangeBasedOnAge: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Random } from "../../math/Random.js";
import { Random } from "../../math/random.js";

export const IntensityCollection = Object.freeze({
intensities: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
//#region IMPORTS
// Names
import { EUANamesCollection } from "../../collections/names/EUANamesCollection.js";
import { EUANamesCollection } from "../../collections/names/eua_names_collection.js";

// General
import { OccupationsCollection } from "../../collections/general/OccupationsCollection.js";
import { CivilStatusCollection } from "../../collections/general/CivilStatusCollection.js";
import { CountriesCollection } from "../../collections/general/CountriesCollection.js";
import { OccupationsCollection } from "../../collections/general/occupations_collection.js";
import { CivilStatusCollection } from "../../collections/general/civil_status_collection.js";
import { CountriesCollection } from "../../collections/general/countries_collection.js";

// Physical
import { BloodTypeCollection } from "../../collections/physical/BloodTypeCollection.js";
import { HeightCollection } from "../../collections/physical/HeightCollection.js";
import { WeightCollection } from "../../collections/physical/WeightCollection.js";
import { BodyTypeCollection } from "../../collections/physical/BodyTypeCollection.js";
import { BloodTypeCollection } from "../../collections/physical/blood_type_collection.js";
import { HeightCollection } from "../../collections/physical/height_collection.js";
import { WeightCollection } from "../../collections/physical/weight_collection.js";
import { BodyTypeCollection } from "../../collections/physical/body_type_collection.js";

// Appearance
import { SkinToneCollection } from "../../collections/appearance/SkinToneCollection.js";
import { SkinToneCollection } from "../../collections/appearance/skin_tone_collection.js";

// Math
import { Random } from "../../math/Random.js";
import { FaceShapesCollection } from "../../collections/appearance/FaceShapesCollection.js";
import { IntensityCollection } from "../../collections/special/IntensityCollection.js";
import { Random } from "../../math/random.js";
import { FaceShapesCollection } from "../../collections/appearance/face_shapes_collection.js";
import { IntensityCollection } from "../../collections/special/intensity_collection.js";
//#endregion

export function SCSGData(settings) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { SCSGData } from "./routine/SCSGData.js";
import { SCSGGetCharacterInfos, SCSGSetCharacterInfos } from "./routine/SCSGInfos.js";
import { SCSGGetSettings } from "./routine/SCSGSettings.js";
import { SCSGUpdater } from "./routine/SCSGUpdater.js";
import { SCSGData } from "./routine/scsg_data.js";
import { SCSGGetCharacterInfos, SCSGSetCharacterInfos } from "./routine/scsg_infos.js";
import { SCSGGetSettings } from "./routine/scsg_settings.js";
import { SCSGUpdater } from "./routine/scsg_updater.js";

let settings;
let characterInfos;
Expand Down
4 changes: 2 additions & 2 deletions scripts/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { buildControlPanel, buildDynamicAppMenu } from "./managers/PageManager.js";
import { SCSGInitialize } from "./generator/SCSGMain.js";
import { buildControlPanel, buildDynamicAppMenu } from "./managers/page_manager.js";
import { SCSGInitialize } from "./generator/scsg_main.js";

// ==================================== //
// Initializers
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion styles/specials/credits.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
}

.ce-avatar-insanya {
background-image: url("/assets/graphics/avatars/insanya29_avatar.webp");
background-image: url("/assets/graphics/avatars/insanya_avatar.webp");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Expand Down

0 comments on commit e356a83

Please sign in to comment.