TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.

TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.
 Opera 軟體歷史版本 Download Page214 :: 軟體兄弟

Opera 歷史版本列表 Page214

最新版本 [var.version]

Opera 歷史版本列表

Opera 為 Windows 電腦提供了一種快速,高效,個性化的瀏覽網頁的方式。它配備了一個流暢的界面,可自定義的快速撥號,發現功能,它可以幫助您找到新鮮的網頁內容,數據保存 Opera Turbo 模式,可視化書籤,超過 1000 擴展。在一個快速的瀏覽器上在網上做更多!您可以從我們的網站點擊免費下載按鈕下載 Opera PC 離線安裝程序。 選擇版本:Opera 50.0 Build 276... Opera 軟體介紹

Opera (32-bit)Opera (64-bit)Opera Neon for Windows


Simplenote 1.3.4 查看版本資訊

更新時間:2018-12-19
更新細節:

What's new in this version:

- Prevent a performance issue that can occur when there is a lot of whitespace in a Markdown note
- Restore tags correctly when restoring a revision
- Ensure that the note selected on launch is updated
- Improve tag field styles to accommodate notes with many tags
- Ensure that offline changes are synced to the server once the app is back online, even if the app was quit before syncing
- Add rate limiter to Importer to prevent overloading the server

Opera 57.0 Build 3098.102 (64-bit) 查看版本資訊

更新時間:2018-12-13
更新細節:

WorkFlowy Desktop 1.1.10 查看版本資訊

更新時間:2018-12-12
更新細節:

What's new in this version:

- Point mac users to the launched desktop app

Opera 57.0 Build 3098.91 (64-bit) 查看版本資訊

更新時間:2018-12-06
更新細節:

PhpStorm 2018.3.1 查看版本資訊

更新時間:2018-12-06
更新細節:

What's new in this version:

PhpStorm 2018.3.1 Build 183.4588.67
- Change log not available for this version


PhpStorm 2018.3 Build 183.4284.150
- Change log not available for this version


PhpStorm 2018.2.4 Build 182.4505.42

Notable bug fixes:
- When working with tasks and contexts and switching between tasks, IDE will now restore VCS branch and workspace correctly (IDEA-184079 +21)
- Fixed in XML: IDE marks “Element is not allowed here” an Element which is allowed to configure (IDEA-195872 +18)


PhpStorm 2018.2.3 Build 182.4323.68

- This build delivers new features, bug fixes and improvements for PHP and the Web, and takes on the latest enhancements in IntelliJ Platform.

PHP 7.3 Support:
- The first release candidate of PHP 7.3 is already released. The GA of the new version of the PHP interpreter is expected somewhere in mid-December.
- PhpStorm is continuing to add support for new PHP features (WI-42883).

Support for list reference assignment:
- PHP 7.3 introduces the enhancement for list() construction, which allows using references
- You may use the short syntax [] as well

Support for literals as the first operand of instanceof:
- In PHP <7.3 this would cause the “instanceof expects an object instance, constant given” fatal error. In PHP 7.3, the result is always false.

Trailing comma in function calls:
- For a long time in PHP you could add a trailing comma in an array
- In PHP 7.3 it is possible to do same thing for function arguments list
- This works for method calls and closures as well
- This is especially handy when viewing diffs with every parameter located on a new line.
- Note that this only works for function calls, but not function definitions, so the following is not possible

Quick-fix for adding a missing extension to composer.json:
- In PhpStorm 2018.2 we’ve added the new Extension is missing in composer.json inspection. It detects the usages of functions, constants, and classes that rely on PHP extensions not currently listed in composer.json.
- Now, starting from 2018.2.3, you’ll be able to run a quick-fix for such issues: PhpStorm will add the corresponding extension record to composer.json for you.

DQL Support:
- We plan to fully support Doctrine Query Language (DQL) (WI-9948) in the upcoming PhpStorm 2018.3 major release. You may check out initial support in 2018.3 EAP. Meanwhile, in this release, injections of SQL inside text literals will be automatically disabled for strings with DQL identifiers. This will eliminate false positives and make your files clean from warnings.

