-
I've just tried this on Mono, to be able to compile it I had to add this snip of code after line 88 of App.cs:
if(SettingsFileName.StartsWith("file:/"))
SettingsFileName = SettingsFileName.Substring(5);
if(ConnHistFileName.StartsWith("file:/"))
ConnHistFileName = ConnHistFileName.Substring(5);
Paths in linux use / instead of \ as separator, so the previous check doesn't remove...
2009-02-16 04:52:25 UTC in .NET VNC Viewer
-
It would be cool to have an option to automatically add a watermark to all the images on the gallery, this would save some time and work to the people that uses them. The watermark could be some text written on top of the 'low res' generated image with alpha blending, thumbnails would'nt need a watermark. I'll try to create this for my gallery (i've no experience with gd tho), but this might be...
2008-01-20 00:06:08 UTC in phpGraphy
-
It would be nice to have an option to allow us to run the 8085 asm program in 'slow mode' and be able to do a fast check of the program execution flow, without having to use step by step option.
2007-10-27 23:37:53 UTC in GNU 8085 Simulator
-
I've been using another 8085 simulator under Windows, and it includes a handy feature, it's a grid that shows memory address, io ports, and its values. I've included some screenshots. gnusim8085 includes a data inspector, but for using it you need to set variable names, and other couple of stuff.
http://img263.imageshack.us/img263/541/sim8085hn1.jpg
I'll give it a try to develop somthing...
2007-04-24 00:37:36 UTC in GNU 8085 Simulator
-
I've just noticed that ds was missing too, I've updated the file.
File Added: 8085asm.lang.
2007-03-19 02:15:55 UTC in GNU 8085 Simulator
-
I'm using SVN version, and I'm getting what I think, its an incorrect behavior.
;The following code fails and produces an error
port: equ 00h
in port
hlt
;This code works
port: equ 01h
in port
hlt
;This code works too
in 00h
hlt.
2007-03-19 02:12:23 UTC in GNU 8085 Simulator
-
Since all example files use the .asm extension, I wasn't able to open them with the File/Open dialog, unless I renamed them to .txt, so I thought that it was a good idea to use this as a default file type for saving, and opening files.
This patch:
- Adds a new filetype filter to the Open/Save/Save as dialog, 'ASM Files (mime:text/x-asm) *.asm'
- Improves the Saves As feature by following...
2007-03-19 00:39:14 UTC in GNU 8085 Simulator
-
The new 8085asm.lang file for syntax highlighting with gtksourceview doesn't include the following reserved 8085 asm keywords:
db, equ, jz, cmc
I'm using trunk SVN version, I've attached a new lang file that adds support for this keywords.
-Fernando.
2007-03-18 20:32:17 UTC in GNU 8085 Simulator
-
While reviewing phpgraphy source code, I noticed a flaw in the protection to disallow unauthorized viewing of pictures/directories.
Vulnerable Code: index.php Line 917 -> 927
// Protection against unauthorized directory viewing
$url=SCRIPT_NAME.'?dir='.urlencode($dir).'&login=1';
if ((get_level($dir) > (int)$user_row["seclevel"]) && !$login)
header("Location: ".$url);
// Protection...
2007-02-24 23:52:31 UTC in phpGraphy