Pārlūkot izejas kodu

Merge branch 'master' into master

Albert M 1 gadu atpakaļ
vecāks
revīzija
21db3efae7

+ 8 - 8
.github/workflows/workflow.yml

@@ -4,7 +4,7 @@ on:
   push:
     branches: [ master ]
     tags: [ "*" ]
-    paths-ignore: [ "README.md", "history.md", "release-notes.md" ]
+    paths-ignore: [ "README.md", "CHANGELOG.md", "release-notes.md" ]
 
   pull_request:
     branches: [ master ]
@@ -22,12 +22,12 @@ jobs:
 
     steps:
     - name: Checkout Repository
-      uses: actions/checkout@v2
+      uses: actions/checkout@v3
       with:
         submodules: false
 
     - name: Install Lazarus
-      uses: gcarreno/setup-lazarus@v3.2
+      uses: gcarreno/setup-lazarus@v3
       with:
         with-cache: false
         lazarus-version: ${{ matrix.lazarus-versions }}
@@ -48,7 +48,7 @@ jobs:
 
     - name: Upload binary (Windows)
       if: ${{ (matrix.operating-system == 'windows-latest')  &&  (matrix.lazarus-versions == 'stable') }}
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v3
       with:
         name: PascalCoinWindows
         path: |
@@ -58,7 +58,7 @@ jobs:
 
     - name: Upload binary (Ubuntu)
       if: ${{ (matrix.operating-system == 'ubuntu-latest')  &&  (matrix.lazarus-versions == 'stable') }}
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v3
       with:
         name: PascalCoinLinux
         path: |
@@ -68,7 +68,7 @@ jobs:
 
     - name: Upload binary (macOS)
       if: ${{ (matrix.operating-system == 'macos-latest')  &&  (matrix.lazarus-versions == 'stable') }}
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v3
       with:
         name: PascalCoinMacOS
         path: |
@@ -85,14 +85,14 @@ jobs:
 
     steps:
     - name: Checkout
-      uses: actions/checkout@v2
+      uses: actions/checkout@v3
 
     - name: Set output
       id: vars
       run: echo "tag=${GITHUB_REF#refs/*/}" >> ${GITHUB_OUTPUT}
 
     - name: Download the Release binary
-      uses: actions/download-artifact@v2
+      uses: actions/download-artifact@v3
 
     - name: List files
       run: |

+ 1 - 1
LICENSE

@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2016-2022 Pascal Cryptocurrency developers based on original Albert Molina source code
+Copyright (c) 2016-2023 Pascal Cryptocurrency developers based on original Albert Molina source code
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 2 - 8
release-notes.md

@@ -1,8 +1,2 @@
-# PascalCoin v5.7.1
-
-- Fix cls function TAccountComp.EqualOperationBlocks
-- Create UAbstractMemBlockchainStorage.pas
-- Enable to use indexed data on Blockchain storage
-- Added OnFLushedCache event on AbstractMem library
-- Added OnFLushedCache event log
-- Memory Improvements
+# PascalCoin v5.7.3
+- WIP

+ 1 - 1
src/gui-classic/UFRMAbout.dfm

@@ -217,7 +217,7 @@ object FRMAbout: TFRMAbout
     BorderStyle = bsNone
     Ctl3D = False
     Lines.Strings = (
-      'Copyright (c) 2016 - 2022 PascalCoin developers'
+      'Copyright (c) 2016 - 2023 PascalCoin developers'
       'Based on Albert Molina original source code'
       ''
       

+ 1 - 1
src/gui-classic/UFRMAbout.lfm

@@ -197,7 +197,7 @@ object FRMAbout: TFRMAbout
     Width = 478
     BorderStyle = bsNone
     Lines.Strings = (
-      'Copyright (c) 2016 - 2022 PascalCoin developers'
+      'Copyright (c) 2016 - 2023 PascalCoin developers'
       'Based on Albert Molina original source code'
       ''
       'Pascal (aka Pascal Coin) is P2P cryptocurrency without the need for historical operations. This software comprises a node within the Pascal network.'