Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: KSP-RO/RP-1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d1c80cec557d
Choose a base ref
...
head repository: KSP-RO/RP-1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1804d93560ef
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 8, 2018

  1. Updating Make to RP-1

    pap1723 committed Dec 8, 2018
    Copy the full SHA
    ed5df84 View commit details
  2. Delete New RP-0 Tech Tree.xlsx

    Very outdated
    pap1723 committed Dec 8, 2018
    Copy the full SHA
    1804d93 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 Makefile
  2. BIN New RP-0 Tech Tree.xlsx
  3. +2 −2 bin/makeversion
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

PROJ_NAME = $(shell basename `pwd`)

AVC := GameData/RP-0/RP-0.version
AVC := GameData/RP-0/RP-1.version

VERSION := $(shell git describe --tags)

Binary file removed New RP-0 Tech Tree.xlsx
Binary file not shown.
4 changes: 2 additions & 2 deletions bin/makeversion
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ use JSON::PP;
# Makes an RP-0.version file based upon existing git tags.
# License: Same as RP-0 itself.

my $VERSION_TEMPLATE = File::Spec->catdir($Bin,"../RP-0.version.in");
my $VERSION_TEMPLATE = File::Spec->catdir($Bin,"../RP-1.version.in");
my $json = JSON::PP->new->pretty;

my $avc_info = read_avc_tempalte($VERSION_TEMPLATE);
@@ -28,7 +28,7 @@ if (not $raw_version) {
$avc_info->{VERSION} = parse_version($raw_version);

# Write our file
my $version_file = File::Spec->catdir($Bin,"../GameData/RP-0/RP-0.version");
my $version_file = File::Spec->catdir($Bin,"../GameData/RP-0/RP-1.version");

open(my $version_fh, ">", $version_file);