Notable bug fixes and features worth mentioning:
- Fixed: LoginToGithub dialog invoked from CloneRepository dialog hides immediately
- Fixed: Vue.j SFC not resolving @ alias with @vue/cli 3 if vue is installed in a subfolder
- More options creating Angular Cli project
- Fixed: Cannot attach to remote nodejs after upgrade to 2018.2


PhpStorm 2018.2.2 Build 182.4129.45
Platform updates:
- The database tools now support ClickHouse out of the box
- Fixed a couple of performance issues related to VCS (file scanning)

Notable bug fixes and features worth mentioning:
- PHPUnit: rerun failed tests now works for “defined in configuration file” run configuration
- Debugging maximum simultaneous connection configuration setting is now set to 3 by default
- Fixed completion for interfaces
- Fixed “Deployed file is on server removed” stuck since update 2018.2


PhpStorm 2018.2.1 Build 182.3911.43
- Change log not available for this version


PhpStorm 2018.2 Build 182.3684.42

Completion:
Custom postfix completion templates:
- Postfix code completion has existed in PhpStorm since version 9, but only provided a limited number of predefined templates. PhpStorm 2018.2 takes postfix completion to the next level by allowing you to add custom postfix completion templates. Create templates to match your project and your personal coding style!

FQCN Completion:
- Completion now matches the namespace in addition to the element name. You don’t have to type or invoke completion for each part of IlluminateAuthEvents anymore – just type IAuE instead.

Refactorings:
Move Instance Method Refactoring:
- PhpStorm already the Pull Up/Push Down and Make Static/Move Static Method refactorings that help you move methods around. For handling the methods that cannot be made static or moved across the class hierarchy, PhpStorm 2018.2 introduces a refactoring that allows for moving an instance method to a parameter class or to a field class. Simply invoke the Move refactoring on a method declaration, and, if the new refactoring can be applied, you will see a dialog prompting you to choose the target class.

PHP Language:
Structural Search and Replace:
- In PhpStorm 2018.2, we’ve completely reworked Structural Search and Replace for PHP, which offers lots of new capabilities and greatly simplifies patterns creation. Now you can specify the type of Structural variable, which lets you, for example, find a call to the specific method where the first parameter is a string. You can use a simple pattern to find a foreach loop with an unconditional return statement, or even create your own inspection that will capture an unnecessarily double-quoted string, if your code style enforces this

Improved SQL Injections:
- In version 8, PhpStorm introduced basic support for string concatenations in Language Injections. The dynamic nature of the resulting strings and the strictness of the SQL parser caused a lot of false positive errors in SQL. In PhpStorm 2018.2, we’ve eliminated most such errors and introduced some new features, too. PhpStorm can now substitute the values of constants directly within the injected string, so you can run a query without copy-pasting their values. In addition, we’ve added support for SQL strings that use sprintf parameters

New Inspections and Quick Fixes:
PhpStorm 2018.2 delivers handy new inspections such as:
- Extension is missing in composer.json reports usages of classes/functions/constants from PHP extensions which are not specified in composer.json
- Non-canonical order of elements in PHPDoc reports tags such as @property, @param, @var, etc. that use a non-canonical order of elements e.g. name Type instead of Type name.
- Optional parameter before required parameter detects situations when an optional parameter appears before required parameters in a function/method declaration.

Web Technologies Support:
New JavaScript Intentions:
- To make you even more productive when working with JavaScript and TypeScript, PhpStorm has a bunch of new intentions that are available when you press Alt-Enter. Here are just some of them: Implement interface, Create derived class, Implement members of an interface or abstract class, Generate cases for switch, and Iterate with for..of.

Completion for events in Vue.js:
- In Vue templates, PhpStorm now provides code completion for events. Event names are suggested after v-on: or if you use the shorthand notation @event. There’s also code completion for event modifiers.
- As usual, all the features and improvements of WebStorm are available in PhpStorm, either out of the box or with free plugins available in the repository. Other noteworthy web-related features include TypeScript 2.9 and 3.0 support, the new Code Coverage feature that helps to find unused code, extract and convert React component refactoring, new integrations with Angular CLI, global file watchers, rerun failed tests and other.

