Skip to content

Commit b6eef08

Browse files
committed
- Two updated translations;
- A small bugfix in a connect statement.
1 parent cb0b033 commit b6eef08

File tree

8 files changed

+367
-331
lines changed

8 files changed

+367
-331
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.5.0 (dev)
2+
BugFix: RepoEditor would not compile with Qt5 lib (thanks to Philm).
3+
Added support for KStatusNotifier while in KDE (thanks to brcha).
4+
Updated translations.
5+
16
0.4.2
27
BugFix: when searching AUR pkgs, given search string was not being matched by package
38
descriptions.

THANKS

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A very special thanks goes to:
66
- Bernardo M. Savone (Bersil), for testing and spreading the word
77
- Damián Nohales (eagleoneraptor), for pkgfile support
88
- Edgar Aloísio Berger, for spreading the word by email
9+
- Filip Brcic (brcha), for KStatusNotifier support
910
- Giuseppe Calà (gcala), for merging changes from Oktopi's code
1011
- Jordi (dmnmsc), for testing in Chakra Linux
1112
- Jose Martinez (dsngjoe), for testing under Cinnamon

notifier/octopi-notifier/mainwindow.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ void MainWindow::initSystemTrayIcon()
9696
// disable "standard" actions (restore & quit)
9797
#ifdef KSTATUS
9898
m_systemTrayIcon->setStandardActionsEnabled(false);
99-
#endif
100-
99+
#else
101100
connect ( m_systemTrayIcon , SIGNAL( activated( QSystemTrayIcon::ActivationReason ) ),
102101
this, SLOT( execSystemTrayActivated ( QSystemTrayIcon::ActivationReason ) ) );
102+
#endif
103103

104104
m_pacmanHelperClient = new PacmanHelperClient("org.octopi.pacmanhelper", "/", QDBusConnection::systemBus(), 0);
105105
connect(m_pacmanHelperClient, SIGNAL(syncdbcompleted()), this, SLOT(afterPacmanHelperSyncDatabase()));

resources/translations/octopi_ru.qm

-108 Bytes
Binary file not shown.

resources/translations/octopi_ru.ts

+179-164
Large diffs are not rendered by default.

resources/translations/octopi_uz.qm

104 Bytes
Binary file not shown.

resources/translations/octopi_uz.ts

+179-164
Large diffs are not rendered by default.

src/strconstants.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class StrConstants{
3333
}
3434

3535
static QString getApplicationVersion(){
36-
return "0.4.2";
36+
return "0.5.0 (dev)";
3737
}
3838

3939
static QString getApplicationCliHelp(){

0 commit comments

Comments
 (0)