IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

PureBasic Discussion :

PureBasic 6.10 est disponible sur votre compte


Sujet :

PureBasic

  1. #1
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 est disponible sur votre compte
    Je m'étais éloigné des écrans pendant un petit moment, j'ai laissé passer pas mal de versions (essentiellement des corrections de bugs), alors me revoici avec une petite annonce qui date déjà du 22 décembre 2023.

    We were hard at work to be able to release this new beta of PureBasic so you could play with it during Xmas if you have some holidays 8). It was meant to be a medium sized release, but Fr34k decided to weight in and added a lot of commands, so it's now officially a big release ! Check for yourself:

    • Added: WebViewGadget(), BindWebViewCallback(), UnbindWebViewCallback(), WebViewEvaluateScript() (Windows, OSX, GTK3)
    • Added: CompareStructure(), CompareArray(), CompareList() and CompareMap() functions
    • Added: CustomSortList() and CustomSortArray() functions to Sort library
    • Added: CatchPack(), PackEntryDate()
    • Added: #PB_Cipher_HMAC flag to fingerprint functions
    • Added: CreatePasswordHash() and VerifyPasswordHash() functions (BCrypt algorithm)
    • Added: DeriveCipherKey() to create a cipher key from a password (PBKDF2 algorithm)
    • Added: SvgVectorOutput() for all OS
    • Added: PdfVectorOutput() for all OS
    • Added: DateUTC() to get the date in UTC time
    • Added: ConvertDate(Date, #PB_Date_LocalTime/#PB_Date_UTC) to convert the date between UTC and localtime
    • Added: AddPackDirectory(#Packer, PackedDirectoryName$) for empty directory
    • Added: UseDialogOpenGLGadget() to avoid opengl dependencies by default when using dialogs.
    • Added: UseDialogScintillaGadget() to avoid big lib dependency by default when using dialogs.
    • Added: Case-insensitive subsystem support on Linux
    • Added: 'Encoding' optional parameter to OpenPreference() to handle properly UTF-8 files without BOM
    • Added: '#PB_Preference_NoBOM' flags for CreatePreference() to create UTF-8 preference files without BOM
    • Added: --listfunctions/constants/interfaces and --querystructure support to Windows compiler.
    • Added: #PB_EventType_ColumnClick for ListIconGadget()
    • Added: #PB_String_EscapeJSON support to EscapeString() and UnescapeString().
    • Added: Parent window support to all requesters
    • Added: runtime warning if CreateThread() is used without ThreadSafe mode
    • Added: #PB_EventType_Refresh support for ExplorerListGadget() (Window only)
    • Added: GadgetItemID() support for PanelGadget() (Windows only)
    • Added: WebGadget based on Edge component with the #PB_Web_Edge constant (Windows only)
    • Added: localhost binding for InitFastCGI()
    • Added: SystrayIconMenu() to automatically display a menu when clicking on the icon
    • Added: ListIconGaget() column alignment support
    • Updated: Toolchain on Windows now use VisualStudio 2022 and new MSVCRT for faster PureBasic programs and easier external libs integration.
    • Updated: Date library for full 64bit support (new range is year 1601 to 9999)
    • Updated: Minimum version for Linux x86 is now Debian 12
    • Updated: Minimum version for Raspberry is now Debian 12 based PI OS
    • Changed: Scintilla is now linked statically on Windows (distributing the scintilla.dll along your executable isn't needed anymore)
    • Changed: the SysTray lib on Linux now use AppIndicator to support modern Linux distro in GTK3
    • Changed: deprecated DESFingerprint() function - use the new CreatePasswordHash() instead.
    • Removed: --listpath on Linux/OSX (now use --output to specify the output file)
    • Removed: Windows XP support. Minimum supported version is now Windows Vista.



    As planed, we dropped the Windows XP support so we can now easily include cutting edge libraries like WebView and remove a lot of patches all accross the code base. Here is a small WebView example to get you started.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    Html$ =  ~"<button id=\"increment\">Tap me</button>\n"+
    ~"<div>You tapped <span id=\"count\">0</span> time(s).</div>\n"+
    ~"<button id=\"compute\">Compute</button>\n"+
    ~"<div>Result of computation: <span id=\"compute-result\">0</span></div>\n"+
    ~"<script>\n"+
    ~"  const [incrementElement, countElement, computeElement, "+
    ~"computeResultElement] =\n"+
    ~"    document.querySelectorAll(\"#increment, #count, #compute, "+
    ~"#compute-result\");\n"+
    ~"  document.addEventListener(\"DOMContentLoaded\", () => {\n"+
    ~"    incrementElement.addEventListener(\"click\", () => {\n"+
    ~"      window.increment().then(result => {\n"+
    ~"        countElement.textContent = result.count;\n"+
    ~"      });\n"+
    ~"    });\n"+
    ~"    computeElement.addEventListener(\"click\", () => {\n"+
    ~"      computeElement.disabled = true;\n"+
    ~"      window.compute(6, 7).then(result => {\n"+
    ~"        computeResultElement.textContent = result;\n"+
    ~"        computeElement.disabled = false;\n"+
    ~"      });\n"+
    ~"    });\n"+
    ~"  });\n"+
    ~"</script>";
     
    Procedure IncrementJS(Json$)
      Static i
      Debug "IncrementJS "+Json$
      i+1
      ProcedureReturn UTF8(~"{ \"count\": "+Str(i)+ "}")
    EndProcedure
     
     
    Procedure ComputeJS(Json$)
      Debug "ComputeJS "+Json$
      ProcedureReturn UTF8(~"150")
    EndProcedure
     
     
    OpenWindow(0, 100, 100, 400, 400, "Hello", #PB_Window_SystemMenu)
     
    WebViewGadget(0, 0, 0, 400, 400)
    SetGadgetText(0, Html$)
     
    BindWebViewCallback(0, "increment", @IncrementJS())
    BindWebViewCallback(0, "compute", @ComputeJS())
     
    Repeat 
      Event = WaitWindowEvent()
    Until Event = #PB_Event_CloseWindow

    More examples for new functions can be found here:
    https://www.purebasic.fr/english/vie...613171#p613171

    Have Fun !

    The Fantaisie Software Team
    Source de l'information
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  2. #2
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 2
    2024-01-12: beta 2 released, focused on bug fixes and improvements:
    • Added: UseDialogWebGadget() to avoid WebGadget dependencies by default when using dialogs.
    • Updated: Unicode file support for Windows compiler
    • Updated: Used libvlc instead of the old xine lib on Linux to play movies
    • Updated: Reworked the Sound library to use MiniAudio on OS X and Linux (SDL dependency is no more requiered for sounds on Linux).
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  3. #3
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 3
    2024-01-19: beta 3 released, focused on bug fixes and improvements:
    • Added: NbMaxChannels parameter for InitSound(). Range from 1 to 254.
    • Changed: WebViewGadget(): SetGadgetText() now open an URI like WebGadget() and added SetGadgetItemText() with #PB_Web_HtmlCode
    • Updated: Switched for MiniAudio for Windows as well, so all platform should behave exactly the same now. It use WASAPI on Windows by default for best sound quality.
    • Updated: Reworked the Music library to use MiniAudio as backend.
    • Updated: SQLite version to 3.45.0
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  4. #4
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 4 est disponible
    2024-01-27: beta 4 is out don't hesitate to test it ! Changes:
    Added: #PB_WebView_Debug flag to WebViewGadget() to enable debugging
    Added: most of the new english documentation

    Renamed: WebViewEvaluateScript() to WebViewExecuteScript()

    Removed: Some very old deprecated functions.
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  5. #5
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 5 est disponible sur votre compte
    2024-02-04: beta 5 is ready to test. It mainly brings a new DPI Aware mode for OS X (the IDE tabs on OS X shouldn't be blurry anymore on retina display, yeah !) and the usual bugs fixes. Don't hesitate to test it and we are close to the final release.
    • Added: DPI-Aware support for OS X
    • Added: GetGadgetFont(#PB_Default) support on OSX to get the system gadget font
    • Added: Documentation is up-to-date now for all new commands (english only)
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  6. #6
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 6 est disponible
    2024-02-10: beta 6 is out ! Mostly a bug fix release, with some addition for the WebViewGadget() and WebGadget() on Windows
    • Added: #PB_WebView_ICoreController attribute support WebGaget() and WebViewGadget()
    • Added: All ICoreWebView2 interfaces and constants as residents, thanks to Justin (Windows)



    A small example to get the interface on Windows for WebViewGadget()
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    OpenWindow(0, 100, 100, 400, 400, "Hello", #PB_Window_SystemMenu)
     
    WebViewGadget(0, 0, 0, 400, 400, #PB_WebView_Debug)
     
    ; Get the ICoreController interface 
    ;
    Controller.ICoreWebView2Controller = GetGadgetAttribute(0, #PB_WebView_ICoreController)
     
    ; Get the ICoreWebView2 interface 
    ;
    Controller\get_CoreWebView2(@Core.ICoreWebView2)
    Core\Navigate("https://www.purebasic.com")
     
    DataSection
    	IID_ICoreWebView2Controller2:
    	Data.l $C979903E
    	Data.w $D4CA, $4228
    	Data.b $92, $EB, $47, $EE, $3F, $A9, $6E, $AB
    EndDataSection
     
    If Controller\QueryInterface(?IID_ICoreWebView2Controller2, @Controller2.ICoreWebView2Controller2) = #S_OK
      Debug "ICoreWebView2Controller2 found: " + Controller2
    Else
      Debug "Can't query ICoreWebView2Controller2"
    EndIf
     
    Repeat 
      Event = WaitWindowEvent()
    Until Event = #PB_Event_CloseWindow
    Source de l'information
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  7. #7
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 7 est disponible sur votre compte
    2024-03-02: beta 7 is ready to test with even more bug fixes and some new stuff:
    Added: #PB_2DDrawing_NativeText support for DrawingMode()
    Added: #PB_PixelFormat_NoAlpha for DrawingBufferFormat()
    Added: ExamineDraggedItems(), NextDraggedItem() and DraggedItemIndex() for Drag'n'drop
    Added: GetGadgetItemText() support for ExplorerTreeGadget()
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  8. #8
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 8 est disponible sur votre compte
    2024-03-13: beta 8 is out for testing ! It brings the following new features and bug fixes:
    • Added: New skeleton library create custom skeleton to a mesh
    • Added: ScaleEntityBone(), MeshDirectAdd() and #PB_Mesh_Direct mode support to CreateMesh()
    • Added: #PB_2DDrawing_NativeText support for Windows
    • Optimized: The IDE on Windows is now compiled with the C backend to have faster and smaller executable
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  9. #9
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 beta 9 est disponible sur votre compte
    2024-03-22: beta 9 is out for testing, it will be hopefully the last beta before final ! It brings the following changes and bug fixes:
    • Optimized: SoundVolume() and MusicVolume() changed from integer to float so fractional values are accepted for better precision.
    • Changed: removed 'link.exe' from the Windows package and went back to 'polink.exe' (link.exe is not freely redistrituable).
    Citation Envoyé par Fred
    I will remove the automatic path detection for link as it's not robust enough and I will add back the support for a vc/ directory in the compiler folder (so you will be able to copy link and its DLL if needed).
    Citation Envoyé par Fred
    I just pushed a new build for windows (x86 and x64), feel free to download it again it should fix the reported issues.
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

  10. #10
    Responsable Purebasic

    Avatar de comtois
    Inscrit en
    Avril 2003
    Messages
    1 261
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 1 261
    Points : 9 924
    Points
    9 924
    Billets dans le blog
    8
    Par défaut PureBasic 6.10 LTS est sorti
    Télécharger une version démo

    Final version is out ! Thanks a lot to everyone for the feedback, we are very proud of this new PureBasic release which paves the way for the future with an up-to-date Windows build chain. Special thanks to Freak who did an awesome job on updating some libraries and provide more consistent commandset accross the supported OS ! A massive work has also been done to fix old bugs and we will continue this way until most of them are squashed. Stay tuned !
    Vous souhaitez participer à la rubrique PureBasic (tutoriels, FAQ, sources) ? Contactez-moi par MP.

Discussions similaires

  1. PureBasic 5.62 est disponible sur votre compte.
    Par comtois dans le forum PureBasic
    Réponses: 0
    Dernier message: 04/02/2018, 13h22
  2. PureBasic 5.21 LTS beta 1 est disponible sur votre compte
    Par comtois dans le forum PureBasic
    Réponses: 2
    Dernier message: 18/11/2013, 18h40
  3. PureBasic 5.20 bêta 1 est disponible sur votre compte
    Par comtois dans le forum PureBasic
    Réponses: 21
    Dernier message: 15/09/2013, 12h10
  4. PureBasic 5.11 est disponible sur votre compte
    Par comtois dans le forum PureBasic
    Réponses: 1
    Dernier message: 23/03/2013, 20h21
  5. PureBasic 5.11 beta 1 est disponible sur votre compte
    Par comtois dans le forum PureBasic
    Réponses: 2
    Dernier message: 13/03/2013, 15h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo