Skip to content

Commit 8f0c6a8

Browse files
committed
support Oxy's new palette scheme
1 parent 1f6de8e commit 8f0c6a8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.vs/N++Assistant/v16/.suo

16.5 KB
Binary file not shown.

Form1.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,11 @@ private void DownloadStuff()
193193

194194
// populate community map packs from spreadsheet link
195195
// https://docs.google.com/spreadsheets/d/1M9W3_jk3nULledALJNzRDRRpNhIofeTD2SF8ES6vCy8/edit#gid=0
196+
// https://docs.google.com/spreadsheets/d/18PshamVuDNyH396a7U3YDFQmCw18s4gIVZ_WrFODRd4/edit#gid=1470738075
196197
if (communityMapPacksList.Items.Count == 0)
197198
{
198199
//communityMapPacksList.Items.Clear();
199-
PopulateListBoxWithSpreadsheetData(communityMapPacksList, 1, COMMUNITY_MAPPACKS, new APIKey().key, "Map Packs");
200+
PopulateListBoxWithSpreadsheetData(communityMapPacksList, 2, COMMUNITY_MAPPACKS, new APIKey().key, "Map Packs");
200201
installCommunityMapPack.Enabled = false;
201202
statusLabel.Text = "Getting community map packs spreadsheet data ...";
202203
}
@@ -761,7 +762,7 @@ private void installCommunityPalette_Click(object sender, EventArgs e)
761762
if (mapSheet.sheetId.Equals(COMMUNITY_PALETTES) == true)
762763
{
763764
Cell[,] data = mapSheet.sheetData.Data;
764-
myStringWebResource = data[3, communityPalettesList.SelectedIndex + 1].Value;
765+
myStringWebResource = data[3, communityPalettesList.SelectedIndex + 1].raw.hyperlink;
765766
}
766767
}
767768

Popcron.Sheets/HighLevel/Cell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public ExtendedValue ExtendedValue
6363
}
6464
}
6565

66-
private CellData raw;
66+
public CellData raw;
6767

6868
internal Cell()
6969
{

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("0.6.4.0")]
37-
[assembly: AssemblyFileVersion("0.6.4.0")]
36+
[assembly: AssemblyVersion("0.6.5.0")]
37+
[assembly: AssemblyFileVersion("0.6.5.0")]
3838
[assembly: NeutralResourcesLanguage("en")]

0 commit comments

Comments
 (0)