Skip to content

Commit

Permalink
Add non code files
Browse files Browse the repository at this point in the history
Icons and rpm stuff
  • Loading branch information
hashashin committed Sep 26, 2015
1 parent 09428d2 commit 06bc27c
Show file tree
Hide file tree
Showing 11 changed files with 772 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,5 @@ $RECYCLE.BIN/

# Mac desktop service store files
.DS_Store
GameData/notes/Plugins/notes.dll
GameData/notes/Plugins/notesRPM.dll
48 changes: 48 additions & 0 deletions GameData/notes/BasicMFDnotesPatch.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
@PROP[RasterPropMonitorBasicMFD]:NEEDS[notes|notesRPM]
{
@MODULE[RasterPropMonitor]
{
@PAGE[home]
{
// Change home page to one with kOS label
@text = notes/notes_home40x20.txt

// Change refresh rates, otherwise it look laggy
// Not so sure this actually works - you may want to change them by hand.
@refreshDrawRate = 1 // (Original: 2)
@refreshTextRate = 1 // (Original: 10)
@refreshDataRate = 2 // (Original: 20)
}

PAGE
{
// kOSRPMPage goes on top-right button, the last available.
// Maybe I should make a fancier MFD? ;)
name = notesRPMPage
button = button_G

PAGEHANDLER
{
//Class name is kOS Monitor
name = notesRPM

//Processors are named sanely
method = ContentProcessor
buttonClickMethod = ButtonProcessor

//This will set the size of the kOSProcessor TermWindow object
consoleWidth = 40
consoleHeight = 20

//Button definitions are settable
noteButton = 0
downButton = 1
infoButton = 2

//Text tint is also modifiable
textTint = [#009900ff]
textTintUnpowered = [#ffffff3e]
}
}
}
}
674 changes: 674 additions & 0 deletions GameData/notes/Plugins/LICENSE

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions GameData/notes/Plugins/PluginData/notes/notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Put notes here!
23 changes: 23 additions & 0 deletions GameData/notes/Plugins/ToolbarWrapper.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Copyright (c) 2013-2014, Maik Schreiber
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Binary file added GameData/notes/Textures/icon_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added GameData/notes/Textures/icon_on.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added GameData/notes/Textures/reload.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions GameData/notes/notes_home40x20.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[hw] ATT | GRAPH | TRGT | AUTO | VESSEL | IGNITOR | NOTES







Junk Systems Inc.
Advanced flight instruments
for every conceivable occasion






-[hw] HOME[/hw] RPM v{0} $&$ RPMVERSION

[hw] NAV | ORB | DOCK | DATA | CREW | RSRC | EXT
3 changes: 1 addition & 2 deletions notes/notes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
<PostBuildEvent>copy /y $(TargetPath) "$(SolutionDir)\GameData\notes\Plugins\"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
3 changes: 3 additions & 0 deletions notesRPM/notesRPM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy /y $(TargetPath) "$(SolutionDir)\GameData\notes\Plugins\"</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down

0 comments on commit 06bc27c

Please sign in to comment.