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: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 69fb0f918505
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 918fea46cbc6
Choose a head ref
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 1, 2021

  1. Next release is Hamilton.

    pleroy committed Nov 1, 2021
    Copy the full SHA
    7f51191 View commit details
  2. Merge pull request #3186 from pleroy/Hamilton

    Next release is Hamilton
    pleroy authored Nov 1, 2021
    Copy the full SHA
    d0d7657 View commit details

Commits on Nov 4, 2021

  1. Announce Halley

    pleroy authored Nov 4, 2021
    Copy the full SHA
    a6ff5b0 View commit details

Commits on Nov 7, 2021

  1. Copy the full SHA
    918fea4 View commit details
Showing with 6 additions and 8 deletions.
  1. +3 −5 README.md
  2. +3 −3 ksp_plugin_adapter/main_window.cs
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Principia

![⚠️](https://place-hold.it/10/f00000/000000&text=) _If you downloaded Hadamard before October 8, 23:10 UTC, you probably have a buggy version (see [#3144](https://github.com/mockingbirdnest/Principia/issues/3144)). Please download it again. If you have the correct version, the version string in the Principia UI says `2021100611-Hadamard-0-g5a4626303afea27800d7ef283ce66c54f98be3c8`. We apologize for the inconvenience._ ![⚠️](https://place-hold.it/10/f00000/000000&text=)
**[Halley](https://github.com/mockingbirdnest/Principia/wiki/Change-Log#halley), the November version of Principia, is available. Download it [here for 1.8.1, 1.9.1, 1.10.1, 1.11.0, 1.11.1, 1.11.2, and 1.12.2](https://bit.ly/3EBOgeN).**

**[Hadamard](https://github.com/mockingbirdnest/Principia/wiki/Change-Log#hadamard), the October version of Principia, is available with UI fixes. Download it [here for 1.8.1, 1.9.1, 1.10.1, 1.11.0, 1.11.1, 1.11.2, and 1.12.2](https://bit.ly/3itb0VK).**

**For the convenience of Chinese users, downloads from 腾讯微云: [Principia Hadamard for 1.8.1—1.12.2](https://share.weiyun.com/ssSDt5I1), [Trappist-1 for Principia](https://share.weiyun.com/5wVtWYQ).**
**For the convenience of Chinese users, downloads from 腾讯微云: [Principia Hadamard for 1.8.1—1.12.2](https://share.weiyun.com/LTSIJJLs), [Trappist-1 for Principia](https://share.weiyun.com/5wVtWYQ).**

Principia is a mod for Kerbal Space Program (KSP) which implements N-body and extended body gravitation. Instead of being within the sphere of influence of a single celestial body at any point in time, your vessels are influenced by all the celestials. This makes it possible to implement missions that are more complex and more realistic than in the stock game, especially if used in conjunction with a mod like RealSolarSystem which has real-life celestials.

@@ -20,4 +18,4 @@ The [change log](https://github.com/mockingbirdnest/Principia/wiki/Change-Log) g

Principia is released on every [new moon](https://en.wikipedia.org/wiki/New_moon) with whatever features and bug fixes are ready at the time. This ensures relatively timely improvements and bug fixes.

Download the binary (Ubuntu, macOS, and Windows) [here for 1.8.1, 1.9.1, 1.10.1, 1.11.0, 1.11.1, 1.11.2, and 1.12.2](https://bit.ly/3itb0VK). Download the [“Trappist-1 for Principia”](https://github.com/mockingbirdnest/Principia/wiki/Installing,-reporting-bugs,-and-frequently-asked-questions#installing-trappist-1-for-principia) mini-mod [here](https://bit.ly/2ZHf3Tt). Or, if you don't trust our binary, [build the mod](https://github.com/mockingbirdnest/Principia/blob/master/documentation/Setup.md) from the [Hadamard](https://github.com/mockingbirdnest/Principia/releases/tag/2021100611-Hadamard) release.
Download the binary (Ubuntu, macOS, and Windows) [here for 1.8.1, 1.9.1, 1.10.1, 1.11.0, 1.11.1, 1.11.2, and 1.12.2](https://bit.ly/3EBOgeN). Download the [“Trappist-1 for Principia”](https://github.com/mockingbirdnest/Principia/wiki/Installing,-reporting-bugs,-and-frequently-asked-questions#installing-trappist-1-for-principia) mini-mod [here](https://bit.ly/2ZHf3Tt). Or, if you don't trust our binary, [build the mod](https://github.com/mockingbirdnest/Principia/blob/master/documentation/Setup.md) from the [Halley](https://github.com/mockingbirdnest/Principia/releases/tag/2021110421-Halley) release.
6 changes: 3 additions & 3 deletions ksp_plugin_adapter/main_window.cs
Original file line number Diff line number Diff line change
@@ -6,10 +6,10 @@ namespace ksp_plugin_adapter {

internal class MainWindow : VesselSupervisedWindowRenderer {
// Update this section before each release.
private const string next_release_name = "Halley";
private const int next_release_lunation_number = 270;
private const string next_release_name = "Hamilton";
private const int next_release_lunation_number = 271;
private readonly DateTimeOffset next_release_date_ =
new DateTimeOffset(2021, 11, 04, 21, 14, 00, TimeSpan.Zero);
new DateTimeOffset(2021, 12, 04, 07, 43, 00, TimeSpan.Zero);

public MainWindow(PrincipiaPluginAdapter adapter,
FlightPlanner flight_planner,