Skip to content

Commit

Permalink
[VERSION] Bumped to v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hsandt committed Aug 25, 2020
1 parent f39a7a5 commit 5df56e2
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ deploy:
provider: releases
api_key:
secure: bfXQQ0AXGHgXiq0xOxhYQ2AXX/flQnxJh/+eA/HUGfwdoPDq0QTdqFA/3jEMWkJSsFKEBVKDjJGCt24QPxUIjTu91r1wyCNdL2KlNfnogRjWAVutRZxB/OC2HWR3kJtPjkFQBCsOXHBxGI3hMJL7LWr5WfNsSGMbcRMfvphxFT3ER8XBHAUEJY6roITm6noHroqQt8Uye+0+rkGqJ8QslKRqq8qBZMZeOiOrh6SBdlhsGw0KqNno/dMXQxx2ZCrh/VUeWjNvxzXe/mZjfBPbhvyecN7jz+FytEdAhdt1Dy37hhyOAkDfxLGGsH1YAAfinH8uFwoSRo0MH8fuhdXpT7jUXuAgP9/RS0FEiZDdX+J/FdncCbnoDfE9B4Dt3L3srISeiNwxKK5sx2kzyWvftK30pV1+zEgnbVEKGPIIeGb5wYWSCmzHf+CfLMk+bzeznTrpo/irY/vjoRBefNaVWXqLygrNWxM1uIMJae+OA3MYeUSYd1lpCyRw98i3GC7si68M9OaDeLoDjnqOLqvhurB/RmLzCU7mCYipn2kxykAOdevWN73cyx9VhdFy2GPE5VDw6EO6ZQP04KaeYxP2pgR4ts2kYWpVvf1PGg+2yN4QMkVhrWV+6dG2jtUO0BrCqt5Tpw0I3C3aFmBjjzFBBuKsZpr2yUG3roxnu1Dhww0=
file: build/picosonic_v3.1_release.p8
file: build/picosonic_v3.2_release.p8
on:
tags: 'true'
skip_cleanup: 'true'
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.2] - 2020-08-25
### Added
- Loop quadrant system (walk at any angle, jump orthogonally)

## [3.1] - 2020-08-11
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Works with PICO-8 0.2.0i and 0.2.1b.

## Features

Version: 3.1
Version: 3.2

### Physics

Expand Down
2 changes: 1 addition & 1 deletion build_game.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build_output_path="$(dirname "$0")/build"
author="hsandt"
title="pico-sonic"
cartridge_stem="picosonic"
version="3.1"
version="3.2"

help() {
echo "Build a PICO-8 cartridge with the passed config."
Expand Down
2 changes: 1 addition & 1 deletion build_itest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build_output_path="$(dirname "$0")/build"
author="hsandt"
title="pico-sonic itests (all)"
cartridge_stem="picosonic_itest_all"
version="3.1"
version="3.2"
config='itest'
# symbols='assert,log,visual_logger,tuner,profiler,mouse,itest'
# cheat needed to set debug motion mode
Expand Down
2 changes: 1 addition & 1 deletion build_pico8_utests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build_output_path="$(dirname "$0")/build"
author="hsandt"
title="pico-sonic pico8 utests (all)"
cartridge_stem="picosonic_pico8_utests_all"
version="3.1"
version="3.2"
config='debug'
symbols='assert,log,p8utest'

Expand Down
8 changes: 4 additions & 4 deletions export_cartridge_release.p8
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ __lua__
-- Paths are relative to PICO-8 carts directory.

cd("picosonic")
load("picosonic_v3.1_release.p8")
load("picosonic_v3.2_release.p8")
-- png cartridge export is done via SAVE
-- the metadata label is used automatically
save("picosonic_v3.1_release.p8.png")
save("picosonic_v3.2_release.p8.png")
-- other exports are done via EXPORT, and can use an icon
-- instead of the .p8.png label
-- icon is a 16x16 square => -s 2 tiles wide
-- with top-left at sprite 2 => -i 2
-- on pink (color 14) background => -c 14
export("picosonic_v3.1_release.bin -i 2 -s 2 -c 14")
export("picosonic_v3.1_release.html -i 2 -s 2 -c 14")
export("picosonic_v3.2_release.bin -i 2 -s 2 -c 14")
export("picosonic_v3.2_release.html -i 2 -s 2 -c 14")
2 changes: 1 addition & 1 deletion install_cartridge_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi

# Configuration: cartridge
cartridge_stem="picosonic"
version="3.1"
version="3.2"
config="$1"; shift

# option "png" will export the png cartridge
Expand Down
2 changes: 1 addition & 1 deletion run_game.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Configuration: cartridge
cartridge_stem="picosonic"
version="3.1"
version="3.2"
config="$1"; shift

run_cmd="pico8 -run build/${cartridge_stem}_v${version}_${config}.p8 -screenshot_scale 4 -gif_scale 4 -gif_len 60 $@"
Expand Down
2 changes: 1 addition & 1 deletion run_itest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Configuration: cartridge
cartridge_stem="picosonic_itest_all"
version="3.1"
version="3.2"

run_cmd="pico8 -run build/${cartridge_stem}_v${version}_itest.p8 -screenshot_scale 4 -gif_scale 4 $@"

Expand Down
2 changes: 1 addition & 1 deletion run_pico8_utests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Configuration: cartridge
cartridge_stem="picosonic_pico8_utests_all"
version="3.1"
version="3.2"

run_cmd="pico8 -run build/${cartridge_stem}_v${version}_debug.p8 -screenshot_scale 4 -gif_scale 4 $@"

Expand Down

0 comments on commit 5df56e2

Please sign in to comment.