Skip to content

Commit a7c4ee8

Browse files
committed
Update version number and README
1 parent b4486a5 commit a7c4ee8

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ The game is available at [clickercookie.github.io](https://clickercookie.github.
1313
## Contributing
1414
### Dependencies
1515
Run `npm install` to install dependencies.
16+
17+
You will also need to [install Sass](https://sass-lang.com/install/). Dart Sass is recommended, but you can also install the pure JavaScript implementation with `npm install -g sass`.
1618
### Building
17-
Run `npm run build` to compile, `.js` files will be placed under the `public/` directory. You can then create a local web server (something like `npx serve`) and navigate to that directory.
19+
Run `npm run build` to compile, `.js` and `.css` files will be placed under the `public/` directory. You can then create a local web server (something like `npx serve`) and navigate to that directory.
1820
### Creating a "dev" environment
19-
I am royally terrible at writing NPM scripts, so we don't really have an `npm run dev` like some other projects do. Instead, we run `npx serve` and `npx tsc --watch` in two different terminals (lol). This may change later.
21+
I am royally terrible at writing NPM scripts, so we don't really have an `npm run dev` like some other projects do. Instead, we run `npx serve`, `npx tsc --watch`, and `sass src/scss/main.scss public/style.css --no-source-map --watch` in three different terminals (lol). This may change later.
2022

2123
## Licensing
2224
This project is licensed under the GNU GPL-3.0 License - see the LICENSE file for details.

src/ts/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export interface GameSaveData {
6666

6767
export class Game implements SaveProvider<GameSaveData> {
6868
// --- Important game-wide constants ---
69-
public static readonly VERSION: string = "0.7";
69+
public static readonly VERSION: string = "0.7.1";
7070
public static readonly VERSION_BRANCH: VersionBranch = (location.pathname == "/develop/index.html" || location.pathname == "/develop" || location.pathname == "/develop/") ? 2 : (location.pathname == "/beta/index.html" || location.pathname == "/beta" || location.pathname == "/beta/") ? 1 : 0;
7171
public static readonly IN_DEVELOPMENT: boolean = (location.hostname === "localhost" || location.hostname === "127.0.0.1") ? true : false; // automatically toggles if hosted locally
7272
public static readonly GITHUB_REPO: string = "https://github.com/clickercookie/clickercookie.github.io";

0 commit comments

Comments
 (0)