Skip to content

Commit

Permalink
Change Github workflow title, change README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
zenden2k committed Jan 4, 2025
1 parent 7ea93ef commit bdd035c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Compile and test Image Uploader
name: Build Image Uploader

on:
pull_request:
Expand Down
3 changes: 2 additions & 1 deletion Dist/uploadlist.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import requests, sys, shutil

#REMOTE_URL = 'http://mywebsitev2.test:81/update-server-list'
REMOTE_URL = 'https://svistunov.dev/update-server-list'
DATA_DIR = sys.path[0] + '/../Data/'

if len(sys.argv) < 2:
print("You should password as argument.")
print("You should pass password as argument.")
sys.exit(1)
filename = sys.path[0] + '/favicons'
shutil.make_archive(filename, 'zip', DATA_DIR + 'Favicons')
Expand Down
6 changes: 4 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Compile and test Image Uploader](https://github.com/zenden2k/image-uploader/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/zenden2k/image-uploader/actions/workflows/main.yml)
[![Build Image Uploader](https://github.com/zenden2k/image-uploader/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/zenden2k/image-uploader/actions/workflows/main.yml)

# Image Uploader

Expand Down Expand Up @@ -26,7 +26,9 @@ It can upload to more than [20 image hostings sites](https://svistunov.dev/image
It is also possible to specify your own output format template.

### Grabbing frames from a video clip
Image Uploader can grab frames from various types of video formats, e.g. AVI, MPG, VOB, WMV, MKV (it depends on DirectShow codecs you have installed on your system). It is recommended to install K-lite Codec Pack.
Image Uploader can grab frames from various types of video formats, e.g. AVI, MPG, VOB, WMV, MKV. Image Uploader can utilize codecs installed on the system (it is recommended to use K-lite Codec Pack). If you do not have codecs installed or prefer not to clutter the system with them, the program can use the FFmpeg library, which is included with the program (in the portable version, or when using the installer, you need to check the corresponding option).

The extracted frames can be individually uploaded to the selected hosting service or combined into a single mosaic image.

Image Uploader is available in the following languages: English, Russian, Swedish, Romanian, Turkish, Serbian, Hrvatski, Farsi

Expand Down
2 changes: 0 additions & 2 deletions Source/Gui/Dialogs/LoginDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ CLoginDlg::CLoginDlg(ServerProfile& serverProfile, UploadEngineManager* uem, boo
}
}
createNew_ = createNew;

NetworkClient_ = ServiceLocator::instance()->networkClientFactory()->create();
}

LRESULT CLoginDlg::OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
Expand Down
1 change: 0 additions & 1 deletion Source/Gui/Dialogs/LoginDlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ class CLoginDlg : public CCustomDialogIndirectImpl<CLoginDlg>, public CWinDataEx
bool serverSupportsBeforehandAuthorization_, serverSupportsLogout_;
bool isAuthenticated_;
void enableControls(bool enable);
std::unique_ptr<INetworkClient> NetworkClient_;
CProgressRingControl wndAnimation_;
UploadEngineManager* uploadEngineManager_;
std::shared_ptr<AuthTask> currentTask_;
Expand Down

0 comments on commit bdd035c

Please sign in to comment.