IDE Improvements:
Updated UI:
- We’ve rolled out brand new icons and dark title bars on macOS. Furthermore, PhpStorm 2018.2 brings support for the MacBook Touch Bar! Run and debug your project, commit changes, and update the project right from the Touch Bar

VCS:
Version control comes with the following changes:
- Easier resolve of merge conflicts
- Enhancements in VCS Log tab
- Browse repository at revision
- Multiple GitHub accounts
- Skip the Push dialog

Database Tools:
Database tools in PhpStorm have been improved thanks to our colleagues from the DataGrip team:
- New SQL formatter
- Source code migrations
- Query plan diagram
- Custom data source

Other improvements:
- Customizable value for $_SERVER['DOCUMENT_ROOT']
- Simple CodeSniffer/MessDetector setup
- The new presentation for Quick Documentation
- Allow renaming old style constructor to the new style
- New Add @method tag quick fix for Undefined method
- Add method quick fix now inserts parameter type hints
- PHPUnit composite configuration
- Jump outside closing bracket/quote with Tab
- HTTP Client: Support environment variables in the request body
- HTTP Client: Support formatting of POST request body
- Docker: navigate from compose nodes and containers
- Docker: wrapping words in Docker logs


PhpStorm 2018.1.6 Build 181.5281.35
- This build fixes the issue with the Register action: IDEA-193747


PhpStorm 2018.1.5 Build 181.5281.19
- Change log not available for this version


PhpStorm 2018.1.4 Build 181.5087.24
- Fixes for PHP Remote Interpreters (Docker/Docker-Compose and Vagrant)
- Compiling PL/SQL code with actual errors
- Support of conditional compilation flags in pl/sql code
- Show inferred type in Flow in Brief Info


PhpStorm 2018.1.3 Build 181.4892.97

- This build delivers new features, bug fixes and improvements for PHP and the Web, and takes on the latest improvements in IntelliJ Platform

Notable bug fixes and features worth mentioning:
- void return type is not autocompleted WI-41850
- Find in Path” shortcut (Ctrl+Shift+F) not working in “Find in Path” preview window IDEA-189447
- Replace all’ confirmation popup is out of focus IDEA-186587
- Run configuration drop down menu does not show the full name of the test being selected IDEA-182763
- Wrong commit and push buttons rendering IDEA-190206
- Don’t add renamed or moved files to git index unless configured to do so IDEA-118140
- Default run/debug configurations are not saved IDEA-189444


PhpStorm 2018.1.2 Build 181.4668.78

Syntax Highlighting in Quick Definition:
- Using the Quick Definition popup became more convenient: with added syntax highlighting, you can now read what exactly a function or a class is doing, without losing your current context.
- Flexible configuration of imports from the global namespace
- In the previous versions of PhpStorm, you could choose to either import everything (functions, classes, constants) from the global namespace or use FQN for functions and constants. We’ve listened to your feedback and realized that more flexibility is sometimes required. In PhpStorm 2018.1.2, you can control auto-import separately for classes, functions, and constants
- For classes, you can choose between “insert FQN” and “prefer import” (PhpStorm will insert import if this doesn’t result in a conflict). For functions and constants, the options are “insert FQN”, “prefer import”, and “prefer fallback” (you can refer to the PHP documentation for its exact meaning)

Notable bug fixes and features worth mentioning:
- Collapsing tree node does not collapses all subnodes (regression)
- Command Line Tools Console – Cursor Not In Run Box
- Incorrect variable name during phpDoc generation for field in case inferred type in constructor $this
- Goto definition’ on ‘new expression’ targeting parent class __construct instead of referenced class
- Provide the ability to disable tooltips in editor without disabling inspections
- Subversion File History not working for links with spaces
- Typescript readonly type inference from const
- Add option to omit JsDoc types for TypeScript code


