Releases: LinuxUsersLinuxMint/PyAppDevKit
PyAppDevKit2.1.4
Update README.md
PyAppDevKit 2.1.3
PyAppDevKit2.1.3 Update PyAppDevKit.
PyAppDevKit 2.1.2
PyAppDevKit2.1.2 Update PyAppDevKit.
PyAppDevKit 2.1.1
PyAppDevKit2.1.1 Update PyAppDevKit.
PyAppDevKit 2.1
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/2.1/pyappdevkit.html
Yenilikler:
- Fonksiyonlar için parametreleri içeren switch.py adlı dosyanın adı parameters.py olarak değiştirilmiştir.
- time fonksiyonu artık birimleride destekliyor çeşitli zaman birimlerini kullanabilirsiniz.
- Artık geliştiricilerin dosyaları kaldırabilmesi için file_remove fonksiyonu oluşturulmuştur.
Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/2.1/pyappdevkit.html
Innovations:
- the file named switch.py containing parameters for functions has been renamed to parameters.py.
- The time function now supports units, so you can use various time units.
- file_remove function is now available for developers to remove files.
PyAppDevKit 2.0
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html
Yenilikler:
- Artık geliştiriciler tüm çıkış seçeneklerini kullanabilmelerini sağlayan "all_exit" fonksiyonunu kullanırken diyalogları değiştirmemeyi bunun yerine varsayılan diyalogları kullanmayı tercih ettiği zamanlarda diyalog dilini değiştirebilecek.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
all_exit(dialog_switch=OFF,lang=TR,ExitSelectDialog="",userTimeDialog="",exitDialog="",errormsgDialog="")
Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html
Innovations:
- Developers will now be able to change the dialog language when using the “all_exit” function, which allows them to use all exit options, but prefer not to change the dialogs and instead use the default dialogs.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
all_exit(dialog_switch=OFF,lang=EN,ExitSelectDialog="",userTimeDialog="",exitDialog="",errormsgDialog="")
PyAppDevKit 1.9
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html
Yenilikler:
- Artık geliştiriciler tüm çıkış seçeneklerini kullanabilmelerini sağlayan "all_exit" fonksiyonunu kullanırken diyalogları değiştirmemeyi bunun yerine varsayılan diyalogları kullanmayı tercih edebilecek.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
all_exit(dialog_switch=OFF,ExitSelectDialog="",userTimeDialog="",exitDialog="",errormsgDialog="")
Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html
Innovations:
- Developers can now choose not to change the dialogs when using the “all_exit” function, which allows them to use all exit options, and instead use the default dialogs.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
all_exit(dialog_switch=OFF,ExitSelectDialog=“”,userTimeDialog=“”,exitDialog=“”,errormsgDialog=“”)
PyAppDevKit 1.8
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html
Yenilikler:
- Artık PyAppDevKit dosya oluşturmayı destekliyor file fonksiyonu ile artık çok daha kolay bir şekilde dosya oluşturabilir ve belirttiğiniz kiplere göre işlem yapabilirsiniz.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
file(file_name="test.txt",file_mode="a",file_write="Hello World!")
Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.8/pyappdevkit.html
Innovations:
- PyAppDevKit now supports file creation With the file function, you can now create files much more easily and operate according to the modes you specify.
#!/usr/bin/python3
from LibFunc.pyappdevkit import *
file(file_name="test.txt",file_mode="a",file_write="Hello World!")
PyAppDevKit Python Library 1.7
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/TR/1.7/pyappdevkit.html
Yenilikler:
- "all_exit" fonksiyonunda gereksiz bir kod kaldırılmıştır.
- "program_info" fonksiyonunun ismi "app_info" olarak değiştirilmiştir ve "library_info" fonksiyonu gereksiz olduğu için kaldırılmıştır.
Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/EN/1.7/pyappdevkit.html
Innovations:
- Removed an unnecessary code in the “all_exit” function.
- The “program_info” function has been renamed to “app_info” and the “library_info” function has been removed as unnecessary.
PyAppDevKit Python Library 1.6.3
Yenilikler:
Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/TR/1.6.3/pyappdevkit.html
- Geliştiricilerin programları için hata mesajı oluşturmalarına olanak sağlayan error_msg fonksiyonu artık hata kodlarını ve destek bağlantısını da içeriyor.
Innovations:
Info: For detailed information about the PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/EN/1.6/pyappdevkit.html
- The error_msg function, which allows developers to generate error messages for their programs, now includes error codes and a support link.