├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── docker-build.yml │ ├── electron-exe-build.yml │ ├── lint.yaml │ ├── linters.yaml │ └── windows-exe-build.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── AzerothAuctionAssassin-windows ├── AzerothAuctionAssassin.sln └── AzerothAuctionAssassin │ ├── AzerothAuctionAssassin.csproj │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── Resources │ ├── Lib.zip │ ├── app.zip │ ├── appVersion.txt │ └── python.zip │ └── icon.ico ├── AzerothAuctionAssassin.py ├── AzerothAuctionAssassinData ├── eu-wow-connected-realm-ids.json ├── euclassic-wow-connected-realm-ids.json ├── eusodclassic-wow-connected-realm-ids.json ├── example_desired_ilvl.json ├── example_desired_ilvl_list.json ├── example_desired_items.json ├── example_desired_pet_ilvl_list.json ├── example_desired_pets.json ├── example_mega_data.json ├── na-wow-connected-realm-ids.json ├── naclassic-wow-connected-realm-ids.json └── nasodclassic-wow-connected-realm-ids.json ├── AzerothAuctionTarget.py ├── Dockerfile ├── LICENSE ├── README.md ├── StaticData ├── bonuses.json ├── ilvl_items.json ├── item_names.json ├── pet_names.json └── upload_timers.json ├── breeze_resources.py ├── docker-compose.yml ├── icon.ico ├── icon.png ├── mega_alerts.py ├── node-ui ├── index.html ├── main.js ├── mega-alerts.js ├── preload.js ├── realm-data.js ├── renderer.js └── styles.css ├── package.json ├── requirements.in ├── requirements.txt ├── run ├── target.png ├── update-static-saddlebag-data.py └── utils ├── api_requests.py ├── bonus_ids.py ├── helpers.py ├── mega_data_setup.py └── realm_data.py /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/electron-exe-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/workflows/electron-exe-build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/linters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/workflows/linters.yaml -------------------------------------------------------------------------------- /.github/workflows/windows-exe-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.github/workflows/windows-exe-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/.prettierrc -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin.sln -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/AzerothAuctionAssassin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/AzerothAuctionAssassin.csproj -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Program.cs -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Properties/Resources.resx -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/Lib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/Lib.zip -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/app.zip -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/appVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/appVersion.txt -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/python.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/Resources/python.zip -------------------------------------------------------------------------------- /AzerothAuctionAssassin-windows/AzerothAuctionAssassin/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin-windows/AzerothAuctionAssassin/icon.ico -------------------------------------------------------------------------------- /AzerothAuctionAssassin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassin.py -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/eu-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/eu-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/euclassic-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/euclassic-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/eusodclassic-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/eusodclassic-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_desired_ilvl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/example_desired_ilvl.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_desired_ilvl_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/example_desired_ilvl_list.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_desired_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/example_desired_items.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_desired_pet_ilvl_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/example_desired_pet_ilvl_list.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_desired_pets.json: -------------------------------------------------------------------------------- 1 | { 2 | "3390": 2700 3 | } -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/example_mega_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/example_mega_data.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/na-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/na-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/naclassic-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/naclassic-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionAssassinData/nasodclassic-wow-connected-realm-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionAssassinData/nasodclassic-wow-connected-realm-ids.json -------------------------------------------------------------------------------- /AzerothAuctionTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/AzerothAuctionTarget.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/README.md -------------------------------------------------------------------------------- /StaticData/bonuses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/StaticData/bonuses.json -------------------------------------------------------------------------------- /StaticData/ilvl_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/StaticData/ilvl_items.json -------------------------------------------------------------------------------- /StaticData/item_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/StaticData/item_names.json -------------------------------------------------------------------------------- /StaticData/pet_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/StaticData/pet_names.json -------------------------------------------------------------------------------- /StaticData/upload_timers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/StaticData/upload_timers.json -------------------------------------------------------------------------------- /breeze_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/breeze_resources.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/icon.png -------------------------------------------------------------------------------- /mega_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/mega_alerts.py -------------------------------------------------------------------------------- /node-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/index.html -------------------------------------------------------------------------------- /node-ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/main.js -------------------------------------------------------------------------------- /node-ui/mega-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/mega-alerts.js -------------------------------------------------------------------------------- /node-ui/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/preload.js -------------------------------------------------------------------------------- /node-ui/realm-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/realm-data.js -------------------------------------------------------------------------------- /node-ui/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/renderer.js -------------------------------------------------------------------------------- /node-ui/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/node-ui/styles.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/package.json -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/requirements.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/run -------------------------------------------------------------------------------- /target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/target.png -------------------------------------------------------------------------------- /update-static-saddlebag-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/update-static-saddlebag-data.py -------------------------------------------------------------------------------- /utils/api_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/utils/api_requests.py -------------------------------------------------------------------------------- /utils/bonus_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/utils/bonus_ids.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/mega_data_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/utils/mega_data_setup.py -------------------------------------------------------------------------------- /utils/realm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff14-advanced-market-search/AzerothAuctionAssassin/HEAD/utils/realm_data.py --------------------------------------------------------------------------------