PhpStorm 2018.1.1 Build 181.4445.72

File-level suppression to PHP inspections:
- PhpStorm provides a lot of inspections to catch all sort of errors in your code, but it may occur that some particular code shouldn’t follow the standards set for the whole project. In previous PhpStorm versions, you were able to suppress a warning for a particular statement or declaration. PhpStorm 2018.1.1 brings the ability to suppress an inspection for the whole file: just add /**@noinspection <inspection_name> */ right after the first opening PHP tag or press ALT+Enter on the inspection warning and select Suppress for file in the submenu. You can also use /**@noinspection ALL */ to suppress all inspection for the file.

Required plugins for a project:
- Suppose you’ve found an essential plugin that would help a lot with developing your project (Symfony or PHP Annotations plugins are good examples of such plugins), and you want to make sure that everybody on your team is on the same page. Previously there was no way to let your colleagues know about the plugins without talking to them or writing the readme file. PhpStorm 2018.1.1 introduces Required plugins, which you can locate under Preferences | Build, Execution, Deployment | Required Plugins. You can specify the plugins and their exact versions as the project’s requirements. After you’ve set them, PhpStorm will notify if the required plugins are missing or need an update.

Go to Type action:
- You might have already used the Navigate | Type declaration action when working with JavaScript or when using our other IDEs. It lets you navigate to the type declaration from any expression, and now it is available in PHP, as well.

Notable bug fixes and features worth mentioning:
- Incorrect ‘find usages’ / refactoring of __constructor of parent class WI-19518
- Indexing of large files WI-41378
- Deployment: context menu is missing if no default server is selected WI-40826
- Docker-compose: output isn’t shown WI-41002
- Keystrokes lost during freezing IDEA-186636
- CommonJS: properties of function object returned by exported module not resolved WEB-24161
- DESC/DESCRIBE in read-only mode DBE-397


PhpStorm 2018.1 Build 181.4203.565

PHP Language:
- Inline function/method refactoring
- Refactor your code to functional style
- Configurable unchecked exceptions
- Goto Symbol navigation improvements
- Hierarchy checks for class aliases

Testing:
- Creating class from test
- Codeception: code coverage
- Better @covers support
- Gutter icons for running tests

HTTP Client:
- Assertions support
- Simplified first start


PhpStorm 2017.3.6 Build 173.4674.46
Bug fixes and features:
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950


PhpStorm 2017.3.5 Build 173.4674.45
- Notable bug fixes and features worth mentioning
- Fixed: Built-in SSH: does not support strong security ciphers – Cannot negotiate, proposals do not match IDEA-140196
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950
- Fixed: Multiple “Updating indices” bg tasks after external file system changes IDEA-123287
- Fixed: Autocomplete too fast and leads to errors when inputting a number DBE-4965
- Fixed: Hide MySQL Collations & Schemas DBE-5557
- Fixed: Database Console name in Files have turned into guids DBE-5904


PhpStorm 2017.3.4 Build 173.4548.32
Fixed:
- Allow UI scale exceed 2x
- Multiple “Updating indices” bg tasks after external file system changes
- Evaluate window: cannot TAB from expression into results tree


PhpStorm 2017.3.3 Build 173.4301.34

REST Client: Auto-formatting of responses:
- In this build, we’ve implemented one of the new REST client’s most voted features: auto-formatting of request results. PhpStorm analyses Content-Type and formats the response accordingly. If type detection has failed for some reason, you can still choose between JSON, HTML and XML formatting manually. To see the original response, you can select the View as Text formatting type

Highlighting call-site in case of pass-by-reference:
- PHP 7.3 may introduce “Explicit call-site pass-by-reference” (RFC) that will allow prepending of a call-site argument with &. This should help to understand the code and notice possible unexpected changes of a variable. It’s still a year till the 7.3 release, but why wait?
- In this build, we’ve extended parameter hints with pass-by-reference visualization that will help you find a function or a method call that has reference declaration in a parameter. The new parameter hints will be shown for all arguments that are actually passed by reference. Please share your feedback about the new feature!

