Skip to content

Commit

Permalink
updated notes/version
Browse files Browse the repository at this point in the history
  • Loading branch information
Eruyome committed Nov 25, 2017
1 parent 6f86b1f commit e3b31b4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
Binary file modified Fallback.exe
Binary file not shown.
6 changes: 4 additions & 2 deletions lib/EasyIni.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,10 @@ class EasyIni
; (when the deletion code is used, at least, just counting the old ones works).
; repeat the update function recursively if more old sections are present than deleted ones.
oldSections := 0
totalSections := 0
for sectionName, sectionKeys in this
{
totalSections++
if (sections and !SourceIni.HasKey(sectionName)) {
oldSections++
}
Expand Down Expand Up @@ -612,8 +614,8 @@ class EasyIni
}
}
}
If (oldSections > removedSections and repeatedRecursions < 15) {

If (oldSections > removedSections and repeatedRecursions < totalSections) {
this.Update(SourceIni, sections, keys, values, top_comments, section_comments, key_comments, repeatedRecursions)
}

Expand Down
13 changes: 13 additions & 0 deletions resources/Updates_Trade.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
The following is a list of what has been updated, starting with 1.1.0

2.6.0-beta.5
================================================================================================
Added gem experience to ItemInfo tooltips and TradeMacro searches. For that certain new unique ring.
Settings menu rework:
The window is now wider and shorter in height to better acommodate different screensizes.
Improved readability with a different font.
Added an option to copy generated URLs to the clipboard instead of opening them.
Added a tab for AdditionalMacros settings:
Up until now you stil had to edit the .ini files to change these settings.
The hotkey sselection UI element is a bit experimental and might cause issues for people using non-latin keybaord layouts.
Unfortunately the default AHK UI element doen't support special keys and mouse buttons.
Editing via .ini file is still possible, of course.

2.6.0-beta.4
================================================================================================
Fixed an issue that caused temporary (race) leagues not being saved.
Expand Down
2 changes: 1 addition & 1 deletion resources/VersionTrade.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
TradeReleaseVersion := "v2.6.0-beta.4"
TradeReleaseVersion := "v2.6.0-beta.5"
TradeAHKVersionRequired := "1.1.26.00"

0 comments on commit e3b31b4

Please sign in to comment.