Recommended Posts

Is there an app like this for your own FTP, Flickr, DeviantArt account, etc?

Basically an AIO type of upload software?

I remember using a shell extension on Windows XP that allowed me to right-click and upload to Imageshack. It really streamlines the process.

This app looks beatiful. I have yet to try localhostr.

I really like the new Beta design! one of the features I would like is if when you upload it shows different links for example BB Code, HTML etc...that would be awesome I think you had it before but great work (Y)

i'd assume every service will need a specific app to upload as how the site accepts uploads will be different

as for this app, there'll be an update in a day or two that'll fix a few issues (mainly unicode filenames and directory uploading) and will also add a method of uploading a screenshot similar to vista's snipping tool so you no longer have to open an image editor to save the screenshot as it'll upload it directly

  • 3 weeks later...

A little later than planned, but v1.1.0 is out! It's a 0.1 increase mainly because it adds a couple of "features" as well as some bug fixes.

When you next run localhostr uploadr it will notice there is an update available and will ask you if you wish to upgrade. If you don't it won't ask again for 24hours so you'll have to download the new version manually from http://localhostruploadr.com. If you do let it update, it will download the update and apply it for you.

Bugs fixed:

  • Files with unicode names weren't uploaded. This wasn't possible before due to how libcurl worked.
  • Directories weren't uploaded. This was a mess-up on my part :blush:
  • If you dropped a file while the drop area images were mid-transition it wouldn't allow anything to be uploaded. This has been fixed.

As for features/small changes:

  • The biggest change is the ability to take screenshots. This is from the newly added upload menu (see next item). You can either select an area manually or have a fullscreen screenshot. When you first take a screenshot a message will pop-up telling you how to use the screenshot feature.
  • A menu has been added to the green circle/cross in the drop area. This gives you an upload menu which lets you select a file/folder to upload rather than dragging & dropping it. This menu is also in the tray icon menu.
  • The window now shows in the Alt-Tab and Flip3D "windows" so you won't lose the window anymore. The window can also be found by clicking the tray icon, or selecting the 'Bring to front' menu item from the tray icon menu.
  • The toast notifications now have a 'Copy URL' link on them so if you hide the main window you no longer have to open it just to copy the link of a newly uploaded file/folder.
  • The toast notifications will no longer hide themselves if the mouse is in the toast window. This is similar behaviour to how MSN's toast notifications work.
  • In the copyright area of the settings page, the version now contains an 'i' if it's the installed version and a 'p' if it's the portable version. This is just a cosmetic change and doesn't affect the workings of the program.
  • When you change the username/password in the settings and are currently logged in, you will be logged out to avoid having the edit boxes show incorrect details.
  • If you attempt to run the program more than once, it will now open the current running version rather than just tell you it's already running

  • The window now shows in the Alt-Tab and Flip3D "windows" so you won't lose the window anymore. The window can also be found by clicking the tray icon, or selecting the 'Bring to front' menu item from the tray icon menu.

Cool, this is a big usability point for me. Thanks for adding this :)

EDIT:

The app turns into a white rectangle very often, especially when the new menu is being used:

capture.png

Found an error :p

<img snipped>

for anyone that's interested, that error is down to his uni network setup which requires a proxy and sends a default page with the proxy details, the app gets the returned page, and as its a valid http reply, it believes its uploaded ok when it hasn't. The reason for the conflicting info is because the toast notification uses the http reply code whereas the drop area image is based on it parsing the page returned.

The app turns into a white rectangle very often, especially when the new menu is being used:

<img snipped>

i assume that is the menu added to the green circle/cross? If so, XP or Vista? I've used that menu way hundreds of times while i've been optimising the screenshot code and testing it and never once saw that :/

can you also provide some details, does it randomly go to the white rectangle on its own (when not uploading)? or when you mouse over a button? does it do it when uploading?

Edited by Mike
i assume that is the menu added to the green circle/cross? If so, XP or Vista? I've used that menu way hundreds of times while i've been optimising the screenshot code and testing it and never once saw that :/

Yeah, that happens about a second after I click the green button and hover the cursor over one of the menu items. I'm on XP SP3.

EDIT:

It does not turn white on its own, the cursor must be over the app window for that to happen. Sometimes it just flashes the white rectangle and returns to normal (this is random as far as I can tell), but when I provoke it by using the green button menu, the rectangle is permanent and I have to minimize to the tray and pop it up again to return to normal. I haven't seen this happen while uploading.

EDIT2:

It also happens when I go to the preferences window. Could some other app be interfering? I currently have google chrome, pidgin, foobar2000 and the uploadr running.

Edited by skelly831

hmm, the way the program works is that windows takes care of the painting and my program just tells windows what to display when it wants the window changing so while it is idle, the window is being taken care of by windows itself and not my code. If it happens with the mouse inside the window and *not* moving, my code shouldn't be doing anything to do with drawing the window so it could be something interfering with, or windows doing something else. Even more strange is that when i first started on it and had some errors with the drawing, nothing would be drawn and the program never draws a white rectangle so i dont see where it comes from either.

I've coded it mostly on an XP SP3 system and never seen it happen before, granted i dont use chrome, pidgin or foobar :p I could try it with those running and see what happens, if it isn't something else causing the problem, i dont have a clue (yet) :/

Update on my "white rectangle" problem; it seems it happens randomly even while uploading, the only way to force it is to switch to the app via Alt+Tab (but even here I'm not so sure). I also did a clean reinstall but there is no change in this behavior.

if it was a run-time problem then it won't run at all probably, how big do you have the window?

exact size will either be in %APPDATA%\localhostr uploadr\localhostr.conf (if you used the installer), or localhostr.conf in the directory that the portable version is in.

  • 2 weeks later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      232
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!