Notable bug fixes and features worth mentioning:
- Fixed: Short syntax array destructuring does not allow skipping values: WI-34517
- Fixed: Unhandled exception: doesn’t analyze “new MyClass” (constructor) expression: WI-37946
- Fixed: Broken “Change to” spelling quickfix in the Commit dialog: WI-39142
- PHP New Class now saves previously selected template: WI-39427
- Fixed: “Can’t run 32-bit version on Windows”: JRE-590
- Fixed: All run configurations lost after upgrade to 2017.3: IDEA-182966
- Fixed: Tool Window docking issue IDEA-149061
- Fixed: FETCH ALL IN returns error org.postgresql.jdbc4.Jdbc4ResultSet: DBE-2465
- Fixed: DataGrip does not recognize Redshift’s WITH NO SCHEMA BINDING clause: DBE-5404


PhpStorm 2017.3.2 Build 173.4127.29
Notable bug fixes and features worth mentioning:
- Unhandled exception shouldn’t be reported for tests with @expectedException
- Improved discoverability of Recursive Search in Find Window


PhpStorm 2017.3.1 Build 173.3942.32
- Support custom templates variables in ‘new class’ dialog
- Fix “Structure view is always collapsed”
- Fix Tool Window docking issue
- Fix “Unable to update issue state from Open Task dialog”


PhpStorm 2017.3 Build 173.3757.138
- Brand new editor-based REST client. With the new REST client, all the powers of the PhpStorm code editor are now available for your REST requests.
- Significant performance improvements. Typing latency in very complex PHP files has decreased significantly. We've examined typing latency in the mPDF main file, which is a 38k-line-long mix of PHP, JS, and HTML, and it is down by 75% in PhpStorm 2017.3!
- New inspections for exception handling. Three new inspection Unhandled exception, Redundant @throws and Redundant catch clause with corresponding Quick Fixes will help you take exceptions under your control!
- Test generation improvements. Now you can create Codespec and PhpSpec classes and create test methods!
- Improved Twig support. We've implemented language injections for Twig custom tags and named blocks as well as improved Twig formatting that can now handle complex structures.

Simplenote 1.3.3 查看版本資訊

更新時間:2018-12-06
更新細節:

What's new in this version:

- Prevent unnecessary server calls when logged out

SmartGit 18.2.1 查看版本資訊

更新時間:2018-12-06
更新細節:

What's new in this version:

SmartGit 18.2.1

Git:
- Added low-level property log.graph.workingTreeAutoSelectionForConflicts to disable auto-selection of the working tree node if conflicts were detected

GUI:
- Added low-level property ui.fonts.useDefaultAsInfo to make the info font the same as the default font (instead of a tinier, derived one)

Fixed Bugs:
- Clone listed only own repositories, but should have listed all with read-access ("member" role)
- GitHub/GitLab/BitBucket integration: internal error trying to merge on server
- Log - resettings filter should not auto-select Working Tree or Index node
- Repositories - could not invoke Pull/Push commands on group

Preferences:
- Proxy port was not remembered after switching off the proxy temporarily

SSH
- Some special SSH server setups caused an error "ClassNotFound:
- Org.ietf.jgss.GSSException" to be raised => these users should force an installation update from the About dialog using the button right beside the version text field

GUI
- Update check: multiple "The upgrade to version x is not covered by your license" notifications showed up


SmartGit 18.2

Fixed Bugs:
Git:
Log:
- Branches view: Ctrl+C did not copy ref name
- Changes view (Windows): old file content does not show up for case-changed files
- Push to Gerrit: should be available in case of multiple Gerrit remotes (if sill unique)


SmartGit 18.1.5

New Features and improvements:
Git:
- Push to Gerrit: if topic is entered, add topic to master-option, like "refs/for/master%topic=topic"

Fixed Bugs:
Git:
- Gitignore/Git-config editor: is bright even with dark theme
- Find Objects: possible internal error when entering a long search string
- Refresh/Log: rename detection limit should be 50% by default (as for Git)

