Compare commits

...
11 Commits
Author SHA1 Message Date
Jeremy Rimpo b3d27472cf Merge pull request #1949 from ModOrganizer2/251rc1
Update version to 2.5.1 RC 1
2023-12-16 16:47:18 -06:00
Jeremy Rimpo e1932b34ea Update version to 2.5.1 RC 1 2023-12-16 16:46:39 -06:00
Jeremy Rimpo 70a41a9b27 Merge pull request #1941 from ModOrganizer2/dummy-display-tweak
Change recordless plugin display to flag icon
2023-12-16 16:30:32 -06:00
Jeremy Rimpo 20aa98b511 Change recordless plugin display to flag icon 2023-12-05 19:23:09 -06:00
Mikaël Capelle 783c05478f Merge pull request #1937 from ModOrganizer2/null-category-fix
Null category fix
2023-12-03 09:04:41 +01:00
Jeremy Rimpo 0315a88bd8 Rename sort button to match UI 2023-12-02 15:53:29 -06:00
Jeremy Rimpo 026fec4468 Fix crash if no Nexus category is assigned 2023-12-02 15:52:25 -06:00
Jeremy Rimpo 04eff9750f Merge pull request #1926 from ModOrganizer2/2_5_x
Version 2.5.0
2023-11-29 00:05:32 -06:00
Jeremy Rimpo 22714e5cdc Version 2.5.0 2023-11-24 20:48:23 -06:00
Jeremy Rimpo 8dd1637d1d Merge pull request #1924 from ModOrganizer2/style_updates
Style updates
2023-11-20 12:07:21 -06:00
Jeremy Rimpo 2eade4c638 Style updates
- Remove Transparent Style directory (pulled in by MOB)
- Update Night Eyes to 1.2
2023-11-19 19:21:24 -06:00
75 changed files with 47 additions and 34 deletions
+1 -1
View File
@@ -127,7 +127,7 @@
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string notr="true">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Copyright © 2011-2016 Sebastian Herbord&lt;br/&gt;Copyright © 2016-2021 Mod Organizer 2 Contributors&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string notr="true">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Copyright © 2011-2016 Sebastian Herbord&lt;br/&gt;Copyright © 2016-2023 Mod Organizer 2 Contributors&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
+3 -2
View File
@@ -148,8 +148,9 @@ void CategoriesDialog::commitChanges()
for (int i = 0; i < ui->categoriesTable->rowCount(); ++i) {
int index = ui->categoriesTable->verticalHeader()->logicalIndex(i);
QVariantList nexusData =
ui->categoriesTable->item(index, 3)->data(Qt::UserRole).toList();
QVariantList nexusData;
if (ui->categoriesTable->item(index, 3) != nullptr)
nexusData = ui->categoriesTable->item(index, 3)->data(Qt::UserRole).toList();
std::vector<CategoryFactory::NexusCategory> nexusCats;
for (auto nexusCat : nexusData) {
nexusCats.push_back(CategoryFactory::NexusCategory(
+4 -2
View File
@@ -1245,8 +1245,6 @@ QVariant PluginList::fontData(const QModelIndex& modelIndex) const
result.setWeight(QFont::Bold);
if (m_ESPs[index].isLightFlagged || m_ESPs[index].hasLightExtension)
result.setItalic(true);
if (m_ESPs[index].hasNoRecords)
result.setStrikeOut(true);
return result;
}
@@ -1476,6 +1474,10 @@ QVariant PluginList::iconData(const QModelIndex& modelIndex) const
result.append(":/MO/gui/awaiting");
}
if (esp.hasNoRecords) {
result.append(":/MO/gui/unchecked-checkbox");
}
if (esp.isOverlayFlagged) {
result.append(":/MO/gui/instance_switch");
}
+36 -26
View File
@@ -1,4 +1,4 @@
/* Night Eyes theme v1.0.1 for Mod Organizer 2 by Ciathyza */
/* Night Eyes theme v1.2.0 for Mod Organizer 2 by Ciathyza */
/* https://github.com/ciathyza/mo2-themes */
/* Main Window ---------------------------------------------------------------- */
@@ -23,22 +23,21 @@ QMainWindow::separator
QAbstractItemView
{
background: #141414;
alternate-background-color: #1A1A1A;
alternate-background-color: #141414;
show-decoration-selected: 1;
selection-background-color: #251100;
selection-color: #AAAAAA;
selection-background-color: #001133;
selection-color: #0099EE;
}
QAbstractItemView::item:hover
{
background: #242424;
color: #FFCC88;
color: #FFFFFF;
}
QAbstractItemView::item:selected
{
background: #251100;
color: #FFCC88;
background: #001133;
color: #0099EE;
}
QAbstractScrollArea::corner
@@ -54,6 +53,7 @@ LinkLabel
qproperty-linkColor: #3399FF;
}
/* Toolbar -------------------------------------------------------------------- */
QToolBar
@@ -99,20 +99,20 @@ QTreeView
QTreeView::branch:hover
{
background: #242424;
color: #FFCC88;
background: #181818;
color: #FFFFFF;
}
QTreeView::branch:selected
{
background: #251100;
color: #FFCC88;
background: #001133;
color: #0099EE;
}
QTreeView::item:selected
{
background: #251100;
color: #FFCC88;
background: #001133;
color: #0099EE;
}
QTreeView::branch:has-children:!has-siblings:closed,
@@ -142,8 +142,8 @@ QListView::item:hover
QListView::item:selected
{
background: #251100;
color: #FFCC88;
background: #001133;
color: #0099EE;
}
QTextEdit
@@ -397,6 +397,7 @@ QHeaderView
background: #181818;
}
/* Table View Tab Headers */
QHeaderView::section
{
background: #141414;
@@ -435,12 +436,14 @@ QHeaderView::down-arrow
/* Context Menus, Toolbar Dropdowns, & Tooltips ------------------------------- */
QMenuBar {
QMenuBar
{
background: #181818;
border: 1px solid #181818;
}
QMenuBar::item:selected {
QMenuBar::item:selected
{
background: #242424;
color: #FFCC88;
}
@@ -492,6 +495,7 @@ QToolTip
QStatusBar::item {border: None;}
/* Progress Bars (Downloads) -------------------------------------------------- */
QProgressBar
@@ -632,13 +636,13 @@ QListWidget::item#executablesListBox
QWidget#downloadTab QAbstractScrollArea
{
/* background of the entire downloads tab */
background: #242424;
background: #141414;
}
DownloadListView QFrame
{
/* an entry on the Downloads tab */
background: #141414;
background: #181818;
}
DownloadListView QFrame#frame
@@ -659,19 +663,23 @@ DownloadListView QFrame:clicked
/* compact downloads view */
DownloadListView[downloadView=standard]::item {
DownloadListView[downloadView=standard]::item
{
padding: 16px;
}
DownloadListView[downloadView=compact]::item {
DownloadListView[downloadView=compact]::item
{
padding: 4px;
}
DownloadListView::item:hover {
DownloadListView::item:hover
{
padding: 0px;
}
DownloadListView::item:selected {
DownloadListView::item:selected
{
padding: 0px;
}
@@ -683,10 +691,12 @@ QProgressBar
margin: 0px;
}
QAbstractItemView[filtered=true] {
QAbstractItemView[filtered=true]
{
border: 2px solid #f00 !important;
}
QLineEdit[valid-filter=false] {
QLineEdit[valid-filter=false]
{
background-color: #661111 !important;
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 259 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 754 B

Some files were not shown because too many files have changed in this diff Show More