Fix spelling

This commit is contained in:
a1346054 2021-08-22 20:17:55 +00:00
parent f827d5232d
commit 601e215565
No known key found for this signature in database
GPG key ID: D149AD21DC40440C
6 changed files with 6 additions and 6 deletions

View file

@ -110,7 +110,7 @@
## 1.3 ## 1.3
* Major UI redesign, introducing many UX improvements * Major UI redesign, introducing many UX improvements
* Client-side web interfact redesigned * Client-side web interface redesigned
* New feature: Support for meek_lite pluggable transports (Amazon and Azure) - not yet ready for Windows or macOS, sorry * New feature: Support for meek_lite pluggable transports (Amazon and Azure) - not yet ready for Windows or macOS, sorry
* New feature: Support for custom obfs4 and meek_lite bridges (again, meek_lite not available on Windows/macOS yet) * New feature: Support for custom obfs4 and meek_lite bridges (again, meek_lite not available on Windows/macOS yet)
* New feature: Ability to cancel share before it starts * New feature: Ability to cancel share before it starts

View file

@ -163,7 +163,7 @@ This will create `desktop/macOS/OnionShare.dmg`, signed and notarized.
## Source package ## Source package
To make a source package, run `./build-source.sh $TAG`, where `$TAG` is the the name of the signed git tag, e.g. `v2.1`. To make a source package, run `./build-source.sh $TAG`, where `$TAG` is the name of the signed git tag, e.g. `v2.1`.
This will create `dist/onionshare-$VERSION.tar.gz`. This will create `dist/onionshare-$VERSION.tar.gz`.

View file

@ -148,7 +148,7 @@ var getScrollDiffBefore = function () {
var scrollBottomMaybe = function (scrollDiff) { var scrollBottomMaybe = function (scrollDiff) {
// Scrolls to bottom if the user is scrolled at bottom // Scrolls to bottom if the user is scrolled at bottom
// if the user has scrolled upp, it wont scroll at bottom. // if the user has scrolled up, it won't scroll at bottom.
// Note: when a user themselves send a message, it will still // Note: when a user themselves send a message, it will still
// scroll to the bottom even if they had scrolled up before. // scroll to the bottom even if they had scrolled up before.
if (scrollDiff > 0) { if (scrollDiff > 0) {

View file

@ -248,7 +248,7 @@ class ShareMode(Mode):
def start_server_step3_custom(self): def start_server_step3_custom(self):
""" """
Step 3 in starting the server. Remove zip progess bar, and display large filesize Step 3 in starting the server. Remove zip progress bar, and display large filesize
warning, if applicable. warning, if applicable.
""" """
# Remove zip progress bar # Remove zip progress bar

View file

@ -178,7 +178,7 @@ class GuiBaseTest(unittest.TestCase):
self.assertEqual(tab.get_mode().history.isVisible(), not currently_visible) self.assertEqual(tab.get_mode().history.isVisible(), not currently_visible)
def history_indicator(self, tab, indicator_count="1"): def history_indicator(self, tab, indicator_count="1"):
"""Test that we can make sure the history is toggled off, do an action, and the indiciator works""" """Test that we can make sure the history is toggled off, do an action, and the indicator works"""
# Make sure history is toggled off # Make sure history is toggled off
if tab.get_mode().history.isVisible(): if tab.get_mode().history.isVisible():
tab.get_mode().toggle_history.click() tab.get_mode().toggle_history.click()

View file

@ -16,7 +16,7 @@ languages = [
("Русский", "ru"), # Russian ("Русский", "ru"), # Russian
# ("Español", "es"), # Spanish # ("Español", "es"), # Spanish
("Türkçe", "tr"), # Turkish ("Türkçe", "tr"), # Turkish
("Українська", "uk"), # Ukranian ("Українська", "uk"), # Ukrainian
] ]
versions = ["2.3", "2.3.1", "2.3.2", "2.3.3", "2.4"] versions = ["2.3", "2.3.1", "2.3.2", "2.3.3", "2.4"]