Hg:
- internal error if no Git executable is configured
- startup: possible internal error related to a bad settings.xml


SmartGit 18.1.4
- Change log not available for this version


SmartGit 18.1.3

Git (Log):
- Refresh: improved error message in case of bad stash-reflogs revealing a ref in an existing, filtered log window now resets the filter Updated bundled Git to version 2.17.1 (macOS, Windows; needs new installation or manual triggering of a genuine update in the About dialog)
- Bitbucket integration: improved error reporting
- Output dialog: remembers size (and location)
- Some hosting providers: added low-level property "json.enableGzip" to enable GZIP compression
- Setup wizard: added option to use gravatar.com (in the preferences, it was moved from the Commands > Log page to the Privacy page)

Fixed Bugs (Git):
- Commit Message view: entered message was not stored in the history
- Ignore: internal error trying to ignore directory with certain special characters like '[' in its name
- Local | Rename: allowed to rename the . directory

Log:
- internal error switching back from "Varying Coloring" to "Root Coloring" toggling individual pull requests did not work
- Log/Journal: - right-clicking an unselected commit showed commands for previously selected commit (Linux, macOS)
- Refresh: possible error for files with name "aux" (Windows)
- Stash Selection: failed with quotes in the message
- Bitbucket integration: problems parsing multiple reviewers
- GitHub integration (main window): certain errors were not reported
- GitLab integration: API version v3 is not supported any more

SSH:
- recurring error "The fingerprint of the SSH server has changed"
- an invalid .ssh/known_hosts file might show a lot of notifications about the failed read
- Tools: internal error invoking tool on repository located on drive root (Windows)
- Upgrade (Windows): possible "The process cannot access the file because it is being used by another process" error


SmartGit 18.1.2

New Features and improvements:
Git:
- Log: re-introduced former "varying" coloring
- added low-level property compare.gitCompatibleBinaryDetection

Fixed Bugs:
Git:
- interactive rebased timed out after 2min (Windows)

Journal/Log:
- possible "Node ... not found" error when opening repository
- right-clicking loses selection if scrolled down
- Rebase Head To: "Can't rebase HEAD to HEAD or an anchestor commit" error if
- HEAD is hidden

Hg:
- Conflict Solver: did not open for graft-conflicts
- Log: internal error when opening in Rebasing state
- SSH: certain problems with private key authentication (depending on files
- parallel to the provided private key file)

Linux bundle:
- added work-around for reg-ex related Java crashes caused by syntax
- highlighting code
- DEB bundle did not start on Ubuntu 18.04


SmartGit 18.1.1

New features and improvements:
Git:
- Git-Flow: if the low-level property gitflow.requireCleanWorktreeOnStart is set to true, starting a feature or hotfix with local changes will abort
- Log: if low-level property log.graph.displayCommitDateForAuthor is set to true, it will show the author, but the commit (instead of the author) date
- Output: if low-level property output.showOnlyIfViewInvisible is set to false, the Output dialog is shown independent of the Output view's visibility

Fixed Bugs:
Git:
- Blame: memory leak
- Edit Last Commit Message: internal error when in bisecting mode
- Journal, Move & Squash: when dragging onto first pushed commit, no "already pushed" warning was displayed memory leak when switching between repositories frequently quotes around filter definitions, e.g. git-crypt, caused errors starting these commands possible error "Raw log messge does not parse as log entry"
- Refresh: internal error when opening repositories with core.worktree set

Hg:
- Refresh: possible hang related to conflicts
- Compare: Ignore Whitespace should not display completely unchanged blocks as changed


SmartGit 18.1.0

Log:
- Possible internal error opening log in merging or rebasing state
- Added system property smartgit.nodecache.maxCachesToKeepInMemory to limit the log caches to keep in memory

Investigate (DeepGit):
- Memory leak
- Wrong colors used for system-independent light theme
- Various commands with dialog-based Log (Checkout, Merge, ...): graph filter options missing in File input field's drop-down menu


