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: 1.2.0:
- Refactoring - Config - Refactoring - Config

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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