Skip to content

Commit 889846d

Browse files
authored
1.6.0 (#228)
* move to https * bump version
1 parent d4fdbb9 commit 889846d

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.github/workflows/windows-exe-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Windows Executable
22

33
env:
4-
AAA_VERSION: "1.5.2"
4+
AAA_VERSION: "1.6.0"
55

66
on:
77
workflow_dispatch:

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,7 @@ AzerothAuctionAssassin-windows/.vs
177177
AzerothAuctionAssassin-windows/AzerothAuctionAssassin/bin
178178
AzerothAuctionAssassin-windows/AzerothAuctionAssassin/obj
179179
AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/PublishProfiles/FolderProfile.pubxml.user
180-
AzerothAuctionAssassin-windows/AzerothAuctionAssassin/AzerothAuctionAssassin.csproj.user
180+
AzerothAuctionAssassin-windows/AzerothAuctionAssassin/AzerothAuctionAssassin.csproj.user
181+
182+
#Ignore cursor AI rules
183+
.cursor/rules/codacy.mdc

AzerothAuctionAssassin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66
from datetime import datetime
77

8-
AAA_VERSION = "1.5.2"
8+
AAA_VERSION = "1.6.0"
99

1010
windowsApp_Path = None
1111
try:
@@ -97,15 +97,15 @@ def set_region(self, region):
9797
def run(self):
9898
item_statistics = pd.DataFrame(
9999
data=requests.post(
100-
f"http://api.saddlebagexchange.com/api/wow/megaitemnames",
100+
f"https://api.saddlebagexchange.com/api/wow/megaitemnames",
101101
headers={"Accept": "application/json"},
102102
json={"region": self.region, "discount": 1},
103103
).json()
104104
)
105105

106106
pet_statistics = pd.DataFrame(
107107
data=requests.post(
108-
f"http://api.saddlebagexchange.com/api/wow/megaitemnames",
108+
f"https://api.saddlebagexchange.com/api/wow/megaitemnames",
109109
headers={"Accept": "application/json"},
110110
json={"region": self.region, "discount": 1, "pets": True},
111111
).json()
@@ -147,7 +147,7 @@ def __init__(self):
147147
self.setWindowIcon(icon)
148148

149149
self.token_auth_url = (
150-
"http://api.saddlebagexchange.com/api/wow/checkmegatoken"
150+
"https://api.saddlebagexchange.com/api/wow/checkmegatoken"
151151
)
152152

153153
self.eu_connected_realms = os.path.join(

AzerothAuctionTarget.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def run(self):
162162
return
163163

164164
marketshare_recommendations = requests.post(
165-
f"http://api.saddlebagexchange.com/api/wow/itemstats",
165+
f"https://api.saddlebagexchange.com/api/wow/itemstats",
166166
headers={"Accept": "application/json"},
167167
json=self.request_data,
168168
).json()
@@ -210,7 +210,7 @@ def run(self):
210210
- Emits the DataFrame through a completed signal."""
211211
item_statistics = pd.DataFrame(
212212
data=requests.post(
213-
f"http://api.saddlebagexchange.com/api/wow/megaitemnames",
213+
f"https://api.saddlebagexchange.com/api/wow/megaitemnames",
214214
headers={"Accept": "application/json"},
215215
json={"region": "EU", "discount": 1},
216216
).json()
@@ -1093,7 +1093,7 @@ def __init__(self):
10931093
icon = QIcon(icon_path)
10941094
self.setWindowIcon(icon)
10951095

1096-
self.token_auth_url = "http://api.saddlebagexchange.com/api/wow/checkmegatoken"
1096+
self.token_auth_url = "https://api.saddlebagexchange.com/api/wow/checkmegatoken"
10971097

10981098
# default to 10% discount, just use EU for now for less data
10991099
self.api_data_thread = Item_Statistics()

update-static-saddlebag-data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# get the upload timers
1111
upload_timers = requests.post(
12-
"http://api.saddlebagexchange.com/api/wow/uploadtimers",
12+
"https://api.saddlebagexchange.com/api/wow/uploadtimers",
1313
json={},
1414
).json()
1515
# write to StaticData/upload_timers.json
@@ -44,7 +44,7 @@
4444
"item_ids": [],
4545
}
4646
ilvl_items = requests.post(
47-
"http://api.saddlebagexchange.com/api/wow/itemdata",
47+
"https://api.saddlebagexchange.com/api/wow/itemdata",
4848
json=json_data,
4949
).json()
5050
# write to StaticData/ilvl_items.json

utils/api_requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def get_petnames(access_token):
122122

123123
# main static backups url
124124
RAW_GITHUB_BACKUP_PATH = "https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/refs/heads/main/StaticData"
125-
SADDLEBAG_URL = "http://api.saddlebagexchange.com"
125+
SADDLEBAG_URL = "https://api.saddlebagexchange.com"
126126

127127

128128
def get_update_timers_backup(REGION, NO_RUSSIAN_REALMS=True):

0 commit comments

Comments
 (0)