SmartGit 17.1.6 Build 11221

New features and improvements:
- Log, Tools menu: allow tools that operate on the repository using ${repositoryRootPath}

Fixed bugs:
Git:
- Git-Flow: when merging, stop processing if merge aborts due to file permission problems
- Refresh: possible internal error for special characters in file name and wrong system charset
- Stash Selection: contained redundant "--" when invoking "git stash push"


SmartGit 17.1.5 Build 11217

New features and improvements:
- built-in SSH client: support for diffie-hellman-group-exchange-sha256

Fixed Bugs:
- Git:
  - Log:
    - Compare:
      - Linux/GTK2: possible internal error painting comments
      - too large font was used for comments
- SVN: changing URL did not work reliable - disabled
- Bitbucket: possible 401 authentication failures after redoing OAuth
  authentication while SmartGit is running


SmartGit 17.1.4 Build 11213

External Diff tools:
- set system property "smartgit.core.cat.applyFilters" to true to apply
- filter..smudge
- System property "smartgit.executable.home" supports $USERPROFILE on Windows
- support for Git 2.16's SSH client detection ("The SSH server '-G' could not be found")

Fixed Bugs:
- after a fresh setup, "Mark as Favorite" notification comes up again every couple of seconds when dismissing with red x
- Changes view, Index Editor: staging LF-only files converted it to CRLF in Index
- Investigate: Open Log may result in internal error if Blame was not yet initialized

Log:
- Branches: toggling single branch in unselected category may add additional 2nd-level branch to selection
- Changes: Compact Changes option did not work (regression)
- Refresh: internal error related to renamed files

User interface:
- Preferences, Text Editor colors: ruler colors were not applied/stored
- OS X: possible internal error related to connecting/disconnecting monitors update check: did remind user to enable update check while it was disabled by system property


SmartGit 17.1.3 Build 11198

New Features, Improvements:
- Log: the count of the loaded commits is now hidden by default (set smartgit.log.commits.showLoadedCount to true to show it)
- JIRA integration: option smartgit.jira.fixResolutionId to specify the issue resolution ID that should be used to mark issues as resolved
- Set smartgit.updateCheck.checkForLatestBuildVisible to false to hide Help | Check for Latest Build
- Investigate: don't require DeepGit license for licensed SmartGit users

Fixed Bugs:

Git:
- Merge, Abort and others: could not be invoked if .gitmodules was in conflicting state

Refresh:
- Include with relative path like ../.gitconfig did not work in .git/config
- Wrong display after creating orphan branch
- Review comments: not able to add first comment to file

Simplenote 1.3.2 查看版本資訊

更新時間:2018-12-05
更新細節:

What's new in this version:

Enhancements:
- Add support for sorting the tags list

Fixes:
- Add :focus outline to dropzone
- Fix tag entry in Chinese, Japanese, and Korean
- Make tag entry and removal smoother
- Fix padding for trash toolbar in Mac Electron
- Fix password change handling
- Simplify printin
- Fix incorrect menu labels in note sorting options
- Never launch in fullscreen mode
- Fix button styles in the tag drawer
- Fix app description
- Fix errors in app menus
- Delete AppData on uninstall (Windows)
- Fix app icon in Windows Store build

WorkFlowy Desktop 1.1.9 查看版本資訊

更新時間:2018-11-30
更新細節:

What's new in this version:

- Point mac users to the launched desktop app

Opera 57.0 Build 3098.76 (64-bit) 查看版本資訊

更新時間:2018-11-29
更新細節:

What's new in this version:

- Crash at extensions::Extension::location()
- Deliver translations for notifications
- Installer doesn’t start
- Get rid of unescaped ‘#’ in body
- Don’t change the option after upgrade
- [Netflix] ‘Watch trailer’ should be always displayed in separate line.
- Improve layout of user consent popup
- Show Netflix notification as soon as possible
- Set integer, not boolean pref in session startup pref
- Crash loop on startup with a clean profile
- Error message in Console after disabling and then enabling again the News toggle button
- Promote O57 to stable stream