mirror of
https://github.com/limo-app/limo.git
synced 2025-12-23 23:07:52 -05:00
update appstream metadata
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
</developer>
|
||||
|
||||
<name>Limo</name>
|
||||
<summary>Mod manager with LOOT integration</summary>
|
||||
<summary>Mod Manager</summary>
|
||||
|
||||
<metadata_license>MIT</metadata_license>
|
||||
<project_license>GPL-3.0-or-later</project_license>
|
||||
@@ -39,6 +39,17 @@
|
||||
<content_rating type="oars-1.1" />
|
||||
|
||||
<releases>
|
||||
<release version="1.0.6" date="2024-09-04">
|
||||
<description>
|
||||
<p>Added sym link support</p>
|
||||
<ul>
|
||||
<li>Added sym link deployment type</li>
|
||||
<li>Added check for external changes before deployment</li>
|
||||
<li>Fixed file conflicts window displaying incorrect winner</li>
|
||||
<li>Reinstall from local now remembers mod name and version</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.0.5.1" date="2024-08-29">
|
||||
<description>
|
||||
<p>Added log files</p>
|
||||
|
||||
@@ -167,7 +167,7 @@ li.checked::marker { content: "\2612"; }
|
||||
<item row="2" column="0" colspan="3">
|
||||
<widget class="QLabel" name="sym_link_label">
|
||||
<property name="text">
|
||||
<string>Sym link deployment may cause issues in rare cases, but can, unlike hard link deployment, be used across filesystems. If possible, prefer hard links.</string>
|
||||
<string>Sym link deployment works across filesystems, unlike hard like deployment. If this causes issues, try hard links instead.</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
|
||||
@@ -190,7 +190,8 @@ void ApplicationManager::handleAddDeployerError(int code,
|
||||
emit sendError("Error",
|
||||
"Could not create hard link from\n\"" + QString(staging_dir.string().c_str()) +
|
||||
"\"\nto\n\"" + QString(dest_dir.string().c_str()) + "\".\n" +
|
||||
"Ensure that both directories are on the same partition!");
|
||||
"Ensure that both directories are on the same partition!\n"
|
||||
"Alternatively: Switch to sym link deployment.");
|
||||
else if(code == 3)
|
||||
emit sendError("Error",
|
||||
"Could no copy files\n\"" + QString(staging_dir.string().c_str()) +
|
||||
|
||||
Reference in New Issue
Block a user