mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Fixed links to github in the repo to account for the transfer to the new github organization.
This commit is contained in:
parent
4bb2ab73c1
commit
977845e2f4
@ -11,7 +11,7 @@ Note that you may need to remove the filter for open bugs if it's something we'v
|
||||
|
||||
## Making content for Liberation
|
||||
|
||||
You can create new campaigns : See [campaign creation wiki](https://github.com/Khopa/dcs_liberation/wiki/Custom-Campaigns).
|
||||
You can create new campaigns : See [campaign creation wiki](https://github.com/dcs-liberation/dcs_liberation/wiki/Custom-Campaigns).
|
||||
You can also improve existing campaigns.
|
||||
|
||||
You can then submit new campaigns on the "campaigns" channel on Discord, or by making a pull request if you are comfortable with git.
|
||||
|
||||
12
README.md
12
README.md
@ -2,12 +2,12 @@
|
||||
|
||||
[](https://patreon.com/khopa)
|
||||
|
||||
[](https://github.com/Khopa/dcs_liberation/releases)
|
||||
[](https://github.com/dcs-liberation/dcs_liberation/releases)
|
||||
|
||||
[](https://discord.gg/bKrtrkJ)
|
||||
|
||||
[](https://github.com/Khopa/dcs_liberation)
|
||||
[](https://github.com/Khopa/dcs_liberation/issues)
|
||||
[](https://github.com/dcs-liberation/dcs_liberation)
|
||||
[](https://github.com/dcs-liberation/dcs_liberation/issues)
|
||||

|
||||
|
||||
## About DCS Liberation
|
||||
@ -18,9 +18,9 @@ It is an external program that generates full and complex DCS missions and manag
|
||||
|
||||
## Downloads
|
||||
|
||||
Latest release is available here : https://github.com/Khopa/dcs_liberation/releases
|
||||
Latest release is available here : https://github.com/dcs-liberation/dcs_liberation/releases
|
||||
|
||||
To download preview builds of the next version of DCS Liberation, see https://github.com/Khopa/dcs_liberation/wiki/Preview-builds.
|
||||
To download preview builds of the next version of DCS Liberation, see https://github.com/dcs-liberation/dcs_liberation/wiki/Preview-builds.
|
||||
|
||||
## Bugs and feature requests
|
||||
|
||||
@ -28,7 +28,7 @@ If you need to report a bug or want to suggest a new feature, you can do this on
|
||||
|
||||
## Roadmap
|
||||
|
||||
Our plans for future releases can be found on our [Projects page](https://github.com/dcs-liberation/dcs_liberation/projects). Each planned release has a Project, and the page for that project has columns for to do, in progress, and done. Items in the Done column are in the [preview build](https://github.com/Khopa/dcs_liberation/wiki/Preview-builds) for that release. Items in the To do column are planned to be added to that release.
|
||||
Our plans for future releases can be found on our [Projects page](https://github.com/dcs-liberation/dcs_liberation/projects). Each planned release has a Project, and the page for that project has columns for to do, in progress, and done. Items in the Done column are in the [preview build](https://github.com/dcs-liberation/dcs_liberation/wiki/Preview-builds) for that release. Items in the To do column are planned to be added to that release.
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ Saves from 2.5 are not compatible with 3.0.
|
||||
|
||||
## Features/Improvements
|
||||
|
||||
* **[Campaign]** Ground units can now be transferred by road, airlift, and cargo ship. See https://github.com/Khopa/dcs_liberation/wiki/Unit-Transfers for more information.
|
||||
* **[Campaign]** Ground units can now be transferred by road, airlift, and cargo ship. See https://github.com/dcs-liberation/dcs_liberation/wiki/Unit-Transfers for more information.
|
||||
* **[Campaign]** Ground units can no longer be sold. To move units to a new location, transfer them.
|
||||
* **[Campaign]** Ground units must now be recruited at a base with a factory and transferred to their destination. When buying units in the UI, the purchase will automatically be fulfilled at the closest factory, and a transfer will be created on the next turn.
|
||||
* **[UI]** Campaigns generated for an older or newer version of the game will now be marked as incompatible. They can still be played, but bugs may be present.
|
||||
|
||||
@ -78,14 +78,14 @@ class ProcurementAi:
|
||||
def sell_incomplete_squadrons(self) -> float:
|
||||
# Selling incomplete squadrons gives us more money to spend on the next
|
||||
# turn. This serves as a short term fix for
|
||||
# https://github.com/Khopa/dcs_liberation/issues/41.
|
||||
# https://github.com/dcs-liberation/dcs_liberation/issues/41.
|
||||
#
|
||||
# Only incomplete squadrons which are unlikely to get used will be sold
|
||||
# rather than all unused aircraft because the unused aircraft are what
|
||||
# make OCA strikes worthwhile.
|
||||
#
|
||||
# This option is only used by the AI since players cannot cancel sales
|
||||
# (https://github.com/Khopa/dcs_liberation/issues/365).
|
||||
# (https://github.com/dcs-liberation/dcs_liberation/issues/365).
|
||||
total = 0.0
|
||||
for cp in self.game.theater.control_points_for(self.is_player):
|
||||
inventory = self.game.aircraft_inventory.for_control_point(cp)
|
||||
|
||||
@ -74,7 +74,7 @@ class RussianNavyGroupGenerator(ShipGroupGenerator):
|
||||
|
||||
if include_cc:
|
||||
# Only include the Moskva for now, the Pyotry Velikiy is an unkillable monster.
|
||||
# See https://github.com/Khopa/dcs_liberation/issues/567
|
||||
# See https://github.com/dcs-liberation/dcs_liberation/issues/567
|
||||
self.add_unit(
|
||||
Cruiser_1164_Moskva,
|
||||
"CC1",
|
||||
|
||||
@ -18,7 +18,7 @@ class ClosestAirfields:
|
||||
self.target = target
|
||||
# This cache is configured once on load, so it's important that it is
|
||||
# complete and deterministic to avoid different behaviors across loads.
|
||||
# E.g. https://github.com/Khopa/dcs_liberation/issues/819
|
||||
# E.g. https://github.com/dcs-liberation/dcs_liberation/issues/819
|
||||
self.closest_airfields: List[ControlPoint] = sorted(
|
||||
all_control_points, key=lambda c: self.target.distance_to(c)
|
||||
)
|
||||
|
||||
@ -206,7 +206,7 @@ class RadioRegistry:
|
||||
except StopIteration:
|
||||
# In the event of too many channel users, fail gracefully by reusing
|
||||
# the last channel.
|
||||
# https://github.com/Khopa/dcs_liberation/issues/598
|
||||
# https://github.com/dcs-liberation/dcs_liberation/issues/598
|
||||
channel = radio.last_channel
|
||||
logging.warning(
|
||||
f"No more free channels for {radio.name}. Reusing {channel}."
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
#define MyAppName "DCS Liberation"
|
||||
#define MyAppVersion "{{version}}"
|
||||
#define MyAppPublisher "Khopa"
|
||||
#define MyAppURL "https://github.com/Khopa/dcs_liberation/wiki"
|
||||
#define MyAppURL "https://github.com/dcs-liberation/dcs_liberation/wiki"
|
||||
#define MyAppExeName "liberation_main.exe"
|
||||
|
||||
[Setup]
|
||||
|
||||
@ -8,10 +8,10 @@ from .liberation_theme import get_theme_icons
|
||||
|
||||
|
||||
URLS: Dict[str, str] = {
|
||||
"Manual": "https://github.com/khopa/dcs_liberation/wiki",
|
||||
"Repository": "https://github.com/khopa/dcs_liberation",
|
||||
"Manual": "https://github.com/dcs-liberation/dcs_liberation/wiki",
|
||||
"Repository": "https://github.com/dcs-liberation/dcs_liberation",
|
||||
"ForumThread": "https://forums.eagle.ru/showthread.php?t=214834",
|
||||
"Issues": "https://github.com/khopa/dcs_liberation/issues",
|
||||
"Issues": "https://github.com/dcs-liberation/dcs_liberation/issues",
|
||||
}
|
||||
|
||||
LABELS_OPTIONS = ["Full", "Abbreviated", "Dot Only", "Off"]
|
||||
|
||||
@ -143,7 +143,7 @@ class QLiberationWindow(QMainWindow):
|
||||
self.openGithubAction = QAction("&Github Repo", self)
|
||||
self.openGithubAction.setIcon(CONST.ICONS["Github"])
|
||||
self.openGithubAction.triggered.connect(
|
||||
lambda: webbrowser.open_new_tab("https://github.com/khopa/dcs_liberation")
|
||||
lambda: webbrowser.open_new_tab("https://github.com/dcs-liberation/dcs_liberation")
|
||||
)
|
||||
|
||||
def initToolbar(self):
|
||||
@ -202,7 +202,7 @@ class QLiberationWindow(QMainWindow):
|
||||
help_menu.addAction(
|
||||
"&Releases",
|
||||
lambda: webbrowser.open_new_tab(
|
||||
"https://github.com/Khopa/dcs_liberation/releases"
|
||||
"https://github.com/dcs-liberation/dcs_liberation/releases"
|
||||
),
|
||||
)
|
||||
help_menu.addAction(
|
||||
@ -309,7 +309,7 @@ class QLiberationWindow(QMainWindow):
|
||||
"<h3>DCS Liberation "
|
||||
+ VERSION
|
||||
+ "</h3>"
|
||||
+ "<b>Source code :</b> https://github.com/khopa/dcs_liberation"
|
||||
+ "<b>Source code :</b> https://github.com/dcs-liberation/dcs_liberation"
|
||||
+ "<h4>Authors</h4>"
|
||||
+ "<p>DCS Liberation was originally developed by <b>shdwp</b>, DCS Liberation 2.0 is a partial rewrite based on this work by <b>Khopa</b>."
|
||||
"<h4>Contributors</h4>"
|
||||
|
||||
@ -92,7 +92,7 @@ class QPackageDialog(QDialog):
|
||||
self.tot_column.addWidget(self.auto_asap)
|
||||
|
||||
self.tot_help_label = QLabel(
|
||||
'<a href="https://github.com/Khopa/dcs_liberation/wiki/Mission-planning"><span style="color:#FFFFFF;">Help</span></a>'
|
||||
'<a href="https://github.com/dcs-liberation/dcs_liberation/wiki/Mission-planning"><span style="color:#FFFFFF;">Help</span></a>'
|
||||
)
|
||||
self.tot_help_label.setAlignment(Qt.AlignCenter)
|
||||
self.tot_help_label.setOpenExternalLinks(True)
|
||||
|
||||
@ -18,7 +18,7 @@ class QFlightPayloadTab(QFrame):
|
||||
|
||||
# Docs Link
|
||||
docsText = QLabel(
|
||||
'<a href="https://github.com/Khopa/dcs_liberation/wiki/Custom-Loadouts"><span style="color:#FFFFFF;">How to create your own default loadout</span></a>'
|
||||
'<a href="https://github.com/dcs-liberation/dcs_liberation/wiki/Custom-Loadouts"><span style="color:#FFFFFF;">How to create your own default loadout</span></a>'
|
||||
)
|
||||
docsText.setAlignment(Qt.AlignCenter)
|
||||
docsText.setOpenExternalLinks(True)
|
||||
|
||||
@ -208,7 +208,7 @@ class FactionSelection(QtWidgets.QWizardPage):
|
||||
|
||||
# Docs Link
|
||||
docsText = QtWidgets.QLabel(
|
||||
'<a href="https://github.com/Khopa/dcs_liberation/wiki/Custom-Factions"><span style="color:#FFFFFF;">How to create your own faction</span></a>'
|
||||
'<a href="https://github.com/dcs-liberation/dcs_liberation/wiki/Custom-Factions"><span style="color:#FFFFFF;">How to create your own faction</span></a>'
|
||||
)
|
||||
docsText.setAlignment(Qt.AlignCenter)
|
||||
docsText.setOpenExternalLinks(True)
|
||||
@ -400,7 +400,7 @@ class TheaterConfiguration(QtWidgets.QWizardPage):
|
||||
|
||||
# Docs Link
|
||||
docsText = QtWidgets.QLabel(
|
||||
'<a href="https://github.com/Khopa/dcs_liberation/wiki/Custom-Campaigns"><span style="color:#FFFFFF;">How to create your own theater</span></a>'
|
||||
'<a href="https://github.com/dcs-liberation/dcs_liberation/wiki/Custom-Campaigns"><span style="color:#FFFFFF;">How to create your own theater</span></a>'
|
||||
)
|
||||
docsText.setAlignment(Qt.AlignCenter)
|
||||
docsText.setOpenExternalLinks(True)
|
||||
|
||||
@ -85,7 +85,7 @@ NEW_GROUND_UNIT_RECRUITMENT_TOOLTIP = (
|
||||
)
|
||||
NEW_GROUND_UNIT_RECRUITMENT_BEHAVIOR_LABEL = (
|
||||
"Enable new ground unit recruitment behavior<br />"
|
||||
'<a href="https://github.com/Khopa/dcs_liberation/issues/986">'
|
||||
'<a href="https://github.com/dcs-liberation/dcs_liberation/issues/986">'
|
||||
'<span style="color:#FFFFFF;">More information.</span></a>'
|
||||
)
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
-- configuration file for the JTAC Autolase framework
|
||||
--
|
||||
-- This configuration is tailored for a mission generated by DCS Liberation
|
||||
-- see https://github.com/Khopa/dcs_liberation
|
||||
-- see https://github.com/dcs-liberation/dcs_liberation
|
||||
-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
-- JTACAutolase plugin - configuration
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
-- configuration file for the LotATC Export script
|
||||
--
|
||||
-- This configuration is tailored for a mission generated by DCS Liberation
|
||||
-- see https://github.com/Khopa/dcs_liberation
|
||||
-- see https://github.com/dcs-liberation/dcs_liberation
|
||||
-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
-- LotATC Export plugin - configuration
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
-- see https://github.com/walder/Skynet-IADS
|
||||
--
|
||||
-- This configuration is tailored for a mission generated by DCS Liberation
|
||||
-- see https://github.com/Khopa/dcs_liberation
|
||||
-- see https://github.com/dcs-liberation/dcs_liberation
|
||||
-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
-- Skynet-IADS plugin - configuration
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
<p>
|
||||
For more information, see the mission planning documentation on
|
||||
<a href="https://github.com/Khopa/dcs_liberation/wiki/Mission-planning">
|
||||
<a href="https://github.com/dcs-liberation/dcs_liberation/wiki/Mission-planning">
|
||||
the wiki</a>.
|
||||
</p>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user