├── .gitignore ├── BestEnchSeq.pro ├── EnchantmentTable.csv ├── LICENSE ├── README.md ├── WeaponTable.csv ├── basic.cpp ├── basic.h ├── calculator.cpp ├── calculator.h ├── checkupdate.cpp ├── checkupdate.h ├── enchlist.cpp ├── enchlist.h ├── enchlistitem.cpp ├── enchlistitem.h ├── enchlistwidget.cpp ├── enchlistwidget.h ├── enchlistwidget.ui ├── feedback.cpp ├── feedback.h ├── fileoperate.cpp ├── fileoperate.h ├── flowlist.cpp ├── flowlist.h ├── flowlistitem.cpp ├── flowlistitem.h ├── flowlistwidget.cpp ├── flowlistwidget.h ├── flowlistwidget.ui ├── icon.qrc ├── itemeditor.cpp ├── itemeditor.h ├── itemeditor.ui ├── itemlist.cpp ├── itemlist.h ├── itemlistitem.cpp ├── itemlistitem.h ├── itemlistwidget.cpp ├── itemlistwidget.h ├── itemlistwidget.ui ├── itempool.cpp ├── itempool.h ├── libgcc_s_seh-1.dll ├── libstdc++-6.dll ├── libwinpthread-1.dll ├── logger.cpp ├── logger.h ├── logo.rc ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── res ├── bow.png ├── crossbow_standby.png ├── enchanted_book.png ├── fishing_rod.png ├── item_crafted.png ├── logo.ico ├── mace.png ├── netherite_axe.png ├── netherite_boots.png ├── netherite_chestplate.png ├── netherite_helmet.png ├── netherite_hoe.png ├── netherite_leggings.png ├── netherite_pickaxe.png ├── netherite_shovel.png ├── netherite_sword.png ├── pack.png └── trident.png ├── settings.cpp ├── settings.h ├── settings.ui ├── statusbarmanager.cpp ├── statusbarmanager.h ├── tableeditor.cpp ├── tableeditor.h ├── update.json ├── waitwidget.cpp └── waitwidget.h /.gitignore: -------------------------------------------------------------------------------- 1 | BestEnchSeq.pro.user 2 | build/ -------------------------------------------------------------------------------- /BestEnchSeq.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/BestEnchSeq.pro -------------------------------------------------------------------------------- /EnchantmentTable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/EnchantmentTable.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/README.md -------------------------------------------------------------------------------- /WeaponTable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/WeaponTable.csv -------------------------------------------------------------------------------- /basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/basic.cpp -------------------------------------------------------------------------------- /basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/basic.h -------------------------------------------------------------------------------- /calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/calculator.cpp -------------------------------------------------------------------------------- /calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/calculator.h -------------------------------------------------------------------------------- /checkupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/checkupdate.cpp -------------------------------------------------------------------------------- /checkupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/checkupdate.h -------------------------------------------------------------------------------- /enchlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlist.cpp -------------------------------------------------------------------------------- /enchlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlist.h -------------------------------------------------------------------------------- /enchlistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlistitem.cpp -------------------------------------------------------------------------------- /enchlistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlistitem.h -------------------------------------------------------------------------------- /enchlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlistwidget.cpp -------------------------------------------------------------------------------- /enchlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlistwidget.h -------------------------------------------------------------------------------- /enchlistwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/enchlistwidget.ui -------------------------------------------------------------------------------- /feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/feedback.cpp -------------------------------------------------------------------------------- /feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/feedback.h -------------------------------------------------------------------------------- /fileoperate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/fileoperate.cpp -------------------------------------------------------------------------------- /fileoperate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/fileoperate.h -------------------------------------------------------------------------------- /flowlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlist.cpp -------------------------------------------------------------------------------- /flowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlist.h -------------------------------------------------------------------------------- /flowlistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlistitem.cpp -------------------------------------------------------------------------------- /flowlistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlistitem.h -------------------------------------------------------------------------------- /flowlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlistwidget.cpp -------------------------------------------------------------------------------- /flowlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlistwidget.h -------------------------------------------------------------------------------- /flowlistwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/flowlistwidget.ui -------------------------------------------------------------------------------- /icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/icon.qrc -------------------------------------------------------------------------------- /itemeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemeditor.cpp -------------------------------------------------------------------------------- /itemeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemeditor.h -------------------------------------------------------------------------------- /itemeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemeditor.ui -------------------------------------------------------------------------------- /itemlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlist.cpp -------------------------------------------------------------------------------- /itemlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlist.h -------------------------------------------------------------------------------- /itemlistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlistitem.cpp -------------------------------------------------------------------------------- /itemlistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlistitem.h -------------------------------------------------------------------------------- /itemlistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlistwidget.cpp -------------------------------------------------------------------------------- /itemlistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlistwidget.h -------------------------------------------------------------------------------- /itemlistwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itemlistwidget.ui -------------------------------------------------------------------------------- /itempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itempool.cpp -------------------------------------------------------------------------------- /itempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/itempool.h -------------------------------------------------------------------------------- /libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/libstdc++-6.dll -------------------------------------------------------------------------------- /libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/libwinpthread-1.dll -------------------------------------------------------------------------------- /logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/logger.cpp -------------------------------------------------------------------------------- /logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/logger.h -------------------------------------------------------------------------------- /logo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/logo.rc -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /res/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/bow.png -------------------------------------------------------------------------------- /res/crossbow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/crossbow_standby.png -------------------------------------------------------------------------------- /res/enchanted_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/enchanted_book.png -------------------------------------------------------------------------------- /res/fishing_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/fishing_rod.png -------------------------------------------------------------------------------- /res/item_crafted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/item_crafted.png -------------------------------------------------------------------------------- /res/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/logo.ico -------------------------------------------------------------------------------- /res/mace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/mace.png -------------------------------------------------------------------------------- /res/netherite_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_axe.png -------------------------------------------------------------------------------- /res/netherite_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_boots.png -------------------------------------------------------------------------------- /res/netherite_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_chestplate.png -------------------------------------------------------------------------------- /res/netherite_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_helmet.png -------------------------------------------------------------------------------- /res/netherite_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_hoe.png -------------------------------------------------------------------------------- /res/netherite_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_leggings.png -------------------------------------------------------------------------------- /res/netherite_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_pickaxe.png -------------------------------------------------------------------------------- /res/netherite_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_shovel.png -------------------------------------------------------------------------------- /res/netherite_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/netherite_sword.png -------------------------------------------------------------------------------- /res/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/pack.png -------------------------------------------------------------------------------- /res/trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/res/trident.png -------------------------------------------------------------------------------- /settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/settings.cpp -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/settings.h -------------------------------------------------------------------------------- /settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/settings.ui -------------------------------------------------------------------------------- /statusbarmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/statusbarmanager.cpp -------------------------------------------------------------------------------- /statusbarmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/statusbarmanager.h -------------------------------------------------------------------------------- /tableeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/tableeditor.cpp -------------------------------------------------------------------------------- /tableeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/tableeditor.h -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/update.json -------------------------------------------------------------------------------- /waitwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/waitwidget.cpp -------------------------------------------------------------------------------- /waitwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dinosaur-MC/BestEnchSeq/HEAD/waitwidget.h --------------------------------------------------------------------------------