Projects STRLCPY hiphp Commits 8f52c4da
🤬
  • 0.2.31

    - Add PWA (Service Worker) to "hiphp-desktop".
     - Updated installation options.
     - Update site files.
     - Add PWA installer as an option to settings in "hiphp-desktop".
     - Fix Dark Mode option.
     - Fix File Creation, Modification and Access Date in "hiphp-desktop".
     - Add a multiple selector in "hiphp-desktop".
     - Fix running on Windows.
     - Activate the arrow feature to return to previous commands (only for Linux).
     - Add login window on "hiphp-tk".
     - Update List information about the FILEs "hiphp-cli".
     - Bug fixes & performance improvements.
    
    Signed-off-by: Boudjada Yasser <[email protected]>
  • Loading...
  • Boudjada Yasser committed with GitHub 2 years ago
    8f52c4da
    1 parent 7a8fdf63
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    CHANGELOG
    1  -## 0.2.31-beta [Beta Version]
     1 +## 0.2.31 [27-11-2022][Last Version]
    2 2   - Add PWA (Service Worker) to "hiphp-desktop".
    3 3   - Updated installation options.
    4 4   - Update site files.
    skipped 4 lines
    9 9   - Fix running on Windows.
    10 10   - Activate the arrow feature to return to previous commands (only for Linux).
    11 11   - Add login window on "hiphp-tk".
     12 + - Update List information about the FILEs "hiphp-cli".
    12 13   - Bug fixes & performance improvements.
    13 14  
    14  -## 0.2.30 [02-11-2022][Last Version]
     15 +## 0.2.30 [02-11-2022]
    15 16   - Fix auto login in "hiphp-desktop".
    16 17   - Fix file info in "hiphp-desktop".
    17 18   - Add Dark Mode option to settings in "hiphp-desktop".
    skipped 168 lines
  • ■ ■ ■ ■ ■
    README.md
    skipped 593 lines
    594 594   <summary>Click to See changelog History</summary>
    595 595   
    596 596  ```
    597  -## 0.2.31-beta [Beta Version]
     597 +## 0.2.31 [27-11-2022][Last Version]
    598 598   - Add PWA (Service Worker) to "hiphp-desktop".
    599 599   - Updated installation options.
    600 600   - Update site files.
    skipped 4 lines
    605 605   - Fix running on Windows.
    606 606   - Activate the arrow feature to return to previous commands (only for Linux).
    607 607   - Add login window on "hiphp-tk".
     608 + - Update List information about the FILEs "hiphp-cli".
    608 609   - Bug fixes & performance improvements.
    609 610   
    610  -## 0.2.30 [02-11-2022][Last Version]
     611 +## 0.2.30 [02-11-2022]
    611 612   - Fix auto login in "hiphp-desktop".
    612 613   - Fix file info in "hiphp-desktop".
    613 614   - Add Dark Mode option to settings in "hiphp-desktop".
    skipped 464 lines
  • ■ ■ ■ ■ ■ ■
    hiphp/hiphpphpfunctions.py
    skipped 44 lines
    45 45   $path=str_replace($dir,'',$path);
    46 46   $path=ltrim($path, '/');
    47 47   }
    48  - $fileList[]=$path;
     48 + 
     49 + $perms = fileperms($path);
     50 + 
     51 + switch ($perms & 0xF000) {
     52 + case 0xC000: // socket
     53 + $info = 's';
     54 + break;
     55 + case 0xA000: // symbolic link
     56 + $info = 'l';
     57 + break;
     58 + case 0x8000: // regular
     59 + $info = 'r';
     60 + break;
     61 + case 0x6000: // block special
     62 + $info = 'b';
     63 + break;
     64 + case 0x4000: // directory
     65 + $info = 'd';
     66 + break;
     67 + case 0x2000: // character special
     68 + $info = 'c';
     69 + break;
     70 + case 0x1000: // FIFO pipe
     71 + $info = 'p';
     72 + break;
     73 + default: // unknown
     74 + $info = 'u';
     75 + }
     76 + 
     77 + // Owner
     78 + $info .= (($perms & 0x0100) ? 'r' : '-');
     79 + $info .= (($perms & 0x0080) ? 'w' : '-');
     80 + $info .= (($perms & 0x0040) ?
     81 + (($perms & 0x0800) ? 's' : 'x' ) :
     82 + (($perms & 0x0800) ? 'S' : '-'));
     83 + 
     84 + // Group
     85 + $info .= (($perms & 0x0020) ? 'r' : '-');
     86 + $info .= (($perms & 0x0010) ? 'w' : '-');
     87 + $info .= (($perms & 0x0008) ?
     88 + (($perms & 0x0400) ? 's' : 'x' ) :
     89 + (($perms & 0x0400) ? 'S' : '-'));
     90 + 
     91 + // World
     92 + $info .= (($perms & 0x0004) ? 'r' : '-');
     93 + $info .= (($perms & 0x0002) ? 'w' : '-');
     94 + $info .= (($perms & 0x0001) ?
     95 + (($perms & 0x0200) ? 't' : 'x' ) :
     96 + (($perms & 0x0200) ? 'T' : '-'));
     97 + 
     98 + $file_stats = stat($path);
     99 + 
     100 + //
     101 + $last_use=date('M d H:m',$file_stats["mtime"]);
     102 + 
     103 + //
     104 + $bytes=filesize($path);
     105 + if ($bytes >= 1073741824){
     106 + $bytes = number_format($bytes / 1073741824, 2) . ' GB';
     107 + }elseif ($bytes >= 1048576){
     108 + $bytes = number_format($bytes / 1048576, 2) . ' MB';
     109 + }elseif ($bytes >= 1024){
     110 + $bytes = number_format($bytes / 1024, 2) . ' KB';
     111 + }elseif ($bytes > 1){
     112 + $bytes = $bytes . ' bytes';
     113 + }elseif ($bytes == 1){
     114 + $bytes = $bytes . ' byte';
     115 + }else{
     116 + $bytes = '0 bytes';
     117 + }
     118 + 
     119 + if(strlen($bytes)<11){
     120 + $s=11-strlen($bytes);
     121 + $bytes=str_repeat(" ",$s).$bytes;
     122 + }
     123 + 
     124 + //
     125 + $fileList[]=$info." ".$last_use." ".$bytes." ".$path;
    49 126   }
    50 127   return $fileList;
    51 128  }
    skipped 171 lines
  • ■ ■ ■ ■
    hiphp/hiphpversion.py
    skipped 11 lines
    12 12  # | |
    13 13   
    14 14  #START{
    15  -__version__="0.2.31-beta"
     15 +__version__="0.2.31"
    16 16  #}END.
  • ■ ■ ■ ■
    hiphp-desktop/src/config.json
    1 1  {
    2  - "Dark Mode": "True"
     2 + "Dark Mode": "False"
    3 3  }
  • ■ ■ ■ ■
    version.txt
    1  -0.2.31-beta
     1 +0.2.31
Please wait...
Page is in error, reload to recover