-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Arisamiga/open-results-in-Window
Implementation of -g flag
- Loading branch information
Showing
22 changed files
with
133 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ Short: Disk usage statistics+file/folder utility | |
Uploader: [email protected] (Aris Sokianos) | ||
Author: Aris (arisamiga) Sokianos | ||
Type: util/misc | ||
Version: 1.0.2 | ||
Version: 1.1.0 | ||
Architecture: m68k-amigaos >= 3.0.0 | ||
Distribution: Aminet | ||
Replaces: util/misc/Mnemosyne.lha | ||
|
@@ -41,6 +41,17 @@ https://github.com/Arisamiga/Mnemosyne/issues | |
------------------------------------------------------------------------------ | ||
**ChangeLog** | ||
|
||
-> Update 1.1.0 (2023-10-30) | ||
* Added -g flag to open a window for scans from the shell. | ||
* Using proper Semantic Versioning now. | ||
* Current version moving to 1.0.2 -> 1.1.0 | ||
* Made Mnemosyne program from: 32.440B to 32.504B | ||
* New Guide images updated to fit the version | ||
* .guide finally has a proper icon now. | ||
* Fixed Duplications in scanning procedure code. | ||
* Prevent wrongful appending of file path. | ||
|
||
|
||
-> Update 1.0.2 (2023-10-27) | ||
* Made Mnemosyne program able to be used on AmigaOS 3.1 and 3.1.4 and 3.9 | ||
(For AmigaOS 3.1 and 3.1.4 you need to install ClassAct33) | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#ifndef WINDOW_H | ||
#define WINDOW_H | ||
void createWindow(void); | ||
void createWindow(char *); | ||
#endif |