├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Assets ├── Babylon │ └── Additions │ │ ├── GreatPeopleHeroPanel.lua │ │ └── GreatPeopleHeroPanel.xml ├── Expansion1 │ ├── CityBanners │ │ ├── citybannerinstances.xml │ │ ├── citybannermanager.xml │ │ └── cityreligioninstances.xml │ ├── Replacements │ │ ├── CityPanel_Expansion1.lua │ │ ├── citypanelculture_CQUI.lua │ │ ├── citypaneloverview_expansion1_CQUI.lua │ │ ├── citystates.xml │ │ ├── citystates_CQUI_expansion1.lua │ │ ├── diplomacyactionview_CQUI_expansion1.lua │ │ ├── diplomacyribbon_CQUI_expansion1.lua │ │ ├── governmentscreen_CQUI_expansion1.lua │ │ ├── launchbar_CQUI_expansion1.lua │ │ ├── partialscreenhooks_CQUI_expansion1.lua │ │ ├── toppanel_CQUI_expansion1.lua │ │ ├── unitpanel_CQUI_expansion1.lua │ │ └── worldinput_CQUI_expansion1.lua │ └── Text │ │ ├── Gossip_Text.xml │ │ ├── Gossip_Text_de.xml │ │ ├── Gossip_Text_es.xml │ │ ├── Gossip_Text_fr.xml │ │ ├── Gossip_Text_ja.xml │ │ ├── Gossip_Text_ko.xml │ │ ├── Gossip_Text_pl.xml │ │ ├── Gossip_Text_pt.xml │ │ └── Gossip_Text_zh.xml ├── Expansion2 │ ├── CityBanners │ │ ├── citybannerinstances.xml │ │ ├── citybannermanager.xml │ │ └── cityreligioninstances.xml │ ├── Data │ │ └── Expansion2_Icons_FontIcons_CQUI.xml │ ├── Replacements │ │ ├── CityPanel_Expansion1.lua │ │ ├── citypaneloverview_expansion2_CQUI.lua │ │ ├── citypanelpower_CQUI.lua │ │ ├── citystates.xml │ │ ├── citystates_CQUI_expansion2.lua │ │ ├── diplomacyactionview.xml │ │ ├── diplomacyactionview_CQUI_expansion2.lua │ │ ├── diplomacyribbon_CQUI_expansion2.lua │ │ ├── governmentscreen_CQUI_expansion2.lua │ │ ├── ingame.lua │ │ ├── launchbar_CQUI_expansion2.lua │ │ ├── partialscreenhooks_CQUI_expansion2.lua │ │ ├── plottooltip_CQUI_expansion2.lua │ │ ├── toppanel_CQUI_expansion2.lua │ │ ├── unitpanel_CQUI_expansion2.lua │ │ └── worldinput_CQUI_expansion2.lua │ └── Text │ │ ├── Gossip_Text.xml │ │ ├── Gossip_Text_de.xml │ │ ├── Gossip_Text_es.xml │ │ ├── Gossip_Text_ja.xml │ │ └── Gossip_Text_zh.xml ├── Text │ ├── Gossip_Text.xml │ ├── Gossip_Text_de.xml │ ├── Gossip_Text_es.xml │ ├── Gossip_Text_fr.xml │ ├── Gossip_Text_it.xml │ ├── Gossip_Text_ja.xml │ ├── Gossip_Text_ko.xml │ ├── Gossip_Text_pl.xml │ ├── Gossip_Text_pt.xml │ ├── Gossip_Text_ru.xml │ ├── Gossip_Text_zh.xml │ ├── cqui_InGameText.xml │ ├── cqui_InGameText_de.xml │ ├── cqui_InGameText_it.xml │ ├── cqui_InGameText_ja.xml │ ├── cqui_InGameText_ko.xml │ ├── cqui_InGameText_ru.xml │ ├── cqui_InGameText_zh.xml │ ├── cqui_diplomacy_text.xml │ ├── cqui_diplomacy_text_de.xml │ ├── cqui_diplomacy_text_es.xml │ ├── cqui_diplomacy_text_fr.xml │ ├── cqui_diplomacy_text_it.xml │ ├── cqui_diplomacy_text_ja.xml │ ├── cqui_diplomacy_text_ko.xml │ ├── cqui_diplomacy_text_pl.xml │ ├── cqui_diplomacy_text_pt.xml │ ├── cqui_diplomacy_text_ru.xml │ ├── cqui_diplomacy_text_zh.xml │ ├── cqui_text_general.xml │ ├── cqui_text_general_de.xml │ ├── cqui_text_general_es.xml │ ├── cqui_text_general_fr.xml │ ├── cqui_text_general_it.xml │ ├── cqui_text_general_ja.xml │ ├── cqui_text_general_ko.xml │ ├── cqui_text_general_pl.xml │ ├── cqui_text_general_pt.xml │ ├── cqui_text_general_ru.xml │ ├── cqui_text_general_zh.xml │ ├── cqui_text_settings.xml │ ├── cqui_text_settings_de.xml │ ├── cqui_text_settings_es.xml │ ├── cqui_text_settings_fr.xml │ ├── cqui_text_settings_it.xml │ ├── cqui_text_settings_ja.xml │ ├── cqui_text_settings_ko.xml │ ├── cqui_text_settings_pl.xml │ ├── cqui_text_settings_pt.xml │ ├── cqui_text_settings_ru.xml │ └── cqui_text_settings_zh.xml ├── Texture │ ├── CQUI_GreatPeople_Background_Bottom.dds │ ├── CQUI_GreatPeople_Background_Repeat_Bottom.dds │ ├── CQUI_GreatPeople_Background_Repeat_Top.dds │ ├── CQUI_GreatPeople_Background_Top.dds │ ├── CQUI_Heroes_Background_Bottom.dds │ ├── CQUI_Heroes_Background_Repeat_Bottom.dds │ ├── CQUI_Heroes_Background_Repeat_Top.dds │ └── CQUI_Heroes_Background_Top.dds ├── UI │ ├── CQUICommon.lua │ ├── Choosers │ │ ├── CivicsChooser_CQUI.lua │ │ └── ResearchChooser_CQUI.lua │ ├── Civilopedia │ │ ├── civilopediascreen.lua │ │ └── civilopediasupport_CQUI.lua │ ├── DiplomacyDealView_CQUI.lua │ ├── Icons │ │ └── FontIcons_CQUI.xml │ ├── MapPinManager_CQUI.lua │ ├── Menus │ │ └── InGameTopOptionsMenu_CQUI.lua │ ├── Options_CQUI.lua │ ├── Panels │ │ ├── NotificationPanel_CQUI.lua │ │ ├── StatusMessagePanel_CQUI.lua │ │ ├── citypanel.lua │ │ ├── citypanel.xml │ │ ├── citypaneloverview.lua │ │ ├── citypaneloverview.xml │ │ ├── productionpanel_CQUI.lua │ │ ├── statusmessagepanel.xml │ │ ├── unitpanel_CQUI.lua │ │ └── unitpanel_CQUI_basegame.lua │ ├── PartialScreens │ │ ├── citystates.xml │ │ ├── citystates_CQUI.lua │ │ └── citystates_CQUI_basegame.lua │ ├── Popups │ │ ├── greatpeoplepopup.lua │ │ ├── greatpeoplepopup.xml │ │ ├── policyreminderpopup.lua │ │ ├── policyreminderpopup.xml │ │ ├── techciviccompletedpopup.lua │ │ └── wonderbuiltpopup_CQUI.lua │ ├── Screens │ │ ├── CivicsTree_CQUI.lua │ │ ├── TechTree_CQUI.lua │ │ ├── governmentscreen_CQUI.lua │ │ └── governmentscreen_CQUI_basegame.lua │ ├── ToolTips │ │ ├── plottooltip_CQUI.lua │ │ └── plottooltip_CQUI_basegame.lua │ ├── Utilities │ │ └── extendedrelationship.lua │ ├── WorldTracker_CQUI.lua │ ├── WorldView │ │ ├── CityBannerManager_CQUI.lua │ │ ├── citybannerinstances.xml │ │ ├── citybannermanager.xml │ │ ├── cityreligioninstances.xml │ │ ├── districtploticonmanager_CQUI.lua │ │ ├── plotinfo.xml │ │ └── plotinfo_CQUI.lua │ ├── WorldViewIconsManager_CQUI.lua │ ├── actionpanel.lua │ ├── diplomacyactionview.xml │ ├── diplomacyactionview_CQUI.lua │ ├── diplomacyactionview_CQUI_basegame.lua │ ├── diplomacydealview.xml │ ├── diplomacyribbon_CQUI.lua │ ├── diplomacyribbon_CQUI_basegame.lua │ ├── ingame.lua │ ├── launchbar.xml │ ├── launchbar_CQUI.lua │ ├── launchbar_CQUI_basegame.lua │ ├── options.xml │ ├── partialscreenhooks.xml │ ├── partialscreenhooks_CQUI.lua │ ├── partialscreenhooks_CQUI_basegame.lua │ ├── productionpanel.xml │ ├── toppanel_CQUI.lua │ ├── toppanel_CQUI_basegame.lua │ ├── unitflagmanager.xml │ ├── unitflagmanager_CQUI.lua │ ├── worldinput_CQUI.lua │ └── worldinput_CQUI_basegame.lua ├── cqui_data.sql ├── cqui_databaseschema.sql ├── cqui_main.lua ├── cqui_settings.sql ├── cqui_settingselement.lua ├── cqui_settingselement.xml ├── cqui_settingselement_lenscolors.lua ├── cqui_settingselement_lenscolors.xml ├── cqui_toplayer.lua └── cqui_toplayer.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CQUI.dep ├── CQUI.modinfo ├── Integrations ├── BES │ ├── Text │ │ ├── bes_text.xml │ │ ├── bes_text_de.xml │ │ ├── bes_text_es.xml │ │ ├── bes_text_fr.xml │ │ ├── bes_text_it.xml │ │ ├── bes_text_ja.xml │ │ ├── bes_text_ko.xml │ │ ├── bes_text_pt.xml │ │ └── bes_text_ru.xml │ └── UI │ │ ├── Choosers │ │ ├── espionagechooser.lua │ │ └── espionagechooser.xml │ │ ├── PartialScreens │ │ ├── espionageoverview.lua │ │ └── espionageoverview.xml │ │ └── espionagesupport.lua ├── BTS │ ├── Text │ │ ├── bts_text.xml │ │ ├── bts_text_de.xml │ │ ├── bts_text_es.xml │ │ ├── bts_text_fr.xml │ │ ├── bts_text_it.xml │ │ ├── bts_text_ja.xml │ │ ├── bts_text_ko.xml │ │ ├── bts_text_pl.xml │ │ ├── bts_text_pt.xml │ │ ├── bts_text_ru.xml │ │ └── bts_text_zh.xml │ ├── UI │ │ ├── Choosers │ │ │ ├── tradeoriginchooser.lua │ │ │ ├── tradeoriginchooser.xml │ │ │ ├── traderoutechooser.lua │ │ │ └── traderoutechooser.xml │ │ ├── tradeoverview.lua │ │ ├── tradeoverview.xml │ │ └── tradesupport.lua │ └── license.md ├── ML │ ├── DLC │ │ ├── Expansion1 │ │ │ └── UI │ │ │ │ └── Replacements │ │ │ │ └── minimappanel.xml │ │ └── Expansion2 │ │ │ └── UI │ │ │ └── Replacements │ │ │ └── minimappanel.xml │ ├── Lenses │ │ ├── Archaeologist │ │ │ └── ModLens_Archaeologist.lua │ │ ├── Barbarian │ │ │ └── ModLens_Barbarian.lua │ │ ├── Builder │ │ │ ├── BuilderLens_Config_Default.lua │ │ │ ├── BuilderLens_Support.lua │ │ │ └── ModLens_Builder.lua │ │ ├── CQUI_CitizenManagement │ │ │ └── ModLens_CQUI_CitizenManagement.lua │ │ ├── CityOverlap │ │ │ ├── ModLens_CityOverlap.lua │ │ │ └── ModLens_CityOverlap.xml │ │ ├── LensSupport.lua │ │ ├── Naturalist │ │ │ └── ModLens_Naturalist.lua │ │ ├── Resource │ │ │ ├── ModLens_Resource.lua │ │ │ └── ModLens_Resource.xml │ │ ├── Routes │ │ │ └── ModLens_Routes.lua │ │ ├── Scout │ │ │ └── ModLens_Scout.lua │ │ ├── UnitAction │ │ │ └── ModLens_UnitAction.lua │ │ └── Wonder │ │ │ └── ModLens_Wonder.lua │ ├── Text │ │ ├── morelenses_text.xml │ │ ├── morelenses_text_de.xml │ │ ├── morelenses_text_es.xml │ │ ├── morelenses_text_fr.xml │ │ ├── morelenses_text_it.xml │ │ ├── morelenses_text_ja.xml │ │ ├── morelenses_text_ko.xml │ │ ├── morelenses_text_pl.xml │ │ ├── morelenses_text_pt.xml │ │ ├── morelenses_text_ru.xml │ │ └── morelenses_text_zh.xml │ ├── UI │ │ ├── Panels │ │ │ ├── modallenspanel.lua │ │ │ └── modallenspanel.xml │ │ ├── hotkey_config.xml │ │ ├── minimappanel.lua │ │ └── minimappanel.xml │ ├── futuremodders.txt │ ├── license.md │ └── morelenses_colors.sql └── PQ │ └── license ├── LICENSE ├── README.md └── WorkshopArtifacts ├── BarbClansAndCityStateEnhancements.png ├── BuyMeACoffee.png ├── CQUILogo1200x800.png ├── Civ5CityManagement.png ├── DescriptionFormattedText.txt ├── DescriptionHeader.png ├── DescriptionSeperator.png ├── DiscordLink.png ├── GithubLink.png ├── GithubReport.png ├── MITLicense.png ├── PictureNotes.txt ├── RelocateAttackButtons.png ├── RoutesLens.png ├── SmartBanners.png ├── TitleGraphic.png └── VariousFeatures1.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Babylon/Additions/GreatPeopleHeroPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Babylon/Additions/GreatPeopleHeroPanel.lua -------------------------------------------------------------------------------- /Assets/Babylon/Additions/GreatPeopleHeroPanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Babylon/Additions/GreatPeopleHeroPanel.xml -------------------------------------------------------------------------------- /Assets/Expansion1/CityBanners/citybannerinstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/CityBanners/citybannerinstances.xml -------------------------------------------------------------------------------- /Assets/Expansion1/CityBanners/citybannermanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/CityBanners/citybannermanager.xml -------------------------------------------------------------------------------- /Assets/Expansion1/CityBanners/cityreligioninstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/CityBanners/cityreligioninstances.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/CityPanel_Expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/CityPanel_Expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/citypanelculture_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/citypanelculture_CQUI.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/citypaneloverview_expansion1_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/citypaneloverview_expansion1_CQUI.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/citystates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/citystates.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/citystates_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/citystates_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/diplomacyactionview_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/diplomacyactionview_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/diplomacyribbon_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/diplomacyribbon_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/governmentscreen_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/governmentscreen_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/launchbar_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/launchbar_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/partialscreenhooks_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/partialscreenhooks_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/toppanel_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/toppanel_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/unitpanel_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/unitpanel_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Replacements/worldinput_CQUI_expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Replacements/worldinput_CQUI_expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_de.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_es.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_fr.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_ja.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_ko.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_pl.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_pt.xml -------------------------------------------------------------------------------- /Assets/Expansion1/Text/Gossip_Text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion1/Text/Gossip_Text_zh.xml -------------------------------------------------------------------------------- /Assets/Expansion2/CityBanners/citybannerinstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/CityBanners/citybannerinstances.xml -------------------------------------------------------------------------------- /Assets/Expansion2/CityBanners/citybannermanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/CityBanners/citybannermanager.xml -------------------------------------------------------------------------------- /Assets/Expansion2/CityBanners/cityreligioninstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/CityBanners/cityreligioninstances.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Data/Expansion2_Icons_FontIcons_CQUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Data/Expansion2_Icons_FontIcons_CQUI.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/CityPanel_Expansion1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/CityPanel_Expansion1.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/citypaneloverview_expansion2_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/citypaneloverview_expansion2_CQUI.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/citypanelpower_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/citypanelpower_CQUI.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/citystates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/citystates.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/citystates_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/citystates_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/diplomacyactionview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/diplomacyactionview.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/diplomacyactionview_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/diplomacyactionview_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/diplomacyribbon_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/diplomacyribbon_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/governmentscreen_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/governmentscreen_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/ingame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/ingame.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/launchbar_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/launchbar_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/partialscreenhooks_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/partialscreenhooks_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/plottooltip_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/plottooltip_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/toppanel_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/toppanel_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/unitpanel_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/unitpanel_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Replacements/worldinput_CQUI_expansion2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Replacements/worldinput_CQUI_expansion2.lua -------------------------------------------------------------------------------- /Assets/Expansion2/Text/Gossip_Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Text/Gossip_Text.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Text/Gossip_Text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Text/Gossip_Text_de.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Text/Gossip_Text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Text/Gossip_Text_es.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Text/Gossip_Text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Text/Gossip_Text_ja.xml -------------------------------------------------------------------------------- /Assets/Expansion2/Text/Gossip_Text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Expansion2/Text/Gossip_Text_zh.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_de.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_es.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_fr.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_it.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_ja.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_ko.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_pl.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_pt.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_ru.xml -------------------------------------------------------------------------------- /Assets/Text/Gossip_Text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/Gossip_Text_zh.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_de.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_it.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_ja.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_ko.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_ru.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_InGameText_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_InGameText_zh.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_de.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_es.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_fr.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_it.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_ja.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_ko.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_pl.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_pt.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_ru.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_diplomacy_text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_diplomacy_text_zh.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_de.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_es.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_fr.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_it.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_ja.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_ko.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_pl.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_pt.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_ru.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_general_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_general_zh.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_de.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_es.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_fr.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_it.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_ja.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_ko.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_pl.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_pt.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_ru.xml -------------------------------------------------------------------------------- /Assets/Text/cqui_text_settings_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Text/cqui_text_settings_zh.xml -------------------------------------------------------------------------------- /Assets/Texture/CQUI_GreatPeople_Background_Bottom.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_GreatPeople_Background_Bottom.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_GreatPeople_Background_Repeat_Bottom.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_GreatPeople_Background_Repeat_Bottom.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_GreatPeople_Background_Repeat_Top.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_GreatPeople_Background_Repeat_Top.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_GreatPeople_Background_Top.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_GreatPeople_Background_Top.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_Heroes_Background_Bottom.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_Heroes_Background_Bottom.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_Heroes_Background_Repeat_Bottom.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_Heroes_Background_Repeat_Bottom.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_Heroes_Background_Repeat_Top.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_Heroes_Background_Repeat_Top.dds -------------------------------------------------------------------------------- /Assets/Texture/CQUI_Heroes_Background_Top.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/Texture/CQUI_Heroes_Background_Top.dds -------------------------------------------------------------------------------- /Assets/UI/CQUICommon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/CQUICommon.lua -------------------------------------------------------------------------------- /Assets/UI/Choosers/CivicsChooser_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Choosers/CivicsChooser_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Choosers/ResearchChooser_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Choosers/ResearchChooser_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Civilopedia/civilopediascreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Civilopedia/civilopediascreen.lua -------------------------------------------------------------------------------- /Assets/UI/Civilopedia/civilopediasupport_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Civilopedia/civilopediasupport_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/DiplomacyDealView_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/DiplomacyDealView_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Icons/FontIcons_CQUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Icons/FontIcons_CQUI.xml -------------------------------------------------------------------------------- /Assets/UI/MapPinManager_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/MapPinManager_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Menus/InGameTopOptionsMenu_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Menus/InGameTopOptionsMenu_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Options_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Options_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/NotificationPanel_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/NotificationPanel_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/StatusMessagePanel_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/StatusMessagePanel_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/citypanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/citypanel.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/citypanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/citypanel.xml -------------------------------------------------------------------------------- /Assets/UI/Panels/citypaneloverview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/citypaneloverview.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/citypaneloverview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/citypaneloverview.xml -------------------------------------------------------------------------------- /Assets/UI/Panels/productionpanel_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/productionpanel_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/statusmessagepanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/statusmessagepanel.xml -------------------------------------------------------------------------------- /Assets/UI/Panels/unitpanel_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/unitpanel_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Panels/unitpanel_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Panels/unitpanel_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/PartialScreens/citystates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/PartialScreens/citystates.xml -------------------------------------------------------------------------------- /Assets/UI/PartialScreens/citystates_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/PartialScreens/citystates_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/PartialScreens/citystates_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/PartialScreens/citystates_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/Popups/greatpeoplepopup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/greatpeoplepopup.lua -------------------------------------------------------------------------------- /Assets/UI/Popups/greatpeoplepopup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/greatpeoplepopup.xml -------------------------------------------------------------------------------- /Assets/UI/Popups/policyreminderpopup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/policyreminderpopup.lua -------------------------------------------------------------------------------- /Assets/UI/Popups/policyreminderpopup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/policyreminderpopup.xml -------------------------------------------------------------------------------- /Assets/UI/Popups/techciviccompletedpopup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/techciviccompletedpopup.lua -------------------------------------------------------------------------------- /Assets/UI/Popups/wonderbuiltpopup_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Popups/wonderbuiltpopup_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Screens/CivicsTree_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Screens/CivicsTree_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Screens/TechTree_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Screens/TechTree_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Screens/governmentscreen_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Screens/governmentscreen_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/Screens/governmentscreen_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Screens/governmentscreen_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/ToolTips/plottooltip_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/ToolTips/plottooltip_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/ToolTips/plottooltip_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/ToolTips/plottooltip_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/Utilities/extendedrelationship.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/Utilities/extendedrelationship.lua -------------------------------------------------------------------------------- /Assets/UI/WorldTracker_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldTracker_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/WorldView/CityBannerManager_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/CityBannerManager_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/WorldView/citybannerinstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/citybannerinstances.xml -------------------------------------------------------------------------------- /Assets/UI/WorldView/citybannermanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/citybannermanager.xml -------------------------------------------------------------------------------- /Assets/UI/WorldView/cityreligioninstances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/cityreligioninstances.xml -------------------------------------------------------------------------------- /Assets/UI/WorldView/districtploticonmanager_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/districtploticonmanager_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/WorldView/plotinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/plotinfo.xml -------------------------------------------------------------------------------- /Assets/UI/WorldView/plotinfo_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldView/plotinfo_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/WorldViewIconsManager_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/WorldViewIconsManager_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/actionpanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/actionpanel.lua -------------------------------------------------------------------------------- /Assets/UI/diplomacyactionview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacyactionview.xml -------------------------------------------------------------------------------- /Assets/UI/diplomacyactionview_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacyactionview_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/diplomacyactionview_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacyactionview_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/diplomacydealview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacydealview.xml -------------------------------------------------------------------------------- /Assets/UI/diplomacyribbon_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacyribbon_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/diplomacyribbon_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/diplomacyribbon_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/ingame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/ingame.lua -------------------------------------------------------------------------------- /Assets/UI/launchbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/launchbar.xml -------------------------------------------------------------------------------- /Assets/UI/launchbar_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/launchbar_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/launchbar_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/launchbar_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/options.xml -------------------------------------------------------------------------------- /Assets/UI/partialscreenhooks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/partialscreenhooks.xml -------------------------------------------------------------------------------- /Assets/UI/partialscreenhooks_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/partialscreenhooks_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/partialscreenhooks_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/partialscreenhooks_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/productionpanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/productionpanel.xml -------------------------------------------------------------------------------- /Assets/UI/toppanel_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/toppanel_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/toppanel_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/toppanel_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/UI/unitflagmanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/unitflagmanager.xml -------------------------------------------------------------------------------- /Assets/UI/unitflagmanager_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/unitflagmanager_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/worldinput_CQUI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/worldinput_CQUI.lua -------------------------------------------------------------------------------- /Assets/UI/worldinput_CQUI_basegame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/UI/worldinput_CQUI_basegame.lua -------------------------------------------------------------------------------- /Assets/cqui_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_data.sql -------------------------------------------------------------------------------- /Assets/cqui_databaseschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_databaseschema.sql -------------------------------------------------------------------------------- /Assets/cqui_main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_main.lua -------------------------------------------------------------------------------- /Assets/cqui_settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_settings.sql -------------------------------------------------------------------------------- /Assets/cqui_settingselement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_settingselement.lua -------------------------------------------------------------------------------- /Assets/cqui_settingselement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_settingselement.xml -------------------------------------------------------------------------------- /Assets/cqui_settingselement_lenscolors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_settingselement_lenscolors.lua -------------------------------------------------------------------------------- /Assets/cqui_settingselement_lenscolors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_settingselement_lenscolors.xml -------------------------------------------------------------------------------- /Assets/cqui_toplayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_toplayer.lua -------------------------------------------------------------------------------- /Assets/cqui_toplayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Assets/cqui_toplayer.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CQUI.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/CQUI.dep -------------------------------------------------------------------------------- /CQUI.modinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/CQUI.modinfo -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_de.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_es.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_fr.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_it.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_ja.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_ko.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_pt.xml -------------------------------------------------------------------------------- /Integrations/BES/Text/bes_text_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/Text/bes_text_ru.xml -------------------------------------------------------------------------------- /Integrations/BES/UI/Choosers/espionagechooser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/UI/Choosers/espionagechooser.lua -------------------------------------------------------------------------------- /Integrations/BES/UI/Choosers/espionagechooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/UI/Choosers/espionagechooser.xml -------------------------------------------------------------------------------- /Integrations/BES/UI/PartialScreens/espionageoverview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/UI/PartialScreens/espionageoverview.lua -------------------------------------------------------------------------------- /Integrations/BES/UI/PartialScreens/espionageoverview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/UI/PartialScreens/espionageoverview.xml -------------------------------------------------------------------------------- /Integrations/BES/UI/espionagesupport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BES/UI/espionagesupport.lua -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_de.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_es.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_fr.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_it.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_ja.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_ko.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_pl.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_pt.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_ru.xml -------------------------------------------------------------------------------- /Integrations/BTS/Text/bts_text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/Text/bts_text_zh.xml -------------------------------------------------------------------------------- /Integrations/BTS/UI/Choosers/tradeoriginchooser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/Choosers/tradeoriginchooser.lua -------------------------------------------------------------------------------- /Integrations/BTS/UI/Choosers/tradeoriginchooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/Choosers/tradeoriginchooser.xml -------------------------------------------------------------------------------- /Integrations/BTS/UI/Choosers/traderoutechooser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/Choosers/traderoutechooser.lua -------------------------------------------------------------------------------- /Integrations/BTS/UI/Choosers/traderoutechooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/Choosers/traderoutechooser.xml -------------------------------------------------------------------------------- /Integrations/BTS/UI/tradeoverview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/tradeoverview.lua -------------------------------------------------------------------------------- /Integrations/BTS/UI/tradeoverview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/tradeoverview.xml -------------------------------------------------------------------------------- /Integrations/BTS/UI/tradesupport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/UI/tradesupport.lua -------------------------------------------------------------------------------- /Integrations/BTS/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/BTS/license.md -------------------------------------------------------------------------------- /Integrations/ML/DLC/Expansion1/UI/Replacements/minimappanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/DLC/Expansion1/UI/Replacements/minimappanel.xml -------------------------------------------------------------------------------- /Integrations/ML/DLC/Expansion2/UI/Replacements/minimappanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/DLC/Expansion2/UI/Replacements/minimappanel.xml -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Archaeologist/ModLens_Archaeologist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Archaeologist/ModLens_Archaeologist.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Barbarian/ModLens_Barbarian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Barbarian/ModLens_Barbarian.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Builder/BuilderLens_Config_Default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Builder/BuilderLens_Config_Default.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Builder/BuilderLens_Support.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Builder/BuilderLens_Support.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Builder/ModLens_Builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Builder/ModLens_Builder.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/CQUI_CitizenManagement/ModLens_CQUI_CitizenManagement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/CQUI_CitizenManagement/ModLens_CQUI_CitizenManagement.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/CityOverlap/ModLens_CityOverlap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/CityOverlap/ModLens_CityOverlap.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/CityOverlap/ModLens_CityOverlap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/CityOverlap/ModLens_CityOverlap.xml -------------------------------------------------------------------------------- /Integrations/ML/Lenses/LensSupport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/LensSupport.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Naturalist/ModLens_Naturalist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Naturalist/ModLens_Naturalist.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Resource/ModLens_Resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Resource/ModLens_Resource.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Resource/ModLens_Resource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Resource/ModLens_Resource.xml -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Routes/ModLens_Routes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Routes/ModLens_Routes.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Scout/ModLens_Scout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Scout/ModLens_Scout.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/UnitAction/ModLens_UnitAction.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/UnitAction/ModLens_UnitAction.lua -------------------------------------------------------------------------------- /Integrations/ML/Lenses/Wonder/ModLens_Wonder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Lenses/Wonder/ModLens_Wonder.lua -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_de.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_es.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_fr.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_it.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_ja.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_ko.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_pl.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_pt.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_ru.xml -------------------------------------------------------------------------------- /Integrations/ML/Text/morelenses_text_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/Text/morelenses_text_zh.xml -------------------------------------------------------------------------------- /Integrations/ML/UI/Panels/modallenspanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/UI/Panels/modallenspanel.lua -------------------------------------------------------------------------------- /Integrations/ML/UI/Panels/modallenspanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/UI/Panels/modallenspanel.xml -------------------------------------------------------------------------------- /Integrations/ML/UI/hotkey_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/UI/hotkey_config.xml -------------------------------------------------------------------------------- /Integrations/ML/UI/minimappanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/UI/minimappanel.lua -------------------------------------------------------------------------------- /Integrations/ML/UI/minimappanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/UI/minimappanel.xml -------------------------------------------------------------------------------- /Integrations/ML/futuremodders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/futuremodders.txt -------------------------------------------------------------------------------- /Integrations/ML/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/license.md -------------------------------------------------------------------------------- /Integrations/ML/morelenses_colors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/ML/morelenses_colors.sql -------------------------------------------------------------------------------- /Integrations/PQ/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/Integrations/PQ/license -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/README.md -------------------------------------------------------------------------------- /WorkshopArtifacts/BarbClansAndCityStateEnhancements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/BarbClansAndCityStateEnhancements.png -------------------------------------------------------------------------------- /WorkshopArtifacts/BuyMeACoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/BuyMeACoffee.png -------------------------------------------------------------------------------- /WorkshopArtifacts/CQUILogo1200x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/CQUILogo1200x800.png -------------------------------------------------------------------------------- /WorkshopArtifacts/Civ5CityManagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/Civ5CityManagement.png -------------------------------------------------------------------------------- /WorkshopArtifacts/DescriptionFormattedText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/DescriptionFormattedText.txt -------------------------------------------------------------------------------- /WorkshopArtifacts/DescriptionHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/DescriptionHeader.png -------------------------------------------------------------------------------- /WorkshopArtifacts/DescriptionSeperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/DescriptionSeperator.png -------------------------------------------------------------------------------- /WorkshopArtifacts/DiscordLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/DiscordLink.png -------------------------------------------------------------------------------- /WorkshopArtifacts/GithubLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/GithubLink.png -------------------------------------------------------------------------------- /WorkshopArtifacts/GithubReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/GithubReport.png -------------------------------------------------------------------------------- /WorkshopArtifacts/MITLicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/MITLicense.png -------------------------------------------------------------------------------- /WorkshopArtifacts/PictureNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/PictureNotes.txt -------------------------------------------------------------------------------- /WorkshopArtifacts/RelocateAttackButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/RelocateAttackButtons.png -------------------------------------------------------------------------------- /WorkshopArtifacts/RoutesLens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/RoutesLens.png -------------------------------------------------------------------------------- /WorkshopArtifacts/SmartBanners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/SmartBanners.png -------------------------------------------------------------------------------- /WorkshopArtifacts/TitleGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/TitleGraphic.png -------------------------------------------------------------------------------- /WorkshopArtifacts/VariousFeatures1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civfanatics/CQUI_Community-Edition/HEAD/WorkshopArtifacts/VariousFeatures1.png --------------------------------------------------------------------------------