Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
dirtyredz committed Feb 28, 2019
2 parents 09df69d + 649d8fa commit 57b47a9
Show file tree
Hide file tree
Showing 13 changed files with 5,328 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Thumbs.db
*.zip
/node_modules
11 changes: 11 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"src": {
"tagName": "v${version}"
},
"increment": "conventional:angular",

"github": {
"release": true,
"assets": ["*.zip"]
}
}
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
2.2.0
--Added Callable support
--Added 12/24 option to clock UI
--Support for 0.20 security update

2.1.1
--Fixed bug in PowerSystems
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ I encourage all modders to adopt this file structure as default, as its likely t

## Downloads
___
https://github.com/dirtyredz/MoveUI/releases/download/2.2.0/MoveUI.v2.2.0.zip
https://github.com/dirtyredz/MoveUI/releases/download/v2.2.0/MoveUI.v2.2.0.zip

https://github.com/dirtyredz/MoveUI/releases/download/2.1.1/MoveUI.v2.1.1.zip

Expand All @@ -135,8 +135,7 @@ https://github.com/dirtyredz/MoveUI/releases/download/1.0.0/MoveUI.v1.0.0.zip
## Changelog
___
2.2.0
--Added Callable support
--Added 12/24 option to clock UI
--Support for 0.20 security update

2.1.1
--Fixed bug in PowerSystems
Expand Down
7 changes: 3 additions & 4 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ A UI that displays notes added via the MoveUI Menu.
2. Drag and Drop the contents into the /Avorion/ directory,
File structure:
/avorion
|---->/data
|---->/data (do not place inside this directory)
|---->/mods
|---->/MoveUI

Expand All @@ -112,7 +112,7 @@ I encourage all modders to adopt this file structure as default, as its likely t

[b][size=24pt]Downloads[/size][/b]
[hr]
[url=https://github.com/dirtyredz/MoveUI/releases/download/2.2.0/MoveUI.v2.2.0.zip]MoveUI v2.2.0[/url]
[url=https://github.com/dirtyredz/MoveUI/releases/download/v2.2.0/MoveUI.v2.2.0.zip]MoveUI v2.2.0[/url]

Older Downloads
[spoiler]
Expand All @@ -136,8 +136,7 @@ Older Downloads
[b][size=24pt]Changelog[/size][/b]
[hr]
2.2.0
--Added Callable support
--Added 12/24 option to clock UI
--Support for 0.20 security update

2.1.1
--Fixed bug in PowerSystems
Expand Down
2 changes: 1 addition & 1 deletion mods/MoveUI/config/MoveUIConfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MoveUIConfig.Author = "Dirtyredz"
MoveUIConfig.ModName = "[MoveUI]"

MoveUIConfig.version = {
major=2, minor=1, patch = 0,
major=2, minor=2, patch = 0,
string = function()
return Config.version.major .. '.' ..
Config.version.minor .. '.' ..
Expand Down
1 change: 0 additions & 1 deletion mods/MoveUI/scripts/entity/MoveUI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ function MoveUIOptions.onAllowUIMovement(checkbox, value)
end
callable(MoveUIOptions, "onAllowUIMovement")


function MoveUIOptions.onEnableUI(checkbox, value, hudIndex)
if onClient() then
local hudIndex = 0
Expand Down
1 change: 0 additions & 1 deletion mods/MoveUI/scripts/player/DistCore.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ function DistCore.GetDistance(Distance)
end
callable(DistCore, "GetDistance")


function DistCore.updateClient(timeStep)
AllowMoving = MoveUI.AllowedMoving()
end
Expand Down
1 change: 0 additions & 1 deletion mods/MoveUI/scripts/player/FactionNotifier.lua
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ function FactionNotifier.detect()
end
end


FactionData = {}
FactionData.Owner = Owner
if not Faction(Owner) then FactionData.Owner = nil end
Expand Down
1 change: 1 addition & 0 deletions mods/MoveUI/scripts/player/ScrapyardLicenses.lua
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ function ScrapyardLicenses.SetFactionValues(allianceIndex,allianceLicenses,playe
end
Player():setValue("MoveUI#Licenses", MoveUI.Serialize(playerLicenses))
end
callable(ScrapyardLicenses, "SetFactionValues")

function ScrapyardLicenses.sync(values)
if onClient() then
Expand Down
Loading

0 comments on commit 57b47a9

Please sign in to comment.