Compare commits

..

No commits in common. "master" and "v1.2.0" have entirely different histories.

8 changed files with 7 additions and 11 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
__pycache__

View File

@ -1,6 +1,3 @@
1.3.0:
- Port to PySide6
1.2.0:
- Refactoring - Config

View File

@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
from PySide6.QtCore import QObject, Signal, QSettings
from PySide2.QtCore import QObject, Signal, QSettings
class Config(QObject):

View File

@ -18,7 +18,7 @@
# ============================================================
"""
import Falkon
from PySide6 import QtCore
from PySide2 import QtCore
from unloader.manager import UnloaderManager

View File

@ -18,7 +18,7 @@
# ============================================================
import gettext
import os
from PySide6 import QtCore
from PySide2 import QtCore
locale = QtCore.QLocale.system()
languages = [

View File

@ -20,7 +20,7 @@
import Falkon
import os
from PySide6 import QtCore
from PySide2 import QtCore
from unloader.Config import Config
from unloader.settingsDialog import SettingsDialog

View File

@ -6,6 +6,6 @@ Type=Service
X-Falkon-Type=Extension/Python
X-Falkon-Author=Juraj Oravec
X-Falkon-Email=jurajoravec@mailo.com
X-Falkon-Version=1.3.0
X-Falkon-Email=sgd.orava@gmail.com
X-Falkon-Version=1.1.0
X-Falkon-Settings=true

View File

@ -17,7 +17,7 @@
# ============================================================
import os
from PySide6 import QtCore, QtWidgets, QtUiTools
from PySide2 import QtCore, QtWidgets, QtUiTools
from unloader.i18n import i18n