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-CKAN/CKAN
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f0747dd13312
Choose a base ref
...
head repository: KSP-CKAN/CKAN
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 038e8863b6f9
Choose a head ref
  • 5 commits
  • 5 files changed
  • 2 contributors

Commits on Dec 9, 2018

  1. Change some labels to textboxes in metadata tab

    Changed MetadataModuleName, MetadataIdentifier and MetadataModuleAuthor labels
    to textboxes so you can copy the text
    DasSkelett committed Dec 9, 2018
    Copy the full SHA
    645b1cf View commit details
  2. Copy the full SHA
    cdf52f8 View commit details

Commits on Dec 10, 2018

  1. Make modinfo textboxes transparent

    Created partial class  TransparentTextBox : TextBox in mainModInfo.Designer.cs
    to be able to have a transparent background
    DasSkelett committed Dec 10, 2018
    Copy the full SHA
    cef8749 View commit details
  2. Move TransparentTextBox to new file

    Moved TransparentTextBox to new file and changed the other labels to textboxes too
    DasSkelett committed Dec 10, 2018
    Copy the full SHA
    c4fdf27 View commit details

Commits on Dec 14, 2018

  1. Copy the full SHA
    038e886 View commit details
Showing with 163 additions and 109 deletions.
  1. +2 −1 CHANGELOG.md
  2. +1 −0 GUI/CKAN-GUI.csproj
  3. +128 −99 GUI/MainModInfo.Designer.cs
  4. +9 −9 GUI/MainModInfo.cs
  5. +23 −0 GUI/TransparentTextBox.cs
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
- [GUI] Add Launch KSP option to tray icon menu (#2597 by: HebaruSan; reviewed: politas)
- [GUI] Confirm quit with pending change set or conflicts (#2599 by: HebaruSan; reviewed: politas)
- [Multiple] Warn before launching KSP with installed incompatible modules (#2601 by: HebaruSan; reviewed: politas)
- [GUI] Allow selection of text in mod info panel (#2610 by: DasSkelett; reviewed: HebaruSan)

### Bugfixes
- [GUI] Fix platform checks and crash on Mac OS X (#2600 by: HebaruSan; reviewed: politas)
@@ -18,7 +19,7 @@ All notable changes to this project will be documented in this file.
- [GUI] Stop splitters from migrating between sessions (#2598 by: HebaruSan; reviewed: politas)
- [Multiple] Don't auto-install recommendations when auditing recommendations (#2606 by: HebaruSan; reviewed: politas)
- [GUI] Suppress wrapping of status bar in Mono (#2607 by: HebaruSan; reviewed: politas)
- [GUI] Remove unnecessary parameter in Configuration methods (#2608 by: DasSkellett; reviewed: HebaruSan)
- [GUI] Remove unnecessary parameter in Configuration methods (#2608 by: DasSkelett; reviewed: HebaruSan)
- [GUI] Revert unintentional tray icon change from #2587 (#2609 by: HebaruSan; reviewed: politas)

## v1.25.4
1 change: 1 addition & 0 deletions GUI/CKAN-GUI.csproj
Original file line number Diff line number Diff line change
@@ -237,6 +237,7 @@
<Compile Include="YesNoDialog.Designer.cs">
<DependentUpon>YesNoDialog.cs</DependentUpon>
</Compile>
<Compile Include="TransparentTextBox.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AboutDialog.resx">
Loading