Skip to content

Commit

Permalink
Fix scrolling in numbers (and maybe other things)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusTomlinson committed Jun 22, 2024
1 parent 6d5834d commit 60fe169
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: icloud-for-linux
version: '0.21'
version: '0.22'
summary: iCloud for Linux
description: iCloud for Linux

Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ int main( int, char** argv )
appWin.windowClosed = []() { choc::messageloop::stop(); };

choc::ui::WebView::Options webViewOptions;
webViewOptions.customUserAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0";
webViewOptions.customUserAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:125.0) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15";
choc::ui::WebView webView( webViewOptions );
webView.navigate( "https://www.icloud" + tld + "/" + std::string( argv[1] ) );

Expand All @@ -45,7 +45,7 @@ int main( int, char** argv )
appWin2.setWindowTitle( "iCloud " + std::string( argv[2] ) + "" );

choc::ui::WebView::Options webView2Options;
webView2Options.customUserAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0";
webView2Options.customUserAgent = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:125.0) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15";
choc::ui::WebView webView2( webView2Options );
webView2.navigate( url );

Expand Down

0 comments on commit 60fe169

Please sign in to comment.